ETH Price: $3,499.06 (-0.30%)
Gas: 2 Gwei

Token

LOQU (LOQU)
 

Overview

Max Total Supply

1,000,000,000 LOQU

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,556,224.629554453235850383 LOQU

Value
$0.00
0x4312d8230d9c286ec870989e71d1ccbd95910e2e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LOQUMFA

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-25
*/

// Sources flattened with hardhat v2.9.9 https://hardhat.org
// SPDX-License-Identifier: BUSL-1.1

// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// 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/[email protected]

// OpenZeppelin Contracts (last updated v4.8.0) (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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 contracts/Rbx.sol

pragma solidity ^0.8.15;

/**
 * ERC20 contract for RBX token
 */



contract LOQUMFA is ERC20, Ownable {
 
    uint256 public constant ONE_BILLION_TOKENS = (10 ** 9) * (10 ** 18);
    uint256 public constant ONE_YEAR = 365 days;
    uint256 public lastMintTime;
    IERC20 public immutable strpToken;

    error MaxSupplyExceeded();
    error MaxMintExceeded(uint256 maxIncrease);
    error RecentlyMinted();
    error InvalidTokenAmount();
    error InsufficientSTRP();
    error StrpTransferFailed();

    event SwapSTRP(address indexed user, uint256 strpAmount, uint256 rbxAmount);
    event Mint(uint256 amount);

    constructor(address _strpToken) ERC20("LOQU", "LOQU") {
        strpToken = IERC20(_strpToken);
        lastMintTime = block.timestamp;
        _mint(msg.sender, ONE_BILLION_TOKENS);
    }

    /**
     * @dev allow user to swap STRP tokens for RBX tokens at a ratio of 1 STRP to 10 RBX 
     */
    function swapSTRP(uint256 strpAmount) external {
        if (strpAmount == 0) {
            revert InvalidTokenAmount();
        }
        if (strpToken.balanceOf(msg.sender) < strpAmount) {
            revert InsufficientSTRP();
        }
        uint256 rbxAmount = strpAmount * 10;
        if (balanceOf(owner()) < rbxAmount) {
            revert MaxSupplyExceeded();
        }
        // Burn STRP tokens, STRP OZ implementation won't allow us to transfer them to the zero address 
        // so use address(this), which has the same effect as there's no way to get them back again
        if (!strpToken.transferFrom(msg.sender, address(this), strpAmount)) {
            revert StrpTransferFailed();
        }
        // burn RBX tokens for RBX contract owner
        _burn(owner(), rbxAmount);
        // mint RBX tokens for user
        _mint(msg.sender, rbxAmount);
        emit SwapSTRP(msg.sender, strpAmount, rbxAmount);
    }

 

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_strpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InsufficientSTRP","type":"error"},{"inputs":[],"name":"InvalidTokenAmount","type":"error"},{"inputs":[{"internalType":"uint256","name":"maxIncrease","type":"uint256"}],"name":"MaxMintExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"RecentlyMinted","type":"error"},{"inputs":[],"name":"StrpTransferFailed","type":"error"},{"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":"amount","type":"uint256"}],"name":"Mint","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"strpAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rbxAmount","type":"uint256"}],"name":"SwapSTRP","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":"ONE_BILLION_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE_YEAR","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":[],"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":[],"name":"lastMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"strpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"strpAmount","type":"uint256"}],"name":"swapSTRP","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60a060405234801561000f575f80fd5b5060405161127e38038061127e83398101604081905261002e916101d6565b6040805180820182526004808252634c4f515560e01b6020808401829052845180860190955291845290830152906003610068838261029a565b506004610075828261029a565b50505061008e6100896100bb60201b60201c565b6100bf565b6001600160a01b038116608052426006556100b5336b033b2e3c9fd0803ce8000000610110565b50610379565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661016a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825461017b9190610354565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b5f602082840312156101e6575f80fd5b81516001600160a01b03811681146101fc575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061022b57607f821691505b60208210810361024957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101d157805f5260205f20601f840160051c810160208510156102745750805b601f840160051c820191505b81811015610293575f8155600101610280565b5050505050565b81516001600160401b038111156102b3576102b3610203565b6102c7816102c18454610217565b8461024f565b6020601f8211600181146102f9575f83156102e25750848201515b5f19600385901b1c1916600184901b178455610293565b5f84815260208120601f198516915b828110156103285787850151825560209485019460019092019101610308565b508482101561034557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561037357634e487b7160e01b5f52601160045260245ffd5b92915050565b608051610edf61039f5f395f81816102370152818161048a015261057f0152610edf5ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063715018a6116100a9578063a457c2d71161006e578063a457c2d714610259578063a9059cbb1461026c578063bf796aa41461027f578063dd62ed3e14610292578063f2fde38b146102a5575f80fd5b8063715018a6146101f25780638da5cb5b146101fc57806395d89b41146102215780639d46352014610229578063a31ab6f214610232575f80fd5b806323b872dd116100ef57806323b872dd14610182578063313ce56714610195578063384c9b30146101a457806339509351146101b757806370a08231146101ca575f80fd5b806306fdde0314610120578063095ea7b31461013e57806316d3bfbb1461016157806318160ddd1461017a575b5f80fd5b6101286102b8565b6040516101359190610ce3565b60405180910390f35b61015161014c366004610d33565b610348565b6040519015158152602001610135565b61016c6301e1338081565b604051908152602001610135565b60025461016c565b610151610190366004610d5b565b610361565b60405160128152602001610135565b61016c6b033b2e3c9fd0803ce800000081565b6101516101c5366004610d33565b610384565b61016c6101d8366004610d95565b6001600160a01b03165f9081526020819052604090205490565b6101fa6103a5565b005b6005546001600160a01b03165b6040516001600160a01b039091168152602001610135565b6101286103b8565b61016c60065481565b6102097f000000000000000000000000000000000000000000000000000000000000000081565b610151610267366004610d33565b6103c7565b61015161027a366004610d33565b610446565b6101fa61028d366004610db5565b610453565b61016c6102a0366004610dcc565b610672565b6101fa6102b3366004610d95565b61069c565b6060600380546102c790610dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546102f390610dfd565b801561033e5780601f106103155761010080835404028352916020019161033e565b820191905f5260205f20905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b5f33610355818585610715565b60019150505b92915050565b5f3361036e858285610839565b6103798585856108b1565b506001949350505050565b5f336103558185856103968383610672565b6103a09190610e49565b610715565b6103ad610a53565b6103b65f610aad565b565b6060600480546102c790610dfd565b5f33816103d48286610672565b9050838110156104395760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103798286868403610715565b5f336103558185856108b1565b805f0361047357604051632160733960e01b815260040160405180910390fd5b6040516370a0823160e01b815233600482015281907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156104d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104fb9190610e5c565b101561051a57604051632fdcd6bf60e11b815260040160405180910390fd5b5f61052682600a610e73565b90508061053e6101d86005546001600160a01b031690565b101561055d57604051638a164f6360e01b815260040160405180910390fd5b6040516323b872dd60e01b8152336004820152306024820152604481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906323b872dd906064016020604051808303815f875af11580156105cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f19190610e8a565b61060e5760405163106475d560e21b815260040160405180910390fd5b6106296106236005546001600160a01b031690565b82610afe565b6106333382610c26565b604080518381526020810183905233917f0cb40269191a4cdaae70fe304ae0135d70899c22210e5b853a2b3cbdf5f96fa2910160405180910390a25050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106a4610a53565b6001600160a01b0381166107095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610430565b61071281610aad565b50565b6001600160a01b0383166107775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610430565b6001600160a01b0382166107d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610430565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f6108448484610672565b90505f1981146108ab578181101561089e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610430565b6108ab8484848403610715565b50505050565b6001600160a01b0383166109155760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610430565b6001600160a01b0382166109775760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610430565b6001600160a01b0383165f90815260208190526040902054818110156109ee5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610430565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108ab565b6005546001600160a01b031633146103b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610430565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216610b5e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610430565b6001600160a01b0382165f9081526020819052604090205481811015610bd15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610430565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161082c565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610430565b8060025f828254610c8d9190610e49565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610d2e575f80fd5b919050565b5f8060408385031215610d44575f80fd5b610d4d83610d18565b946020939093013593505050565b5f805f60608486031215610d6d575f80fd5b610d7684610d18565b9250610d8460208501610d18565b929592945050506040919091013590565b5f60208284031215610da5575f80fd5b610dae82610d18565b9392505050565b5f60208284031215610dc5575f80fd5b5035919050565b5f8060408385031215610ddd575f80fd5b610de683610d18565b9150610df460208401610d18565b90509250929050565b600181811c90821680610e1157607f821691505b602082108103610e2f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561035b5761035b610e35565b5f60208284031215610e6c575f80fd5b5051919050565b808202811582820484141761035b5761035b610e35565b5f60208284031215610e9a575f80fd5b81518015158114610dae575f80fdfea26469706673582212207fb5ae9673b8aa38d7b7d97fd8b4f0d867f636b50701a191504f0d1ad902f30b64736f6c634300081a00330000000000000000000000003114de42c7c2175c420bc1581e102556fc712973

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063715018a6116100a9578063a457c2d71161006e578063a457c2d714610259578063a9059cbb1461026c578063bf796aa41461027f578063dd62ed3e14610292578063f2fde38b146102a5575f80fd5b8063715018a6146101f25780638da5cb5b146101fc57806395d89b41146102215780639d46352014610229578063a31ab6f214610232575f80fd5b806323b872dd116100ef57806323b872dd14610182578063313ce56714610195578063384c9b30146101a457806339509351146101b757806370a08231146101ca575f80fd5b806306fdde0314610120578063095ea7b31461013e57806316d3bfbb1461016157806318160ddd1461017a575b5f80fd5b6101286102b8565b6040516101359190610ce3565b60405180910390f35b61015161014c366004610d33565b610348565b6040519015158152602001610135565b61016c6301e1338081565b604051908152602001610135565b60025461016c565b610151610190366004610d5b565b610361565b60405160128152602001610135565b61016c6b033b2e3c9fd0803ce800000081565b6101516101c5366004610d33565b610384565b61016c6101d8366004610d95565b6001600160a01b03165f9081526020819052604090205490565b6101fa6103a5565b005b6005546001600160a01b03165b6040516001600160a01b039091168152602001610135565b6101286103b8565b61016c60065481565b6102097f0000000000000000000000003114de42c7c2175c420bc1581e102556fc71297381565b610151610267366004610d33565b6103c7565b61015161027a366004610d33565b610446565b6101fa61028d366004610db5565b610453565b61016c6102a0366004610dcc565b610672565b6101fa6102b3366004610d95565b61069c565b6060600380546102c790610dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546102f390610dfd565b801561033e5780601f106103155761010080835404028352916020019161033e565b820191905f5260205f20905b81548152906001019060200180831161032157829003601f168201915b5050505050905090565b5f33610355818585610715565b60019150505b92915050565b5f3361036e858285610839565b6103798585856108b1565b506001949350505050565b5f336103558185856103968383610672565b6103a09190610e49565b610715565b6103ad610a53565b6103b65f610aad565b565b6060600480546102c790610dfd565b5f33816103d48286610672565b9050838110156104395760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103798286868403610715565b5f336103558185856108b1565b805f0361047357604051632160733960e01b815260040160405180910390fd5b6040516370a0823160e01b815233600482015281907f0000000000000000000000003114de42c7c2175c420bc1581e102556fc7129736001600160a01b0316906370a0823190602401602060405180830381865afa1580156104d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104fb9190610e5c565b101561051a57604051632fdcd6bf60e11b815260040160405180910390fd5b5f61052682600a610e73565b90508061053e6101d86005546001600160a01b031690565b101561055d57604051638a164f6360e01b815260040160405180910390fd5b6040516323b872dd60e01b8152336004820152306024820152604481018390527f0000000000000000000000003114de42c7c2175c420bc1581e102556fc7129736001600160a01b0316906323b872dd906064016020604051808303815f875af11580156105cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f19190610e8a565b61060e5760405163106475d560e21b815260040160405180910390fd5b6106296106236005546001600160a01b031690565b82610afe565b6106333382610c26565b604080518381526020810183905233917f0cb40269191a4cdaae70fe304ae0135d70899c22210e5b853a2b3cbdf5f96fa2910160405180910390a25050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106a4610a53565b6001600160a01b0381166107095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610430565b61071281610aad565b50565b6001600160a01b0383166107775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610430565b6001600160a01b0382166107d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610430565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f6108448484610672565b90505f1981146108ab578181101561089e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610430565b6108ab8484848403610715565b50505050565b6001600160a01b0383166109155760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610430565b6001600160a01b0382166109775760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610430565b6001600160a01b0383165f90815260208190526040902054818110156109ee5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610430565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108ab565b6005546001600160a01b031633146103b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610430565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216610b5e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610430565b6001600160a01b0382165f9081526020819052604090205481811015610bd15760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610430565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161082c565b6001600160a01b038216610c7c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610430565b8060025f828254610c8d9190610e49565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610d2e575f80fd5b919050565b5f8060408385031215610d44575f80fd5b610d4d83610d18565b946020939093013593505050565b5f805f60608486031215610d6d575f80fd5b610d7684610d18565b9250610d8460208501610d18565b929592945050506040919091013590565b5f60208284031215610da5575f80fd5b610dae82610d18565b9392505050565b5f60208284031215610dc5575f80fd5b5035919050565b5f8060408385031215610ddd575f80fd5b610de683610d18565b9150610df460208401610d18565b90509250929050565b600181811c90821680610e1157607f821691505b602082108103610e2f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561035b5761035b610e35565b5f60208284031215610e6c575f80fd5b5051919050565b808202811582820484141761035b5761035b610e35565b5f60208284031215610e9a575f80fd5b81518015158114610dae575f80fdfea26469706673582212207fb5ae9673b8aa38d7b7d97fd8b4f0d867f636b50701a191504f0d1ad902f30b64736f6c634300081a0033

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

0000000000000000000000003114de42c7c2175c420bc1581e102556fc712973

-----Decoded View---------------
Arg [0] : _strpToken (address): 0x3114De42c7C2175c420Bc1581e102556fC712973

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003114de42c7c2175c420bc1581e102556fc712973


Deployed Bytecode Sourcemap

20771:1848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9475:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11826:201;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;11826:201:0;920:187:1;20890:43:0;;20925:8;20890:43;;;;;1258:25:1;;;1246:2;1231:18;20890:43:0;1112:177:1;10595:108:0;10683:12;;10595:108;;12607:295;;;;;;:::i;:::-;;:::i;10437:93::-;;;10520:2;1815:36:1;;1803:2;1788:18;10437:93:0;1673:184:1;20816:67:0;;20861:22;20816:67;;13311:238;;;;;;:::i;:::-;;:::i;10766:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10867:18:0;10840:7;10867:18;;;;;;;;;;;;10766:127;2886:103;;;:::i;:::-;;2238:87;2311:6;;-1:-1:-1;;;;;2311:6:0;2238:87;;;-1:-1:-1;;;;;2217:32:1;;;2199:51;;2187:2;2172:18;2238:87:0;2053:203:1;9694:104:0;;;:::i;20940:27::-;;;;;;20974:33;;;;;14052:436;;;;;;:::i;:::-;;:::i;11099:193::-;;;;;;:::i;:::-;;:::i;21651:958::-;;;;;;:::i;:::-;;:::i;11355:151::-;;;;;;:::i;:::-;;:::i;3144:201::-;;;;;;:::i;:::-;;:::i;9475:100::-;9529:13;9562:5;9555:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9475:100;:::o;11826:201::-;11909:4;865:10;11965:32;865:10;11981:7;11990:6;11965:8;:32::i;:::-;12015:4;12008:11;;;11826:201;;;;;:::o;12607:295::-;12738:4;865:10;12796:38;12812:4;865:10;12827:6;12796:15;:38::i;:::-;12845:27;12855:4;12861:2;12865:6;12845:9;:27::i;:::-;-1:-1:-1;12890:4:0;;12607:295;-1:-1:-1;;;;12607:295:0:o;13311:238::-;13399:4;865:10;13455:64;865:10;13471:7;13508:10;13480:25;865:10;13471:7;13480:9;:25::i;:::-;:38;;;;:::i;:::-;13455:8;:64::i;2886:103::-;2124:13;:11;:13::i;:::-;2951:30:::1;2978:1;2951:18;:30::i;:::-;2886:103::o:0;9694:104::-;9750:13;9783:7;9776:14;;;;;:::i;14052:436::-;14145:4;865:10;14145:4;14228:25;865:10;14245:7;14228:9;:25::i;:::-;14201:52;;14292:15;14272:16;:35;;14264:85;;;;-1:-1:-1;;;14264:85:0;;3828:2:1;14264:85:0;;;3810:21:1;3867:2;3847:18;;;3840:30;3906:34;3886:18;;;3879:62;-1:-1:-1;;;3957:18:1;;;3950:35;4002:19;;14264:85:0;;;;;;;;;14385:60;14394:5;14401:7;14429:15;14410:16;:34;14385:8;:60::i;11099:193::-;11178:4;865:10;11234:28;865:10;11251:2;11255:6;11234:9;:28::i;21651:958::-;21713:10;21727:1;21713:15;21709:75;;21752:20;;-1:-1:-1;;;21752:20:0;;;;;;;;;;;21709:75;21798:31;;-1:-1:-1;;;21798:31:0;;21818:10;21798:31;;;2199:51:1;21832:10:0;;21798:9;-1:-1:-1;;;;;21798:19:0;;;;2172:18:1;;21798:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;21794:102;;;21866:18;;-1:-1:-1;;;21866:18:0;;;;;;;;;;;21794:102;21906:17;21926:15;:10;21939:2;21926:15;:::i;:::-;21906:35;;21977:9;21956:18;21966:7;2311:6;;-1:-1:-1;;;;;2311:6:0;;2238:87;21956:18;:30;21952:89;;;22010:19;;-1:-1:-1;;;22010:19:0;;;;;;;;;;;21952:89;22263:61;;-1:-1:-1;;;22263:61:0;;22286:10;22263:61;;;4596:51:1;22306:4:0;4663:18:1;;;4656:60;4732:18;;;4725:34;;;22263:9:0;-1:-1:-1;;;;;22263:22:0;;;;4569:18:1;;22263:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22258:122;;22348:20;;-1:-1:-1;;;22348:20:0;;;;;;;;;;;22258:122;22441:25;22447:7;2311:6;;-1:-1:-1;;;;;2311:6:0;;2238:87;22447:7;22456:9;22441:5;:25::i;:::-;22514:28;22520:10;22532:9;22514:5;:28::i;:::-;22558:43;;;5226:25:1;;;5282:2;5267:18;;5260:34;;;22567:10:0;;22558:43;;5199:18:1;22558:43:0;;;;;;;21698:911;21651:958;:::o;11355:151::-;-1:-1:-1;;;;;11471:18:0;;;11444:7;11471:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11355:151::o;3144:201::-;2124:13;:11;:13::i;:::-;-1:-1:-1;;;;;3233:22:0;::::1;3225:73;;;::::0;-1:-1:-1;;;3225:73:0;;5507:2:1;3225:73:0::1;::::0;::::1;5489:21:1::0;5546:2;5526:18;;;5519:30;5585:34;5565:18;;;5558:62;-1:-1:-1;;;5636:18:1;;;5629:36;5682:19;;3225:73:0::1;5305:402:1::0;3225:73:0::1;3309:28;3328:8;3309:18;:28::i;:::-;3144:201:::0;:::o;18079:380::-;-1:-1:-1;;;;;18215:19:0;;18207:68;;;;-1:-1:-1;;;18207:68:0;;5914:2:1;18207:68:0;;;5896:21:1;5953:2;5933:18;;;5926:30;5992:34;5972:18;;;5965:62;-1:-1:-1;;;6043:18:1;;;6036:34;6087:19;;18207:68:0;5712:400:1;18207:68:0;-1:-1:-1;;;;;18294:21:0;;18286:68;;;;-1:-1:-1;;;18286:68:0;;6319:2:1;18286:68:0;;;6301:21:1;6358:2;6338:18;;;6331:30;6397:34;6377:18;;;6370:62;-1:-1:-1;;;6448:18:1;;;6441:32;6490:19;;18286:68:0;6117:398:1;18286:68:0;-1:-1:-1;;;;;18367:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18419:32;;1258:25:1;;;18419:32:0;;1231:18:1;18419:32:0;;;;;;;;18079:380;;;:::o;18750:453::-;18885:24;18912:25;18922:5;18929:7;18912:9;:25::i;:::-;18885:52;;-1:-1:-1;;18952:16:0;:37;18948:248;;19034:6;19014:16;:26;;19006:68;;;;-1:-1:-1;;;19006:68:0;;6722:2:1;19006:68:0;;;6704:21:1;6761:2;6741:18;;;6734:30;6800:31;6780:18;;;6773:59;6849:18;;19006:68:0;6520:353:1;19006:68:0;19118:51;19127:5;19134:7;19162:6;19143:16;:25;19118:8;:51::i;:::-;18874:329;18750:453;;;:::o;14958:840::-;-1:-1:-1;;;;;15089:18:0;;15081:68;;;;-1:-1:-1;;;15081:68:0;;7080:2:1;15081:68:0;;;7062:21:1;7119:2;7099:18;;;7092:30;7158:34;7138:18;;;7131:62;-1:-1:-1;;;7209:18:1;;;7202:35;7254:19;;15081:68:0;6878:401:1;15081:68:0;-1:-1:-1;;;;;15168:16:0;;15160:64;;;;-1:-1:-1;;;15160:64:0;;7486:2:1;15160:64:0;;;7468:21:1;7525:2;7505:18;;;7498:30;7564:34;7544:18;;;7537:62;-1:-1:-1;;;7615:18:1;;;7608:33;7658:19;;15160:64:0;7284:399:1;15160:64:0;-1:-1:-1;;;;;15310:15:0;;15288:19;15310:15;;;;;;;;;;;15344:21;;;;15336:72;;;;-1:-1:-1;;;15336:72:0;;7890:2:1;15336:72:0;;;7872:21:1;7929:2;7909:18;;;7902:30;7968:34;7948:18;;;7941:62;-1:-1:-1;;;8019:18:1;;;8012:36;8065:19;;15336:72:0;7688:402:1;15336:72:0;-1:-1:-1;;;;;15444:15:0;;;:9;:15;;;;;;;;;;;15462:20;;;15444:38;;15662:13;;;;;;;;;;:23;;;;;;15714:26;;1258:25:1;;;15662:13:0;;15714:26;;1231:18:1;15714:26:0;;;;;;;15753:37;16966:675;2403:132;2311:6;;-1:-1:-1;;;;;2311:6:0;865:10;2467:23;2459:68;;;;-1:-1:-1;;;2459:68:0;;8297:2:1;2459:68:0;;;8279:21:1;;;8316:18;;;8309:30;8375:34;8355:18;;;8348:62;8427:18;;2459:68:0;8095:356:1;3505:191:0;3598:6;;;-1:-1:-1;;;;;3615:17:0;;;-1:-1:-1;;;;;;3615:17:0;;;;;;;3648:40;;3598:6;;;3615:17;3598:6;;3648:40;;3579:16;;3648:40;3568:128;3505:191;:::o;16966:675::-;-1:-1:-1;;;;;17050:21:0;;17042:67;;;;-1:-1:-1;;;17042:67:0;;8658:2:1;17042:67:0;;;8640:21:1;8697:2;8677:18;;;8670:30;8736:34;8716:18;;;8709:62;-1:-1:-1;;;8787:18:1;;;8780:31;8828:19;;17042:67:0;8456:397:1;17042:67:0;-1:-1:-1;;;;;17209:18:0;;17184:22;17209:18;;;;;;;;;;;17246:24;;;;17238:71;;;;-1:-1:-1;;;17238:71:0;;9060:2:1;17238:71:0;;;9042:21:1;9099:2;9079:18;;;9072:30;9138:34;9118:18;;;9111:62;-1:-1:-1;;;9189:18:1;;;9182:32;9231:19;;17238:71:0;8858:398:1;17238:71:0;-1:-1:-1;;;;;17345:18:0;;:9;:18;;;;;;;;;;;17366:23;;;17345:44;;17484:12;:22;;;;;;;17535:37;1258:25:1;;;17345:9:0;;:18;17535:37;;1231:18:1;17535:37:0;1112:177:1;16085:548:0;-1:-1:-1;;;;;16169:21:0;;16161:65;;;;-1:-1:-1;;;16161:65:0;;9463:2:1;16161:65:0;;;9445:21:1;9502:2;9482:18;;;9475:30;9541:33;9521:18;;;9514:61;9592:18;;16161:65:0;9261:355:1;16161:65:0;16317:6;16301:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16472:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16527:37;1258:25:1;;;16527:37:0;;1231:18:1;16527:37:0;;;;;;;16085:548;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2483:226::-;2542:6;2595:2;2583:9;2574:7;2570:23;2566:32;2563:52;;;2611:1;2608;2601:12;2563:52;-1:-1:-1;2656:23:1;;2483:226;-1:-1:-1;2483:226:1:o;2714:260::-;2782:6;2790;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2882:29;2901:9;2882:29;:::i;:::-;2872:39;;2930:38;2964:2;2953:9;2949:18;2930:38;:::i;:::-;2920:48;;2714:260;;;;;:::o;2979:380::-;3058:1;3054:12;;;;3101;;;3122:61;;3176:4;3168:6;3164:17;3154:27;;3122:61;3229:2;3221:6;3218:14;3198:18;3195:38;3192:161;;3275:10;3270:3;3266:20;3263:1;3256:31;3310:4;3307:1;3300:15;3338:4;3335:1;3328:15;3192:161;;2979:380;;;:::o;3364:127::-;3425:10;3420:3;3416:20;3413:1;3406:31;3456:4;3453:1;3446:15;3480:4;3477:1;3470:15;3496:125;3561:9;;;3582:10;;;3579:36;;;3595:18;;:::i;4032:184::-;4102:6;4155:2;4143:9;4134:7;4130:23;4126:32;4123:52;;;4171:1;4168;4161:12;4123:52;-1:-1:-1;4194:16:1;;4032:184;-1:-1:-1;4032:184:1:o;4221:168::-;4294:9;;;4325;;4342:15;;;4336:22;;4322:37;4312:71;;4363:18;;:::i;4770:277::-;4837:6;4890:2;4878:9;4869:7;4865:23;4861:32;4858:52;;;4906:1;4903;4896:12;4858:52;4938:9;4932:16;4991:5;4984:13;4977:21;4970:5;4967:32;4957:60;;5013:1;5010;5003:12

Swarm Source

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