ETH Price: $2,851.96 (-6.61%)
Gas: 9 Gwei

Token

XXMON (xXMON)
 

Overview

Max Total Supply

16.985722984134777835 xXMON

Holders

164 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mattioboy.eth
Balance
0.000153077260637758 xXMON

Value
$0.00
0xe7620ef6e16e42efae942790e76797ae1aeddebb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Stake your XMON to earn fees from various 0xmons projects.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XXMON

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-15
*/

// SPDX-License-Identifier: AGPL-3.0-or-later

/**
 *Submitted for verification at Etherscan.io on 2020-09-05
*/

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

pragma solidity ^0.6.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/GSN/Context.sol



pragma solidity ^0.6.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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.6.2;

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.6.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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}

// Forked from: contracts/SushiBar.sol

pragma solidity 0.6.8;
contract XXMON is ERC20("XXMON", "xXMON"){

    using SafeMath for uint256;
    IERC20 public xmon;

    constructor(IERC20 _xmon) public {
        xmon = _xmon;
    }

    // Wrap XMON to xXMON
    function enter(uint256 _amount) public {
        uint256 totalSushi = xmon.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        if (totalShares == 0 || totalSushi == 0) {
            _mint(msg.sender, _amount);
        } else {
            uint256 what = _amount.mul(totalShares).div(totalSushi);
            _mint(msg.sender, what);
        }
        xmon.transferFrom(msg.sender, address(this), _amount);
    }

    // Unwrap XMON to xXMON
    function leave(uint256 _share) public {
        uint256 totalShares = totalSupply();
        uint256 what = _share.mul(xmon.balanceOf(address(this))).div(totalShares);
        _burn(msg.sender, _share);
        xmon.transfer(msg.sender, what);
    }

    // Calculates amount received if leaves
    function exchangeRate(uint256 amount) public view returns(uint256) {
      uint256 totalShares = totalSupply();
      uint256 what = amount.mul(xmon.balanceOf(address(this))).div(totalShares);
      return what;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_xmon","type":"address"}],"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":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":[{"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":[],"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":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"exchangeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"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":[],"name":"xmon","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200136a3803806200136a833981810160405260208110156200003757600080fd5b50516040805180820182526005808252642c2c26a7a760d91b60208381019182528451808601909552918452643c2c26a7a760d91b9184019190915281519192916200008691600391620000d6565b5080516200009c906004906020840190620000d6565b5050600580546001600160a01b0390931661010002610100600160a81b031960ff199094166012179390931692909217909155506200017b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011957805160ff191683800117855562000149565b8280016001018555821562000149579182015b82811115620001495782518255916020019190600101906200012c565b50620001579291506200015b565b5090565b6200017891905b8082111562000157576000815560010162000162565b90565b6111df806200018b6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a59f3e0c11610066578063a59f3e0c146102ee578063a9059cbb1461030b578063dd62ed3e14610337578063e2928ffb14610365576100f5565b806370a082311461027057806388d6988d1461029657806395d89b41146102ba578063a457c2d7146102c2576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461022557806367dfd4c914610251576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b610102610382565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b038135169060200135610418565b604080519115158252519081900360200190f35b6101bf610436565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b0381358116916020810135909116906040013561043c565b61020f6104c9565b6040805160ff9092168252519081900360200190f35b6101a36004803603604081101561023b57600080fd5b506001600160a01b0381351690602001356104d2565b61026e6004803603602081101561026757600080fd5b5035610526565b005b6101bf6004803603602081101561028657600080fd5b50356001600160a01b0316610680565b61029e61069b565b604080516001600160a01b039092168252519081900360200190f35b6101026106af565b6101a3600480360360408110156102d857600080fd5b506001600160a01b038135169060200135610710565b61026e6004803603602081101561030457600080fd5b503561077e565b6101a36004803603604081101561032157600080fd5b506001600160a01b0381351690602001356108a9565b6101bf6004803603604081101561034d57600080fd5b506001600160a01b03813581169160200135166108bd565b6101bf6004803603602081101561037b57600080fd5b50356108e8565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c6104256109aa565b84846109ae565b5060015b92915050565b60025490565b6000610449848484610a9a565b6104bf846104556109aa565b6104ba856040518060600160405280602881526020016110f3602891396001600160a01b038a166000908152600160205260408120906104936109aa565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c0116565b6109ae565b5060019392505050565b60055460ff1690565b600061042c6104df6109aa565b846104ba85600160006104f06109aa565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c9816565b6000610530610436565b905060006105eb826105df600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156105a657600080fd5b505afa1580156105ba573d6000803e3d6000fd5b505050506040513d60208110156105d057600080fd5b5051869063ffffffff610cf916565b9063ffffffff610d5216565b90506105f73384610d94565b6005546040805163a9059cbb60e01b81523360048201526024810184905290516101009092046001600160a01b03169163a9059cbb916044808201926020929091908290030181600087803b15801561064f57600080fd5b505af1158015610663573d6000803e3d6000fd5b505050506040513d602081101561067957600080fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b031681565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b600061042c61071d6109aa565b846104ba8560405180606001604052806025815260200161118560259139600160006107476109aa565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c0116565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156107ce57600080fd5b505afa1580156107e2573d6000803e3d6000fd5b505050506040513d60208110156107f857600080fd5b505190506000610806610436565b9050801580610813575081155b15610827576108223384610e9c565b61084b565b600061083d836105df868563ffffffff610cf916565b90506108493382610e9c565b505b600554604080516323b872dd60e01b81523360048201523060248201526044810186905290516101009092046001600160a01b0316916323b872dd916064808201926020929091908290030181600087803b15801561064f57600080fd5b600061042c6108b66109aa565b8484610a9a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000806108f3610436565b905060006109a2826105df600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d602081101561099357600080fd5b5051879063ffffffff610cf916565b949350505050565b3390565b6001600160a01b0383166109f35760405162461bcd60e51b81526004018080602001828103825260248152602001806111616024913960400191505060405180910390fd5b6001600160a01b038216610a385760405162461bcd60e51b815260040180806020018281038252602281526020018061108a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610adf5760405162461bcd60e51b815260040180806020018281038252602581526020018061113c6025913960400191505060405180910390fd5b6001600160a01b038216610b245760405162461bcd60e51b81526004018080602001828103825260238152602001806110456023913960400191505060405180910390fd5b610b2f838383610f98565b610b72816040518060600160405280602681526020016110ac602691396001600160a01b038616600090815260208190526040902054919063ffffffff610c0116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ba7908263ffffffff610c9816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c55578181015183820152602001610c3d565b50505050905090810190601f168015610c825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cf2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082610d0857506000610430565b82820282848281610d1557fe5b0414610cf25760405162461bcd60e51b81526004018080602001828103825260218152602001806110d26021913960400191505060405180910390fd5b6000610cf283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f9d565b6001600160a01b038216610dd95760405162461bcd60e51b815260040180806020018281038252602181526020018061111b6021913960400191505060405180910390fd5b610de582600083610f98565b610e2881604051806060016040528060228152602001611068602291396001600160a01b038516600090815260208190526040902054919063ffffffff610c0116565b6001600160a01b038316600090815260208190526040902055600254610e54908263ffffffff61100216565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610ef7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610f0360008383610f98565b600254610f16908263ffffffff610c9816565b6002556001600160a01b038216600090815260208190526040902054610f42908263ffffffff610c9816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008183610fec5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610c55578181015183820152602001610c3d565b506000838581610ff857fe5b0495945050505050565b6000610cf283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c0156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209534cc55e395e0a961ea6f87ccad9abfd2f6621dea5e63bc215b0eb052fd806a64736f6c634300060800330000000000000000000000003aada3e213abf8529606924d8d1c55cbdc70bf74

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a59f3e0c11610066578063a59f3e0c146102ee578063a9059cbb1461030b578063dd62ed3e14610337578063e2928ffb14610365576100f5565b806370a082311461027057806388d6988d1461029657806395d89b41146102ba578063a457c2d7146102c2576100f5565b806323b872dd116100d357806323b872dd146101d1578063313ce56714610207578063395093511461022557806367dfd4c914610251576100f5565b806306fdde03146100fa578063095ea7b31461017757806318160ddd146101b7575b600080fd5b610102610382565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013c578181015183820152602001610124565b50505050905090810190601f1680156101695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561018d57600080fd5b506001600160a01b038135169060200135610418565b604080519115158252519081900360200190f35b6101bf610436565b60408051918252519081900360200190f35b6101a3600480360360608110156101e757600080fd5b506001600160a01b0381358116916020810135909116906040013561043c565b61020f6104c9565b6040805160ff9092168252519081900360200190f35b6101a36004803603604081101561023b57600080fd5b506001600160a01b0381351690602001356104d2565b61026e6004803603602081101561026757600080fd5b5035610526565b005b6101bf6004803603602081101561028657600080fd5b50356001600160a01b0316610680565b61029e61069b565b604080516001600160a01b039092168252519081900360200190f35b6101026106af565b6101a3600480360360408110156102d857600080fd5b506001600160a01b038135169060200135610710565b61026e6004803603602081101561030457600080fd5b503561077e565b6101a36004803603604081101561032157600080fd5b506001600160a01b0381351690602001356108a9565b6101bf6004803603604081101561034d57600080fd5b506001600160a01b03813581169160200135166108bd565b6101bf6004803603602081101561037b57600080fd5b50356108e8565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b600061042c6104256109aa565b84846109ae565b5060015b92915050565b60025490565b6000610449848484610a9a565b6104bf846104556109aa565b6104ba856040518060600160405280602881526020016110f3602891396001600160a01b038a166000908152600160205260408120906104936109aa565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c0116565b6109ae565b5060019392505050565b60055460ff1690565b600061042c6104df6109aa565b846104ba85600160006104f06109aa565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c9816565b6000610530610436565b905060006105eb826105df600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156105a657600080fd5b505afa1580156105ba573d6000803e3d6000fd5b505050506040513d60208110156105d057600080fd5b5051869063ffffffff610cf916565b9063ffffffff610d5216565b90506105f73384610d94565b6005546040805163a9059cbb60e01b81523360048201526024810184905290516101009092046001600160a01b03169163a9059cbb916044808201926020929091908290030181600087803b15801561064f57600080fd5b505af1158015610663573d6000803e3d6000fd5b505050506040513d602081101561067957600080fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b031681565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561040e5780601f106103e35761010080835404028352916020019161040e565b600061042c61071d6109aa565b846104ba8560405180606001604052806025815260200161118560259139600160006107476109aa565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c0116565b600554604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156107ce57600080fd5b505afa1580156107e2573d6000803e3d6000fd5b505050506040513d60208110156107f857600080fd5b505190506000610806610436565b9050801580610813575081155b15610827576108223384610e9c565b61084b565b600061083d836105df868563ffffffff610cf916565b90506108493382610e9c565b505b600554604080516323b872dd60e01b81523360048201523060248201526044810186905290516101009092046001600160a01b0316916323b872dd916064808201926020929091908290030181600087803b15801561064f57600080fd5b600061042c6108b66109aa565b8484610a9a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000806108f3610436565b905060006109a2826105df600560019054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d602081101561099357600080fd5b5051879063ffffffff610cf916565b949350505050565b3390565b6001600160a01b0383166109f35760405162461bcd60e51b81526004018080602001828103825260248152602001806111616024913960400191505060405180910390fd5b6001600160a01b038216610a385760405162461bcd60e51b815260040180806020018281038252602281526020018061108a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610adf5760405162461bcd60e51b815260040180806020018281038252602581526020018061113c6025913960400191505060405180910390fd5b6001600160a01b038216610b245760405162461bcd60e51b81526004018080602001828103825260238152602001806110456023913960400191505060405180910390fd5b610b2f838383610f98565b610b72816040518060600160405280602681526020016110ac602691396001600160a01b038616600090815260208190526040902054919063ffffffff610c0116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ba7908263ffffffff610c9816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c905760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c55578181015183820152602001610c3d565b50505050905090810190601f168015610c825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cf2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082610d0857506000610430565b82820282848281610d1557fe5b0414610cf25760405162461bcd60e51b81526004018080602001828103825260218152602001806110d26021913960400191505060405180910390fd5b6000610cf283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610f9d565b6001600160a01b038216610dd95760405162461bcd60e51b815260040180806020018281038252602181526020018061111b6021913960400191505060405180910390fd5b610de582600083610f98565b610e2881604051806060016040528060228152602001611068602291396001600160a01b038516600090815260208190526040902054919063ffffffff610c0116565b6001600160a01b038316600090815260208190526040902055600254610e54908263ffffffff61100216565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610ef7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610f0360008383610f98565b600254610f16908263ffffffff610c9816565b6002556001600160a01b038216600090815260208190526040902054610f42908263ffffffff610c9816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008183610fec5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610c55578181015183820152602001610c3d565b506000838581610ff857fe5b0495945050505050565b6000610cf283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c0156fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209534cc55e395e0a961ea6f87ccad9abfd2f6621dea5e63bc215b0eb052fd806a64736f6c63430006080033

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

0000000000000000000000003aada3e213abf8529606924d8d1c55cbdc70bf74

-----Decoded View---------------
Arg [0] : _xmon (address): 0x3aaDA3e213aBf8529606924d8D1c55CbDc70Bf74

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003aada3e213abf8529606924d8d1c55cbdc70bf74


Deployed Bytecode Sourcemap

26601:1225:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26601:1225:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17718:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17718:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19824:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19824:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18793:100;;;:::i;:::-;;;;;;;;;;;;;;;;20467:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20467:321:0;;;;;;;;;;;;;;;;;:::i;18645:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21197:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21197:218:0;;;;;;;;:::i;27295:254::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27295:254:0;;:::i;:::-;;18956:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18956:119:0;-1:-1:-1;;;;;18956:119:0;;:::i;26684:18::-;;;:::i;:::-;;;;-1:-1:-1;;;;;26684:18:0;;;;;;;;;;;;;;17920:87;;;:::i;21918:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21918:269:0;;;;;;;;:::i;26810:448::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26810:448:0;;:::i;19288:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19288:175:0;;;;;;;;:::i;19526:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19526:151:0;;;;;;;;;;:::i;27602:221::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27602:221:0;;:::i;17718:83::-;17788:5;17781:12;;;;;;;;-1:-1:-1;;17781:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17755:13;;17781:12;;17788:5;;17781:12;;17788:5;17781:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17718:83;:::o;19824:169::-;19907:4;19924:39;19933:12;:10;:12::i;:::-;19947:7;19956:6;19924:8;:39::i;:::-;-1:-1:-1;19981:4:0;19824:169;;;;;:::o;18793:100::-;18873:12;;18793:100;:::o;20467:321::-;20573:4;20590:36;20600:6;20608:9;20619:6;20590:9;:36::i;:::-;20637:121;20646:6;20654:12;:10;:12::i;:::-;20668:89;20706:6;20668:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20668:19:0;;;;;;:11;:19;;;;;;20688:12;:10;:12::i;:::-;-1:-1:-1;;;;;20668:33:0;;;;;;;;;;;;-1:-1:-1;20668:33:0;;;:89;;:37;:89;:::i;:::-;20637:8;:121::i;:::-;-1:-1:-1;20776:4:0;20467:321;;;;;:::o;18645:83::-;18711:9;;;;18645:83;:::o;21197:218::-;21285:4;21302:83;21311:12;:10;:12::i;:::-;21325:7;21334:50;21373:10;21334:11;:25;21346:12;:10;:12::i;:::-;-1:-1:-1;;;;;21334:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21334:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;27295:254::-;27344:19;27366:13;:11;:13::i;:::-;27344:35;;27390:12;27405:58;27451:11;27405:41;27416:4;;;;;;;;;-1:-1:-1;;;;;27416:4:0;-1:-1:-1;;;;;27416:14:0;;27439:4;27416:29;;;;;;;;;;;;;-1:-1:-1;;;;;27416:29:0;-1:-1:-1;;;;;27416:29:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27416:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27416:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27416:29:0;27405:6;;:41;:10;:41;:::i;:::-;:45;:58;:45;:58;:::i;:::-;27390:73;;27474:25;27480:10;27492:6;27474:5;:25::i;:::-;27510:4;;:31;;;-1:-1:-1;;;27510:31:0;;27524:10;27510:31;;;;;;;;;;;;:4;;;;-1:-1:-1;;;;;27510:4:0;;:13;;:31;;;;;;;;;;;;;;;-1:-1:-1;27510:4:0;:31;;;2:2:-1;;;;27:1;24;17:12;2:2;27510:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27510:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;27295:254:0:o;18956:119::-;-1:-1:-1;;;;;19049:18:0;19022:7;19049:18;;;;;;;;;;;;18956:119::o;26684:18::-;;;;;;-1:-1:-1;;;;;26684:18:0;;:::o;17920:87::-;17992:7;17985:14;;;;;;;;-1:-1:-1;;17985:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17959:13;;17985:14;;17992:7;;17985:14;;17992:7;17985:14;;;;;;;;;;;;;;;;;;;;;;;;21918:269;22011:4;22028:129;22037:12;:10;:12::i;:::-;22051:7;22060:96;22099:15;22060:96;;;;;;;;;;;;;;;;;:11;:25;22072:12;:10;:12::i;:::-;-1:-1:-1;;;;;22060:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22060:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;26810:448::-;26881:4;;:29;;;-1:-1:-1;;;26881:29:0;;26904:4;26881:29;;;;;;-1:-1:-1;;26881:4:0;;;-1:-1:-1;;;;;26881:4:0;;:14;;:29;;;;;;;;;;;;;;:4;:29;;;2:2:-1;;;;27:1;24;17:12;2:2;26881:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26881:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26881:29:0;;-1:-1:-1;26921:19:0;26943:13;:11;:13::i;:::-;26921:35;-1:-1:-1;26971:16:0;;;:35;;-1:-1:-1;26991:15:0;;26971:35;26967:220;;;27023:26;27029:10;27041:7;27023:5;:26::i;:::-;26967:220;;;27082:12;27097:40;27126:10;27097:24;:7;27109:11;27097:24;:11;:24;:::i;:40::-;27082:55;;27152:23;27158:10;27170:4;27152:5;:23::i;:::-;26967:220;;27197:4;;:53;;;-1:-1:-1;;;27197:53:0;;27215:10;27197:53;;;;27235:4;27197:53;;;;;;;;;;;;:4;;;;-1:-1:-1;;;;;27197:4:0;;:17;;:53;;;;;;;;;;;;;;;-1:-1:-1;27197:4:0;:53;;;2:2:-1;;;;27:1;24;17:12;19288:175:0;19374:4;19391:42;19401:12;:10;:12::i;:::-;19415:9;19426:6;19391:9;:42::i;19526:151::-;-1:-1:-1;;;;;19642:18:0;;;19615:7;19642:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19526:151::o;27602:221::-;27660:7;27678:19;27700:13;:11;:13::i;:::-;27678:35;;27722:12;27737:58;27783:11;27737:41;27748:4;;;;;;;;;-1:-1:-1;;;;;27748:4:0;-1:-1:-1;;;;;27748:14:0;;27771:4;27748:29;;;;;;;;;;;;;-1:-1:-1;;;;;27748:29:0;-1:-1:-1;;;;;27748:29:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27748:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27748:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27748:29:0;27737:6;;:41;:10;:41;:::i;:58::-;27722:73;27602:221;-1:-1:-1;;;;27602:221:0:o;3545:106::-;3633:10;3545:106;:::o;25065:346::-;-1:-1:-1;;;;;25167:19:0;;25159:68;;;;-1:-1:-1;;;25159:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25246:21:0;;25238:68;;;;-1:-1:-1;;;25238:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25319:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25371:32;;;;;;;;;;;;;;;;;25065:346;;;:::o;22677:539::-;-1:-1:-1;;;;;22783:20:0;;22775:70;;;;-1:-1:-1;;;22775:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22864:23:0;;22856:71;;;;-1:-1:-1;;;22856:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22940:47;22961:6;22969:9;22980:6;22940:20;:47::i;:::-;23020:71;23042:6;23020:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23020:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23000:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23125:20;;;;;;;:32;;23150:6;23125:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23102:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23173:35;;;;;;;23102:20;;23173:35;;;;;;;;;;;;;22677:539;;;:::o;5727:192::-;5813:7;5849:12;5841:6;;;;5833:29;;;;-1:-1:-1;;;5833:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5833:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5885:5:0;;;5727:192::o;4824:181::-;4882:7;4914:5;;;4938:6;;;;4930:46;;;;;-1:-1:-1;;;4930:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4996:1;4824:181;-1:-1:-1;;;4824:181:0:o;6178:471::-;6236:7;6481:6;6477:47;;-1:-1:-1;6511:1:0;6504:8;;6477:47;6548:5;;;6552:1;6548;:5;:1;6572:5;;;;;:10;6564:56;;;;-1:-1:-1;;;6564:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7125:132;7183:7;7210:39;7214:1;7217;7210:39;;;;;;;;;;;;;;;;;:3;:39::i;24207:418::-;-1:-1:-1;;;;;24291:21:0;;24283:67;;;;-1:-1:-1;;;24283:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24363:49;24384:7;24401:1;24405:6;24363:20;:49::i;:::-;24446:68;24469:6;24446:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24446:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24425:18:0;;:9;:18;;;;;;;;;;:89;24540:12;;:24;;24557:6;24540:24;:16;:24;:::i;:::-;24525:12;:39;24580:37;;;;;;;;24606:1;;-1:-1:-1;;;;;24580:37:0;;;;;;;;;;;;24207:418;;:::o;23497:378::-;-1:-1:-1;;;;;23581:21:0;;23573:65;;;;;-1:-1:-1;;;23573:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23651:49;23680:1;23684:7;23693:6;23651:20;:49::i;:::-;23728:12;;:24;;23745:6;23728:24;:16;:24;:::i;:::-;23713:12;:39;-1:-1:-1;;;;;23784:18:0;;:9;:18;;;;;;;;;;;:30;;23807:6;23784:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;23763:18:0;;:9;:18;;;;;;;;;;;:51;;;;23830:37;;;;;;;23763:18;;:9;;23830:37;;;;;;;;;;23497:378;;:::o;26436:92::-;;;;:::o;7753:278::-;7839:7;7874:12;7867:5;7859:28;;;;-1:-1:-1;;;7859:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7859:28:0;;7898:9;7914:1;7910;:5;;;;;;;7753:278;-1:-1:-1;;;;;7753:278:0:o;5288:136::-;5346:7;5373:43;5377:1;5380;5373:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://9534cc55e395e0a961ea6f87ccad9abfd2f6621dea5e63bc215b0eb052fd806a
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.