ETH Price: $2,354.54 (+0.71%)

Token

CIG DAO (CDao)
 

Overview

Max Total Supply

56 CDao

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CDao
0x4839460f05b2a8fc1b615e0523ebc46efba75420
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CigPass

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CigPass.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;

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


contract CigPass is Ownable,ERC721URIStorage {

   
    using Counters for Counters.Counter;
    // the whitelist mapping(address,address)
    mapping(address => address) public whiteLists;
    // all the whitelist address
    address[] private whiteListAddressList ;

    address[] private alreadyPurchasedWhiteList ;

    address[] private alreadyExchangeBadge ;
    
    

    Counters.Counter private _tokenIdCounter;
    // Total amount from pass sales
    uint256 public balanceReceived;
    // the bagage
    uint256[] public badgeExchangePassz;

    uint256 private _totalSupply ;
    uint256 private _airDropTotalSupply;
    uint256 private _whitelistTotalSupply;
    uint256 private _publicMintTotalSupply;
    uint256 private _badgeExchangeTotalSupply;

    uint256 private allowTotalSupply = 1777 ;
    uint256 private allowAirDropTotalSupply ;
    uint256 private allowWhitelistTotalSupply ;
    uint256 private allowPublicMintTotalSupply ;
    uint256 private allowBadgeExchangeTotalSupply ; 

    bool private _whiteListSwithch = true;

    struct Item {
        uint256 id;
        address owner;
    }

    mapping(uint256 => Item) public Items; //id => Item

    string private _pass_img_url = "https://ipfs.io/ipfs/QmQqxcKdBqL4We4N9gVJLHKy5pZexQEnjLJkqQ9ZVuMCng";
    string private _base_pass_img_url = "https://api.cigdao.xyz/api/v1/commonpass/";
    
    constructor() ERC721("CIG DAO", "CDao") {
        allowAirDropTotalSupply = 77;
        allowWhitelistTotalSupply = 300;
        allowPublicMintTotalSupply = 300 ;
        allowBadgeExchangeTotalSupply = 100; 

    }

    function setAllowAirDropTotalSupply(uint256 value) public  onlyOwner{
        allowAirDropTotalSupply = value;
    }

    function setAllowWhitelistTotalSupply(uint256 value) public  onlyOwner{
        allowWhitelistTotalSupply = value;
    }

    function setAllowPublicMintTotalSupply(uint256 value) public  onlyOwner{
        allowPublicMintTotalSupply = value;
    }


    function setAllowBadgeExchangeTotalSupply(uint256 value) public  onlyOwner{
        allowBadgeExchangeTotalSupply = value;
    }

     function getAllowPublicMintTotalSupply() public  view returns (uint256){
        return allowPublicMintTotalSupply;
    }


    function airDropTotalSupply() public view  returns (uint256) {
        return _airDropTotalSupply;
    }

    function whitelistTotalSupply() public view  returns (uint256) {
        return _whitelistTotalSupply;
    }

    function totalSupply()  public view  returns (uint256) {
        return _totalSupply;
    }

    function publicMintTotalSupply()  public view  returns (uint256) {
        return _publicMintTotalSupply;
    }

    function badgeExchangeTotalSupply()  public view  returns (uint256) {
        return _badgeExchangeTotalSupply;
    }

    function checkAirDropTotalSupply() view internal {
            uint256 will_num = airDropTotalSupply() + 1;
            require(will_num > 0 && will_num <= allowAirDropTotalSupply, "Exceeds airdrop supply");
     }

    function checkWhitelistTotalSupply() view internal {
            uint256 will_num = whitelistTotalSupply() + 1;
            require(will_num > 0 && will_num <= allowWhitelistTotalSupply, "Exceeds whitelist supply");
     } 


    function checkTotalSupply() view internal {
            uint256 will_num = totalSupply() + 1;
            require(will_num > 0 && will_num <= allowTotalSupply, "Exceeds token supply");
     }

    function checkBadgeExchangeTotalSupply() view internal {
            uint256 will_num = badgeExchangeTotalSupply() + 1;
            require(will_num > 0 && will_num <= allowBadgeExchangeTotalSupply, "Exceeds badgeExchangeTotalSupply supply");
     }

    function checkPublicMintTotalSupply() view internal {
        uint256 will_num = publicMintTotalSupply() + 1;
        require(will_num > 0 && will_num <= allowPublicMintTotalSupply, "Exceeds publicMintTotalSupply supply");
    }


/**
    Members on the whitelist can buy the pass at the whitelist price
 */

    function addWhiteList(address[] memory addresses) public onlyOwner {

       for(uint256 i = 0 ; i < addresses.length; i++){
            address to = addresses[i];
            whiteLists[to] = to;
            whiteListAddressList.push(to);
       }
    }

/**
  *   Those on the whitelist can buy the pass at 0.1 eth
 */

    function getWhiteList() public view returns (address[] memory){
       return whiteListAddressList;
    }

/**
 *     The admin can give someone a pass for free
 */
    function mintAirDropBatch(address[] memory addresses) public onlyOwner {
        checkAirDropTotalSupply();
        for(uint256 i = 0 ; i < addresses.length; i++){
            address to = addresses[i];
            _mint(to);    
            _airDropTotalSupply += 1;
        }
        
    }


/**
*  Exchange 100 regular badges for 1 pass or for members with the Professional badge, Honour badge or 50 Contribution badges, they can exchange for 1 pass
 */
    function badgeExchangePass(address to) public onlyOwner returns (uint256){
        checkBadgeExchangeTotalSupply();

        for(uint256 i = 0 ; i < alreadyExchangeBadge.length; i++){
            address addr = alreadyExchangeBadge[i];
            if(addr == to){
                   revert("only 1 pass can be exchanged for an account  ");
            }
        }
        uint256 tokenId = _mint(to);
        _badgeExchangeTotalSupply += 1;
        badgeExchangePassz.push(tokenId);
        alreadyExchangeBadge.push(to);
        return tokenId;

    }

    function setWhiteListSwithch(bool flag)public onlyOwner{
        _whiteListSwithch = flag;
    }

    

    
    /**
    *  Buy the pass with whitelist price of 0.1 eth
    */

    function mintWithWhiteList(address to)
        public
        payable
        returns (uint256)
    {
        if(!_whiteListSwithch){
            revert("Whitelist mode has been disabled ");
        }
        checkWhitelistTotalSupply();
        require(whiteLists[to] != address(0),"the address does not exist in the  whitelist");
       
        for(uint256 i = 0 ; i < alreadyPurchasedWhiteList.length; i++){
            address addr = alreadyPurchasedWhiteList[i];
            if(addr == to){
                   revert("whitelist can buy pass only once ");
            }
        }
        require(msg.value == .1 ether, "Not enough ETH sent: check price.");
        balanceReceived += msg.value;
        uint256 tokenId = _mint(to);
        alreadyPurchasedWhiteList.push(to);
        _whitelistTotalSupply += 1;
        return tokenId;
    }

    /**
        Buy the pass with the public sale price of 0.2 eth
    */

    function mintPublic(address to)
        public
        payable
        returns (uint256)
    {
        checkPublicMintTotalSupply();
        _checkPublicMint(to);
        require(msg.value == .2 ether, "Not enough ETH sent: check price.");
        balanceReceived += msg.value;
        uint256 tokenId = _mint(to);
        _publicMintTotalSupply += 1;
        return tokenId;
    }

    function _checkPublicMint(address to) view internal{
         uint256 token_total = _tokenIdCounter.current();
         uint256 alreadyBuyNum = 0;
         for(uint256 i = 1 ; i <= token_total; i++){
             address current_owner  = Items[i].owner;
             if(current_owner == to){
                alreadyBuyNum = alreadyBuyNum + 1;
             }
         }
         if(alreadyBuyNum >= 2){
             revert("Already Purchased 2 times  ");
         }

    }

    function getNftTotal(address addr)public view returns (uint256){
         uint256 token_total = _tokenIdCounter.current();
         uint256 total = 0;
         for(uint256 i = 1 ; i <= token_total; i++){
             address t_add  = Items[i].owner;
             if(t_add == addr){
                total = total + 1;
             }
         }
         return total;
    }

    function _mint(address to) internal returns (uint256) {
        checkTotalSupply();
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();
        _safeMint(to, tokenId);
        string memory uri = string.concat(_base_pass_img_url,Strings.toString(tokenId));
        _setTokenURI(tokenId, uri);
        Items[tokenId] = Item({id: tokenId, owner: to});
        _totalSupply += 1;
        return tokenId;
    }

    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }

    /**
    *  The admin can withdraw the balance
    */

    function withdrawMoney() public onlyOwner {
        address payable to = payable(msg.sender);
        to.transfer(getBalance());
    }
    
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

File 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 10 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 12 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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":[],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Items","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"badgeExchangePass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"badgeExchangePassz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"badgeExchangeTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowPublicMintTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getNftTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteList","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"mintAirDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintWithWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicMintTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowAirDropTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowBadgeExchangeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowPublicMintTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowWhitelistTotalSupply","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":"bool","name":"flag","type":"bool"}],"name":"setWhiteListSwithch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"","type":"address"}],"name":"whiteLists","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526106f16014556001601960006101000a81548160ff02191690831515021790555060405180608001604052806043815260200162004f6a60439139601b90816200004f9190620004a9565b5060405180606001604052806029815260200162004fad60299139601c90816200007a9190620004a9565b503480156200008857600080fd5b506040518060400160405280600781526020017f4349472044414f000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4344616f0000000000000000000000000000000000000000000000000000000081525062000115620001096200016360201b60201c565b6200016b60201b60201c565b8160019081620001269190620004a9565b508060029081620001389190620004a9565b505050604d60158190555061012c60168190555061012c601781905550606460188190555062000590565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b157607f821691505b602082108103620002c757620002c662000269565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002f2565b6200033d8683620002f2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200038a620003846200037e8462000355565b6200035f565b62000355565b9050919050565b6000819050919050565b620003a68362000369565b620003be620003b58262000391565b848454620002ff565b825550505050565b600090565b620003d5620003c6565b620003e28184846200039b565b505050565b5b818110156200040a57620003fe600082620003cb565b600181019050620003e8565b5050565b601f82111562000459576200042381620002cd565b6200042e84620002e2565b810160208510156200043e578190505b620004566200044d85620002e2565b830182620003e7565b50505b505050565b600082821c905092915050565b60006200047e600019846008026200045e565b1980831691505092915050565b60006200049983836200046b565b9150826002028217905092915050565b620004b4826200022f565b67ffffffffffffffff811115620004d057620004cf6200023a565b5b620004dc825462000298565b620004e98282856200040e565b600060209050601f8311600181146200052157600084156200050c578287015190505b6200051885826200048b565b86555062000588565b601f1984166200053186620002cd565b60005b828110156200055b5784890151825560018201915060208501945060208101905062000534565b868310156200057b578489015162000577601f8916826200046b565b8355505b6001600288020188555050505b505050505050565b6149ca80620005a06000396000f3fe60806040526004361061023b5760003560e01c80636926de831161012e578063b88d4fde116100ab578063e21fba1c1161006f578063e21fba1c146108a4578063e985e9c5146108cf578063ef801b761461090c578063f2fde38b14610935578063f96df6921461095e5761023b565b8063b88d4fde146107b8578063bd4af89c146107e1578063c87b56dd1461080c578063cceacac614610849578063e19582db146108745761023b565b806395d89b41116100f257806395d89b41146106f2578063a06cb7191461071d578063a22cb4651461074d578063a97fe7b614610776578063ac446002146107a15761023b565b80636926de831461062157806370a082311461064a578063715018a6146106875780638a072b7c1461069e5780638da5cb5b146106c75761023b565b806317b47cc4116101bc57806352a90c421161018057806352a90c421461051657806353dc840b146105415780635e1045ec1461057e5780636352211e146105a7578063683dcaf4146105e45761023b565b806317b47cc41461041e57806318160ddd1461045c57806323b872dd146104875780632a69f515146104b057806342842e0e146104ed5761023b565b8063095ea7b311610203578063095ea7b31461033957806309a9d76c14610362578063104cd8c21461038d578063113e65b3146103ca57806312065fe0146103f35761023b565b8063014b28ca1461024057806301ffc9a71461026957806306a2f02b146102a657806306fdde03146102d1578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e5f565b610987565b005b34801561027557600080fd5b50610290600480360381019061028b9190612ee4565b610999565b60405161029d9190612f2c565b60405180910390f35b3480156102b257600080fd5b506102bb610a7b565b6040516102c89190612f56565b60405180910390f35b3480156102dd57600080fd5b506102e6610a85565b6040516102f3919061300a565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612e5f565b610b17565b604051610330919061306d565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906130b4565b610b5d565b005b34801561036e57600080fd5b50610377610c74565b60405161038491906131b2565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906131d4565b610d02565b6040516103c19190612f56565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612e5f565b610ea6565b005b3480156103ff57600080fd5b50610408610eb8565b6040516104159190612f56565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612e5f565b610ec0565b604051610453929190613201565b60405180910390f35b34801561046857600080fd5b50610471610f04565b60405161047e9190612f56565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061322a565b610f0e565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906131d4565b610f6e565b6040516104e49190612f56565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061322a565b611029565b005b34801561052257600080fd5b5061052b611049565b6040516105389190612f56565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906131d4565b61104f565b604051610575919061306d565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906133c5565b611082565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612e5f565b6111ae565b6040516105db919061306d565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612e5f565b61125f565b6040516106189190612f56565b60405180910390f35b34801561062d57600080fd5b50610648600480360381019061064391906133c5565b611283565b005b34801561065657600080fd5b50610671600480360381019061066c91906131d4565b6112fa565b60405161067e9190612f56565b60405180910390f35b34801561069357600080fd5b5061069c6113b1565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612e5f565b6113c5565b005b3480156106d357600080fd5b506106dc6113d7565b6040516106e9919061306d565b60405180910390f35b3480156106fe57600080fd5b50610707611400565b604051610714919061300a565b60405180910390f35b610737600480360381019061073291906131d4565b611492565b6040516107449190612f56565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061343a565b611538565b005b34801561078257600080fd5b5061078b61154e565b6040516107989190612f56565b60405180910390f35b3480156107ad57600080fd5b506107b6611558565b005b3480156107c457600080fd5b506107df60048036038101906107da919061352f565b6115b6565b005b3480156107ed57600080fd5b506107f6611618565b6040516108039190612f56565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612e5f565b611622565b604051610840919061300a565b60405180910390f35b34801561085557600080fd5b5061085e611734565b60405161086b9190612f56565b60405180910390f35b61088e600480360381019061088991906131d4565b61173e565b60405161089b9190612f56565b60405180910390f35b3480156108b057600080fd5b506108b9611a31565b6040516108c69190612f56565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906135b2565b611a3b565b6040516109039190612f2c565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e91906135f2565b611acf565b005b34801561094157600080fd5b5061095c600480360381019061095791906131d4565b611af4565b005b34801561096a57600080fd5b5061098560048036038101906109809190612e5f565b611b77565b005b61098f611b89565b8060158190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a745750610a7382611c07565b5b9050919050565b6000601354905090565b606060018054610a949061364e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac09061364e565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b2282611c71565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf906136f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf7611cbc565b73ffffffffffffffffffffffffffffffffffffffff161480610c265750610c2581610c20611cbc565b611a3b565b5b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613783565b60405180910390fd5b610c6f8383611cc4565b505050565b60606009805480602002602001604051908101604052809291908181526020018280548015610cf857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610cae575b5050505050905090565b6000610d0c611b89565b610d14611d7d565b60005b600b80549050811015610de9576000600b8281548110610d3a57610d396137a3565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90613844565b60405180910390fd5b508080610de190613893565b915050610d17565b506000610df583611de9565b9050600160136000828254610e0a91906138db565b92505081905550600e819080600181540180825580915050600190039060005260206000200160009091909190915055600b839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080915050919050565b610eae611b89565b8060188190555050565b600047905090565b601a6020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b6000600f54905090565b610f1f610f19611cbc565b82611f04565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f55906139a3565b60405180910390fd5b610f69838383611f99565b505050565b600080610f7b600c6121ff565b9050600080600190505b82811161101e576000601a600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100a5760018361100791906138db565b92505b50808061101690613893565b915050610f85565b508092505050919050565b611044838383604051806020016040528060008152506115b6565b505050565b600d5481565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61108a611b89565b60005b81518110156111aa5760008282815181106110ab576110aa6137a3565b5b6020026020010151905080600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080806111a290613893565b91505061108d565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613a0f565b60405180910390fd5b80915050919050565b600e818154811061126f57600080fd5b906000526020600020016000915090505481565b61128b611b89565b61129361220d565b60005b81518110156112f65760008282815181106112b4576112b36137a3565b5b602002602001015190506112c781611de9565b506001601060008282546112db91906138db565b925050819055505080806112ee90613893565b915050611296565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613aa1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b9611b89565b6113c36000612279565b565b6113cd611b89565b8060178190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461140f9061364e565b80601f016020809104026020016040519081016040528092919081815260200182805461143b9061364e565b80156114885780601f1061145d57610100808354040283529160200191611488565b820191906000526020600020905b81548152906001019060200180831161146b57829003601f168201915b5050505050905090565b600061149c61233d565b6114a5826123a9565b6702c68af0bb14000034146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613b33565b60405180910390fd5b34600d600082825461150191906138db565b92505081905550600061151383611de9565b905060016012600082825461152891906138db565b9250508190555080915050919050565b61154a611543611cbc565b83836124a1565b5050565b6000601054905090565b611560611b89565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc611587610eb8565b9081150290604051600060405180830381858888f193505050501580156115b2573d6000803e3d6000fd5b5050565b6115c76115c1611cbc565b83611f04565b611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906139a3565b60405180910390fd5b6116128484848461260d565b50505050565b6000601154905090565b606061162d82611c71565b600060076000848152602001908152602001600020805461164d9061364e565b80601f01602080910402602001604051908101604052809291908181526020018280546116799061364e565b80156116c65780601f1061169b576101008083540402835291602001916116c6565b820191906000526020600020905b8154815290600101906020018083116116a957829003601f168201915b5050505050905060006116d7612669565b905060008151036116ec57819250505061172f565b600082511115611721578082604051602001611709929190613b8f565b6040516020818303038152906040529250505061172f565b61172a84612680565b925050505b919050565b6000601254905090565b6000601960009054906101000a900460ff1661178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613c25565b60405180910390fd5b6117976126e8565b600073ffffffffffffffffffffffffffffffffffffffff16600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90613cb7565b60405180910390fd5b60005b600a8054905081101561193a576000600a828154811061188b5761188a6137a3565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90613d49565b60405180910390fd5b50808061193290613893565b915050611868565b5067016345785d8a00003414611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613b33565b60405180910390fd5b34600d600082825461199791906138db565b9250508190555060006119a983611de9565b9050600a839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160116000828254611a2191906138db565b9250508190555080915050919050565b6000601754905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad7611b89565b80601960006101000a81548160ff02191690831515021790555050565b611afc611b89565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613ddb565b60405180910390fd5b611b7481612279565b50565b611b7f611b89565b8060168190555050565b611b91611cbc565b73ffffffffffffffffffffffffffffffffffffffff16611baf6113d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc90613e47565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c7a81612754565b611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613a0f565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d37836111ae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001611d89610a7b565b611d9391906138db565b9050600081118015611da757506018548111155b611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90613ed9565b60405180910390fd5b50565b6000611df36127c0565b611dfd600c61282c565b6000611e09600c6121ff565b9050611e158382612842565b6000601c611e2283612860565b604051602001611e33929190613f91565b6040516020818303038152906040529050611e4e82826129c0565b60405180604001604052808381526020018573ffffffffffffffffffffffffffffffffffffffff16815250601a60008481526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001600f6000828254611ef391906138db565b925050819055508192505050919050565b600080611f10836111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f525750611f518185611a3b565b5b80611f9057508373ffffffffffffffffffffffffffffffffffffffff16611f7884610b17565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb9826111ae565b73ffffffffffffffffffffffffffffffffffffffff161461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614027565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361207e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612075906140b9565b60405180910390fd5b612089838383612a2d565b612094600082611cc4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e491906140d9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213b91906138db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121fa838383612a32565b505050565b600081600001549050919050565b6000600161221961154e565b61222391906138db565b905060008111801561223757506015548111155b612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d90614159565b60405180910390fd5b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001612349611734565b61235391906138db565b905060008111801561236757506017548111155b6123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d906141eb565b60405180910390fd5b50565b60006123b5600c6121ff565b9050600080600190505b828111612458576000601a600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124445760018361244191906138db565b92505b50808061245090613893565b9150506123bf565b506002811061249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390614257565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361250f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612506906142c3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126009190612f2c565b60405180910390a3505050565b612618848484611f99565b61262484848484612a37565b612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90614355565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061268b82611c71565b6000612695612669565b905060008151116126b557604051806020016040528060008152506126e0565b806126bf84612860565b6040516020016126d0929190613b8f565b6040516020818303038152906040525b915050919050565b600060016126f4611618565b6126fe91906138db565b905060008111801561271257506016548111155b612751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612748906143c1565b60405180910390fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600060016127cc610f04565b6127d691906138db565b90506000811180156127ea57506014548111155b612829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128209061442d565b60405180910390fd5b50565b6001816000016000828254019250508190555050565b61285c828260405180602001604052806000815250612bbe565b5050565b6060600082036128a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129bb565b600082905060005b600082146128d95780806128c290613893565b915050600a826128d2919061447c565b91506128af565b60008167ffffffffffffffff8111156128f5576128f4613282565b5b6040519080825280601f01601f1916602001820160405280156129275781602001600182028036833780820191505090505b5090505b600085146129b45760018261294091906140d9565b9150600a8561294f91906144ad565b603061295b91906138db565b60f81b818381518110612971576129706137a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ad919061447c565b945061292b565b8093505050505b919050565b6129c982612754565b612a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ff90614550565b60405180910390fd5b80600760008481526020019081526020016000209081612a289190614707565b505050565b505050565b505050565b6000612a588473ffffffffffffffffffffffffffffffffffffffff16612c19565b15612bb1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a81611cbc565b8786866040518563ffffffff1660e01b8152600401612aa3949392919061482e565b6020604051808303816000875af1925050508015612adf57506040513d601f19601f82011682018060405250810190612adc919061488f565b60015b612b61573d8060008114612b0f576040519150601f19603f3d011682016040523d82523d6000602084013e612b14565b606091505b506000815103612b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5090614355565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bb6565b600190505b949350505050565b612bc88383612c3c565b612bd56000848484612a37565b612c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0b90614355565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca290614908565b60405180910390fd5b612cb481612754565b15612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb90614974565b60405180910390fd5b612d0060008383612a2d565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5091906138db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1160008383612a32565b5050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612e3c81612e29565b8114612e4757600080fd5b50565b600081359050612e5981612e33565b92915050565b600060208284031215612e7557612e74612e1f565b5b6000612e8384828501612e4a565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ec181612e8c565b8114612ecc57600080fd5b50565b600081359050612ede81612eb8565b92915050565b600060208284031215612efa57612ef9612e1f565b5b6000612f0884828501612ecf565b91505092915050565b60008115159050919050565b612f2681612f11565b82525050565b6000602082019050612f416000830184612f1d565b92915050565b612f5081612e29565b82525050565b6000602082019050612f6b6000830184612f47565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fab578082015181840152602081019050612f90565b83811115612fba576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fdc82612f71565b612fe68185612f7c565b9350612ff6818560208601612f8d565b612fff81612fc0565b840191505092915050565b600060208201905081810360008301526130248184612fd1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130578261302c565b9050919050565b6130678161304c565b82525050565b6000602082019050613082600083018461305e565b92915050565b6130918161304c565b811461309c57600080fd5b50565b6000813590506130ae81613088565b92915050565b600080604083850312156130cb576130ca612e1f565b5b60006130d98582860161309f565b92505060206130ea85828601612e4a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131298161304c565b82525050565b600061313b8383613120565b60208301905092915050565b6000602082019050919050565b600061315f826130f4565b61316981856130ff565b935061317483613110565b8060005b838110156131a557815161318c888261312f565b975061319783613147565b925050600181019050613178565b5085935050505092915050565b600060208201905081810360008301526131cc8184613154565b905092915050565b6000602082840312156131ea576131e9612e1f565b5b60006131f88482850161309f565b91505092915050565b60006040820190506132166000830185612f47565b613223602083018461305e565b9392505050565b60008060006060848603121561324357613242612e1f565b5b60006132518682870161309f565b93505060206132628682870161309f565b925050604061327386828701612e4a565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ba82612fc0565b810181811067ffffffffffffffff821117156132d9576132d8613282565b5b80604052505050565b60006132ec612e15565b90506132f882826132b1565b919050565b600067ffffffffffffffff82111561331857613317613282565b5b602082029050602081019050919050565b600080fd5b600061334161333c846132fd565b6132e2565b9050808382526020820190506020840283018581111561336457613363613329565b5b835b8181101561338d5780613379888261309f565b845260208401935050602081019050613366565b5050509392505050565b600082601f8301126133ac576133ab61327d565b5b81356133bc84826020860161332e565b91505092915050565b6000602082840312156133db576133da612e1f565b5b600082013567ffffffffffffffff8111156133f9576133f8612e24565b5b61340584828501613397565b91505092915050565b61341781612f11565b811461342257600080fd5b50565b6000813590506134348161340e565b92915050565b6000806040838503121561345157613450612e1f565b5b600061345f8582860161309f565b925050602061347085828601613425565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561349a57613499613282565b5b6134a382612fc0565b9050602081019050919050565b82818337600083830152505050565b60006134d26134cd8461347f565b6132e2565b9050828152602081018484840111156134ee576134ed61347a565b5b6134f98482856134b0565b509392505050565b600082601f8301126135165761351561327d565b5b81356135268482602086016134bf565b91505092915050565b6000806000806080858703121561354957613548612e1f565b5b60006135578782880161309f565b94505060206135688782880161309f565b935050604061357987828801612e4a565b925050606085013567ffffffffffffffff81111561359a57613599612e24565b5b6135a687828801613501565b91505092959194509250565b600080604083850312156135c9576135c8612e1f565b5b60006135d78582860161309f565b92505060206135e88582860161309f565b9150509250929050565b60006020828403121561360857613607612e1f565b5b600061361684828501613425565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061366657607f821691505b6020821081036136795761367861361f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006136db602183612f7c565b91506136e68261367f565b604082019050919050565b6000602082019050818103600083015261370a816136ce565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061376d603e83612f7c565b915061377882613711565b604082019050919050565b6000602082019050818103600083015261379c81613760565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6e6c79203120706173732063616e2062652065786368616e67656420666f7260008201527f20616e206163636f756e74202000000000000000000000000000000000000000602082015250565b600061382e602d83612f7c565b9150613839826137d2565b604082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389e82612e29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138d0576138cf613864565b5b600182019050919050565b60006138e682612e29565b91506138f183612e29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392657613925613864565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061398d602e83612f7c565b915061399882613931565b604082019050919050565b600060208201905081810360008301526139bc81613980565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006139f9601883612f7c565b9150613a04826139c3565b602082019050919050565b60006020820190508181036000830152613a28816139ec565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613a8b602983612f7c565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f4e6f7420656e6f756768204554482073656e743a20636865636b20707269636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b1d602183612f7c565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b600081905092915050565b6000613b6982612f71565b613b738185613b53565b9350613b83818560208601612f8d565b80840191505092915050565b6000613b9b8285613b5e565b9150613ba78284613b5e565b91508190509392505050565b7f57686974656c697374206d6f646520686173206265656e2064697361626c656460008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c0f602183612f7c565b9150613c1a82613bb3565b604082019050919050565b60006020820190508181036000830152613c3e81613c02565b9050919050565b7f746865206164647265737320646f6573206e6f7420657869737420696e20746860008201527f65202077686974656c6973740000000000000000000000000000000000000000602082015250565b6000613ca1602c83612f7c565b9150613cac82613c45565b604082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f77686974656c6973742063616e206275792070617373206f6e6c79206f6e636560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d33602183612f7c565b9150613d3e82613cd7565b604082019050919050565b60006020820190508181036000830152613d6281613d26565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dc5602683612f7c565b9150613dd082613d69565b604082019050919050565b60006020820190508181036000830152613df481613db8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e31602083612f7c565b9150613e3c82613dfb565b602082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b7f4578636565647320626164676545786368616e6765546f74616c537570706c7960008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b6000613ec3602783612f7c565b9150613ece82613e67565b604082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b60008190508160005260206000209050919050565b60008154613f1b8161364e565b613f258186613b53565b94506001821660008114613f405760018114613f5557613f88565b60ff1983168652811515820286019350613f88565b613f5e85613ef9565b60005b83811015613f8057815481890152600182019150602081019050613f61565b838801955050505b50505092915050565b6000613f9d8285613f0e565b9150613fa98284613b5e565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614011602583612f7c565b915061401c82613fb5565b604082019050919050565b6000602082019050818103600083015261404081614004565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140a3602483612f7c565b91506140ae82614047565b604082019050919050565b600060208201905081810360008301526140d281614096565b9050919050565b60006140e482612e29565b91506140ef83612e29565b92508282101561410257614101613864565b5b828203905092915050565b7f457863656564732061697264726f7020737570706c7900000000000000000000600082015250565b6000614143601683612f7c565b915061414e8261410d565b602082019050919050565b6000602082019050818103600083015261417281614136565b9050919050565b7f45786365656473207075626c69634d696e74546f74616c537570706c7920737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b60006141d5602483612f7c565b91506141e082614179565b604082019050919050565b60006020820190508181036000830152614204816141c8565b9050919050565b7f416c72656164792050757263686173656420322074696d657320200000000000600082015250565b6000614241601b83612f7c565b915061424c8261420b565b602082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142ad601983612f7c565b91506142b882614277565b602082019050919050565b600060208201905081810360008301526142dc816142a0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061433f603283612f7c565b915061434a826142e3565b604082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b60006143ab601883612f7c565b91506143b682614375565b602082019050919050565b600060208201905081810360008301526143da8161439e565b9050919050565b7f4578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b6000614417601483612f7c565b9150614422826143e1565b602082019050919050565b600060208201905081810360008301526144468161440a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061448782612e29565b915061449283612e29565b9250826144a2576144a161444d565b5b828204905092915050565b60006144b882612e29565b91506144c383612e29565b9250826144d3576144d261444d565b5b828206905092915050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061453a602e83612f7c565b9150614545826144de565b604082019050919050565b600060208201905081810360008301526145698161452d565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614580565b6145c78683614580565b95508019841693508086168417925050509392505050565b6000819050919050565b60006146046145ff6145fa84612e29565b6145df565b612e29565b9050919050565b6000819050919050565b61461e836145e9565b61463261462a8261460b565b84845461458d565b825550505050565b600090565b61464761463a565b614652818484614615565b505050565b5b818110156146765761466b60008261463f565b600181019050614658565b5050565b601f8211156146bb5761468c81613ef9565b61469584614570565b810160208510156146a4578190505b6146b86146b085614570565b830182614657565b50505b505050565b600082821c905092915050565b60006146de600019846008026146c0565b1980831691505092915050565b60006146f783836146cd565b9150826002028217905092915050565b61471082612f71565b67ffffffffffffffff81111561472957614728613282565b5b614733825461364e565b61473e82828561467a565b600060209050601f831160018114614771576000841561475f578287015190505b61476985826146eb565b8655506147d1565b601f19841661477f86613ef9565b60005b828110156147a757848901518255600182019150602085019450602081019050614782565b868310156147c457848901516147c0601f8916826146cd565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b6000614800826147d9565b61480a81856147e4565b935061481a818560208601612f8d565b61482381612fc0565b840191505092915050565b6000608082019050614843600083018761305e565b614850602083018661305e565b61485d6040830185612f47565b818103606083015261486f81846147f5565b905095945050505050565b60008151905061488981612eb8565b92915050565b6000602082840312156148a5576148a4612e1f565b5b60006148b38482850161487a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006148f2602083612f7c565b91506148fd826148bc565b602082019050919050565b60006020820190508181036000830152614921816148e5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061495e601c83612f7c565b915061496982614928565b602082019050919050565b6000602082019050818103600083015261498d81614951565b905091905056fea26469706673582212207ff4def597e19653e2292f8f646fa20ddf02818535b531bc6fd4e3d74240642664736f6c634300080f003368747470733a2f2f697066732e696f2f697066732f516d517178634b6442714c345765344e3967564a4c484b7935705a657851456e6a4c4a6b7151395a56754d436e6768747470733a2f2f6170692e63696764616f2e78797a2f6170692f76312f636f6d6d6f6e706173732f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636926de831161012e578063b88d4fde116100ab578063e21fba1c1161006f578063e21fba1c146108a4578063e985e9c5146108cf578063ef801b761461090c578063f2fde38b14610935578063f96df6921461095e5761023b565b8063b88d4fde146107b8578063bd4af89c146107e1578063c87b56dd1461080c578063cceacac614610849578063e19582db146108745761023b565b806395d89b41116100f257806395d89b41146106f2578063a06cb7191461071d578063a22cb4651461074d578063a97fe7b614610776578063ac446002146107a15761023b565b80636926de831461062157806370a082311461064a578063715018a6146106875780638a072b7c1461069e5780638da5cb5b146106c75761023b565b806317b47cc4116101bc57806352a90c421161018057806352a90c421461051657806353dc840b146105415780635e1045ec1461057e5780636352211e146105a7578063683dcaf4146105e45761023b565b806317b47cc41461041e57806318160ddd1461045c57806323b872dd146104875780632a69f515146104b057806342842e0e146104ed5761023b565b8063095ea7b311610203578063095ea7b31461033957806309a9d76c14610362578063104cd8c21461038d578063113e65b3146103ca57806312065fe0146103f35761023b565b8063014b28ca1461024057806301ffc9a71461026957806306a2f02b146102a657806306fdde03146102d1578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612e5f565b610987565b005b34801561027557600080fd5b50610290600480360381019061028b9190612ee4565b610999565b60405161029d9190612f2c565b60405180910390f35b3480156102b257600080fd5b506102bb610a7b565b6040516102c89190612f56565b60405180910390f35b3480156102dd57600080fd5b506102e6610a85565b6040516102f3919061300a565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612e5f565b610b17565b604051610330919061306d565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906130b4565b610b5d565b005b34801561036e57600080fd5b50610377610c74565b60405161038491906131b2565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906131d4565b610d02565b6040516103c19190612f56565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612e5f565b610ea6565b005b3480156103ff57600080fd5b50610408610eb8565b6040516104159190612f56565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612e5f565b610ec0565b604051610453929190613201565b60405180910390f35b34801561046857600080fd5b50610471610f04565b60405161047e9190612f56565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061322a565b610f0e565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906131d4565b610f6e565b6040516104e49190612f56565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f919061322a565b611029565b005b34801561052257600080fd5b5061052b611049565b6040516105389190612f56565b60405180910390f35b34801561054d57600080fd5b50610568600480360381019061056391906131d4565b61104f565b604051610575919061306d565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a091906133c5565b611082565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612e5f565b6111ae565b6040516105db919061306d565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612e5f565b61125f565b6040516106189190612f56565b60405180910390f35b34801561062d57600080fd5b50610648600480360381019061064391906133c5565b611283565b005b34801561065657600080fd5b50610671600480360381019061066c91906131d4565b6112fa565b60405161067e9190612f56565b60405180910390f35b34801561069357600080fd5b5061069c6113b1565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612e5f565b6113c5565b005b3480156106d357600080fd5b506106dc6113d7565b6040516106e9919061306d565b60405180910390f35b3480156106fe57600080fd5b50610707611400565b604051610714919061300a565b60405180910390f35b610737600480360381019061073291906131d4565b611492565b6040516107449190612f56565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061343a565b611538565b005b34801561078257600080fd5b5061078b61154e565b6040516107989190612f56565b60405180910390f35b3480156107ad57600080fd5b506107b6611558565b005b3480156107c457600080fd5b506107df60048036038101906107da919061352f565b6115b6565b005b3480156107ed57600080fd5b506107f6611618565b6040516108039190612f56565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612e5f565b611622565b604051610840919061300a565b60405180910390f35b34801561085557600080fd5b5061085e611734565b60405161086b9190612f56565b60405180910390f35b61088e600480360381019061088991906131d4565b61173e565b60405161089b9190612f56565b60405180910390f35b3480156108b057600080fd5b506108b9611a31565b6040516108c69190612f56565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906135b2565b611a3b565b6040516109039190612f2c565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e91906135f2565b611acf565b005b34801561094157600080fd5b5061095c600480360381019061095791906131d4565b611af4565b005b34801561096a57600080fd5b5061098560048036038101906109809190612e5f565b611b77565b005b61098f611b89565b8060158190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a745750610a7382611c07565b5b9050919050565b6000601354905090565b606060018054610a949061364e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac09061364e565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b2282611c71565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf906136f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf7611cbc565b73ffffffffffffffffffffffffffffffffffffffff161480610c265750610c2581610c20611cbc565b611a3b565b5b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90613783565b60405180910390fd5b610c6f8383611cc4565b505050565b60606009805480602002602001604051908101604052809291908181526020018280548015610cf857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610cae575b5050505050905090565b6000610d0c611b89565b610d14611d7d565b60005b600b80549050811015610de9576000600b8281548110610d3a57610d396137a3565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90613844565b60405180910390fd5b508080610de190613893565b915050610d17565b506000610df583611de9565b9050600160136000828254610e0a91906138db565b92505081905550600e819080600181540180825580915050600190039060005260206000200160009091909190915055600b839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080915050919050565b610eae611b89565b8060188190555050565b600047905090565b601a6020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b6000600f54905090565b610f1f610f19611cbc565b82611f04565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f55906139a3565b60405180910390fd5b610f69838383611f99565b505050565b600080610f7b600c6121ff565b9050600080600190505b82811161101e576000601a600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100a5760018361100791906138db565b92505b50808061101690613893565b915050610f85565b508092505050919050565b611044838383604051806020016040528060008152506115b6565b505050565b600d5481565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61108a611b89565b60005b81518110156111aa5760008282815181106110ab576110aa6137a3565b5b6020026020010151905080600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080806111a290613893565b91505061108d565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613a0f565b60405180910390fd5b80915050919050565b600e818154811061126f57600080fd5b906000526020600020016000915090505481565b61128b611b89565b61129361220d565b60005b81518110156112f65760008282815181106112b4576112b36137a3565b5b602002602001015190506112c781611de9565b506001601060008282546112db91906138db565b925050819055505080806112ee90613893565b915050611296565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613aa1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b9611b89565b6113c36000612279565b565b6113cd611b89565b8060178190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461140f9061364e565b80601f016020809104026020016040519081016040528092919081815260200182805461143b9061364e565b80156114885780601f1061145d57610100808354040283529160200191611488565b820191906000526020600020905b81548152906001019060200180831161146b57829003601f168201915b5050505050905090565b600061149c61233d565b6114a5826123a9565b6702c68af0bb14000034146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613b33565b60405180910390fd5b34600d600082825461150191906138db565b92505081905550600061151383611de9565b905060016012600082825461152891906138db565b9250508190555080915050919050565b61154a611543611cbc565b83836124a1565b5050565b6000601054905090565b611560611b89565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc611587610eb8565b9081150290604051600060405180830381858888f193505050501580156115b2573d6000803e3d6000fd5b5050565b6115c76115c1611cbc565b83611f04565b611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906139a3565b60405180910390fd5b6116128484848461260d565b50505050565b6000601154905090565b606061162d82611c71565b600060076000848152602001908152602001600020805461164d9061364e565b80601f01602080910402602001604051908101604052809291908181526020018280546116799061364e565b80156116c65780601f1061169b576101008083540402835291602001916116c6565b820191906000526020600020905b8154815290600101906020018083116116a957829003601f168201915b5050505050905060006116d7612669565b905060008151036116ec57819250505061172f565b600082511115611721578082604051602001611709929190613b8f565b6040516020818303038152906040529250505061172f565b61172a84612680565b925050505b919050565b6000601254905090565b6000601960009054906101000a900460ff1661178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613c25565b60405180910390fd5b6117976126e8565b600073ffffffffffffffffffffffffffffffffffffffff16600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90613cb7565b60405180910390fd5b60005b600a8054905081101561193a576000600a828154811061188b5761188a6137a3565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90613d49565b60405180910390fd5b50808061193290613893565b915050611868565b5067016345785d8a00003414611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613b33565b60405180910390fd5b34600d600082825461199791906138db565b9250508190555060006119a983611de9565b9050600a839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160116000828254611a2191906138db565b9250508190555080915050919050565b6000601754905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad7611b89565b80601960006101000a81548160ff02191690831515021790555050565b611afc611b89565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613ddb565b60405180910390fd5b611b7481612279565b50565b611b7f611b89565b8060168190555050565b611b91611cbc565b73ffffffffffffffffffffffffffffffffffffffff16611baf6113d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc90613e47565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c7a81612754565b611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090613a0f565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d37836111ae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001611d89610a7b565b611d9391906138db565b9050600081118015611da757506018548111155b611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90613ed9565b60405180910390fd5b50565b6000611df36127c0565b611dfd600c61282c565b6000611e09600c6121ff565b9050611e158382612842565b6000601c611e2283612860565b604051602001611e33929190613f91565b6040516020818303038152906040529050611e4e82826129c0565b60405180604001604052808381526020018573ffffffffffffffffffffffffffffffffffffffff16815250601a60008481526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001600f6000828254611ef391906138db565b925050819055508192505050919050565b600080611f10836111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f525750611f518185611a3b565b5b80611f9057508373ffffffffffffffffffffffffffffffffffffffff16611f7884610b17565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb9826111ae565b73ffffffffffffffffffffffffffffffffffffffff161461200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614027565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361207e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612075906140b9565b60405180910390fd5b612089838383612a2d565b612094600082611cc4565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e491906140d9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461213b91906138db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121fa838383612a32565b505050565b600081600001549050919050565b6000600161221961154e565b61222391906138db565b905060008111801561223757506015548111155b612276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226d90614159565b60405180910390fd5b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001612349611734565b61235391906138db565b905060008111801561236757506017548111155b6123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d906141eb565b60405180910390fd5b50565b60006123b5600c6121ff565b9050600080600190505b828111612458576000601a600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124445760018361244191906138db565b92505b50808061245090613893565b9150506123bf565b506002811061249c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249390614257565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361250f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612506906142c3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126009190612f2c565b60405180910390a3505050565b612618848484611f99565b61262484848484612a37565b612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a90614355565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061268b82611c71565b6000612695612669565b905060008151116126b557604051806020016040528060008152506126e0565b806126bf84612860565b6040516020016126d0929190613b8f565b6040516020818303038152906040525b915050919050565b600060016126f4611618565b6126fe91906138db565b905060008111801561271257506016548111155b612751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612748906143c1565b60405180910390fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600060016127cc610f04565b6127d691906138db565b90506000811180156127ea57506014548111155b612829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128209061442d565b60405180910390fd5b50565b6001816000016000828254019250508190555050565b61285c828260405180602001604052806000815250612bbe565b5050565b6060600082036128a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129bb565b600082905060005b600082146128d95780806128c290613893565b915050600a826128d2919061447c565b91506128af565b60008167ffffffffffffffff8111156128f5576128f4613282565b5b6040519080825280601f01601f1916602001820160405280156129275781602001600182028036833780820191505090505b5090505b600085146129b45760018261294091906140d9565b9150600a8561294f91906144ad565b603061295b91906138db565b60f81b818381518110612971576129706137a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129ad919061447c565b945061292b565b8093505050505b919050565b6129c982612754565b612a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ff90614550565b60405180910390fd5b80600760008481526020019081526020016000209081612a289190614707565b505050565b505050565b505050565b6000612a588473ffffffffffffffffffffffffffffffffffffffff16612c19565b15612bb1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a81611cbc565b8786866040518563ffffffff1660e01b8152600401612aa3949392919061482e565b6020604051808303816000875af1925050508015612adf57506040513d601f19601f82011682018060405250810190612adc919061488f565b60015b612b61573d8060008114612b0f576040519150601f19603f3d011682016040523d82523d6000602084013e612b14565b606091505b506000815103612b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5090614355565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bb6565b600190505b949350505050565b612bc88383612c3c565b612bd56000848484612a37565b612c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0b90614355565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca290614908565b60405180910390fd5b612cb481612754565b15612cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ceb90614974565b60405180910390fd5b612d0060008383612a2d565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5091906138db565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1160008383612a32565b5050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612e3c81612e29565b8114612e4757600080fd5b50565b600081359050612e5981612e33565b92915050565b600060208284031215612e7557612e74612e1f565b5b6000612e8384828501612e4a565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ec181612e8c565b8114612ecc57600080fd5b50565b600081359050612ede81612eb8565b92915050565b600060208284031215612efa57612ef9612e1f565b5b6000612f0884828501612ecf565b91505092915050565b60008115159050919050565b612f2681612f11565b82525050565b6000602082019050612f416000830184612f1d565b92915050565b612f5081612e29565b82525050565b6000602082019050612f6b6000830184612f47565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fab578082015181840152602081019050612f90565b83811115612fba576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fdc82612f71565b612fe68185612f7c565b9350612ff6818560208601612f8d565b612fff81612fc0565b840191505092915050565b600060208201905081810360008301526130248184612fd1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130578261302c565b9050919050565b6130678161304c565b82525050565b6000602082019050613082600083018461305e565b92915050565b6130918161304c565b811461309c57600080fd5b50565b6000813590506130ae81613088565b92915050565b600080604083850312156130cb576130ca612e1f565b5b60006130d98582860161309f565b92505060206130ea85828601612e4a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131298161304c565b82525050565b600061313b8383613120565b60208301905092915050565b6000602082019050919050565b600061315f826130f4565b61316981856130ff565b935061317483613110565b8060005b838110156131a557815161318c888261312f565b975061319783613147565b925050600181019050613178565b5085935050505092915050565b600060208201905081810360008301526131cc8184613154565b905092915050565b6000602082840312156131ea576131e9612e1f565b5b60006131f88482850161309f565b91505092915050565b60006040820190506132166000830185612f47565b613223602083018461305e565b9392505050565b60008060006060848603121561324357613242612e1f565b5b60006132518682870161309f565b93505060206132628682870161309f565b925050604061327386828701612e4a565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6132ba82612fc0565b810181811067ffffffffffffffff821117156132d9576132d8613282565b5b80604052505050565b60006132ec612e15565b90506132f882826132b1565b919050565b600067ffffffffffffffff82111561331857613317613282565b5b602082029050602081019050919050565b600080fd5b600061334161333c846132fd565b6132e2565b9050808382526020820190506020840283018581111561336457613363613329565b5b835b8181101561338d5780613379888261309f565b845260208401935050602081019050613366565b5050509392505050565b600082601f8301126133ac576133ab61327d565b5b81356133bc84826020860161332e565b91505092915050565b6000602082840312156133db576133da612e1f565b5b600082013567ffffffffffffffff8111156133f9576133f8612e24565b5b61340584828501613397565b91505092915050565b61341781612f11565b811461342257600080fd5b50565b6000813590506134348161340e565b92915050565b6000806040838503121561345157613450612e1f565b5b600061345f8582860161309f565b925050602061347085828601613425565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561349a57613499613282565b5b6134a382612fc0565b9050602081019050919050565b82818337600083830152505050565b60006134d26134cd8461347f565b6132e2565b9050828152602081018484840111156134ee576134ed61347a565b5b6134f98482856134b0565b509392505050565b600082601f8301126135165761351561327d565b5b81356135268482602086016134bf565b91505092915050565b6000806000806080858703121561354957613548612e1f565b5b60006135578782880161309f565b94505060206135688782880161309f565b935050604061357987828801612e4a565b925050606085013567ffffffffffffffff81111561359a57613599612e24565b5b6135a687828801613501565b91505092959194509250565b600080604083850312156135c9576135c8612e1f565b5b60006135d78582860161309f565b92505060206135e88582860161309f565b9150509250929050565b60006020828403121561360857613607612e1f565b5b600061361684828501613425565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061366657607f821691505b6020821081036136795761367861361f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006136db602183612f7c565b91506136e68261367f565b604082019050919050565b6000602082019050818103600083015261370a816136ce565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b600061376d603e83612f7c565b915061377882613711565b604082019050919050565b6000602082019050818103600083015261379c81613760565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6e6c79203120706173732063616e2062652065786368616e67656420666f7260008201527f20616e206163636f756e74202000000000000000000000000000000000000000602082015250565b600061382e602d83612f7c565b9150613839826137d2565b604082019050919050565b6000602082019050818103600083015261385d81613821565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061389e82612e29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138d0576138cf613864565b5b600182019050919050565b60006138e682612e29565b91506138f183612e29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392657613925613864565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061398d602e83612f7c565b915061399882613931565b604082019050919050565b600060208201905081810360008301526139bc81613980565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006139f9601883612f7c565b9150613a04826139c3565b602082019050919050565b60006020820190508181036000830152613a28816139ec565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613a8b602983612f7c565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f4e6f7420656e6f756768204554482073656e743a20636865636b20707269636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b1d602183612f7c565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b600081905092915050565b6000613b6982612f71565b613b738185613b53565b9350613b83818560208601612f8d565b80840191505092915050565b6000613b9b8285613b5e565b9150613ba78284613b5e565b91508190509392505050565b7f57686974656c697374206d6f646520686173206265656e2064697361626c656460008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c0f602183612f7c565b9150613c1a82613bb3565b604082019050919050565b60006020820190508181036000830152613c3e81613c02565b9050919050565b7f746865206164647265737320646f6573206e6f7420657869737420696e20746860008201527f65202077686974656c6973740000000000000000000000000000000000000000602082015250565b6000613ca1602c83612f7c565b9150613cac82613c45565b604082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f77686974656c6973742063616e206275792070617373206f6e6c79206f6e636560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d33602183612f7c565b9150613d3e82613cd7565b604082019050919050565b60006020820190508181036000830152613d6281613d26565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dc5602683612f7c565b9150613dd082613d69565b604082019050919050565b60006020820190508181036000830152613df481613db8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e31602083612f7c565b9150613e3c82613dfb565b602082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b7f4578636565647320626164676545786368616e6765546f74616c537570706c7960008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b6000613ec3602783612f7c565b9150613ece82613e67565b604082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b60008190508160005260206000209050919050565b60008154613f1b8161364e565b613f258186613b53565b94506001821660008114613f405760018114613f5557613f88565b60ff1983168652811515820286019350613f88565b613f5e85613ef9565b60005b83811015613f8057815481890152600182019150602081019050613f61565b838801955050505b50505092915050565b6000613f9d8285613f0e565b9150613fa98284613b5e565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614011602583612f7c565b915061401c82613fb5565b604082019050919050565b6000602082019050818103600083015261404081614004565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140a3602483612f7c565b91506140ae82614047565b604082019050919050565b600060208201905081810360008301526140d281614096565b9050919050565b60006140e482612e29565b91506140ef83612e29565b92508282101561410257614101613864565b5b828203905092915050565b7f457863656564732061697264726f7020737570706c7900000000000000000000600082015250565b6000614143601683612f7c565b915061414e8261410d565b602082019050919050565b6000602082019050818103600083015261417281614136565b9050919050565b7f45786365656473207075626c69634d696e74546f74616c537570706c7920737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b60006141d5602483612f7c565b91506141e082614179565b604082019050919050565b60006020820190508181036000830152614204816141c8565b9050919050565b7f416c72656164792050757263686173656420322074696d657320200000000000600082015250565b6000614241601b83612f7c565b915061424c8261420b565b602082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142ad601983612f7c565b91506142b882614277565b602082019050919050565b600060208201905081810360008301526142dc816142a0565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061433f603283612f7c565b915061434a826142e3565b604082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b60006143ab601883612f7c565b91506143b682614375565b602082019050919050565b600060208201905081810360008301526143da8161439e565b9050919050565b7f4578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b6000614417601483612f7c565b9150614422826143e1565b602082019050919050565b600060208201905081810360008301526144468161440a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061448782612e29565b915061449283612e29565b9250826144a2576144a161444d565b5b828204905092915050565b60006144b882612e29565b91506144c383612e29565b9250826144d3576144d261444d565b5b828206905092915050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061453a602e83612f7c565b9150614545826144de565b604082019050919050565b600060208201905081810360008301526145698161452d565b9050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614580565b6145c78683614580565b95508019841693508086168417925050509392505050565b6000819050919050565b60006146046145ff6145fa84612e29565b6145df565b612e29565b9050919050565b6000819050919050565b61461e836145e9565b61463261462a8261460b565b84845461458d565b825550505050565b600090565b61464761463a565b614652818484614615565b505050565b5b818110156146765761466b60008261463f565b600181019050614658565b5050565b601f8211156146bb5761468c81613ef9565b61469584614570565b810160208510156146a4578190505b6146b86146b085614570565b830182614657565b50505b505050565b600082821c905092915050565b60006146de600019846008026146c0565b1980831691505092915050565b60006146f783836146cd565b9150826002028217905092915050565b61471082612f71565b67ffffffffffffffff81111561472957614728613282565b5b614733825461364e565b61473e82828561467a565b600060209050601f831160018114614771576000841561475f578287015190505b61476985826146eb565b8655506147d1565b601f19841661477f86613ef9565b60005b828110156147a757848901518255600182019150602085019450602081019050614782565b868310156147c457848901516147c0601f8916826146cd565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b6000614800826147d9565b61480a81856147e4565b935061481a818560208601612f8d565b61482381612fc0565b840191505092915050565b6000608082019050614843600083018761305e565b614850602083018661305e565b61485d6040830185612f47565b818103606083015261486f81846147f5565b905095945050505050565b60008151905061488981612eb8565b92915050565b6000602082840312156148a5576148a4612e1f565b5b60006148b38482850161487a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006148f2602083612f7c565b91506148fd826148bc565b602082019050919050565b60006020820190508181036000830152614921816148e5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061495e601c83612f7c565b915061496982614928565b602082019050919050565b6000602082019050818103600083015261498d81614951565b905091905056fea26469706673582212207ff4def597e19653e2292f8f646fa20ddf02818535b531bc6fd4e3d74240642664736f6c634300080f0033

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.