ETH Price: $2,798.22 (-11.19%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer188988522023-12-30 14:13:47400 days ago1703945627IN
MetaSpace REIT: MREIT Token
0 ETH0.0006821314.538632
Approve185039122023-11-05 6:05:47455 days ago1699164347IN
MetaSpace REIT: MREIT Token
0 ETH0.0007657916.52660151
Approve183486972023-10-14 12:43:59477 days ago1697287439IN
MetaSpace REIT: MREIT Token
0 ETH0.000380098.15421175
Approve181844152023-09-21 13:01:35500 days ago1695301295IN
MetaSpace REIT: MREIT Token
0 ETH0.000541611.68829674
Approve181796942023-09-20 21:09:47501 days ago1695244187IN
MetaSpace REIT: MREIT Token
0 ETH0.0007936619.07259782
Approve180584892023-09-03 20:56:35518 days ago1693774595IN
MetaSpace REIT: MREIT Token
0 ETH0.0005490911.76464476
Transfer170569092023-04-16 3:48:59658 days ago1681616939IN
MetaSpace REIT: MREIT Token
0 ETH0.0012259423.70954408
Approve168764242023-03-21 13:51:47684 days ago1679406707IN
MetaSpace REIT: MREIT Token
0 ETH0.0005643123.13818643
Transfer From166651162023-02-19 20:49:59714 days ago1676839799IN
MetaSpace REIT: MREIT Token
0 ETH0.0004905219.55929062
Transfer From166651152023-02-19 20:49:47714 days ago1676839787IN
MetaSpace REIT: MREIT Token
0 ETH0.0011872221.64058343
Approve166651132023-02-19 20:49:23714 days ago1676839763IN
MetaSpace REIT: MREIT Token
0 ETH0.0008822319.0197381
Transfer165472342023-02-03 9:03:11730 days ago1675414991IN
MetaSpace REIT: MREIT Token
0 ETH0.000706123.66057615
Approve165471682023-02-03 8:49:47730 days ago1675414187IN
MetaSpace REIT: MREIT Token
0 ETH0.0010111121.66388469
Transfer165471632023-02-03 8:48:47730 days ago1675414127IN
MetaSpace REIT: MREIT Token
0 ETH0.0009798318.94542614
Transfer163825992023-01-11 9:13:11753 days ago1673428391IN
MetaSpace REIT: MREIT Token
0 ETH0.0004586615.37536754
Transfer163825912023-01-11 9:11:35753 days ago1673428295IN
MetaSpace REIT: MREIT Token
0 ETH0.0007942615.3608806
Transfer163060112022-12-31 16:43:11764 days ago1672504991IN
MetaSpace REIT: MREIT Token
0 ETH0.0005171817.33022265
Transfer163060072022-12-31 16:42:23764 days ago1672504943IN
MetaSpace REIT: MREIT Token
0 ETH0.0005385118.04502719
Transfer163060022022-12-31 16:41:23764 days ago1672504883IN
MetaSpace REIT: MREIT Token
0 ETH0.0005623118.83476175
Transfer163059972022-12-31 16:40:23764 days ago1672504823IN
MetaSpace REIT: MREIT Token
0 ETH0.0006041817.45229926
Approve162464212022-12-23 9:07:47772 days ago1671786467IN
MetaSpace REIT: MREIT Token
0 ETH0.000513411
Transfer161515532022-12-10 3:15:47785 days ago1670642147IN
MetaSpace REIT: MREIT Token
0 ETH0.0004097715.15278412
Transfer161515442022-12-10 3:13:59785 days ago1670642039IN
MetaSpace REIT: MREIT Token
0 ETH0.0004193515.50705187
Transfer160283692022-11-22 21:57:23803 days ago1669154243IN
MetaSpace REIT: MREIT Token
0 ETH0.000613513.0724988
Transfer160277192022-11-22 19:46:47803 days ago1669146407IN
MetaSpace REIT: MREIT Token
0 ETH0.0004506216.66343201
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MREIT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-24
*/

// SPDX-License-Identifier: MIT
// File: interfaces/IMerkleDistributor.sol


pragma solidity ^0.8.0;

// Allows anyone to claim a token if they exist in a merkle root.
interface IMerkleDistributor {
    // Returns the address of the token distributed by this contract.
    function token() external view returns (address);
    // Returns the merkle root of the merkle tree containing account balances available to claim.
    function merkleRoot() external view returns (bytes32);
    // Returns true if the index has been marked claimed.
    function isClaimed(uint256 index) external view returns (bool);
    // Claim the given amount of the token to the given address. Reverts if the inputs are invalid.
    function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external;

    // This event is triggered whenever a call to #claim succeeds.
    event Claimed(uint256 index, address account, uint256 amount);
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// 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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

// File: MREIT.sol



// Contract for an ENMT token (ERC20 compliant Non-Mintable Token). Fully compliant with the ERC20 specification.

// TOKEN SPECIFICATIONS:
// - Total supply set upon creation.
// - No new tokens can ever be minted.
// - Tokens can be burnt by any user to reduce total supply.
// - Fully ERC20 compliant.
// - This token has no owner, no admin functions, and is fully decentralised.

pragma solidity ^0.8.0;





// A fully ERC20 Compliant Non Mintable Token (ENMT)
contract MREIT is ERC20, Ownable, IMerkleDistributor {
    
    // Defines how to read the TokenInfo ABI, as well as the capabilities of the token
    uint256 public TOKEN_TYPE = 1;
    
    struct TokenInfo {
        uint8 decimals;
        address creator;
    }
    
    TokenInfo public INFO;

    bytes32 public override merkleRoot;
    // address of token i.e MREIT
    address public immutable override token;
    // This is a packed array of booleans for verifying the claims.
    mapping(uint256 => uint256) private claimedBitMap;
    

    constructor(
        string memory _name, 
        string memory _symbol, 
        uint8 _decimals, 
        address _creator, 
        uint256 _totalSupply, 
        bytes32 _merkleRoot
    ) ERC20(_name, _symbol) {
        _mint(msg.sender, _totalSupply);
        INFO = TokenInfo(_decimals, _creator);
        merkleRoot = _merkleRoot;
        token = address(this);
    }
    
    function decimals() public view virtual override returns (uint8) {
        return INFO.decimals;
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }
    

    ///@dev set claim for the given index
    function _setClaimed(uint256 index) internal {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);
    }

    ///@dev called by the user to claim the token
    ///@param index sequential index 
    ///@param account account of the claim address
    ///@param amount amount of claim 
    ///@param merkleProof merkleProof for the claim of the account
    function claim(uint256 index, address account, uint256 amount, bytes32[] calldata merkleProof) external override {
        require(!isClaimed(index), 'MerkleDistributor: Drop already claimed.');

        // Verify the merkle proof.
        bytes32 node = keccak256(abi.encodePacked(index, account, amount));
        require(MerkleProof.verify(merkleProof, merkleRoot, node), 'MerkleDistributor: Invalid proof.');

        // Mark it claimed and send the token.
        _setClaimed(index);
        require(transfer(account, amount), 'MerkleDistributor: Transfer failed.');

        emit Claimed(index, account, amount);
    }

    ///@dev look if already claimed or not for the index
    ///@param index index of the token
    function isClaimed(uint256 index) public view override returns (bool) {
        uint256 claimedWordIndex = index / 256;
        uint256 claimedBitIndex = index % 256;
        uint256 claimedWord = claimedBitMap[claimedWordIndex];
        uint256 mask = (1 << claimedBitIndex);
        return claimedWord & mask == mask;
    }


    ///@dev update merkle root 
    ///@param _newMerkleRoot new merkle root for the distribution
    function updateMerkleRoot(bytes32 _newMerkleRoot) external onlyOwner{
        merkleRoot = _newMerkleRoot;
    }

    ///@dev called by the owner of the contract to rescue the token from the contract
    ///@param amount amount of token to withdraw
    function withdrawToken(uint256 amount) external onlyOwner{
        transfer(msg.sender, amount);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"address","name":"_creator","type":"address"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INFO","outputs":[{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"creator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_TYPE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260016006553480156200001657600080fd5b50604051620019023803806200190283398101604081905262000039916200037c565b855186908690620000529060039060208501906200022b565b508051620000689060049060208401906200022b565b505050620000856200007f620000ee60201b60201c565b620000f2565b62000091338362000144565b6040805180820190915260ff949094168085526001600160a01b039390931660209094018490526007805460ff1916909317610100600160a81b031916610100909402939093179091555060085550503060601b608052620004e7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001765760405162461bcd60e51b81526004016200016d906200042f565b60405180910390fd5b620001846000838362000226565b80600260008282546200019891906200046f565b90915550506001600160a01b03821660009081526020819052604081208054839290620001c79084906200046f565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200020c90859062000466565b60405180910390a3620002226000838362000226565b5050565b505050565b828054620002399062000494565b90600052602060002090601f0160209004810192826200025d5760008555620002a8565b82601f106200027857805160ff1916838001178555620002a8565b82800160010185558215620002a8579182015b82811115620002a85782518255916020019190600101906200028b565b50620002b6929150620002ba565b5090565b5b80821115620002b65760008155600101620002bb565b600082601f830112620002e2578081fd5b81516001600160401b0380821115620002ff57620002ff620004d1565b6040516020601f8401601f1916820181018381118382101715620003275762000327620004d1565b60405283825285840181018710156200033e578485fd5b8492505b8383101562000361578583018101518284018201529182019162000342565b838311156200037257848185840101525b5095945050505050565b60008060008060008060c0878903121562000395578182fd5b86516001600160401b0380821115620003ac578384fd5b620003ba8a838b01620002d1565b97506020890151915080821115620003d0578384fd5b50620003df89828a01620002d1565b955050604087015160ff81168114620003f6578283fd5b60608801519094506001600160a01b038116811462000413578283fd5b809350506080870151915060a087015190509295509295509295565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200048f57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620004a957607f821691505b60208210811415620004cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c6113fc62000506600039600061087d01526113fc6000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806350baa622116100c35780639e34070f1161007c5780639e34070f1461028c578063a457c2d71461029f578063a9059cbb146102b2578063dd62ed3e146102c5578063f2fde38b146102d8578063fc0c546a146102eb5761014d565b806350baa62214610239578063609c92b81461024c57806370a0823114610254578063715018a6146102675780638da5cb5b1461026f57806395d89b41146102845761014d565b80632e7ba6ef116101155780632e7ba6ef146101ce5780632eb4a7ab146101e3578063313ce567146101eb578063395093511461020057806342966c68146102135780634783f0ef146102265761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101905780631c0a00f5146101a557806323b872dd146101bb575b600080fd5b61015a6102f3565b6040516101679190610ea6565b60405180910390f35b61018361017e366004610d76565b610385565b6040516101679190610e92565b6101986103a2565b6040516101679190610e9d565b6101ad6103a8565b6040516101679291906112d1565b6101836101c9366004610d3b565b6103c1565b6101e16101dc366004610db7565b61045a565b005b61019861057e565b6101f3610584565b60405161016791906112c3565b61018361020e366004610d76565b61058d565b6101e1610221366004610d9f565b6105e1565b6101e1610234366004610d9f565b6105f5565b6101e1610247366004610d9f565b610639565b610198610686565b610198610262366004610ce8565b61068c565b6101e16106ab565b6102776106f6565b6040516101679190610e7e565b61015a610705565b61018361029a366004610d9f565b610714565b6101836102ad366004610d76565b610755565b6101836102c0366004610d76565b6107ce565b6101986102d3366004610d09565b6107e2565b6101e16102e6366004610ce8565b61080d565b61027761087b565b60606003805461030290611330565b80601f016020809104026020016040519081016040528092919081815260200182805461032e90611330565b801561037b5780601f106103505761010080835404028352916020019161037b565b820191906000526020600020905b81548152906001019060200180831161035e57829003601f168201915b5050505050905090565b600061039961039261089f565b84846108a3565b50600192915050565b60025490565b60075460ff81169061010090046001600160a01b031682565b60006103ce848484610957565b6001600160a01b0384166000908152600160205260408120816103ef61089f565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561043b5760405162461bcd60e51b815260040161043290611118565b60405180910390fd5b61044f8561044761089f565b8584036108a3565b506001949350505050565b61046385610714565b156104805760405162461bcd60e51b815260040161043290611006565b600085858560405160200161049793929190610e56565b6040516020818303038152906040528051906020012090506104f0838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050610a81565b61050c5760405162461bcd60e51b815260040161043290611094565b61051586610a97565b61051f85856107ce565b61053b5760405162461bcd60e51b8152600401610432906110d5565b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed02686868660405161056e939291906112a4565b60405180910390a1505050505050565b60085481565b60075460ff1690565b600061039961059a61089f565b8484600160006105a861089f565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105dc91906112ed565b6108a3565b6105f26105ec61089f565b82610ad5565b50565b6105fd61089f565b6001600160a01b031661060e6106f6565b6001600160a01b0316146106345760405162461bcd60e51b815260040161043290611160565b600855565b61064161089f565b6001600160a01b03166106526106f6565b6001600160a01b0316146106785760405162461bcd60e51b815260040161043290611160565b61068233826107ce565b5050565b60065481565b6001600160a01b0381166000908152602081905260409020545b919050565b6106b361089f565b6001600160a01b03166106c46106f6565b6001600160a01b0316146106ea5760405162461bcd60e51b815260040161043290611160565b6106f46000610bc7565b565b6005546001600160a01b031690565b60606004805461030290611330565b60008061072361010084611305565b9050600061073361010085611386565b60009283526009602052604090922054600190921b9182169091149392505050565b6000806001600061076461089f565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107b05760405162461bcd60e51b81526004016104329061125f565b6107c46107bb61089f565b858584036108a3565b5060019392505050565b60006103996107db61089f565b8484610957565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61081561089f565b6001600160a01b03166108266106f6565b6001600160a01b03161461084c5760405162461bcd60e51b815260040161043290611160565b6001600160a01b0381166108725760405162461bcd60e51b815260040161043290610f7e565b6105f281610bc7565b7f000000000000000000000000000000000000000000000000000000000000000081565b3390565b6001600160a01b0383166108c95760405162461bcd60e51b81526004016104329061121b565b6001600160a01b0382166108ef5760405162461bcd60e51b815260040161043290610fc4565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061094a908590610e9d565b60405180910390a3505050565b6001600160a01b03831661097d5760405162461bcd60e51b8152600401610432906111d6565b6001600160a01b0382166109a35760405162461bcd60e51b815260040161043290610ef9565b6109ae838383610bc2565b6001600160a01b038316600090815260208190526040902054818110156109e75760405162461bcd60e51b81526004016104329061104e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a1e9084906112ed565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a689190610e9d565b60405180910390a3610a7b848484610bc2565b50505050565b600082610a8e8584610c19565b14949350505050565b6000610aa561010083611305565b90506000610ab561010084611386565b6000928352600960205260409092208054600190931b9092179091555050565b6001600160a01b038216610afb5760405162461bcd60e51b815260040161043290611195565b610b0782600083610bc2565b6001600160a01b03821660009081526020819052604090205481811015610b405760405162461bcd60e51b815260040161043290610f3c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b6f908490611319565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bb2908690610e9d565b60405180910390a3610bc2836000845b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8451811015610cc9576000858281518110610c4957634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311610c8a578281604051602001610c6d929190610e48565b604051602081830303815290604052805190602001209250610cb6565b8083604051602001610c9d929190610e48565b6040516020818303038152906040528051906020012092505b5080610cc18161136b565b915050610c1e565b509392505050565b80356001600160a01b03811681146106a657600080fd5b600060208284031215610cf9578081fd5b610d0282610cd1565b9392505050565b60008060408385031215610d1b578081fd5b610d2483610cd1565b9150610d3260208401610cd1565b90509250929050565b600080600060608486031215610d4f578081fd5b610d5884610cd1565b9250610d6660208501610cd1565b9150604084013590509250925092565b60008060408385031215610d88578182fd5b610d9183610cd1565b946020939093013593505050565b600060208284031215610db0578081fd5b5035919050565b600080600080600060808688031215610dce578081fd5b85359450610dde60208701610cd1565b935060408601359250606086013567ffffffffffffffff80821115610e01578283fd5b818801915088601f830112610e14578283fd5b813581811115610e22578384fd5b8960208083028501011115610e35578384fd5b9699959850939650602001949392505050565b918252602082015260400190565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b81811015610ed257858101830151858201604001528201610eb6565b81811115610ee35783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526028908201527f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060408201526731b630b4b6b2b21760c11b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526023908201527f4d65726b6c654469737472696275746f723a205472616e73666572206661696c60408201526232b21760e91b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b9283526001600160a01b03919091166020830152604082015260600190565b60ff91909116815260200190565b60ff9290921682526001600160a01b0316602082015260400190565b600082198211156113005761130061139a565b500190565b600082611314576113146113b0565b500490565b60008282101561132b5761132b61139a565b500390565b60028104600182168061134457607f821691505b6020821081141561136557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561137f5761137f61139a565b5060010190565b600082611395576113956113b0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea26469706673582212203dae2acf26a0503fa9251fb3027294b791f46fc015a3bf0f5ea424874ca29dbb64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e09578aac23d2162f7b6c108a8c3c14ae0bc816d0000000000000000000000000000000000000000019d971e4fe8401e7400000030518642b3af5aa0354df3bc9664f37849754655d46d1df26f470e90acb8cfa1000000000000000000000000000000000000000000000000000000000000000e4d6574615370616365205245495400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d52454954000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806350baa622116100c35780639e34070f1161007c5780639e34070f1461028c578063a457c2d71461029f578063a9059cbb146102b2578063dd62ed3e146102c5578063f2fde38b146102d8578063fc0c546a146102eb5761014d565b806350baa62214610239578063609c92b81461024c57806370a0823114610254578063715018a6146102675780638da5cb5b1461026f57806395d89b41146102845761014d565b80632e7ba6ef116101155780632e7ba6ef146101ce5780632eb4a7ab146101e3578063313ce567146101eb578063395093511461020057806342966c68146102135780634783f0ef146102265761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101905780631c0a00f5146101a557806323b872dd146101bb575b600080fd5b61015a6102f3565b6040516101679190610ea6565b60405180910390f35b61018361017e366004610d76565b610385565b6040516101679190610e92565b6101986103a2565b6040516101679190610e9d565b6101ad6103a8565b6040516101679291906112d1565b6101836101c9366004610d3b565b6103c1565b6101e16101dc366004610db7565b61045a565b005b61019861057e565b6101f3610584565b60405161016791906112c3565b61018361020e366004610d76565b61058d565b6101e1610221366004610d9f565b6105e1565b6101e1610234366004610d9f565b6105f5565b6101e1610247366004610d9f565b610639565b610198610686565b610198610262366004610ce8565b61068c565b6101e16106ab565b6102776106f6565b6040516101679190610e7e565b61015a610705565b61018361029a366004610d9f565b610714565b6101836102ad366004610d76565b610755565b6101836102c0366004610d76565b6107ce565b6101986102d3366004610d09565b6107e2565b6101e16102e6366004610ce8565b61080d565b61027761087b565b60606003805461030290611330565b80601f016020809104026020016040519081016040528092919081815260200182805461032e90611330565b801561037b5780601f106103505761010080835404028352916020019161037b565b820191906000526020600020905b81548152906001019060200180831161035e57829003601f168201915b5050505050905090565b600061039961039261089f565b84846108a3565b50600192915050565b60025490565b60075460ff81169061010090046001600160a01b031682565b60006103ce848484610957565b6001600160a01b0384166000908152600160205260408120816103ef61089f565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561043b5760405162461bcd60e51b815260040161043290611118565b60405180910390fd5b61044f8561044761089f565b8584036108a3565b506001949350505050565b61046385610714565b156104805760405162461bcd60e51b815260040161043290611006565b600085858560405160200161049793929190610e56565b6040516020818303038152906040528051906020012090506104f0838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050610a81565b61050c5760405162461bcd60e51b815260040161043290611094565b61051586610a97565b61051f85856107ce565b61053b5760405162461bcd60e51b8152600401610432906110d5565b7f4ec90e965519d92681267467f775ada5bd214aa92c0dc93d90a5e880ce9ed02686868660405161056e939291906112a4565b60405180910390a1505050505050565b60085481565b60075460ff1690565b600061039961059a61089f565b8484600160006105a861089f565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546105dc91906112ed565b6108a3565b6105f26105ec61089f565b82610ad5565b50565b6105fd61089f565b6001600160a01b031661060e6106f6565b6001600160a01b0316146106345760405162461bcd60e51b815260040161043290611160565b600855565b61064161089f565b6001600160a01b03166106526106f6565b6001600160a01b0316146106785760405162461bcd60e51b815260040161043290611160565b61068233826107ce565b5050565b60065481565b6001600160a01b0381166000908152602081905260409020545b919050565b6106b361089f565b6001600160a01b03166106c46106f6565b6001600160a01b0316146106ea5760405162461bcd60e51b815260040161043290611160565b6106f46000610bc7565b565b6005546001600160a01b031690565b60606004805461030290611330565b60008061072361010084611305565b9050600061073361010085611386565b60009283526009602052604090922054600190921b9182169091149392505050565b6000806001600061076461089f565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107b05760405162461bcd60e51b81526004016104329061125f565b6107c46107bb61089f565b858584036108a3565b5060019392505050565b60006103996107db61089f565b8484610957565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61081561089f565b6001600160a01b03166108266106f6565b6001600160a01b03161461084c5760405162461bcd60e51b815260040161043290611160565b6001600160a01b0381166108725760405162461bcd60e51b815260040161043290610f7e565b6105f281610bc7565b7f0000000000000000000000002132f6f5a45ab821e99dc1275da764776ceb253081565b3390565b6001600160a01b0383166108c95760405162461bcd60e51b81526004016104329061121b565b6001600160a01b0382166108ef5760405162461bcd60e51b815260040161043290610fc4565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061094a908590610e9d565b60405180910390a3505050565b6001600160a01b03831661097d5760405162461bcd60e51b8152600401610432906111d6565b6001600160a01b0382166109a35760405162461bcd60e51b815260040161043290610ef9565b6109ae838383610bc2565b6001600160a01b038316600090815260208190526040902054818110156109e75760405162461bcd60e51b81526004016104329061104e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a1e9084906112ed565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a689190610e9d565b60405180910390a3610a7b848484610bc2565b50505050565b600082610a8e8584610c19565b14949350505050565b6000610aa561010083611305565b90506000610ab561010084611386565b6000928352600960205260409092208054600190931b9092179091555050565b6001600160a01b038216610afb5760405162461bcd60e51b815260040161043290611195565b610b0782600083610bc2565b6001600160a01b03821660009081526020819052604090205481811015610b405760405162461bcd60e51b815260040161043290610f3c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b6f908490611319565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bb2908690610e9d565b60405180910390a3610bc2836000845b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b8451811015610cc9576000858281518110610c4957634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311610c8a578281604051602001610c6d929190610e48565b604051602081830303815290604052805190602001209250610cb6565b8083604051602001610c9d929190610e48565b6040516020818303038152906040528051906020012092505b5080610cc18161136b565b915050610c1e565b509392505050565b80356001600160a01b03811681146106a657600080fd5b600060208284031215610cf9578081fd5b610d0282610cd1565b9392505050565b60008060408385031215610d1b578081fd5b610d2483610cd1565b9150610d3260208401610cd1565b90509250929050565b600080600060608486031215610d4f578081fd5b610d5884610cd1565b9250610d6660208501610cd1565b9150604084013590509250925092565b60008060408385031215610d88578182fd5b610d9183610cd1565b946020939093013593505050565b600060208284031215610db0578081fd5b5035919050565b600080600080600060808688031215610dce578081fd5b85359450610dde60208701610cd1565b935060408601359250606086013567ffffffffffffffff80821115610e01578283fd5b818801915088601f830112610e14578283fd5b813581811115610e22578384fd5b8960208083028501011115610e35578384fd5b9699959850939650602001949392505050565b918252602082015260400190565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b81811015610ed257858101830151858201604001528201610eb6565b81811115610ee35783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526028908201527f4d65726b6c654469737472696275746f723a2044726f7020616c72656164792060408201526731b630b4b6b2b21760c11b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526023908201527f4d65726b6c654469737472696275746f723a205472616e73666572206661696c60408201526232b21760e91b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b9283526001600160a01b03919091166020830152604082015260600190565b60ff91909116815260200190565b60ff9290921682526001600160a01b0316602082015260400190565b600082198211156113005761130061139a565b500190565b600082611314576113146113b0565b500490565b60008282101561132b5761132b61139a565b500390565b60028104600182168061134457607f821691505b6020821081141561136557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561137f5761137f61139a565b5060010190565b600082611395576113956113b0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea26469706673582212203dae2acf26a0503fa9251fb3027294b791f46fc015a3bf0f5ea424874ca29dbb64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e09578aac23d2162f7b6c108a8c3c14ae0bc816d0000000000000000000000000000000000000000019d971e4fe8401e7400000030518642b3af5aa0354df3bc9664f37849754655d46d1df26f470e90acb8cfa1000000000000000000000000000000000000000000000000000000000000000e4d6574615370616365205245495400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d52454954000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MetaSpace REIT
Arg [1] : _symbol (string): MREIT
Arg [2] : _decimals (uint8): 18
Arg [3] : _creator (address): 0xe09578AAc23D2162F7B6c108a8C3c14AE0Bc816D
Arg [4] : _totalSupply (uint256): 500000000000000000000000000
Arg [5] : _merkleRoot (bytes32): 0x30518642b3af5aa0354df3bc9664f37849754655d46d1df26f470e90acb8cfa1

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000e09578aac23d2162f7b6c108a8c3c14ae0bc816d
Arg [4] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [5] : 30518642b3af5aa0354df3bc9664f37849754655d46d1df26f470e90acb8cfa1
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 4d65746153706163652052454954000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4d52454954000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22794:3291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12325:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14492:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13445:108::-;;;:::i;:::-;;;;;;;:::i;23078:21::-;;;:::i;:::-;;;;;;;;:::i;15143:492::-;;;;;;:::i;:::-;;:::i;24530:636::-;;;;;;:::i;:::-;;:::i;:::-;;23108:34;;;:::i;23762:104::-;;;:::i;:::-;;;;;;;:::i;16044:215::-;;;;;;:::i;:::-;;:::i;23874:91::-;;;;;;:::i;:::-;;:::i;25713:114::-;;;;;;:::i;:::-;;:::i;25972:104::-;;;;;;:::i;:::-;;:::i;22948:29::-;;;:::i;13616:127::-;;;;;;:::i;:::-;;:::i;5746:103::-;;;:::i;5095:87::-;;;:::i;:::-;;;;;;;:::i;12544:104::-;;;:::i;25272:331::-;;;;;;:::i;:::-;;:::i;16762:413::-;;;;;;:::i;:::-;;:::i;13956:175::-;;;;;;:::i;:::-;;:::i;14194:151::-;;;;;;:::i;:::-;;:::i;6004:201::-;;;;;;:::i;:::-;;:::i;23184:39::-;;;:::i;12325:100::-;12379:13;12412:5;12405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12325:100;:::o;14492:169::-;14575:4;14592:39;14601:12;:10;:12::i;:::-;14615:7;14624:6;14592:8;:39::i;:::-;-1:-1:-1;14649:4:0;14492:169;;;;:::o;13445:108::-;13533:12;;13445:108;:::o;23078:21::-;;;;;;;;;;-1:-1:-1;;;;;23078:21:0;;:::o;15143:492::-;15283:4;15300:36;15310:6;15318:9;15329:6;15300:9;:36::i;:::-;-1:-1:-1;;;;;15376:19:0;;15349:24;15376:19;;;:11;:19;;;;;15349:24;15396:12;:10;:12::i;:::-;-1:-1:-1;;;;;15376:33:0;-1:-1:-1;;;;;15376:33:0;;;;;;;;;;;;;15349:60;;15448:6;15428:16;:26;;15420:79;;;;-1:-1:-1;;;15420:79:0;;;;;;;:::i;:::-;;;;;;;;;15535:57;15544:6;15552:12;:10;:12::i;:::-;15585:6;15566:16;:25;15535:8;:57::i;:::-;-1:-1:-1;15623:4:0;;15143:492;-1:-1:-1;;;;15143:492:0:o;24530:636::-;24663:16;24673:5;24663:9;:16::i;:::-;24662:17;24654:70;;;;-1:-1:-1;;;24654:70:0;;;;;;;:::i;:::-;24774:12;24816:5;24823:7;24832:6;24799:40;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24789:51;;;;;;24774:66;;24859:49;24878:11;;24859:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24891:10:0;;;-1:-1:-1;24903:4:0;;-1:-1:-1;24859:18:0;:49::i;:::-;24851:95;;;;-1:-1:-1;;;24851:95:0;;;;;;;:::i;:::-;25007:18;25019:5;25007:11;:18::i;:::-;25044:25;25053:7;25062:6;25044:8;:25::i;:::-;25036:73;;;;-1:-1:-1;;;25036:73:0;;;;;;;:::i;:::-;25127:31;25135:5;25142:7;25151:6;25127:31;;;;;;;;:::i;:::-;;;;;;;;24530:636;;;;;;:::o;23108:34::-;;;;:::o;23762:104::-;23845:4;:13;;;23762:104;:::o;16044:215::-;16132:4;16149:80;16158:12;:10;:12::i;:::-;16172:7;16218:10;16181:11;:25;16193:12;:10;:12::i;:::-;-1:-1:-1;;;;;16181:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16181:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;16149:8;:80::i;23874:91::-;23930:27;23936:12;:10;:12::i;:::-;23950:6;23930:5;:27::i;:::-;23874:91;:::o;25713:114::-;5326:12;:10;:12::i;:::-;-1:-1:-1;;;;;5315:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5315:23:0;;5307:68;;;;-1:-1:-1;;;5307:68:0;;;;;;;:::i;:::-;25792:10:::1;:27:::0;25713:114::o;25972:104::-;5326:12;:10;:12::i;:::-;-1:-1:-1;;;;;5315:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5315:23:0;;5307:68;;;;-1:-1:-1;;;5307:68:0;;;;;;;:::i;:::-;26040:28:::1;26049:10;26061:6;26040:8;:28::i;:::-;;25972:104:::0;:::o;22948:29::-;;;;:::o;13616:127::-;-1:-1:-1;;;;;13717:18:0;;13690:7;13717:18;;;;;;;;;;;13616:127;;;;:::o;5746:103::-;5326:12;:10;:12::i;:::-;-1:-1:-1;;;;;5315:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5315:23:0;;5307:68;;;;-1:-1:-1;;;5307:68:0;;;;;;;:::i;:::-;5811:30:::1;5838:1;5811:18;:30::i;:::-;5746:103::o:0;5095:87::-;5168:6;;-1:-1:-1;;;;;5168:6:0;5095:87;:::o;12544:104::-;12600:13;12633:7;12626:14;;;;;:::i;25272:331::-;25336:4;;25380:11;25388:3;25380:5;:11;:::i;:::-;25353:38;-1:-1:-1;25402:23:0;25428:11;25436:3;25428:5;:11;:::i;:::-;25450:19;25472:31;;;:13;:31;;;;;;;25530:1;:20;;;25569:18;;;:26;;;;25272:331;-1:-1:-1;;;25272:331:0:o;16762:413::-;16855:4;16872:24;16899:11;:25;16911:12;:10;:12::i;:::-;-1:-1:-1;;;;;16899:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16899:25:0;;;:34;;;;;;;;;;;-1:-1:-1;16952:35:0;;;;16944:85;;;;-1:-1:-1;;;16944:85:0;;;;;;;:::i;:::-;17065:67;17074:12;:10;:12::i;:::-;17088:7;17116:15;17097:16;:34;17065:8;:67::i;:::-;-1:-1:-1;17163:4:0;;16762:413;-1:-1:-1;;;16762:413:0:o;13956:175::-;14042:4;14059:42;14069:12;:10;:12::i;:::-;14083:9;14094:6;14059:9;:42::i;14194:151::-;-1:-1:-1;;;;;14310:18:0;;;14283:7;14310:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14194:151::o;6004:201::-;5326:12;:10;:12::i;:::-;-1:-1:-1;;;;;5315:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5315:23:0;;5307:68;;;;-1:-1:-1;;;5307:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6093:22:0;::::1;6085:73;;;;-1:-1:-1::0;;;6085:73:0::1;;;;;;;:::i;:::-;6169:28;6188:8;6169:18;:28::i;23184:39::-:0;;;:::o;3819:98::-;3899:10;3819:98;:::o;20446:380::-;-1:-1:-1;;;;;20582:19:0;;20574:68;;;;-1:-1:-1;;;20574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20661:21:0;;20653:68;;;;-1:-1:-1;;;20653:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20734:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;20786:32;;;;;20764:6;;20786:32;:::i;:::-;;;;;;;;20446:380;;;:::o;17665:733::-;-1:-1:-1;;;;;17805:20:0;;17797:70;;;;-1:-1:-1;;;17797:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17886:23:0;;17878:71;;;;-1:-1:-1;;;17878:71:0;;;;;;;:::i;:::-;17962:47;17983:6;17991:9;18002:6;17962:20;:47::i;:::-;-1:-1:-1;;;;;18046:17:0;;18022:21;18046:17;;;;;;;;;;;18082:23;;;;18074:74;;;;-1:-1:-1;;;18074:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18184:17:0;;;:9;:17;;;;;;;;;;;18204:22;;;18184:42;;18248:20;;;;;;;;:30;;18220:6;;18184:9;18248:30;;18220:6;;18248:30;:::i;:::-;;;;;;;;18313:9;-1:-1:-1;;;;;18296:35:0;18305:6;-1:-1:-1;;;;;18296:35:0;;18324:6;18296:35;;;;;;:::i;:::-;;;;;;;;18344:46;18364:6;18372:9;18383:6;18344:19;:46::i;:::-;17665:733;;;;:::o;1880:190::-;2005:4;2058;2029:25;2042:5;2049:4;2029:12;:25::i;:::-;:33;;1880:190;-1:-1:-1;;;;1880:190:0:o;24022:251::-;24078:24;24105:11;24113:3;24105:5;:11;:::i;:::-;24078:38;-1:-1:-1;24127:23:0;24153:11;24161:3;24153:5;:11;:::i;:::-;24209:31;;;;:13;:31;;;;;;;;24244:1;:20;;;24209:56;;;24175:90;;;-1:-1:-1;;24022:251:0:o;19417:591::-;-1:-1:-1;;;;;19501:21:0;;19493:67;;;;-1:-1:-1;;;19493:67:0;;;;;;;:::i;:::-;19573:49;19594:7;19611:1;19615:6;19573:20;:49::i;:::-;-1:-1:-1;;;;;19660:18:0;;19635:22;19660:18;;;;;;;;;;;19697:24;;;;19689:71;;;;-1:-1:-1;;;19689:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19796:18:0;;:9;:18;;;;;;;;;;19817:23;;;19796:44;;19862:12;:22;;19834:6;;19796:9;19862:22;;19834:6;;19862:22;:::i;:::-;;;;-1:-1:-1;;19902:37:0;;19928:1;;-1:-1:-1;;;;;19902:37:0;;;;;;;19932:6;;19902:37;:::i;:::-;;;;;;;;19952:48;19972:7;19989:1;19993:6;19952:48;19417:591;;;:::o;6365:191::-;6458:6;;;-1:-1:-1;;;;;6475:17:0;;;-1:-1:-1;;;;;;6475:17:0;;;;;;;6508:40;;6458:6;;;6475:17;6458:6;;6508:40;;6439:16;;6508:40;6365:191;;:::o;2432:701::-;2515:7;2558:4;2515:7;2573:523;2597:5;:12;2593:1;:16;2573:523;;;2631:20;2654:5;2660:1;2654:8;;;;;;-1:-1:-1;;;2654:8:0;;;;;;;;;;;;;;;2631:31;;2697:12;2681;:28;2677:408;;2851:12;2865;2834:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2824:55;;;;;;2809:70;;2677:408;;;3041:12;3055;3024:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3014:55;;;;;;2999:70;;2677:408;-1:-1:-1;2611:3:0;;;;:::i;:::-;;;;2573:523;;;-1:-1:-1;3113:12:0;2432:701;-1:-1:-1;;;2432:701:0:o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1684:879::-;;;;;;1882:3;1870:9;1861:7;1857:23;1853:33;1850:2;;;1904:6;1896;1889:22;1850:2;1945:9;1932:23;1922:33;;1974:40;2010:2;1999:9;1995:18;1974:40;:::i;:::-;1964:50;;2061:2;2050:9;2046:18;2033:32;2023:42;;2116:2;2105:9;2101:18;2088:32;2139:18;2180:2;2172:6;2169:14;2166:2;;;2201:6;2193;2186:22;2166:2;2244:6;2233:9;2229:22;2219:32;;2289:7;2282:4;2278:2;2274:13;2270:27;2260:2;;2316:6;2308;2301:22;2260:2;2361;2348:16;2387:2;2379:6;2376:14;2373:2;;;2408:6;2400;2393:22;2373:2;2467:7;2462:2;2456;2448:6;2444:15;2440:2;2436:24;2432:33;2429:46;2426:2;;;2493:6;2485;2478:22;2426:2;1840:723;;;;-1:-1:-1;1840:723:1;;-1:-1:-1;2529:2:1;2521:11;;2551:6;1840:723;-1:-1:-1;;;1840:723:1:o;2568:247::-;2725:19;;;2769:2;2760:12;;2753:28;2806:2;2797:12;;2715:100::o;2820:359::-;3005:19;;;3062:2;3058:15;;;;-1:-1:-1;;3054:53:1;3049:2;3040:12;;3033:75;3133:2;3124:12;;3117:28;3170:2;3161:12;;2995:184::o;3184:203::-;-1:-1:-1;;;;;3348:32:1;;;;3330:51;;3318:2;3303:18;;3285:102::o;3392:187::-;3557:14;;3550:22;3532:41;;3520:2;3505:18;;3487:92::o;3584:177::-;3730:25;;;3718:2;3703:18;;3685:76::o;3766:603::-;;3907:2;3936;3925:9;3918:21;3968:6;3962:13;4011:6;4006:2;3995:9;3991:18;3984:34;4036:4;4049:140;4063:6;4060:1;4057:13;4049:140;;;4158:14;;;4154:23;;4148:30;4124:17;;;4143:2;4120:26;4113:66;4078:10;;4049:140;;;4207:6;4204:1;4201:13;4198:2;;;4277:4;4272:2;4263:6;4252:9;4248:22;4244:31;4237:45;4198:2;-1:-1:-1;4353:2:1;4332:15;-1:-1:-1;;4328:29:1;4313:45;;;;4360:2;4309:54;;3887:482;-1:-1:-1;;;3887:482:1:o;4374:399::-;4576:2;4558:21;;;4615:2;4595:18;;;4588:30;4654:34;4649:2;4634:18;;4627:62;-1:-1:-1;;;4720:2:1;4705:18;;4698:33;4763:3;4748:19;;4548:225::o;4778:398::-;4980:2;4962:21;;;5019:2;4999:18;;;4992:30;5058:34;5053:2;5038:18;;5031:62;-1:-1:-1;;;5124:2:1;5109:18;;5102:32;5166:3;5151:19;;4952:224::o;5181:402::-;5383:2;5365:21;;;5422:2;5402:18;;;5395:30;5461:34;5456:2;5441:18;;5434:62;-1:-1:-1;;;5527:2:1;5512:18;;5505:36;5573:3;5558:19;;5355:228::o;5588:398::-;5790:2;5772:21;;;5829:2;5809:18;;;5802:30;5868:34;5863:2;5848:18;;5841:62;-1:-1:-1;;;5934:2:1;5919:18;;5912:32;5976:3;5961:19;;5762:224::o;5991:404::-;6193:2;6175:21;;;6232:2;6212:18;;;6205:30;6271:34;6266:2;6251:18;;6244:62;-1:-1:-1;;;6337:2:1;6322:18;;6315:38;6385:3;6370:19;;6165:230::o;6400:402::-;6602:2;6584:21;;;6641:2;6621:18;;;6614:30;6680:34;6675:2;6660:18;;6653:62;-1:-1:-1;;;6746:2:1;6731:18;;6724:36;6792:3;6777:19;;6574:228::o;6807:397::-;7009:2;6991:21;;;7048:2;7028:18;;;7021:30;7087:34;7082:2;7067:18;;7060:62;-1:-1:-1;;;7153:2:1;7138:18;;7131:31;7194:3;7179:19;;6981:223::o;7209:399::-;7411:2;7393:21;;;7450:2;7430:18;;;7423:30;7489:34;7484:2;7469:18;;7462:62;-1:-1:-1;;;7555:2:1;7540:18;;7533:33;7598:3;7583:19;;7383:225::o;7613:404::-;7815:2;7797:21;;;7854:2;7834:18;;;7827:30;7893:34;7888:2;7873:18;;7866:62;-1:-1:-1;;;7959:2:1;7944:18;;7937:38;8007:3;7992:19;;7787:230::o;8022:356::-;8224:2;8206:21;;;8243:18;;;8236:30;8302:34;8297:2;8282:18;;8275:62;8369:2;8354:18;;8196:182::o;8383:397::-;8585:2;8567:21;;;8624:2;8604:18;;;8597:30;8663:34;8658:2;8643:18;;8636:62;-1:-1:-1;;;8729:2:1;8714:18;;8707:31;8770:3;8755:19;;8557:223::o;8785:401::-;8987:2;8969:21;;;9026:2;9006:18;;;8999:30;9065:34;9060:2;9045:18;;9038:62;-1:-1:-1;;;9131:2:1;9116:18;;9109:35;9176:3;9161:19;;8959:227::o;9191:400::-;9393:2;9375:21;;;9432:2;9412:18;;;9405:30;9471:34;9466:2;9451:18;;9444:62;-1:-1:-1;;;9537:2:1;9522:18;;9515:34;9581:3;9566:19;;9365:226::o;9596:401::-;9798:2;9780:21;;;9837:2;9817:18;;;9810:30;9876:34;9871:2;9856:18;;9849:62;-1:-1:-1;;;9942:2:1;9927:18;;9920:35;9987:3;9972:19;;9770:227::o;10184:345::-;10386:25;;;-1:-1:-1;;;;;10447:32:1;;;;10442:2;10427:18;;10420:60;10511:2;10496:18;;10489:34;10374:2;10359:18;;10341:188::o;10534:184::-;10706:4;10694:17;;;;10676:36;;10664:2;10649:18;;10631:87::o;10723:281::-;10923:4;10911:17;;;;10893:36;;-1:-1:-1;;;;;10965:32:1;10960:2;10945:18;;10938:60;10881:2;10866:18;;10848:156::o;11009:128::-;;11080:1;11076:6;11073:1;11070:13;11067:2;;;11086:18;;:::i;:::-;-1:-1:-1;11122:9:1;;11057:80::o;11142:120::-;;11208:1;11198:2;;11213:18;;:::i;:::-;-1:-1:-1;11247:9:1;;11188:74::o;11267:125::-;;11335:1;11332;11329:8;11326:2;;;11340:18;;:::i;:::-;-1:-1:-1;11377:9:1;;11316:76::o;11397:380::-;11482:1;11472:12;;11529:1;11519:12;;;11540:2;;11594:4;11586:6;11582:17;11572:27;;11540:2;11647;11639:6;11636:14;11616:18;11613:38;11610:2;;;11693:10;11688:3;11684:20;11681:1;11674:31;11728:4;11725:1;11718:15;11756:4;11753:1;11746:15;11610:2;;11452:325;;;:::o;11782:135::-;;-1:-1:-1;;11842:17:1;;11839:2;;;11862:18;;:::i;:::-;-1:-1:-1;11909:1:1;11898:13;;11829:88::o;11922:112::-;;11980:1;11970:2;;11985:18;;:::i;:::-;-1:-1:-1;12019:9:1;;11960:74::o;12039:127::-;12100:10;12095:3;12091:20;12088:1;12081:31;12131:4;12128:1;12121:15;12155:4;12152:1;12145:15;12171:127;12232:10;12227:3;12223:20;12220:1;12213:31;12263:4;12260:1;12253:15;12287:4;12284:1;12277:15

Swarm Source

ipfs://3dae2acf26a0503fa9251fb3027294b791f46fc015a3bf0f5ea424874ca29dbb

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

MetaSpace REIT (MREIT) is a tokenized metaverse real estate investment trust. MREIT acquires and leases virtual assets while sending rewards back to token holders. MREIT had a successful launch on Unicrypt in December 2021.MREIT seeks to become a global leader in the metaverse space.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.