ETH Price: $3,493.05 (+7.61%)
Gas: 6 Gwei

Token

Sundust (SD)
 

Overview

Max Total Supply

397 SD

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0x13b.eth
Balance
1 SD
0x73beaa2dd24ada65df6da284729558afdd8105ba
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:
Sundust

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Sundust.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.4;
pragma abicoder v2;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import './ERC721B.sol';
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

  /*Mint Info:
  One Free Mint per Wallet
  Price for any mints after: 0.0005 eth
  Max Mints Per Wallet: 5
  Supply: 10000
  */
  contract Sundust is ERC721B, Ownable {
    using Strings for uint256;
    string public baseURI = "";
    string public unrevealedURI = "";
    bool public isSaleActive = false;
    mapping(address => bool) private _freeMintClaimed;
    mapping(address => uint256) private _mintsClaimed;
    uint256 public constant MAX_TOKENS = 10000;
    uint256 public tokenPrice = 500000000000000;
    uint256 public constant maxPerWallet = 5;
    bool public isRevealed = false;

    using SafeMath for uint256;
    using Strings for uint256;
    uint256 public devReserve = 5;
    event NFTMINTED(uint256 tokenId, address owner);

    constructor() ERC721B("Sundust", "SD") {}
     
     function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
      }
    
    function _unrevealedURI() internal view virtual returns (string memory) {
        return unrevealedURI;
      }
      
      function _price() internal view virtual returns (uint256) {
        return tokenPrice;
      }

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

    function setUnrevealedURI(string memory _newUnrevealedURI) public onlyOwner {
      unrevealedURI = _newUnrevealedURI;
      }

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

      function setPrice(uint256 _newTokenPrice) public onlyOwner {
      tokenPrice = _newTokenPrice;
      }

    function activateSale() external onlyOwner {
        isSaleActive = !isSaleActive;
      }

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }
    
    function Withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{ value: address(this).balance }("");
    require(os);
      }

    function reserveTokens(address dev, uint256 reserveAmount)
    external
    onlyOwner
      {
        require(
        reserveAmount > 0 && reserveAmount <= devReserve,
          "Dev reserve empty"
        );
        totalSupply().add(1);
        _mint(dev, reserveAmount);
      }
    function mintMultiplePublic(address to, uint256 quantity) external payable {
        require(isSaleActive, "Sale not Active");
        require(
          quantity > 0 && quantity <= maxPerWallet,
          "Can Mint only 5 per Wallet"
        );
        require(
          totalSupply().add(quantity) <= MAX_TOKENS,
          "Mint is going over max per transaction"
        );
        require(msg.value >= tokenPrice.mul(quantity),
         "0.0005 eth per token"
        );
        require(
          _mintsClaimed[msg.sender].add(quantity) <= maxPerWallet,
          "Only 5 mints per wallet, priced at 0.0005 eth"
        );
        _mintsClaimed[msg.sender] += quantity;
        _mint(to, quantity);
        }

    function freeMintClaim(address to) external payable {
      require(isSaleActive, "Sale not Active");
      require(
      totalSupply().add(1) <= MAX_TOKENS,
      "Mint is going over supply"
      );
        require(
        _freeMintClaimed[msg.sender] != true,
        "Only one Free Mint per Wallet"
      );
      _freeMintClaimed[msg.sender] = true;
      _mint(to, 1);
        }
     function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
      {
        require(
          _exists(tokenId),
          "ERC721Metadata: URI query for nonexistent token"
        );
    
        string memory currentBaseURI = _baseURI();
        string memory CurrentUnrevealedURI = _unrevealedURI();
        
        if (isRevealed == false) {
          return
            CurrentUnrevealedURI;
        }




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

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 7 : ERC721B.sol
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error UnableGetTokenOwnerByIndex();
error URIQueryForNonexistentToken();

/**
 * Updated, minimalist and gas efficient version of OpenZeppelins ERC721 contract.
 * Includes the Metadata and  Enumerable extension.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 * Does not support burning tokens
 *
 * @author beskay0x
 * Credits: chiru-labs, solmate, transmissions11, nftchance, squeebo_nft and others
 */

abstract contract ERC721B {
    /*///////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 indexed id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*///////////////////////////////////////////////////////////////
                          METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 tokenId) public view virtual returns (string memory);

    /*///////////////////////////////////////////////////////////////
                          ERC721 STORAGE
    //////////////////////////////////////////////////////////////*/

    // Array which maps token ID to address (index is tokenID)
    address[] internal _owners;

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

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

    /*///////////////////////////////////////////////////////////////
                              CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
    }

    /*///////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x780e9d63 || // ERC165 Interface ID for ERC721Enumerable
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*///////////////////////////////////////////////////////////////
                       ERC721ENUMERABLE LOGIC
    //////////////////////////////////////////////////////////////*/

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * Dont call this function on chain from another smart contract, since it can become quite expensive
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256 tokenId) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();

        uint256 count;
        uint256 qty = _owners.length;
        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (tokenId; tokenId < qty; tokenId++) {
                if (owner == ownerOf(tokenId)) {
                    if (count == index) return tokenId;
                    else count++;
                }
            }
        }

        revert UnableGetTokenOwnerByIndex();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /*///////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @dev Iterates through _owners array, returns balance of address
     * It is not recommended to call this function from another smart contract
     * as it can become quite expensive -- call this function off chain instead.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        uint256 count;
        uint256 qty = _owners.length;
        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (uint256 i; i < qty; i++) {
                if (owner == ownerOf(i)) {
                    count++;
                }
            }
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (tokenId; ; tokenId++) {
                if (_owners[tokenId] != address(0)) {
                    return _owners[tokenId];
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        address owner = ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (msg.sender != owner && !isApprovedForAll(owner, msg.sender)) revert ApprovalCallerNotOwnerNorApproved();

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        if (operator == msg.sender) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();
        if (ownerOf(tokenId) != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        bool isApprovedOrOwner = (msg.sender == from ||
            msg.sender == getApproved(tokenId) ||
            isApprovedForAll(from, msg.sender));
        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        // delete token approvals from previous owner
        delete _tokenApprovals[tokenId];
        _owners[tokenId] = to;

        // if token ID below transferred one isnt set, set it to previous owner
        // if tokenid is zero, skip this to prevent underflow
        if (tokenId > 0 && _owners[tokenId - 1] == address(0)) {
            _owners[tokenId - 1] = from;
        }

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes memory data
    ) public virtual {
        transferFrom(from, to, id);

        if (!_checkOnERC721Received(from, to, id, data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @dev Returns whether `tokenId` exists.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length;
    }

    /**
     * @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.code.length == 0) return true;

        try IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer();

            assembly {
                revert(add(32, reason), mload(reason))
            }
        }
    }

    /*///////////////////////////////////////////////////////////////
                       INTERNAL MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @dev check if contract confirms token transfer, if not - reverts
     * unlike the standard ERC721 implementation this is only called once per mint,
     * no matter how many tokens get minted, since it is useless to check this
     * requirement several times -- if the contract confirms one token,
     * it will confirm all additional ones too.
     * This saves us around 5k gas per additional mint
     */
    function _safeMint(address to, uint256 qty) internal virtual {
        _safeMint(to, qty, '');
    }

    function _safeMint(
        address to,
        uint256 qty,
        bytes memory data
    ) internal virtual {
        _mint(to, qty);

        if (!_checkOnERC721Received(address(0), to, _owners.length - 1, data))
            revert TransferToNonERC721ReceiverImplementer();
    }

    function _mint(address to, uint256 qty) internal virtual {
        if (to == address(0)) revert MintToZeroAddress();
        if (qty == 0) revert MintZeroQuantity();

        uint256 _currentIndex = _owners.length;

        // Cannot realistically overflow, since we are using uint256
        unchecked {
            for (uint256 i; i < qty - 1; i++) {
                _owners.push();
                emit Transfer(address(0), to, _currentIndex + i);
            }
        }

        // set last index to receiver
        _owners.push(to);
        emit Transfer(address(0), to, _currentIndex + (qty - 1));
    }
}

File 4 of 7 : 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 7 : 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);
    }
}

File 6 of 7 : 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 7 of 7 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"inputs":[],"name":"UnableGetTokenOwnerByIndex","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"NFTMINTED","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"freeMintClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMultiplePublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev","type":"address"},{"internalType":"uint256","name":"reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokenPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260405180602001604052806000815250600690805190602001906200002b9291906200023c565b506040518060200160405280600081525060079080519060200190620000539291906200023c565b506000600860006101000a81548160ff0219169083151502179055506601c6bf52634000600b556000600c60006101000a81548160ff0219169083151502179055506005600d55348015620000a757600080fd5b506040518060400160405280600781526020017f53756e64757374000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f534400000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200012c9291906200023c565b508060019080519060200190620001459291906200023c565b505050620001686200015c6200016e60201b60201c565b6200017660201b60201c565b62000351565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a90620002ec565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b600060028204905060018216806200030557607f821691505b602082108114156200031c576200031b62000322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61373e80620003616000396000f3fe60806040526004361061021a5760003560e01c80637035bf1811610123578063a475b5dd116100ab578063e985e9c51161006f578063e985e9c514610784578063f2fde38b146107c1578063f47c84c5146107ea578063fcd2a42714610815578063fe2c7fee146108405761021a565b8063a475b5dd146106d4578063b88d4fde146106eb578063c721f08d14610714578063c87b56dd1461072b578063d31ccdfa146107685761021a565b80637ff9b596116100f25780637ff9b596146106015780638da5cb5b1461062c57806391b7f5ed1461065757806395d89b4114610680578063a22cb465146106ab5761021a565b80637035bf181461055957806370a0823114610584578063715018a6146105c157806378cf19e9146105d85761021a565b8063453c2310116101a657806355f804b31161017557806355f804b314610493578063564566a8146104bc57806357ea89b6146104e75780636352211e146104f15780636c0360eb1461052e5761021a565b8063453c2310146103c35780634f558e79146103ee5780634f6ccce71461042b57806354214f69146104685761021a565b806318160ddd116101ed57806318160ddd146102ed5780631ac2226e1461031857806323b872dd146103345780632f745c591461035d57806342842e0e1461039a5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906129ce565b610869565b6040516102539190612de0565b60405180910390f35b34801561026857600080fd5b5061027161092b565b60405161027e9190612dfb565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612a71565b6109b9565b6040516102bb9190612d79565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061298e565b610a35565b005b3480156102f957600080fd5b50610302610bd4565b60405161030f9190612f7d565b60405180910390f35b610332600480360381019061032d919061280b565b610be1565b005b34801561034057600080fd5b5061035b60048036038101906103569190612878565b610d89565b005b34801561036957600080fd5b50610384600480360381019061037f919061298e565b61113e565b6040516103919190612f7d565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612878565b61122e565b005b3480156103cf57600080fd5b506103d861124e565b6040516103e59190612f7d565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612a71565b611253565b6040516104229190612de0565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612a71565b611265565b60405161045f9190612f7d565b60405180910390f35b34801561047457600080fd5b5061047d6112af565b60405161048a9190612de0565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612a28565b6112c2565b005b3480156104c857600080fd5b506104d16112e4565b6040516104de9190612de0565b60405180910390f35b6104ef6112f7565b005b3480156104fd57600080fd5b5061051860048036038101906105139190612a71565b61137f565b6040516105259190612d79565b60405180910390f35b34801561053a57600080fd5b5061054361148b565b6040516105509190612dfb565b60405180910390f35b34801561056557600080fd5b5061056e611519565b60405161057b9190612dfb565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a6919061280b565b6115a7565b6040516105b89190612f7d565b60405180910390f35b3480156105cd57600080fd5b506105d6611682565b005b3480156105e457600080fd5b506105ff60048036038101906105fa919061298e565b611696565b005b34801561060d57600080fd5b50610616611719565b6040516106239190612f7d565b60405180910390f35b34801561063857600080fd5b5061064161171f565b60405161064e9190612d79565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190612a71565b611749565b005b34801561068c57600080fd5b5061069561175b565b6040516106a29190612dfb565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061294e565b6117e9565b005b3480156106e057600080fd5b506106e961194c565b005b3480156106f757600080fd5b50610712600480360381019061070d91906128cb565b611971565b005b34801561072057600080fd5b506107296119c4565b005b34801561073757600080fd5b50610752600480360381019061074d9190612a71565b6119f8565b60405161075f9190612dfb565b60405180910390f35b610782600480360381019061077d919061298e565b611ad3565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612838565b611d20565b6040516107b89190612de0565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e3919061280b565b611db4565b005b3480156107f657600080fd5b506107ff611e38565b60405161080c9190612f7d565b60405180910390f35b34801561082157600080fd5b5061082a611e3e565b6040516108379190612f7d565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190612a28565b611e44565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f4575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461093890613238565b80601f016020809104026020016040519081016040528092919081815260200182805461096490613238565b80156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b505050505081565b60006109c482611e66565b6109fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a408261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610aeb5750610ae98133611d20565b155b15610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600280549050905090565b600860009054906101000a900460ff16610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612edd565b60405180910390fd5b612710610c4e6001610c40610bd4565b611e7790919063ffffffff16565b1115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690612e7d565b60405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90612f5d565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d86816001611e8d565b50565b610d9281611e66565b610dc8576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610de88261137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e35576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f0b5750610edc826109b9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610f1c5750610f1b8433611d20565b5b905080610f55576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610fa057610f9f6133a2565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008211801561106e5750600073ffffffffffffffffffffffffffffffffffffffff16600260018461101a919061314e565b8154811061102b5761102a6133a2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156110dd57836002600184611083919061314e565b81548110611094576110936133a2565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000611149836115a7565b8210611181576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b808310156111f65761119e8361137f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111e957838214156111e0575050611228565b81806001019250505b828060010193505061118d565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b61124983838360405180602001604052806000815250611971565b505050565b600581565b600061125e82611e66565b9050919050565b600061126f610bd4565b82106112a7576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600c60009054906101000a900460ff1681565b6112ca6120b6565b80600690805190602001906112e092919061261f565b5050565b600860009054906101000a900460ff1681565b6112ff6120b6565b600061130961171f565b73ffffffffffffffffffffffffffffffffffffffff164760405161132c90612d64565b60006040518083038185875af1925050503d8060008114611369576040519150601f19603f3d011682016040523d82523d6000602084013e61136e565b606091505b505090508061137c57600080fd5b50565b600061138a82611e66565b6113c0576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff16600283815481106113ed576113ec6133a2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114795760028281548110611447576114466133a2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611486565b81806001019250506113c1565b919050565b6006805461149890613238565b80601f01602080910402602001604051908101604052809291908181526020018280546114c490613238565b80156115115780601f106114e657610100808354040283529160200191611511565b820191906000526020600020905b8154815290600101906020018083116114f457829003601f168201915b505050505081565b6007805461152690613238565b80601f016020809104026020016040519081016040528092919081815260200182805461155290613238565b801561159f5780601f106115745761010080835404028352916020019161159f565b820191906000526020600020905b81548152906001019060200180831161158257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b818110156116775761162e8161137f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561166a5782806001019350505b808060010191505061161d565b508192505050919050565b61168a6120b6565b6116946000612134565b565b61169e6120b6565b6000811180156116b05750600d548111155b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612f3d565b60405180910390fd5b61170a60016116fc610bd4565b611e7790919063ffffffff16565b506117158282611e8d565b5050565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117516120b6565b80600b8190555050565b6001805461176890613238565b80601f016020809104026020016040519081016040528092919081815260200182805461179490613238565b80156117e15780601f106117b6576101008083540402835291602001916117e1565b820191906000526020600020905b8154815290600101906020018083116117c457829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119409190612de0565b60405180910390a35050565b6119546120b6565b6001600c60006101000a81548160ff021916908315150217905550565b61197c848484610d89565b611988848484846121fa565b6119be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6119cc6120b6565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6060611a0382611e66565b611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990612ebd565b60405180910390fd5b6000611a4c61237c565b90506000611a5861240e565b905060001515600c60009054906101000a900460ff1615151415611a80578092505050611ace565b6000825111611a9e5760405180602001604052806000815250611ac9565b81611aa8856124a0565b604051602001611ab9929190612d35565b6040516020818303038152906040525b925050505b919050565b600860009054906101000a900460ff16611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990612edd565b60405180910390fd5b600081118015611b33575060058111155b611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990612e5d565b60405180910390fd5b612710611b8f82611b81610bd4565b611e7790919063ffffffff16565b1115611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790612f1d565b60405180910390fd5b611be581600b5461260190919063ffffffff16565b341015611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90612e3d565b60405180910390fd5b6005611c7b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e7790919063ffffffff16565b1115611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390612efd565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b919061306d565b92505081905550611d1c8282611e8d565b5050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dbc6120b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390612e1d565b60405180910390fd5b611e3581612134565b50565b61271081565b600d5481565b611e4c6120b6565b8060079080519060200190611e6292919061261f565b5050565b600060028054905082109050919050565b60008183611e85919061306d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611f2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611fda576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611f3c565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018261204b919061314e565b81612056919061306d565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120be612617565b73ffffffffffffffffffffffffffffffffffffffff166120dc61171f565b73ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990612e9d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b14156122245760019050612374565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016122639493929190612d94565b602060405180830381600087803b15801561227d57600080fd5b505af19250505080156122ae57506040513d601f19601f820116820180604052508101906122ab91906129fb565b60015b612328573d80600081146122de576040519150601f19603f3d011682016040523d82523d6000602084013e6122e3565b606091505b50600081511415612320576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606006805461238b90613238565b80601f01602080910402602001604051908101604052809291908181526020018280546123b790613238565b80156124045780601f106123d957610100808354040283529160200191612404565b820191906000526020600020905b8154815290600101906020018083116123e757829003601f168201915b5050505050905090565b60606007805461241d90613238565b80601f016020809104026020016040519081016040528092919081815260200182805461244990613238565b80156124965780601f1061246b57610100808354040283529160200191612496565b820191906000526020600020905b81548152906001019060200180831161247957829003601f168201915b5050505050905090565b606060008214156124e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125fc565b600082905060005b6000821461251a5780806125039061329b565b915050600a8261251391906130c3565b91506124f0565b60008167ffffffffffffffff811115612536576125356133d1565b5b6040519080825280601f01601f1916602001820160405280156125685781602001600182028036833780820191505090505b5090505b600085146125f557600182612581919061314e565b9150600a8561259091906132e4565b603061259c919061306d565b60f81b8183815181106125b2576125b16133a2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ee91906130c3565b945061256c565b8093505050505b919050565b6000818361260f91906130f4565b905092915050565b600033905090565b82805461262b90613238565b90600052602060002090601f01602090048101928261264d5760008555612694565b82601f1061266657805160ff1916838001178555612694565b82800160010185558215612694579182015b82811115612693578251825591602001919060010190612678565b5b5090506126a191906126a5565b5090565b5b808211156126be5760008160009055506001016126a6565b5090565b60006126d56126d084612fbd565b612f98565b9050828152602081018484840111156126f1576126f0613405565b5b6126fc8482856131f6565b509392505050565b600061271761271284612fee565b612f98565b90508281526020810184848401111561273357612732613405565b5b61273e8482856131f6565b509392505050565b600081359050612755816136ac565b92915050565b60008135905061276a816136c3565b92915050565b60008135905061277f816136da565b92915050565b600081519050612794816136da565b92915050565b600082601f8301126127af576127ae613400565b5b81356127bf8482602086016126c2565b91505092915050565b600082601f8301126127dd576127dc613400565b5b81356127ed848260208601612704565b91505092915050565b600081359050612805816136f1565b92915050565b6000602082840312156128215761282061340f565b5b600061282f84828501612746565b91505092915050565b6000806040838503121561284f5761284e61340f565b5b600061285d85828601612746565b925050602061286e85828601612746565b9150509250929050565b6000806000606084860312156128915761289061340f565b5b600061289f86828701612746565b93505060206128b086828701612746565b92505060406128c1868287016127f6565b9150509250925092565b600080600080608085870312156128e5576128e461340f565b5b60006128f387828801612746565b945050602061290487828801612746565b9350506040612915878288016127f6565b925050606085013567ffffffffffffffff8111156129365761293561340a565b5b6129428782880161279a565b91505092959194509250565b600080604083850312156129655761296461340f565b5b600061297385828601612746565b92505060206129848582860161275b565b9150509250929050565b600080604083850312156129a5576129a461340f565b5b60006129b385828601612746565b92505060206129c4858286016127f6565b9150509250929050565b6000602082840312156129e4576129e361340f565b5b60006129f284828501612770565b91505092915050565b600060208284031215612a1157612a1061340f565b5b6000612a1f84828501612785565b91505092915050565b600060208284031215612a3e57612a3d61340f565b5b600082013567ffffffffffffffff811115612a5c57612a5b61340a565b5b612a68848285016127c8565b91505092915050565b600060208284031215612a8757612a8661340f565b5b6000612a95848285016127f6565b91505092915050565b612aa781613182565b82525050565b612ab681613194565b82525050565b6000612ac78261301f565b612ad18185613035565b9350612ae1818560208601613205565b612aea81613414565b840191505092915050565b6000612b008261302a565b612b0a8185613051565b9350612b1a818560208601613205565b612b2381613414565b840191505092915050565b6000612b398261302a565b612b438185613062565b9350612b53818560208601613205565b80840191505092915050565b6000612b6c602683613051565b9150612b7782613425565b604082019050919050565b6000612b8f601483613051565b9150612b9a82613474565b602082019050919050565b6000612bb2601a83613051565b9150612bbd8261349d565b602082019050919050565b6000612bd5601983613051565b9150612be0826134c6565b602082019050919050565b6000612bf8600583613062565b9150612c03826134ef565b600582019050919050565b6000612c1b602083613051565b9150612c2682613518565b602082019050919050565b6000612c3e602f83613051565b9150612c4982613541565b604082019050919050565b6000612c61600f83613051565b9150612c6c82613590565b602082019050919050565b6000612c84600083613046565b9150612c8f826135b9565b600082019050919050565b6000612ca7602d83613051565b9150612cb2826135bc565b604082019050919050565b6000612cca602683613051565b9150612cd58261360b565b604082019050919050565b6000612ced601183613051565b9150612cf88261365a565b602082019050919050565b6000612d10601d83613051565b9150612d1b82613683565b602082019050919050565b612d2f816131ec565b82525050565b6000612d418285612b2e565b9150612d4d8284612b2e565b9150612d5882612beb565b91508190509392505050565b6000612d6f82612c77565b9150819050919050565b6000602082019050612d8e6000830184612a9e565b92915050565b6000608082019050612da96000830187612a9e565b612db66020830186612a9e565b612dc36040830185612d26565b8181036060830152612dd58184612abc565b905095945050505050565b6000602082019050612df56000830184612aad565b92915050565b60006020820190508181036000830152612e158184612af5565b905092915050565b60006020820190508181036000830152612e3681612b5f565b9050919050565b60006020820190508181036000830152612e5681612b82565b9050919050565b60006020820190508181036000830152612e7681612ba5565b9050919050565b60006020820190508181036000830152612e9681612bc8565b9050919050565b60006020820190508181036000830152612eb681612c0e565b9050919050565b60006020820190508181036000830152612ed681612c31565b9050919050565b60006020820190508181036000830152612ef681612c54565b9050919050565b60006020820190508181036000830152612f1681612c9a565b9050919050565b60006020820190508181036000830152612f3681612cbd565b9050919050565b60006020820190508181036000830152612f5681612ce0565b9050919050565b60006020820190508181036000830152612f7681612d03565b9050919050565b6000602082019050612f926000830184612d26565b92915050565b6000612fa2612fb3565b9050612fae828261326a565b919050565b6000604051905090565b600067ffffffffffffffff821115612fd857612fd76133d1565b5b612fe182613414565b9050602081019050919050565b600067ffffffffffffffff821115613009576130086133d1565b5b61301282613414565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613078826131ec565b9150613083836131ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130b8576130b7613315565b5b828201905092915050565b60006130ce826131ec565b91506130d9836131ec565b9250826130e9576130e8613344565b5b828204905092915050565b60006130ff826131ec565b915061310a836131ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561314357613142613315565b5b828202905092915050565b6000613159826131ec565b9150613164836131ec565b92508282101561317757613176613315565b5b828203905092915050565b600061318d826131cc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613223578082015181840152602081019050613208565b83811115613232576000848401525b50505050565b6000600282049050600182168061325057607f821691505b6020821081141561326457613263613373565b5b50919050565b61327382613414565b810181811067ffffffffffffffff82111715613292576132916133d1565b5b80604052505050565b60006132a6826131ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132d9576132d8613315565b5b600182019050919050565b60006132ef826131ec565b91506132fa836131ec565b92508261330a57613309613344565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f302e30303035206574682070657220746f6b656e000000000000000000000000600082015250565b7f43616e204d696e74206f6e6c792035207065722057616c6c6574000000000000600082015250565b7f4d696e7420697320676f696e67206f76657220737570706c7900000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4f6e6c792035206d696e7473207065722077616c6c65742c207072696365642060008201527f617420302e303030352065746800000000000000000000000000000000000000602082015250565b7f4d696e7420697320676f696e67206f766572206d617820706572207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f446576207265736572766520656d707479000000000000000000000000000000600082015250565b7f4f6e6c79206f6e652046726565204d696e74207065722057616c6c6574000000600082015250565b6136b581613182565b81146136c057600080fd5b50565b6136cc81613194565b81146136d757600080fd5b50565b6136e3816131a0565b81146136ee57600080fd5b50565b6136fa816131ec565b811461370557600080fd5b5056fea2646970667358221220063d2fd5b977faff41ceba9bf69237e99a433896ffd11f6dee396fd9638693cb64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637035bf1811610123578063a475b5dd116100ab578063e985e9c51161006f578063e985e9c514610784578063f2fde38b146107c1578063f47c84c5146107ea578063fcd2a42714610815578063fe2c7fee146108405761021a565b8063a475b5dd146106d4578063b88d4fde146106eb578063c721f08d14610714578063c87b56dd1461072b578063d31ccdfa146107685761021a565b80637ff9b596116100f25780637ff9b596146106015780638da5cb5b1461062c57806391b7f5ed1461065757806395d89b4114610680578063a22cb465146106ab5761021a565b80637035bf181461055957806370a0823114610584578063715018a6146105c157806378cf19e9146105d85761021a565b8063453c2310116101a657806355f804b31161017557806355f804b314610493578063564566a8146104bc57806357ea89b6146104e75780636352211e146104f15780636c0360eb1461052e5761021a565b8063453c2310146103c35780634f558e79146103ee5780634f6ccce71461042b57806354214f69146104685761021a565b806318160ddd116101ed57806318160ddd146102ed5780631ac2226e1461031857806323b872dd146103345780632f745c591461035d57806342842e0e1461039a5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906129ce565b610869565b6040516102539190612de0565b60405180910390f35b34801561026857600080fd5b5061027161092b565b60405161027e9190612dfb565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612a71565b6109b9565b6040516102bb9190612d79565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061298e565b610a35565b005b3480156102f957600080fd5b50610302610bd4565b60405161030f9190612f7d565b60405180910390f35b610332600480360381019061032d919061280b565b610be1565b005b34801561034057600080fd5b5061035b60048036038101906103569190612878565b610d89565b005b34801561036957600080fd5b50610384600480360381019061037f919061298e565b61113e565b6040516103919190612f7d565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612878565b61122e565b005b3480156103cf57600080fd5b506103d861124e565b6040516103e59190612f7d565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612a71565b611253565b6040516104229190612de0565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612a71565b611265565b60405161045f9190612f7d565b60405180910390f35b34801561047457600080fd5b5061047d6112af565b60405161048a9190612de0565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612a28565b6112c2565b005b3480156104c857600080fd5b506104d16112e4565b6040516104de9190612de0565b60405180910390f35b6104ef6112f7565b005b3480156104fd57600080fd5b5061051860048036038101906105139190612a71565b61137f565b6040516105259190612d79565b60405180910390f35b34801561053a57600080fd5b5061054361148b565b6040516105509190612dfb565b60405180910390f35b34801561056557600080fd5b5061056e611519565b60405161057b9190612dfb565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a6919061280b565b6115a7565b6040516105b89190612f7d565b60405180910390f35b3480156105cd57600080fd5b506105d6611682565b005b3480156105e457600080fd5b506105ff60048036038101906105fa919061298e565b611696565b005b34801561060d57600080fd5b50610616611719565b6040516106239190612f7d565b60405180910390f35b34801561063857600080fd5b5061064161171f565b60405161064e9190612d79565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190612a71565b611749565b005b34801561068c57600080fd5b5061069561175b565b6040516106a29190612dfb565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061294e565b6117e9565b005b3480156106e057600080fd5b506106e961194c565b005b3480156106f757600080fd5b50610712600480360381019061070d91906128cb565b611971565b005b34801561072057600080fd5b506107296119c4565b005b34801561073757600080fd5b50610752600480360381019061074d9190612a71565b6119f8565b60405161075f9190612dfb565b60405180910390f35b610782600480360381019061077d919061298e565b611ad3565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612838565b611d20565b6040516107b89190612de0565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e3919061280b565b611db4565b005b3480156107f657600080fd5b506107ff611e38565b60405161080c9190612f7d565b60405180910390f35b34801561082157600080fd5b5061082a611e3e565b6040516108379190612f7d565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190612a28565b611e44565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f4575063780e9d6360e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461093890613238565b80601f016020809104026020016040519081016040528092919081815260200182805461096490613238565b80156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b505050505081565b60006109c482611e66565b6109fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a408261137f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610aeb5750610ae98133611d20565b155b15610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826003600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600280549050905090565b600860009054906101000a900460ff16610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790612edd565b60405180910390fd5b612710610c4e6001610c40610bd4565b611e7790919063ffffffff16565b1115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690612e7d565b60405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a90612f5d565b60405180910390fd5b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d86816001611e8d565b50565b610d9281611e66565b610dc8576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16610de88261137f565b73ffffffffffffffffffffffffffffffffffffffff1614610e35576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610f0b5750610edc826109b9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610f1c5750610f1b8433611d20565b5b905080610f55576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558260028381548110610fa057610f9f6133a2565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008211801561106e5750600073ffffffffffffffffffffffffffffffffffffffff16600260018461101a919061314e565b8154811061102b5761102a6133a2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b156110dd57836002600184611083919061314e565b81548110611094576110936133a2565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b6000611149836115a7565b8210611181576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060028054905090505b808310156111f65761119e8361137f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111e957838214156111e0575050611228565b81806001019250505b828060010193505061118d565b6040517f7339954700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b61124983838360405180602001604052806000815250611971565b505050565b600581565b600061125e82611e66565b9050919050565b600061126f610bd4565b82106112a7576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600c60009054906101000a900460ff1681565b6112ca6120b6565b80600690805190602001906112e092919061261f565b5050565b600860009054906101000a900460ff1681565b6112ff6120b6565b600061130961171f565b73ffffffffffffffffffffffffffffffffffffffff164760405161132c90612d64565b60006040518083038185875af1925050503d8060008114611369576040519150601f19603f3d011682016040523d82523d6000602084013e61136e565b606091505b505090508061137c57600080fd5b50565b600061138a82611e66565b6113c0576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff16600283815481106113ed576113ec6133a2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114795760028281548110611447576114466133a2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050611486565b81806001019250506113c1565b919050565b6006805461149890613238565b80601f01602080910402602001604051908101604052809291908181526020018280546114c490613238565b80156115115780601f106114e657610100808354040283529160200191611511565b820191906000526020600020905b8154815290600101906020018083116114f457829003601f168201915b505050505081565b6007805461152690613238565b80601f016020809104026020016040519081016040528092919081815260200182805461155290613238565b801561159f5780601f106115745761010080835404028352916020019161159f565b820191906000526020600020905b81548152906001019060200180831161158257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080600280549050905060005b818110156116775761162e8161137f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561166a5782806001019350505b808060010191505061161d565b508192505050919050565b61168a6120b6565b6116946000612134565b565b61169e6120b6565b6000811180156116b05750600d548111155b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612f3d565b60405180910390fd5b61170a60016116fc610bd4565b611e7790919063ffffffff16565b506117158282611e8d565b5050565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117516120b6565b80600b8190555050565b6001805461176890613238565b80601f016020809104026020016040519081016040528092919081815260200182805461179490613238565b80156117e15780601f106117b6576101008083540402835291602001916117e1565b820191906000526020600020905b8154815290600101906020018083116117c457829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561184f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119409190612de0565b60405180910390a35050565b6119546120b6565b6001600c60006101000a81548160ff021916908315150217905550565b61197c848484610d89565b611988848484846121fa565b6119be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6119cc6120b6565b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6060611a0382611e66565b611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990612ebd565b60405180910390fd5b6000611a4c61237c565b90506000611a5861240e565b905060001515600c60009054906101000a900460ff1615151415611a80578092505050611ace565b6000825111611a9e5760405180602001604052806000815250611ac9565b81611aa8856124a0565b604051602001611ab9929190612d35565b6040516020818303038152906040525b925050505b919050565b600860009054906101000a900460ff16611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990612edd565b60405180910390fd5b600081118015611b33575060058111155b611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990612e5d565b60405180910390fd5b612710611b8f82611b81610bd4565b611e7790919063ffffffff16565b1115611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790612f1d565b60405180910390fd5b611be581600b5461260190919063ffffffff16565b341015611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e90612e3d565b60405180910390fd5b6005611c7b82600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e7790919063ffffffff16565b1115611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390612efd565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b919061306d565b92505081905550611d1c8282611e8d565b5050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dbc6120b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390612e1d565b60405180910390fd5b611e3581612134565b50565b61271081565b600d5481565b611e4c6120b6565b8060079080519060200190611e6292919061261f565b5050565b600060028054905082109050919050565b60008183611e85919061306d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811415611f2f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600280549050905060005b60018303811015611fda576002600181600181540180825580915050039060005260206000200160009054906101000a9050508082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48080600101915050611f3c565b506002839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018261204b919061314e565b81612056919061306d565b8373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6120be612617565b73ffffffffffffffffffffffffffffffffffffffff166120dc61171f565b73ffffffffffffffffffffffffffffffffffffffff1614612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990612e9d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b14156122245760019050612374565b8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02338786866040518563ffffffff1660e01b81526004016122639493929190612d94565b602060405180830381600087803b15801561227d57600080fd5b505af19250505080156122ae57506040513d601f19601f820116820180604052508101906122ab91906129fb565b60015b612328573d80600081146122de576040519150601f19603f3d011682016040523d82523d6000602084013e6122e3565b606091505b50600081511415612320576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60606006805461238b90613238565b80601f01602080910402602001604051908101604052809291908181526020018280546123b790613238565b80156124045780601f106123d957610100808354040283529160200191612404565b820191906000526020600020905b8154815290600101906020018083116123e757829003601f168201915b5050505050905090565b60606007805461241d90613238565b80601f016020809104026020016040519081016040528092919081815260200182805461244990613238565b80156124965780601f1061246b57610100808354040283529160200191612496565b820191906000526020600020905b81548152906001019060200180831161247957829003601f168201915b5050505050905090565b606060008214156124e8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125fc565b600082905060005b6000821461251a5780806125039061329b565b915050600a8261251391906130c3565b91506124f0565b60008167ffffffffffffffff811115612536576125356133d1565b5b6040519080825280601f01601f1916602001820160405280156125685781602001600182028036833780820191505090505b5090505b600085146125f557600182612581919061314e565b9150600a8561259091906132e4565b603061259c919061306d565b60f81b8183815181106125b2576125b16133a2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125ee91906130c3565b945061256c565b8093505050505b919050565b6000818361260f91906130f4565b905092915050565b600033905090565b82805461262b90613238565b90600052602060002090601f01602090048101928261264d5760008555612694565b82601f1061266657805160ff1916838001178555612694565b82800160010185558215612694579182015b82811115612693578251825591602001919060010190612678565b5b5090506126a191906126a5565b5090565b5b808211156126be5760008160009055506001016126a6565b5090565b60006126d56126d084612fbd565b612f98565b9050828152602081018484840111156126f1576126f0613405565b5b6126fc8482856131f6565b509392505050565b600061271761271284612fee565b612f98565b90508281526020810184848401111561273357612732613405565b5b61273e8482856131f6565b509392505050565b600081359050612755816136ac565b92915050565b60008135905061276a816136c3565b92915050565b60008135905061277f816136da565b92915050565b600081519050612794816136da565b92915050565b600082601f8301126127af576127ae613400565b5b81356127bf8482602086016126c2565b91505092915050565b600082601f8301126127dd576127dc613400565b5b81356127ed848260208601612704565b91505092915050565b600081359050612805816136f1565b92915050565b6000602082840312156128215761282061340f565b5b600061282f84828501612746565b91505092915050565b6000806040838503121561284f5761284e61340f565b5b600061285d85828601612746565b925050602061286e85828601612746565b9150509250929050565b6000806000606084860312156128915761289061340f565b5b600061289f86828701612746565b93505060206128b086828701612746565b92505060406128c1868287016127f6565b9150509250925092565b600080600080608085870312156128e5576128e461340f565b5b60006128f387828801612746565b945050602061290487828801612746565b9350506040612915878288016127f6565b925050606085013567ffffffffffffffff8111156129365761293561340a565b5b6129428782880161279a565b91505092959194509250565b600080604083850312156129655761296461340f565b5b600061297385828601612746565b92505060206129848582860161275b565b9150509250929050565b600080604083850312156129a5576129a461340f565b5b60006129b385828601612746565b92505060206129c4858286016127f6565b9150509250929050565b6000602082840312156129e4576129e361340f565b5b60006129f284828501612770565b91505092915050565b600060208284031215612a1157612a1061340f565b5b6000612a1f84828501612785565b91505092915050565b600060208284031215612a3e57612a3d61340f565b5b600082013567ffffffffffffffff811115612a5c57612a5b61340a565b5b612a68848285016127c8565b91505092915050565b600060208284031215612a8757612a8661340f565b5b6000612a95848285016127f6565b91505092915050565b612aa781613182565b82525050565b612ab681613194565b82525050565b6000612ac78261301f565b612ad18185613035565b9350612ae1818560208601613205565b612aea81613414565b840191505092915050565b6000612b008261302a565b612b0a8185613051565b9350612b1a818560208601613205565b612b2381613414565b840191505092915050565b6000612b398261302a565b612b438185613062565b9350612b53818560208601613205565b80840191505092915050565b6000612b6c602683613051565b9150612b7782613425565b604082019050919050565b6000612b8f601483613051565b9150612b9a82613474565b602082019050919050565b6000612bb2601a83613051565b9150612bbd8261349d565b602082019050919050565b6000612bd5601983613051565b9150612be0826134c6565b602082019050919050565b6000612bf8600583613062565b9150612c03826134ef565b600582019050919050565b6000612c1b602083613051565b9150612c2682613518565b602082019050919050565b6000612c3e602f83613051565b9150612c4982613541565b604082019050919050565b6000612c61600f83613051565b9150612c6c82613590565b602082019050919050565b6000612c84600083613046565b9150612c8f826135b9565b600082019050919050565b6000612ca7602d83613051565b9150612cb2826135bc565b604082019050919050565b6000612cca602683613051565b9150612cd58261360b565b604082019050919050565b6000612ced601183613051565b9150612cf88261365a565b602082019050919050565b6000612d10601d83613051565b9150612d1b82613683565b602082019050919050565b612d2f816131ec565b82525050565b6000612d418285612b2e565b9150612d4d8284612b2e565b9150612d5882612beb565b91508190509392505050565b6000612d6f82612c77565b9150819050919050565b6000602082019050612d8e6000830184612a9e565b92915050565b6000608082019050612da96000830187612a9e565b612db66020830186612a9e565b612dc36040830185612d26565b8181036060830152612dd58184612abc565b905095945050505050565b6000602082019050612df56000830184612aad565b92915050565b60006020820190508181036000830152612e158184612af5565b905092915050565b60006020820190508181036000830152612e3681612b5f565b9050919050565b60006020820190508181036000830152612e5681612b82565b9050919050565b60006020820190508181036000830152612e7681612ba5565b9050919050565b60006020820190508181036000830152612e9681612bc8565b9050919050565b60006020820190508181036000830152612eb681612c0e565b9050919050565b60006020820190508181036000830152612ed681612c31565b9050919050565b60006020820190508181036000830152612ef681612c54565b9050919050565b60006020820190508181036000830152612f1681612c9a565b9050919050565b60006020820190508181036000830152612f3681612cbd565b9050919050565b60006020820190508181036000830152612f5681612ce0565b9050919050565b60006020820190508181036000830152612f7681612d03565b9050919050565b6000602082019050612f926000830184612d26565b92915050565b6000612fa2612fb3565b9050612fae828261326a565b919050565b6000604051905090565b600067ffffffffffffffff821115612fd857612fd76133d1565b5b612fe182613414565b9050602081019050919050565b600067ffffffffffffffff821115613009576130086133d1565b5b61301282613414565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613078826131ec565b9150613083836131ec565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130b8576130b7613315565b5b828201905092915050565b60006130ce826131ec565b91506130d9836131ec565b9250826130e9576130e8613344565b5b828204905092915050565b60006130ff826131ec565b915061310a836131ec565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561314357613142613315565b5b828202905092915050565b6000613159826131ec565b9150613164836131ec565b92508282101561317757613176613315565b5b828203905092915050565b600061318d826131cc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613223578082015181840152602081019050613208565b83811115613232576000848401525b50505050565b6000600282049050600182168061325057607f821691505b6020821081141561326457613263613373565b5b50919050565b61327382613414565b810181811067ffffffffffffffff82111715613292576132916133d1565b5b80604052505050565b60006132a6826131ec565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132d9576132d8613315565b5b600182019050919050565b60006132ef826131ec565b91506132fa836131ec565b92508261330a57613309613344565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f302e30303035206574682070657220746f6b656e000000000000000000000000600082015250565b7f43616e204d696e74206f6e6c792035207065722057616c6c6574000000000000600082015250565b7f4d696e7420697320676f696e67206f76657220737570706c7900000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206e6f74204163746976650000000000000000000000000000000000600082015250565b50565b7f4f6e6c792035206d696e7473207065722077616c6c65742c207072696365642060008201527f617420302e303030352065746800000000000000000000000000000000000000602082015250565b7f4d696e7420697320676f696e67206f766572206d617820706572207472616e7360008201527f616374696f6e0000000000000000000000000000000000000000000000000000602082015250565b7f446576207265736572766520656d707479000000000000000000000000000000600082015250565b7f4f6e6c79206f6e652046726565204d696e74207065722057616c6c6574000000600082015250565b6136b581613182565b81146136c057600080fd5b50565b6136cc81613194565b81146136d757600080fd5b50565b6136e3816131a0565b81146136ee57600080fd5b50565b6136fa816131ec565b811461370557600080fd5b5056fea2646970667358221220063d2fd5b977faff41ceba9bf69237e99a433896ffd11f6dee396fd9638693cb64736f6c63430008070033

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.