ETH Price: $3,399.83 (-1.40%)
Gas: 2 Gwei

Token

CosmodinosOmega (CosmodinosOmega)
 

Overview

Max Total Supply

8,888 CosmodinosOmega

Holders

4,131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CosmodinosOmega
0xB3bF133950d87F84508fC64735Ed40a4F2797Aa6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cosmodinos Omega is a collection of 8888 NFTs adorable dinos assembled from over 450 traits that exist on the Ethereum Blockchain. Designed by MBE & Valentin. Having a Cosmodino will grant you access to the Cosmoverse and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CosmodinosOmega

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

import "./ERC721A.sol";

contract CosmodinosOmega is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;

    uint256 public immutable collectionSize = 8888;
    uint256 public immutable amountForDevs = 200;

    uint256 public allowlistPrice = 0.02 ether;
    uint256 public publicPrice = 0.04 ether;
    bytes32 public merkleRoot;
    bool public publicSaleIsOpen = false;
    bool public allowlistMintIsOpen = false;
    mapping(address => uint256) public publicMinted;

    string private _baseTokenURI;
    address payable private _devWallet;

    constructor(
        string memory tokenUri_,
        string memory name_,
        string memory symbol_,
        address devWallet_
    ) ERC721A(name_, symbol_) {
        _baseTokenURI = tokenUri_;
        _devWallet = payable(devWallet_);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function allowlistMint(
        uint256 count,
        uint256 allowance,
        bytes32[] calldata proof
    ) external payable callerIsUser {
        require(allowlistMintIsOpen == true, "allowlist must be opened");
        require(totalSupply() + count <= collectionSize, "reached max supply");

        uint256 maxQuantity = allowance.sub(_numberMinted(msg.sender));
        require(count <= maxQuantity, "quantity error");

        uint256 totalPrice = allowlistPrice.mul(count);
        require(msg.value >= totalPrice, "Need to send more ETH.");

        require(_verify(_leaf(msg.sender, allowance), proof), "Invalid merkle proof");
        _safeMint(msg.sender, count);
    }

    function publicSaleMint(uint256 count) external payable callerIsUser {
        require(publicMinted[msg.sender].add(count) <= 3, "max mint");
        require(publicSaleIsOpen == true, "Public mint is closed");
        uint256 totalPrice = publicPrice.mul(count);
        require(msg.value >= totalPrice, "Need to send more ETH.");
        require(totalSupply() + count <= collectionSize, "reached max supply");
        publicMinted[msg.sender] = publicMinted[msg.sender].add(count);
        _safeMint(msg.sender, count);
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setMerkleRoot(uint256 _allowlistPrice, bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
        allowlistPrice = _allowlistPrice;
    }

    function setAllowlistMintIsOpen(bool allowlistMintIsOpen_) public onlyOwner {
        allowlistMintIsOpen = allowlistMintIsOpen_;
    }

    function devMint(uint256 count) external onlyOwner {
        require(
            totalSupply().add(count) <= amountForDevs,
            "too many already minted before dev mint"
        );

        require(_numberMinted(msg.sender).add(count) <= amountForDevs, "too many dev mint");
        _safeMint(msg.sender, count);
    }

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

    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function _leaf(address account, uint256 amount) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account, amount));
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPublicSaleIsOpen(bool value) external onlyOwner {
        publicSaleIsOpen = value;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        uint256 contractBalance = address(this).balance;
        uint256 devAmount = contractBalance.div(100).mul(10);
        uint256 ownerAmount = contractBalance.sub(devAmount);

        _devWallet.transfer(devAmount);
        (bool success, ) = msg.sender.call{value: ownerAmount}("");
        require(success, "Transfer failed.");
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function remainingTokens() public view returns (uint256) {
        return collectionSize.sub(totalSupply());
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }
}

File 2 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.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 URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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 ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId; ; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender()))
            revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data))
            revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 substraction 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 4 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 7 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenUri_","type":"string"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"devWallet_","type":"address"}],"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":"MintedQueryForZeroAddress","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":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistMintIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"remainingTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowlistMintIsOpen_","type":"bool"}],"name":"setAllowlistMintIsOpen","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allowlistPrice","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicSaleIsOpen","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":"","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526122b860809081525060c860a09081525066470de4df820000600955668e1bc9bf040000600a556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055503480156200006e57600080fd5b5060405162004f0a38038062004f0a8339818101604052810190620000949190620004d4565b8282620000b6620000aa6200015660201b60201c565b6200015e60201b60201c565b8160029080519060200190620000ce92919062000222565b508060039080519060200190620000e792919062000222565b505050600160088190555083600e90805190602001906200010a92919062000222565b5080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000608565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023090620005d2565b90600052602060002090601f016020900481019282620002545760008555620002a0565b82601f106200026f57805160ff1916838001178555620002a0565b82800160010185558215620002a0579182015b828111156200029f57825182559160200191906001019062000282565b5b509050620002af9190620002b3565b5090565b5b80821115620002ce576000816000905550600101620002b4565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200033b82620002f0565b810181811067ffffffffffffffff821117156200035d576200035c62000301565b5b80604052505050565b600062000372620002d2565b905062000380828262000330565b919050565b600067ffffffffffffffff821115620003a357620003a262000301565b5b620003ae82620002f0565b9050602081019050919050565b60005b83811015620003db578082015181840152602081019050620003be565b83811115620003eb576000848401525b50505050565b600062000408620004028462000385565b62000366565b905082815260208101848484011115620004275762000426620002eb565b5b62000434848285620003bb565b509392505050565b600082601f830112620004545762000453620002e6565b5b815162000466848260208601620003f1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200049c826200046f565b9050919050565b620004ae816200048f565b8114620004ba57600080fd5b50565b600081519050620004ce81620004a3565b92915050565b60008060008060808587031215620004f157620004f0620002dc565b5b600085015167ffffffffffffffff811115620005125762000511620002e1565b5b62000520878288016200043c565b945050602085015167ffffffffffffffff811115620005445762000543620002e1565b5b62000552878288016200043c565b935050604085015167ffffffffffffffff811115620005765762000575620002e1565b5b62000584878288016200043c565b92505060606200059787828801620004bd565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005eb57607f821691505b60208210811415620006025762000601620005a3565b5b50919050565b60805160a0516148b9620006516000396000818161122e015281816112aa01526121d9015260008181610e130152818161135401528181611cab0152611e4901526148b96000f3fe6080604052600436106102305760003560e01c80638da5cb5b1161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610833578063e985e9c514610870578063f2fde38b146108ad578063f6064f08146108d6578063fbe1aa51146108ff57610230565b8063b88d4fde1461074e578063b8e4e17514610777578063bf583903146107a2578063c6275255146107cd578063c87b56dd146107f657610230565b8063a22cb465116100f2578063a22cb4651461069c578063a945bf80146106c5578063ac446002146106f0578063b3ab66b014610707578063b455496f1461072357610230565b80638da5cb5b146105b557806390967a52146105e057806390e81c5c1461060b5780639231ab2a1461063457806395d89b411461067157610230565b80632eb4a7ab116101bc5780634f6ccce7116101805780634f6ccce7146104be57806355f804b3146104fb5780636352211e1461052457806370a0823114610561578063715018a61461059e57610230565b80632eb4a7ab146103d95780632f745c5914610404578063375a069a1461044157806342842e0e1461046a57806345c0f5331461049357610230565b80631015805b116102035780631015805b1461030357806318160ddd1461034057806318712c211461036b57806323b872dd146103945780632d945cb9146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613521565b61092a565b6040516102699190613569565b60405180910390f35b34801561027e57600080fd5b50610287610a74565b604051610294919061361d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613675565b610b06565b6040516102d191906136e3565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061372a565b610b82565b005b34801561030f57600080fd5b5061032a6004803603810190610325919061376a565b610c8d565b60405161033791906137a6565b60405180910390f35b34801561034c57600080fd5b50610355610ca5565b60405161036291906137a6565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d91906137f7565b610caf565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190613837565b610d3d565b005b6103d760048036038101906103d291906138ef565b610d4d565b005b3480156103e557600080fd5b506103ee610fe9565b6040516103fb9190613972565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061372a565b610fef565b60405161043891906137a6565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613675565b6111b0565b005b34801561047657600080fd5b50610491600480360381019061048c9190613837565b611332565b005b34801561049f57600080fd5b506104a8611352565b6040516104b591906137a6565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613675565b611376565b6040516104f291906137a6565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906139e3565b6113c0565b005b34801561053057600080fd5b5061054b60048036038101906105469190613675565b611452565b60405161055891906136e3565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061376a565b611468565b60405161059591906137a6565b60405180910390f35b3480156105aa57600080fd5b506105b3611548565b005b3480156105c157600080fd5b506105ca6115d0565b6040516105d791906136e3565b60405180910390f35b3480156105ec57600080fd5b506105f56115f9565b60405161060291906137a6565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613a5c565b6115ff565b005b34801561064057600080fd5b5061065b60048036038101906106569190613675565b611698565b6040516106689190613aea565b60405180910390f35b34801561067d57600080fd5b506106866116b0565b604051610693919061361d565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613b05565b611742565b005b3480156106d157600080fd5b506106da6118ba565b6040516106e791906137a6565b60405180910390f35b3480156106fc57600080fd5b506107056118c0565b005b610721600480360381019061071c9190613675565b611af4565b005b34801561072f57600080fd5b50610738611dc1565b6040516107459190613569565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613c75565b611dd4565b005b34801561078357600080fd5b5061078c611e27565b6040516107999190613569565b60405180910390f35b3480156107ae57600080fd5b506107b7611e3a565b6040516107c491906137a6565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613675565b611e7b565b005b34801561080257600080fd5b5061081d60048036038101906108189190613675565b611f01565b60405161082a919061361d565b60405180910390f35b34801561083f57600080fd5b5061085a6004803603810190610855919061376a565b611fa0565b60405161086791906137a6565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613cf8565b611fb2565b6040516108a49190613569565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061376a565b612046565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613a5c565b61213e565b005b34801561090b57600080fd5b506109146121d7565b60405161092191906137a6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a6d5750610a6c826121fb565b5b9050919050565b606060028054610a8390613d67565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613d67565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000610b1182612265565b610b47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d82611452565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c14612273565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c465750610c4481610c3f612273565b611fb2565b155b15610c7d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8883838361227b565b505050565b600d6020528060005260406000206000915090505481565b6000600154905090565b610cb7612273565b73ffffffffffffffffffffffffffffffffffffffff16610cd56115d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290613de5565b60405180910390fd5b80600b81905550816009819055505050565b610d4883838361232d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613e51565b60405180910390fd5b60011515600c60019054906101000a900460ff16151514610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613ebd565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084610e3b610ca5565b610e459190613f0c565b1115610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613fae565b60405180910390fd5b6000610ea3610e9433612852565b8561293290919063ffffffff16565b905080851115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf9061401a565b60405180910390fd5b6000610eff8660095461294890919063ffffffff16565b905080341015610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90614086565b60405180910390fd5b610f98610f51338761295e565b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612991565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce906140f2565b60405180910390fd5b610fe133876129a8565b505050505050565b600b5481565b6000610ffa83611468565b8210611032576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061103c610ca5565b905060008060005b83811015611196576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611188578684141561117f5781955050505050506111aa565b83806001019450505b508080600101915050611044565b5060006111a6576111a5614112565b5b5050505b92915050565b6111b8612273565b73ffffffffffffffffffffffffffffffffffffffff166111d66115d0565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613de5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061126782611259610ca5565b6129c690919063ffffffff16565b11156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906141b3565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006112e4826112d633612852565b6129c690919063ffffffff16565b1115611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c9061421f565b60405180910390fd5b61132f33826129a8565b50565b61134d83838360405180602001604052806000815250611dd4565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000611380610ca5565b82106113b8576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6113c8612273565b73ffffffffffffffffffffffffffffffffffffffff166113e66115d0565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613de5565b60405180910390fd5b8181600e919061144d9291906133d8565b505050565b600061145d826129dc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611550612273565b73ffffffffffffffffffffffffffffffffffffffff1661156e6115d0565b73ffffffffffffffffffffffffffffffffffffffff16146115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90613de5565b60405180910390fd5b6115ce6000612b29565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b611607612273565b73ffffffffffffffffffffffffffffffffffffffff166116256115d0565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613de5565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6116a061345e565b6116a9826129dc565b9050919050565b6060600380546116bf90613d67565b80601f01602080910402602001604051908101604052809291908181526020018280546116eb90613d67565b80156117385780601f1061170d57610100808354040283529160200191611738565b820191906000526020600020905b81548152906001019060200180831161171b57829003601f168201915b5050505050905090565b61174a612273565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117bc612273565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611869612273565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118ae9190613569565b60405180910390a35050565b600a5481565b6118c8612273565b73ffffffffffffffffffffffffffffffffffffffff166118e66115d0565b73ffffffffffffffffffffffffffffffffffffffff161461193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613de5565b60405180910390fd5b60026008541415611982576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119799061428b565b60405180910390fd5b6002600881905550600047905060006119b8600a6119aa606485612bed90919063ffffffff16565b61294890919063ffffffff16565b905060006119cf828461293290919063ffffffff16565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611a39573d6000803e3d6000fd5b5060003373ffffffffffffffffffffffffffffffffffffffff1682604051611a60906142dc565b60006040518083038185875af1925050503d8060008114611a9d576040519150601f19603f3d011682016040523d82523d6000602084013e611aa2565b606091505b5050905080611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add9061433d565b60405180910390fd5b505050506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990613e51565b60405180910390fd5b6003611bb682600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c690919063ffffffff16565b1115611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee906143a9565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490614415565b60405180910390fd5b6000611c6482600a5461294890919063ffffffff16565b905080341015611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090614086565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082611cd3610ca5565b611cdd9190613f0c565b1115611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613fae565b60405180910390fd5b611d7082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c690919063ffffffff16565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dbd33836129a8565b5050565b600c60019054906101000a900460ff1681565b611ddf84848461232d565b611deb84848484612c03565b611e21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900460ff1681565b6000611e76611e47610ca5565b7f000000000000000000000000000000000000000000000000000000000000000061293290919063ffffffff16565b905090565b611e83612273565b73ffffffffffffffffffffffffffffffffffffffff16611ea16115d0565b73ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90613de5565b60405180910390fd5b80600a8190555050565b6060611f0c82612265565b611f42576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f4c612d82565b9050600081511415611f6d5760405180602001604052806000815250611f98565b80611f7784612e14565b604051602001611f88929190614471565b6040516020818303038152906040525b915050919050565b6000611fab82612852565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204e612273565b73ffffffffffffffffffffffffffffffffffffffff1661206c6115d0565b73ffffffffffffffffffffffffffffffffffffffff16146120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990613de5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614507565b60405180910390fd5b61213b81612b29565b50565b612146612273565b73ffffffffffffffffffffffffffffffffffffffff166121646115d0565b73ffffffffffffffffffffffffffffffffffffffff16146121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190613de5565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612338826129dc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661235f612273565b73ffffffffffffffffffffffffffffffffffffffff1614806123bb5750612384612273565b73ffffffffffffffffffffffffffffffffffffffff166123a384610b06565b73ffffffffffffffffffffffffffffffffffffffff16145b806123d757506123d682600001516123d1612273565b611fb2565b5b905080612410576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612479576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124e0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ed8585856001612f75565b6124fd600084846000015161227b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127e25761274181612265565b156127e15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284b8585856001612f7b565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600081836129409190614527565b905092915050565b60008183612956919061455b565b905092915050565b6000828260405160200161297392919061461e565b60405160208183030381529060405280519060200120905092915050565b60006129a082600b5485612f81565b905092915050565b6129c2828260405180602001604052806000815250612f98565b5050565b600081836129d49190613f0c565b905092915050565b6129e461345e565b6129ed82612265565b612a23576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b15578092505050612b24565b50808060019003915050612a29565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612bfb9190614679565b905092915050565b6000612c248473ffffffffffffffffffffffffffffffffffffffff16612faa565b15612d75578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c4d612273565b8786866040518563ffffffff1660e01b8152600401612c6f94939291906146ff565b6020604051808303816000875af1925050508015612cab57506040513d601f19601f82011682018060405250810190612ca89190614760565b60015b612d25573d8060008114612cdb576040519150601f19603f3d011682016040523d82523d6000602084013e612ce0565b606091505b50600081511415612d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d7a565b600190505b949350505050565b6060600e8054612d9190613d67565b80601f0160208091040260200160405190810160405280929190818152602001828054612dbd90613d67565b8015612e0a5780601f10612ddf57610100808354040283529160200191612e0a565b820191906000526020600020905b815481529060010190602001808311612ded57829003601f168201915b5050505050905090565b60606000821415612e5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f70565b600082905060005b60008214612e8e578080612e779061478d565b915050600a82612e879190614679565b9150612e64565b60008167ffffffffffffffff811115612eaa57612ea9613b4a565b5b6040519080825280601f01601f191660200182016040528015612edc5781602001600182028036833780820191505090505b5090505b60008514612f6957600182612ef59190614527565b9150600a85612f0491906147d6565b6030612f109190613f0c565b60f81b818381518110612f2657612f25614807565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f629190614679565b9450612ee0565b8093505050505b919050565b50505050565b50505050565b600082612f8e8584612fbd565b1490509392505050565b612fa58383836001613070565b505050565b600080823b905060008111915050919050565b60008082905060005b8451811015613065576000858281518110612fe457612fe3614807565b5b60200260200101519050808311613025578281604051602001613008929190614857565b604051602081830303815290604052805190602001209250613051565b8083604051602001613038929190614857565b6040516020818303038152906040528051906020012092505b50808061305d9061478d565b915050612fc6565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130de576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613119576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131266000868387612f75565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133bb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561336f575061336d6000888488612c03565b155b156133a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506132f4565b5080600181905550506133d16000868387612f7b565b5050505050565b8280546133e490613d67565b90600052602060002090601f016020900481019282613406576000855561344d565b82601f1061341f57803560ff191683800117855561344d565b8280016001018555821561344d579182015b8281111561344c578235825591602001919060010190613431565b5b50905061345a9190613498565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134b1576000816000905550600101613499565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134fe816134c9565b811461350957600080fd5b50565b60008135905061351b816134f5565b92915050565b600060208284031215613537576135366134bf565b5b60006135458482850161350c565b91505092915050565b60008115159050919050565b6135638161354e565b82525050565b600060208201905061357e600083018461355a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135be5780820151818401526020810190506135a3565b838111156135cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006135ef82613584565b6135f9818561358f565b93506136098185602086016135a0565b613612816135d3565b840191505092915050565b6000602082019050818103600083015261363781846135e4565b905092915050565b6000819050919050565b6136528161363f565b811461365d57600080fd5b50565b60008135905061366f81613649565b92915050565b60006020828403121561368b5761368a6134bf565b5b600061369984828501613660565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136cd826136a2565b9050919050565b6136dd816136c2565b82525050565b60006020820190506136f860008301846136d4565b92915050565b613707816136c2565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60008060408385031215613741576137406134bf565b5b600061374f85828601613715565b925050602061376085828601613660565b9150509250929050565b6000602082840312156137805761377f6134bf565b5b600061378e84828501613715565b91505092915050565b6137a08161363f565b82525050565b60006020820190506137bb6000830184613797565b92915050565b6000819050919050565b6137d4816137c1565b81146137df57600080fd5b50565b6000813590506137f1816137cb565b92915050565b6000806040838503121561380e5761380d6134bf565b5b600061381c85828601613660565b925050602061382d858286016137e2565b9150509250929050565b6000806000606084860312156138505761384f6134bf565b5b600061385e86828701613715565b935050602061386f86828701613715565b925050604061388086828701613660565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126138af576138ae61388a565b5b8235905067ffffffffffffffff8111156138cc576138cb61388f565b5b6020830191508360208202830111156138e8576138e7613894565b5b9250929050565b60008060008060608587031215613909576139086134bf565b5b600061391787828801613660565b945050602061392887828801613660565b935050604085013567ffffffffffffffff811115613949576139486134c4565b5b61395587828801613899565b925092505092959194509250565b61396c816137c1565b82525050565b60006020820190506139876000830184613963565b92915050565b60008083601f8401126139a3576139a261388a565b5b8235905067ffffffffffffffff8111156139c0576139bf61388f565b5b6020830191508360018202830111156139dc576139db613894565b5b9250929050565b600080602083850312156139fa576139f96134bf565b5b600083013567ffffffffffffffff811115613a1857613a176134c4565b5b613a248582860161398d565b92509250509250929050565b613a398161354e565b8114613a4457600080fd5b50565b600081359050613a5681613a30565b92915050565b600060208284031215613a7257613a716134bf565b5b6000613a8084828501613a47565b91505092915050565b613a92816136c2565b82525050565b600067ffffffffffffffff82169050919050565b613ab581613a98565b82525050565b604082016000820151613ad16000850182613a89565b506020820151613ae46020850182613aac565b50505050565b6000604082019050613aff6000830184613abb565b92915050565b60008060408385031215613b1c57613b1b6134bf565b5b6000613b2a85828601613715565b9250506020613b3b85828601613a47565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b82826135d3565b810181811067ffffffffffffffff82111715613ba157613ba0613b4a565b5b80604052505050565b6000613bb46134b5565b9050613bc08282613b79565b919050565b600067ffffffffffffffff821115613be057613bdf613b4a565b5b613be9826135d3565b9050602081019050919050565b82818337600083830152505050565b6000613c18613c1384613bc5565b613baa565b905082815260208101848484011115613c3457613c33613b45565b5b613c3f848285613bf6565b509392505050565b600082601f830112613c5c57613c5b61388a565b5b8135613c6c848260208601613c05565b91505092915050565b60008060008060808587031215613c8f57613c8e6134bf565b5b6000613c9d87828801613715565b9450506020613cae87828801613715565b9350506040613cbf87828801613660565b925050606085013567ffffffffffffffff811115613ce057613cdf6134c4565b5b613cec87828801613c47565b91505092959194509250565b60008060408385031215613d0f57613d0e6134bf565b5b6000613d1d85828601613715565b9250506020613d2e85828601613715565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7f57607f821691505b60208210811415613d9357613d92613d38565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dcf60208361358f565b9150613dda82613d99565b602082019050919050565b60006020820190508181036000830152613dfe81613dc2565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613e3b601e8361358f565b9150613e4682613e05565b602082019050919050565b60006020820190508181036000830152613e6a81613e2e565b9050919050565b7f616c6c6f776c697374206d757374206265206f70656e65640000000000000000600082015250565b6000613ea760188361358f565b9150613eb282613e71565b602082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f178261363f565b9150613f228361363f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f5757613f56613edd565b5b828201905092915050565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000613f9860128361358f565b9150613fa382613f62565b602082019050919050565b60006020820190508181036000830152613fc781613f8b565b9050919050565b7f7175616e74697479206572726f72000000000000000000000000000000000000600082015250565b6000614004600e8361358f565b915061400f82613fce565b602082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b600061407060168361358f565b915061407b8261403a565b602082019050919050565b6000602082019050818103600083015261409f81614063565b9050919050565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b60006140dc60148361358f565b91506140e7826140a6565b602082019050919050565b6000602082019050818103600083015261410b816140cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b600061419d60278361358f565b91506141a882614141565b604082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f746f6f206d616e7920646576206d696e74000000000000000000000000000000600082015250565b600061420960118361358f565b9150614214826141d3565b602082019050919050565b60006020820190508181036000830152614238816141fc565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614275601f8361358f565b91506142808261423f565b602082019050919050565b600060208201905081810360008301526142a481614268565b9050919050565b600081905092915050565b50565b60006142c66000836142ab565b91506142d1826142b6565b600082019050919050565b60006142e7826142b9565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061432760108361358f565b9150614332826142f1565b602082019050919050565b600060208201905081810360008301526143568161431a565b9050919050565b7f6d6178206d696e74000000000000000000000000000000000000000000000000600082015250565b600061439360088361358f565b915061439e8261435d565b602082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b7f5075626c6963206d696e7420697320636c6f7365640000000000000000000000600082015250565b60006143ff60158361358f565b915061440a826143c9565b602082019050919050565b6000602082019050818103600083015261442e816143f2565b9050919050565b600081905092915050565b600061444b82613584565b6144558185614435565b93506144658185602086016135a0565b80840191505092915050565b600061447d8285614440565b91506144898284614440565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f160268361358f565b91506144fc82614495565b604082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b60006145328261363f565b915061453d8361363f565b9250828210156145505761454f613edd565b5b828203905092915050565b60006145668261363f565b91506145718361363f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145aa576145a9613edd565b5b828202905092915050565b60008160601b9050919050565b60006145cd826145b5565b9050919050565b60006145df826145c2565b9050919050565b6145f76145f2826136c2565b6145d4565b82525050565b6000819050919050565b6146186146138261363f565b6145fd565b82525050565b600061462a82856145e6565b60148201915061463a8284614607565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146848261363f565b915061468f8361363f565b92508261469f5761469e61464a565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b60006146d1826146aa565b6146db81856146b5565b93506146eb8185602086016135a0565b6146f4816135d3565b840191505092915050565b600060808201905061471460008301876136d4565b61472160208301866136d4565b61472e6040830185613797565b818103606083015261474081846146c6565b905095945050505050565b60008151905061475a816134f5565b92915050565b600060208284031215614776576147756134bf565b5b60006147848482850161474b565b91505092915050565b60006147988261363f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147cb576147ca613edd565b5b600182019050919050565b60006147e18261363f565b91506147ec8361363f565b9250826147fc576147fb61464a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61485161484c826137c1565b614836565b82525050565b60006148638285614840565b6020820191506148738284614840565b602082019150819050939250505056fea2646970667358221220f40ff8ebd38afe1c52622b6ab049fb17352d4f0c40ce9031519a05fd5381931164736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c37c41601bc88c91b6569c701f08d37fa0f565f0000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f636f736d6f64696e6f732d6f6d6567612e6f6e72656e6465722e636f6d2f6170692f636f736d6f64696e6f732f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000f436f736d6f64696e6f734f6d6567610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f436f736d6f64696e6f734f6d6567610000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80638da5cb5b1161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610833578063e985e9c514610870578063f2fde38b146108ad578063f6064f08146108d6578063fbe1aa51146108ff57610230565b8063b88d4fde1461074e578063b8e4e17514610777578063bf583903146107a2578063c6275255146107cd578063c87b56dd146107f657610230565b8063a22cb465116100f2578063a22cb4651461069c578063a945bf80146106c5578063ac446002146106f0578063b3ab66b014610707578063b455496f1461072357610230565b80638da5cb5b146105b557806390967a52146105e057806390e81c5c1461060b5780639231ab2a1461063457806395d89b411461067157610230565b80632eb4a7ab116101bc5780634f6ccce7116101805780634f6ccce7146104be57806355f804b3146104fb5780636352211e1461052457806370a0823114610561578063715018a61461059e57610230565b80632eb4a7ab146103d95780632f745c5914610404578063375a069a1461044157806342842e0e1461046a57806345c0f5331461049357610230565b80631015805b116102035780631015805b1461030357806318160ddd1461034057806318712c211461036b57806323b872dd146103945780632d945cb9146103bd57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613521565b61092a565b6040516102699190613569565b60405180910390f35b34801561027e57600080fd5b50610287610a74565b604051610294919061361d565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613675565b610b06565b6040516102d191906136e3565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061372a565b610b82565b005b34801561030f57600080fd5b5061032a6004803603810190610325919061376a565b610c8d565b60405161033791906137a6565b60405180910390f35b34801561034c57600080fd5b50610355610ca5565b60405161036291906137a6565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d91906137f7565b610caf565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190613837565b610d3d565b005b6103d760048036038101906103d291906138ef565b610d4d565b005b3480156103e557600080fd5b506103ee610fe9565b6040516103fb9190613972565b60405180910390f35b34801561041057600080fd5b5061042b6004803603810190610426919061372a565b610fef565b60405161043891906137a6565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613675565b6111b0565b005b34801561047657600080fd5b50610491600480360381019061048c9190613837565b611332565b005b34801561049f57600080fd5b506104a8611352565b6040516104b591906137a6565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613675565b611376565b6040516104f291906137a6565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906139e3565b6113c0565b005b34801561053057600080fd5b5061054b60048036038101906105469190613675565b611452565b60405161055891906136e3565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061376a565b611468565b60405161059591906137a6565b60405180910390f35b3480156105aa57600080fd5b506105b3611548565b005b3480156105c157600080fd5b506105ca6115d0565b6040516105d791906136e3565b60405180910390f35b3480156105ec57600080fd5b506105f56115f9565b60405161060291906137a6565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613a5c565b6115ff565b005b34801561064057600080fd5b5061065b60048036038101906106569190613675565b611698565b6040516106689190613aea565b60405180910390f35b34801561067d57600080fd5b506106866116b0565b604051610693919061361d565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190613b05565b611742565b005b3480156106d157600080fd5b506106da6118ba565b6040516106e791906137a6565b60405180910390f35b3480156106fc57600080fd5b506107056118c0565b005b610721600480360381019061071c9190613675565b611af4565b005b34801561072f57600080fd5b50610738611dc1565b6040516107459190613569565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613c75565b611dd4565b005b34801561078357600080fd5b5061078c611e27565b6040516107999190613569565b60405180910390f35b3480156107ae57600080fd5b506107b7611e3a565b6040516107c491906137a6565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613675565b611e7b565b005b34801561080257600080fd5b5061081d60048036038101906108189190613675565b611f01565b60405161082a919061361d565b60405180910390f35b34801561083f57600080fd5b5061085a6004803603810190610855919061376a565b611fa0565b60405161086791906137a6565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613cf8565b611fb2565b6040516108a49190613569565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061376a565b612046565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613a5c565b61213e565b005b34801561090b57600080fd5b506109146121d7565b60405161092191906137a6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a6d5750610a6c826121fb565b5b9050919050565b606060028054610a8390613d67565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613d67565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b5050505050905090565b6000610b1182612265565b610b47576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8d82611452565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c14612273565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c465750610c4481610c3f612273565b611fb2565b155b15610c7d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c8883838361227b565b505050565b600d6020528060005260406000206000915090505481565b6000600154905090565b610cb7612273565b73ffffffffffffffffffffffffffffffffffffffff16610cd56115d0565b73ffffffffffffffffffffffffffffffffffffffff1614610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290613de5565b60405180910390fd5b80600b81905550816009819055505050565b610d4883838361232d565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613e51565b60405180910390fd5b60011515600c60019054906101000a900460ff16151514610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613ebd565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000022b884610e3b610ca5565b610e459190613f0c565b1115610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613fae565b60405180910390fd5b6000610ea3610e9433612852565b8561293290919063ffffffff16565b905080851115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf9061401a565b60405180910390fd5b6000610eff8660095461294890919063ffffffff16565b905080341015610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90614086565b60405180910390fd5b610f98610f51338761295e565b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612991565b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce906140f2565b60405180910390fd5b610fe133876129a8565b505050505050565b600b5481565b6000610ffa83611468565b8210611032576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061103c610ca5565b905060008060005b83811015611196576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611188578684141561117f5781955050505050506111aa565b83806001019450505b508080600101915050611044565b5060006111a6576111a5614112565b5b5050505b92915050565b6111b8612273565b73ffffffffffffffffffffffffffffffffffffffff166111d66115d0565b73ffffffffffffffffffffffffffffffffffffffff161461122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613de5565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c861126782611259610ca5565b6129c690919063ffffffff16565b11156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906141b3565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c86112e4826112d633612852565b6129c690919063ffffffff16565b1115611325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131c9061421f565b60405180910390fd5b61132f33826129a8565b50565b61134d83838360405180602001604052806000815250611dd4565b505050565b7f00000000000000000000000000000000000000000000000000000000000022b881565b6000611380610ca5565b82106113b8576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b6113c8612273565b73ffffffffffffffffffffffffffffffffffffffff166113e66115d0565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613de5565b60405180910390fd5b8181600e919061144d9291906133d8565b505050565b600061145d826129dc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611550612273565b73ffffffffffffffffffffffffffffffffffffffff1661156e6115d0565b73ffffffffffffffffffffffffffffffffffffffff16146115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90613de5565b60405180910390fd5b6115ce6000612b29565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b611607612273565b73ffffffffffffffffffffffffffffffffffffffff166116256115d0565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290613de5565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6116a061345e565b6116a9826129dc565b9050919050565b6060600380546116bf90613d67565b80601f01602080910402602001604051908101604052809291908181526020018280546116eb90613d67565b80156117385780601f1061170d57610100808354040283529160200191611738565b820191906000526020600020905b81548152906001019060200180831161171b57829003601f168201915b5050505050905090565b61174a612273565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117af576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117bc612273565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611869612273565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118ae9190613569565b60405180910390a35050565b600a5481565b6118c8612273565b73ffffffffffffffffffffffffffffffffffffffff166118e66115d0565b73ffffffffffffffffffffffffffffffffffffffff161461193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613de5565b60405180910390fd5b60026008541415611982576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119799061428b565b60405180910390fd5b6002600881905550600047905060006119b8600a6119aa606485612bed90919063ffffffff16565b61294890919063ffffffff16565b905060006119cf828461293290919063ffffffff16565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611a39573d6000803e3d6000fd5b5060003373ffffffffffffffffffffffffffffffffffffffff1682604051611a60906142dc565b60006040518083038185875af1925050503d8060008114611a9d576040519150601f19603f3d011682016040523d82523d6000602084013e611aa2565b606091505b5050905080611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add9061433d565b60405180910390fd5b505050506001600881905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990613e51565b60405180910390fd5b6003611bb682600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c690919063ffffffff16565b1115611bf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bee906143a9565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4490614415565b60405180910390fd5b6000611c6482600a5461294890919063ffffffff16565b905080341015611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090614086565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000022b882611cd3610ca5565b611cdd9190613f0c565b1115611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1590613fae565b60405180910390fd5b611d7082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c690919063ffffffff16565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611dbd33836129a8565b5050565b600c60019054906101000a900460ff1681565b611ddf84848461232d565b611deb84848484612c03565b611e21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c60009054906101000a900460ff1681565b6000611e76611e47610ca5565b7f00000000000000000000000000000000000000000000000000000000000022b861293290919063ffffffff16565b905090565b611e83612273565b73ffffffffffffffffffffffffffffffffffffffff16611ea16115d0565b73ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90613de5565b60405180910390fd5b80600a8190555050565b6060611f0c82612265565b611f42576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611f4c612d82565b9050600081511415611f6d5760405180602001604052806000815250611f98565b80611f7784612e14565b604051602001611f88929190614471565b6040516020818303038152906040525b915050919050565b6000611fab82612852565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204e612273565b73ffffffffffffffffffffffffffffffffffffffff1661206c6115d0565b73ffffffffffffffffffffffffffffffffffffffff16146120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990613de5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212990614507565b60405180910390fd5b61213b81612b29565b50565b612146612273565b73ffffffffffffffffffffffffffffffffffffffff166121646115d0565b73ffffffffffffffffffffffffffffffffffffffff16146121ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b190613de5565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b7f00000000000000000000000000000000000000000000000000000000000000c881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612338826129dc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661235f612273565b73ffffffffffffffffffffffffffffffffffffffff1614806123bb5750612384612273565b73ffffffffffffffffffffffffffffffffffffffff166123a384610b06565b73ffffffffffffffffffffffffffffffffffffffff16145b806123d757506123d682600001516123d1612273565b611fb2565b5b905080612410576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612479576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124e0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ed8585856001612f75565b6124fd600084846000015161227b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127e25761274181612265565b156127e15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284b8585856001612f7b565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ba576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600081836129409190614527565b905092915050565b60008183612956919061455b565b905092915050565b6000828260405160200161297392919061461e565b60405160208183030381529060405280519060200120905092915050565b60006129a082600b5485612f81565b905092915050565b6129c2828260405180602001604052806000815250612f98565b5050565b600081836129d49190613f0c565b905092915050565b6129e461345e565b6129ed82612265565b612a23576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b6000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b15578092505050612b24565b50808060019003915050612a29565b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612bfb9190614679565b905092915050565b6000612c248473ffffffffffffffffffffffffffffffffffffffff16612faa565b15612d75578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c4d612273565b8786866040518563ffffffff1660e01b8152600401612c6f94939291906146ff565b6020604051808303816000875af1925050508015612cab57506040513d601f19601f82011682018060405250810190612ca89190614760565b60015b612d25573d8060008114612cdb576040519150601f19603f3d011682016040523d82523d6000602084013e612ce0565b606091505b50600081511415612d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d7a565b600190505b949350505050565b6060600e8054612d9190613d67565b80601f0160208091040260200160405190810160405280929190818152602001828054612dbd90613d67565b8015612e0a5780601f10612ddf57610100808354040283529160200191612e0a565b820191906000526020600020905b815481529060010190602001808311612ded57829003601f168201915b5050505050905090565b60606000821415612e5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f70565b600082905060005b60008214612e8e578080612e779061478d565b915050600a82612e879190614679565b9150612e64565b60008167ffffffffffffffff811115612eaa57612ea9613b4a565b5b6040519080825280601f01601f191660200182016040528015612edc5781602001600182028036833780820191505090505b5090505b60008514612f6957600182612ef59190614527565b9150600a85612f0491906147d6565b6030612f109190613f0c565b60f81b818381518110612f2657612f25614807565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f629190614679565b9450612ee0565b8093505050505b919050565b50505050565b50505050565b600082612f8e8584612fbd565b1490509392505050565b612fa58383836001613070565b505050565b600080823b905060008111915050919050565b60008082905060005b8451811015613065576000858281518110612fe457612fe3614807565b5b60200260200101519050808311613025578281604051602001613008929190614857565b604051602081830303815290604052805190602001209250613051565b8083604051602001613038929190614857565b6040516020818303038152906040528051906020012092505b50808061305d9061478d565b915050612fc6565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130de576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613119576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131266000868387612f75565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133bb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561336f575061336d6000888488612c03565b155b156133a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506132f4565b5080600181905550506133d16000868387612f7b565b5050505050565b8280546133e490613d67565b90600052602060002090601f016020900481019282613406576000855561344d565b82601f1061341f57803560ff191683800117855561344d565b8280016001018555821561344d579182015b8281111561344c578235825591602001919060010190613431565b5b50905061345a9190613498565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134b1576000816000905550600101613499565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134fe816134c9565b811461350957600080fd5b50565b60008135905061351b816134f5565b92915050565b600060208284031215613537576135366134bf565b5b60006135458482850161350c565b91505092915050565b60008115159050919050565b6135638161354e565b82525050565b600060208201905061357e600083018461355a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135be5780820151818401526020810190506135a3565b838111156135cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006135ef82613584565b6135f9818561358f565b93506136098185602086016135a0565b613612816135d3565b840191505092915050565b6000602082019050818103600083015261363781846135e4565b905092915050565b6000819050919050565b6136528161363f565b811461365d57600080fd5b50565b60008135905061366f81613649565b92915050565b60006020828403121561368b5761368a6134bf565b5b600061369984828501613660565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136cd826136a2565b9050919050565b6136dd816136c2565b82525050565b60006020820190506136f860008301846136d4565b92915050565b613707816136c2565b811461371257600080fd5b50565b600081359050613724816136fe565b92915050565b60008060408385031215613741576137406134bf565b5b600061374f85828601613715565b925050602061376085828601613660565b9150509250929050565b6000602082840312156137805761377f6134bf565b5b600061378e84828501613715565b91505092915050565b6137a08161363f565b82525050565b60006020820190506137bb6000830184613797565b92915050565b6000819050919050565b6137d4816137c1565b81146137df57600080fd5b50565b6000813590506137f1816137cb565b92915050565b6000806040838503121561380e5761380d6134bf565b5b600061381c85828601613660565b925050602061382d858286016137e2565b9150509250929050565b6000806000606084860312156138505761384f6134bf565b5b600061385e86828701613715565b935050602061386f86828701613715565b925050604061388086828701613660565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126138af576138ae61388a565b5b8235905067ffffffffffffffff8111156138cc576138cb61388f565b5b6020830191508360208202830111156138e8576138e7613894565b5b9250929050565b60008060008060608587031215613909576139086134bf565b5b600061391787828801613660565b945050602061392887828801613660565b935050604085013567ffffffffffffffff811115613949576139486134c4565b5b61395587828801613899565b925092505092959194509250565b61396c816137c1565b82525050565b60006020820190506139876000830184613963565b92915050565b60008083601f8401126139a3576139a261388a565b5b8235905067ffffffffffffffff8111156139c0576139bf61388f565b5b6020830191508360018202830111156139dc576139db613894565b5b9250929050565b600080602083850312156139fa576139f96134bf565b5b600083013567ffffffffffffffff811115613a1857613a176134c4565b5b613a248582860161398d565b92509250509250929050565b613a398161354e565b8114613a4457600080fd5b50565b600081359050613a5681613a30565b92915050565b600060208284031215613a7257613a716134bf565b5b6000613a8084828501613a47565b91505092915050565b613a92816136c2565b82525050565b600067ffffffffffffffff82169050919050565b613ab581613a98565b82525050565b604082016000820151613ad16000850182613a89565b506020820151613ae46020850182613aac565b50505050565b6000604082019050613aff6000830184613abb565b92915050565b60008060408385031215613b1c57613b1b6134bf565b5b6000613b2a85828601613715565b9250506020613b3b85828601613a47565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b82826135d3565b810181811067ffffffffffffffff82111715613ba157613ba0613b4a565b5b80604052505050565b6000613bb46134b5565b9050613bc08282613b79565b919050565b600067ffffffffffffffff821115613be057613bdf613b4a565b5b613be9826135d3565b9050602081019050919050565b82818337600083830152505050565b6000613c18613c1384613bc5565b613baa565b905082815260208101848484011115613c3457613c33613b45565b5b613c3f848285613bf6565b509392505050565b600082601f830112613c5c57613c5b61388a565b5b8135613c6c848260208601613c05565b91505092915050565b60008060008060808587031215613c8f57613c8e6134bf565b5b6000613c9d87828801613715565b9450506020613cae87828801613715565b9350506040613cbf87828801613660565b925050606085013567ffffffffffffffff811115613ce057613cdf6134c4565b5b613cec87828801613c47565b91505092959194509250565b60008060408385031215613d0f57613d0e6134bf565b5b6000613d1d85828601613715565b9250506020613d2e85828601613715565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7f57607f821691505b60208210811415613d9357613d92613d38565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dcf60208361358f565b9150613dda82613d99565b602082019050919050565b60006020820190508181036000830152613dfe81613dc2565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613e3b601e8361358f565b9150613e4682613e05565b602082019050919050565b60006020820190508181036000830152613e6a81613e2e565b9050919050565b7f616c6c6f776c697374206d757374206265206f70656e65640000000000000000600082015250565b6000613ea760188361358f565b9150613eb282613e71565b602082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f178261363f565b9150613f228361363f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f5757613f56613edd565b5b828201905092915050565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000613f9860128361358f565b9150613fa382613f62565b602082019050919050565b60006020820190508181036000830152613fc781613f8b565b9050919050565b7f7175616e74697479206572726f72000000000000000000000000000000000000600082015250565b6000614004600e8361358f565b915061400f82613fce565b602082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b600061407060168361358f565b915061407b8261403a565b602082019050919050565b6000602082019050818103600083015261409f81614063565b9050919050565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b60006140dc60148361358f565b91506140e7826140a6565b602082019050919050565b6000602082019050818103600083015261410b816140cf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b600061419d60278361358f565b91506141a882614141565b604082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b7f746f6f206d616e7920646576206d696e74000000000000000000000000000000600082015250565b600061420960118361358f565b9150614214826141d3565b602082019050919050565b60006020820190508181036000830152614238816141fc565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614275601f8361358f565b91506142808261423f565b602082019050919050565b600060208201905081810360008301526142a481614268565b9050919050565b600081905092915050565b50565b60006142c66000836142ab565b91506142d1826142b6565b600082019050919050565b60006142e7826142b9565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061432760108361358f565b9150614332826142f1565b602082019050919050565b600060208201905081810360008301526143568161431a565b9050919050565b7f6d6178206d696e74000000000000000000000000000000000000000000000000600082015250565b600061439360088361358f565b915061439e8261435d565b602082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b7f5075626c6963206d696e7420697320636c6f7365640000000000000000000000600082015250565b60006143ff60158361358f565b915061440a826143c9565b602082019050919050565b6000602082019050818103600083015261442e816143f2565b9050919050565b600081905092915050565b600061444b82613584565b6144558185614435565b93506144658185602086016135a0565b80840191505092915050565b600061447d8285614440565b91506144898284614440565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f160268361358f565b91506144fc82614495565b604082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b60006145328261363f565b915061453d8361363f565b9250828210156145505761454f613edd565b5b828203905092915050565b60006145668261363f565b91506145718361363f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145aa576145a9613edd565b5b828202905092915050565b60008160601b9050919050565b60006145cd826145b5565b9050919050565b60006145df826145c2565b9050919050565b6145f76145f2826136c2565b6145d4565b82525050565b6000819050919050565b6146186146138261363f565b6145fd565b82525050565b600061462a82856145e6565b60148201915061463a8284614607565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146848261363f565b915061468f8361363f565b92508261469f5761469e61464a565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b60006146d1826146aa565b6146db81856146b5565b93506146eb8185602086016135a0565b6146f4816135d3565b840191505092915050565b600060808201905061471460008301876136d4565b61472160208301866136d4565b61472e6040830185613797565b818103606083015261474081846146c6565b905095945050505050565b60008151905061475a816134f5565b92915050565b600060208284031215614776576147756134bf565b5b60006147848482850161474b565b91505092915050565b60006147988261363f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147cb576147ca613edd565b5b600182019050919050565b60006147e18261363f565b91506147ec8361363f565b9250826147fc576147fb61464a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61485161484c826137c1565b614836565b82525050565b60006148638285614840565b6020820191506148738284614840565b602082019150819050939250505056fea2646970667358221220f40ff8ebd38afe1c52622b6ab049fb17352d4f0c40ce9031519a05fd5381931164736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000c37c41601bc88c91b6569c701f08d37fa0f565f0000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f636f736d6f64696e6f732d6f6d6567612e6f6e72656e6465722e636f6d2f6170692f636f736d6f64696e6f732f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000f436f736d6f64696e6f734f6d6567610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f436f736d6f64696e6f734f6d6567610000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenUri_ (string): https://cosmodinos-omega.onrender.com/api/cosmodinos/
Arg [1] : name_ (string): CosmodinosOmega
Arg [2] : symbol_ (string): CosmodinosOmega
Arg [3] : devWallet_ (address): 0xc37c41601bC88C91b6569c701f08D37FA0F565f0

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000c37c41601bc88c91b6569c701f08d37fa0f565f0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [5] : 68747470733a2f2f636f736d6f64696e6f732d6f6d6567612e6f6e72656e6465
Arg [6] : 722e636f6d2f6170692f636f736d6f64696e6f732f0000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [8] : 436f736d6f64696e6f734f6d6567610000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [10] : 436f736d6f64696e6f734f6d6567610000000000000000000000000000000000


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.