ETH Price: $3,167.45 (-5.50%)
Gas: 3.96 Gwei
 

Overview

Max Total Supply

1,000,000,000 MOEX

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,348.659714339977980014 MOEX

Value
$0.00
0x14ca76373b7346f50cddd510eaa511f8be961e3d
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:
MOEX6900

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

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

/*
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠢⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢻⣦⡀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⢀⣤⣤⣤⣀⣀⡀⠀⠀⠀⠹⣿⣦⡀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢀⣴⣿⣻⣞⣷⡻⠉⠀⠀⠀⠀⠀⠱⣟⣿⣦⠀⠀⠀
⠀⠀⠀⢀⣴⣿⣻⣾⣽⣻⣎⠀⠀⠀⠀⠀⠀⠀⠀⠸⣷⢯⣧⠀⠀
⠀⠀⠐⢿⣯⡷⣟⡾⠳⡿⣽⡷⣄⠀⠀⠀⠀⠀⠀⠀⢻⣯⣟⣇⠀
⠀⠀⠀⠀⠙⠽⠋⠀⠀⠈⠻⣽⣟⡷⣄⠀⠀⠀⠀⠀⠘⣷⣯⢿⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣽⣟⡷⣄⠀⠀⠀⢠⣿⢾⡿⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣽⣟⡷⣄⢀⣾⡽⣯⡏⠀
⠀⠀⠀⠀⠀⣴⡶⣷⢿⡶⣄⣀⠀⠀⠀⠈⣻⣽⣟⣯⣷⢿⡛⠀⠀
⠀⠀⣀⣴⣾⢯⠿⠍⠻⣟⣿⣻⣟⣿⣻⢿⣽⡾⣯⣷⣻⢿⣄⠀⠀
⢀⣾⢿⣽⡾⠏⠀⠀⠀⠀⠉⠓⠋⠷⠿⠯⠗⠛⠁⠉⢻⣟⣾⢷⡄
⠸⢯⡿⠾⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠫⠋⠀

*/                                                     

pragma solidity ^0.8.25;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract MOEX6900 is ERC20, Ownable {

    address internal _uniswapV3Router = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD; 
    address internal _uniswapV3FeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c;
    address internal _NonfungiblePositionManager = 0xC36442b4a4522E871399CD717aBDD847Ab11FE88;
    bool public limited = true;

    mapping (address => bool) public _isAllowed;
    mapping (address => bool) private _isAMMPool;
    mapping(address => bool) private _isComrade;

    constructor(string memory name, string memory symbol, address[] memory _Comrades) ERC20(name, symbol) {
        _mint(_msgSender(), 1e9 ether);
        setComrade(_Comrades, true);

        _isAllowed[_msgSender()] = true;
        _isAllowed[address(this)] = true;
        _isAllowed [_uniswapV3Router] = true;
        _isAllowed [_uniswapV3FeeCollector] = true;
        _isAllowed [_NonfungiblePositionManager] = true;

        _isAMMPool [_uniswapV3Router] = true;
    }

    function setComrade(address[] memory _Comrades, bool _status) internal {
        for(uint i = 0 ; i < _Comrades.length ; i ++) {
            _isComrade[_Comrades[i]] = _status;
        }
    }

    function Allow (address _allowedAddress) external onlyOwner {
        _isAllowed [_allowedAddress] = true;
    }

    function removeAllow (address _allowedAddress) external onlyOwner {
        _isAllowed [_allowedAddress] = false;
    }

    function removeLimits() external onlyOwner{
       limited = false;
    }

    function setAMMPool(address pool, bool value) external onlyOwner {
        _isAMMPool[pool] = value;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
            if (_isAllowed[recipient]) {
                super._transfer(sender, recipient, amount);
            } else {
                if (limited) {
                    if (_isAMMPool[sender] || _isAMMPool[recipient]) {
                        require(_isComrade[recipient] || _isComrade[sender], "Kremlin has rejected your request. Try again later.");
                    }
                }
                super._transfer(sender, recipient, amount);
                }
        }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

/*
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠢⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢻⣦⡀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⢀⣤⣤⣤⣀⣀⡀⠀⠀⠀⠹⣿⣦⡀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⢀⣴⣿⣻⣞⣷⡻⠉⠀⠀⠀⠀⠀⠱⣟⣿⣦⠀⠀⠀
⠀⠀⠀⢀⣴⣿⣻⣾⣽⣻⣎⠀⠀⠀⠀⠀⠀⠀⠀⠸⣷⢯⣧⠀⠀
⠀⠀⠐⢿⣯⡷⣟⡾⠳⡿⣽⡷⣄⠀⠀⠀⠀⠀⠀⠀⢻⣯⣟⣇⠀
⠀⠀⠀⠀⠙⠽⠋⠀⠀⠈⠻⣽⣟⡷⣄⠀⠀⠀⠀⠀⠘⣷⣯⢿⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣽⣟⡷⣄⠀⠀⠀⢠⣿⢾⡿⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣽⣟⡷⣄⢀⣾⡽⣯⡏⠀
⠀⠀⠀⠀⠀⣴⡶⣷⢿⡶⣄⣀⠀⠀⠀⠈⣻⣽⣟⣯⣷⢿⡛⠀⠀
⠀⠀⣀⣴⣾⢯⠿⠍⠻⣟⣿⣻⣟⣿⣻⢿⣽⡾⣯⣷⣻⢿⣄⠀⠀
⢀⣾⢿⣽⡾⠏⠀⠀⠀⠀⠉⠓⠋⠷⠿⠯⠗⠛⠁⠉⢻⣟⣾⢷⡄
⠸⢯⡿⠾⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⠫⠋⠀

*/

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address[]","name":"_Comrades","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_allowedAddress","type":"address"}],"name":"Allow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_allowedAddress","type":"address"}],"name":"removeAllow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPool","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"}]

6080604052733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555070fee13a103a10d593b9ae06b3e05f2e7e1c60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c36442b4a4522e871399cd717abdd847ab11fe8860085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860146101000a81548160ff021916908315150217905550348015610123575f80fd5b506040516128d63803806128d68339818101604052810190610145919061097a565b828281600390816101569190610c2b565b5080600490816101669190610c2b565b50505061018561017a61045660201b60201c565b61045d60201b60201c565b6101ae61019661045660201b60201c565b6b033b2e3c9fd0803ce800000061052060201b60201c565b6101bf81600161067a60201b60201c565b600160095f6101d261045660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160095f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050610e27565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058590610d54565b60405180910390fd5b61059f5f838361070560201b60201c565b8060025f8282546105b09190610d9f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161065d9190610de1565b60405180910390a36106765f838361070a60201b60201c565b5050565b5f5b82518110156107005781600b5f85848151811061069c5761069b610dfa565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808060010191505061067c565b505050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61076e82610728565b810181811067ffffffffffffffff8211171561078d5761078c610738565b5b80604052505050565b5f61079f61070f565b90506107ab8282610765565b919050565b5f67ffffffffffffffff8211156107ca576107c9610738565b5b6107d382610728565b9050602081019050919050565b8281835e5f83830152505050565b5f6108006107fb846107b0565b610796565b90508281526020810184848401111561081c5761081b610724565b5b6108278482856107e0565b509392505050565b5f82601f83011261084357610842610720565b5b81516108538482602086016107ee565b91505092915050565b5f67ffffffffffffffff82111561087657610875610738565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108b48261088b565b9050919050565b6108c4816108aa565b81146108ce575f80fd5b50565b5f815190506108df816108bb565b92915050565b5f6108f76108f28461085c565b610796565b9050808382526020820190506020840283018581111561091a57610919610887565b5b835b81811015610943578061092f88826108d1565b84526020840193505060208101905061091c565b5050509392505050565b5f82601f83011261096157610960610720565b5b81516109718482602086016108e5565b91505092915050565b5f805f6060848603121561099157610990610718565b5b5f84015167ffffffffffffffff8111156109ae576109ad61071c565b5b6109ba8682870161082f565b935050602084015167ffffffffffffffff8111156109db576109da61071c565b5b6109e78682870161082f565b925050604084015167ffffffffffffffff811115610a0857610a0761071c565b5b610a148682870161094d565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610a6c57607f821691505b602082108103610a7f57610a7e610a28565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610ae17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610aa6565b610aeb8683610aa6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610b2f610b2a610b2584610b03565b610b0c565b610b03565b9050919050565b5f819050919050565b610b4883610b15565b610b5c610b5482610b36565b848454610ab2565b825550505050565b5f90565b610b70610b64565b610b7b818484610b3f565b505050565b5b81811015610b9e57610b935f82610b68565b600181019050610b81565b5050565b601f821115610be357610bb481610a85565b610bbd84610a97565b81016020851015610bcc578190505b610be0610bd885610a97565b830182610b80565b50505b505050565b5f82821c905092915050565b5f610c035f1984600802610be8565b1980831691505092915050565b5f610c1b8383610bf4565b9150826002028217905092915050565b610c3482610a1e565b67ffffffffffffffff811115610c4d57610c4c610738565b5b610c578254610a55565b610c62828285610ba2565b5f60209050601f831160018114610c93575f8415610c81578287015190505b610c8b8582610c10565b865550610cf2565b601f198416610ca186610a85565b5f5b82811015610cc857848901518255600182019150602085019450602081019050610ca3565b86831015610ce55784890151610ce1601f891682610bf4565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610d3e601f83610cfa565b9150610d4982610d0a565b602082019050919050565b5f6020820190508181035f830152610d6b81610d32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da982610b03565b9150610db483610b03565b9250828201905080821115610dcc57610dcb610d72565b5b92915050565b610ddb81610b03565b82525050565b5f602082019050610df45f830184610dd2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b611aa280610e345f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d71461030a578063a9059cbb1461033a578063b1f18fae1461036a578063dd62ed3e1461039a578063f2fde38b146103ca5761012a565b8063715018a61461029c578063751039fc146102a6578063860a32ec146102b05780638da5cb5b146102ce57806395d89b41146102ec5761012a565b806318160ddd116100f257806318160ddd146101d057806323b872dd146101ee578063313ce5671461021e578063395093511461023c57806370a082311461026c5761012a565b806306fdde031461012e578063080b4fcc1461014c578063095ea7b3146101685780630b6f740e1461019857806316c61d72146101b4575b5f80fd5b6101366103e6565b60405161014391906111a8565b60405180910390f35b61016660048036038101906101619190611226565b610476565b005b610182600480360381019061017d9190611284565b6104d5565b60405161018f91906112dc565b60405180910390f35b6101b260048036038101906101ad919061131f565b6104f7565b005b6101ce60048036038101906101c99190611226565b610557565b005b6101d86105b7565b6040516101e5919061136c565b60405180910390f35b61020860048036038101906102039190611385565b6105c0565b60405161021591906112dc565b60405180910390f35b6102266105ee565b60405161023391906113f0565b60405180910390f35b61025660048036038101906102519190611284565b6105f6565b60405161026391906112dc565b60405180910390f35b61028660048036038101906102819190611226565b61062c565b604051610293919061136c565b60405180910390f35b6102a4610671565b005b6102ae610684565b005b6102b86106a8565b6040516102c591906112dc565b60405180910390f35b6102d66106bb565b6040516102e39190611418565b60405180910390f35b6102f46106e3565b60405161030191906111a8565b60405180910390f35b610324600480360381019061031f9190611284565b610773565b60405161033191906112dc565b60405180910390f35b610354600480360381019061034f9190611284565b6107e8565b60405161036191906112dc565b60405180910390f35b610384600480360381019061037f9190611226565b61080a565b60405161039191906112dc565b60405180910390f35b6103b460048036038101906103af9190611431565b610827565b6040516103c1919061136c565b60405180910390f35b6103e460048036038101906103df9190611226565b6108a9565b005b6060600380546103f59061149c565b80601f01602080910402602001604051908101604052809291908181526020018280546104219061149c565b801561046c5780601f106104435761010080835404028352916020019161046c565b820191905f5260205f20905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b61047e61092b565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f806104df6109a9565b90506104ec8185856109b0565b600191505092915050565b6104ff61092b565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61055f61092b565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600254905090565b5f806105ca6109a9565b90506105d7858285610b73565b6105e2858585610bfe565b60019150509392505050565b5f6012905090565b5f806106006109a9565b90506106218185856106128589610827565b61061c91906114f9565b6109b0565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61067961092b565b6106825f610dff565b565b61068c61092b565b5f600860146101000a81548160ff021916908315150217905550565b600860149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f29061149c565b80601f016020809104026020016040519081016040528092919081815260200182805461071e9061149c565b80156107695780601f1061074057610100808354040283529160200191610769565b820191905f5260205f20905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b5f8061077d6109a9565b90505f61078a8286610827565b9050838110156107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c69061159c565b60405180910390fd5b6107dc82868684036109b0565b60019250505092915050565b5f806107f26109a9565b90506107ff818585610bfe565b600191505092915050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108b161092b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109169061162a565b60405180910390fd5b61092881610dff565b50565b6109336109a9565b73ffffffffffffffffffffffffffffffffffffffff166109516106bb565b73ffffffffffffffffffffffffffffffffffffffff16146109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e90611692565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611720565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906117ae565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b66919061136c565b60405180910390a3505050565b5f610b7e8484610827565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf85781811015610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611816565b60405180910390fd5b610bf784848484036109b0565b5b50505050565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610c5d57610c58838383610ec2565b610dfa565b600860149054906101000a900460ff1615610dee57600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610d0d5750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610ded57600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610dad5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906118a4565b60405180910390fd5b5b5b610df9838383610ec2565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611932565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f95906119c0565b60405180910390fd5b610fa983838361112e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390611a4e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611115919061136c565b60405180910390a3611128848484611133565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61117a82611138565b6111848185611142565b9350611194818560208601611152565b61119d81611160565b840191505092915050565b5f6020820190508181035f8301526111c08184611170565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111f5826111cc565b9050919050565b611205816111eb565b811461120f575f80fd5b50565b5f81359050611220816111fc565b92915050565b5f6020828403121561123b5761123a6111c8565b5b5f61124884828501611212565b91505092915050565b5f819050919050565b61126381611251565b811461126d575f80fd5b50565b5f8135905061127e8161125a565b92915050565b5f806040838503121561129a576112996111c8565b5b5f6112a785828601611212565b92505060206112b885828601611270565b9150509250929050565b5f8115159050919050565b6112d6816112c2565b82525050565b5f6020820190506112ef5f8301846112cd565b92915050565b6112fe816112c2565b8114611308575f80fd5b50565b5f81359050611319816112f5565b92915050565b5f8060408385031215611335576113346111c8565b5b5f61134285828601611212565b92505060206113538582860161130b565b9150509250929050565b61136681611251565b82525050565b5f60208201905061137f5f83018461135d565b92915050565b5f805f6060848603121561139c5761139b6111c8565b5b5f6113a986828701611212565b93505060206113ba86828701611212565b92505060406113cb86828701611270565b9150509250925092565b5f60ff82169050919050565b6113ea816113d5565b82525050565b5f6020820190506114035f8301846113e1565b92915050565b611412816111eb565b82525050565b5f60208201905061142b5f830184611409565b92915050565b5f8060408385031215611447576114466111c8565b5b5f61145485828601611212565b925050602061146585828601611212565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114b357607f821691505b6020821081036114c6576114c561146f565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61150382611251565b915061150e83611251565b9250828201905080821115611526576115256114cc565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611586602583611142565b91506115918261152c565b604082019050919050565b5f6020820190508181035f8301526115b38161157a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611614602683611142565b915061161f826115ba565b604082019050919050565b5f6020820190508181035f83015261164181611608565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61167c602083611142565b915061168782611648565b602082019050919050565b5f6020820190508181035f8301526116a981611670565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61170a602483611142565b9150611715826116b0565b604082019050919050565b5f6020820190508181035f830152611737816116fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611798602283611142565b91506117a38261173e565b604082019050919050565b5f6020820190508181035f8301526117c58161178c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611800601d83611142565b915061180b826117cc565b602082019050919050565b5f6020820190508181035f83015261182d816117f4565b9050919050565b7f4b72656d6c696e206861732072656a656374656420796f7572207265717565735f8201527f742e2054727920616761696e206c617465722e00000000000000000000000000602082015250565b5f61188e603383611142565b915061189982611834565b604082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61191c602583611142565b9150611927826118c2565b604082019050919050565b5f6020820190508181035f83015261194981611910565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6119aa602383611142565b91506119b582611950565b604082019050919050565b5f6020820190508181035f8301526119d78161199e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611a38602683611142565b9150611a43826119de565b604082019050919050565b5f6020820190508181035f830152611a6581611a2c565b905091905056fea2646970667358221220507225c6e2e9151a1ae439ed6f04a312ea5034563ee6b06ff81902f768a6863b64736f6c63430008190033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084d4f45583639303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4558000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035000000000000000000000000849ad0dcf130333f0059c9964cfdd0e2e1f9a36700000000000000000000000042f59ab90b03174e698ff4e662e6e7d3856927cd000000000000000000000000bde3ea85d4f16ac959940a622c04d693ce7c7298000000000000000000000000b20003c94341808703c8087dbed605280f428f300000000000000000000000006a89c55f8a6fda42af5f082276254edecd4435a600000000000000000000000075d34efdfe7ae05fad2a96aa99a46d7acb0020ad000000000000000000000000a02af7f3c8f541a226f7fdd497b38f6ba47a464d000000000000000000000000cf543c42254b82ec87062fcec301443594002be40000000000000000000000001fa3a825b2ab1aa38ba6eceea18d971f41ba8d03000000000000000000000000006a2123c0447fa555a4a1fb116974d3c4723e990000000000000000000000002569015e0b847f1ba336bda4f73c49872bf1b25a0000000000000000000000001f4f8faa052a7aa24baf7b2f7ef0f463380c56320000000000000000000000002fb05c6a79818f6eaca9a3f8a647e5c4cc616279000000000000000000000000c826705f2e54a170410646bb08faf123452702ac0000000000000000000000000be92bed2a0d55cdb32a376c9d7fe654e8cff5000000000000000000000000008e65ed5c267bd04fc40a74689604e89e06641908000000000000000000000000dba50ca567d8b893a643c66f9b6d33d1f79d4db3000000000000000000000000ff0f3be8995f71dc449d1701efa86c6799f452bf00000000000000000000000036212ec79d52fb1dca7e09f5d02546ff5d705979000000000000000000000000f3becf97043b1a66485601b399deb75adde9e075000000000000000000000000725cb3bee820ac2e760b6332f9916f8e94bf7d800000000000000000000000009db66ca8c94b8b3dc4ec827b74b35d11e1f2996b000000000000000000000000574f372d88c7b9dbfdc5d0dcc2422505a610475200000000000000000000000058d4087178bb3baeb7f0cebef41dc4124ab09c8100000000000000000000000077c1b49d8e472c3a2194e18076a2c31cd47b28f400000000000000000000000062fd27680101a7ecf64c2c19b0347ace2c9fa6ae0000000000000000000000008f9d64293d67c852faae3b9d6834e528e0d5dfa90000000000000000000000001cf6f218c9616d1e6b5f14fbe3ed0f2fa1f5a77600000000000000000000000038da7519c19164ed3f6abffd03279dcf411e34cd00000000000000000000000040b18fb9ea00f6bcc0d334653e9f3ca0c01d4e3a0000000000000000000000006095a9a5841095fecf5575402aa53655f990e139000000000000000000000000a3b65306022b34e32677b9288fe35b1049aee8c4000000000000000000000000cb5f4d191e78dca429ec4a01d8f32e97750ad31b0000000000000000000000005301d736f8868ce2ed1679ab1b171dcbd33eb642000000000000000000000000bb0fa58a7fa6b31696a179a67de0cf1fc6af089b00000000000000000000000086ba8a51300730e7fbc974e9fc5a66a9a939cbd20000000000000000000000003da82d976ee98914f381744452e39cfa8f5d462a000000000000000000000000f8101069739af9f5d0f3250f2408ec698bfec1640000000000000000000000009a6ddd839ba19304088d9fc03e9a376c1ead6b9a000000000000000000000000f2d47fcf7e8584a51f4311966ba2606811e27e870000000000000000000000008b107c2d742781ecd41933fef7b06460bb63949b000000000000000000000000330e5d4987391db16587845362d53d2c8b4b8e62000000000000000000000000a0a423075d5c4def210103930505e9cdc6b5b3440000000000000000000000002d1760e1f90e15d7ef679451cb402e34cf2612a0000000000000000000000000e86369546144bf5555859833848999842c083b4e000000000000000000000000b2349bb34987480aa0888b9b53b54d5d1c3e2d83000000000000000000000000f500fbaed62d2c49015ee5ae980056fa54cba1740000000000000000000000004a63fbbd6ad2439cf1a4fb024dcda5839a35ac8c00000000000000000000000092829516379b1f091cec2f1c9f210fe89110f2ba0000000000000000000000007479fc5af04b3459630f0a7abe2d75ad8e798ec60000000000000000000000000426807e6f149491b6e5f9872e2b31500d6773ff000000000000000000000000631530fd1aaa51a0ea35ed230ff5feeb4984812c000000000000000000000000c2fbea7b0012e6068c06a4d55e04a4e99b115ab1

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c8063715018a6116100ab578063a457c2d71161006f578063a457c2d71461030a578063a9059cbb1461033a578063b1f18fae1461036a578063dd62ed3e1461039a578063f2fde38b146103ca5761012a565b8063715018a61461029c578063751039fc146102a6578063860a32ec146102b05780638da5cb5b146102ce57806395d89b41146102ec5761012a565b806318160ddd116100f257806318160ddd146101d057806323b872dd146101ee578063313ce5671461021e578063395093511461023c57806370a082311461026c5761012a565b806306fdde031461012e578063080b4fcc1461014c578063095ea7b3146101685780630b6f740e1461019857806316c61d72146101b4575b5f80fd5b6101366103e6565b60405161014391906111a8565b60405180910390f35b61016660048036038101906101619190611226565b610476565b005b610182600480360381019061017d9190611284565b6104d5565b60405161018f91906112dc565b60405180910390f35b6101b260048036038101906101ad919061131f565b6104f7565b005b6101ce60048036038101906101c99190611226565b610557565b005b6101d86105b7565b6040516101e5919061136c565b60405180910390f35b61020860048036038101906102039190611385565b6105c0565b60405161021591906112dc565b60405180910390f35b6102266105ee565b60405161023391906113f0565b60405180910390f35b61025660048036038101906102519190611284565b6105f6565b60405161026391906112dc565b60405180910390f35b61028660048036038101906102819190611226565b61062c565b604051610293919061136c565b60405180910390f35b6102a4610671565b005b6102ae610684565b005b6102b86106a8565b6040516102c591906112dc565b60405180910390f35b6102d66106bb565b6040516102e39190611418565b60405180910390f35b6102f46106e3565b60405161030191906111a8565b60405180910390f35b610324600480360381019061031f9190611284565b610773565b60405161033191906112dc565b60405180910390f35b610354600480360381019061034f9190611284565b6107e8565b60405161036191906112dc565b60405180910390f35b610384600480360381019061037f9190611226565b61080a565b60405161039191906112dc565b60405180910390f35b6103b460048036038101906103af9190611431565b610827565b6040516103c1919061136c565b60405180910390f35b6103e460048036038101906103df9190611226565b6108a9565b005b6060600380546103f59061149c565b80601f01602080910402602001604051908101604052809291908181526020018280546104219061149c565b801561046c5780601f106104435761010080835404028352916020019161046c565b820191905f5260205f20905b81548152906001019060200180831161044f57829003601f168201915b5050505050905090565b61047e61092b565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f806104df6109a9565b90506104ec8185856109b0565b600191505092915050565b6104ff61092b565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61055f61092b565b600160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600254905090565b5f806105ca6109a9565b90506105d7858285610b73565b6105e2858585610bfe565b60019150509392505050565b5f6012905090565b5f806106006109a9565b90506106218185856106128589610827565b61061c91906114f9565b6109b0565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61067961092b565b6106825f610dff565b565b61068c61092b565b5f600860146101000a81548160ff021916908315150217905550565b600860149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106f29061149c565b80601f016020809104026020016040519081016040528092919081815260200182805461071e9061149c565b80156107695780601f1061074057610100808354040283529160200191610769565b820191905f5260205f20905b81548152906001019060200180831161074c57829003601f168201915b5050505050905090565b5f8061077d6109a9565b90505f61078a8286610827565b9050838110156107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c69061159c565b60405180910390fd5b6107dc82868684036109b0565b60019250505092915050565b5f806107f26109a9565b90506107ff818585610bfe565b600191505092915050565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108b161092b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361091f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109169061162a565b60405180910390fd5b61092881610dff565b50565b6109336109a9565b73ffffffffffffffffffffffffffffffffffffffff166109516106bb565b73ffffffffffffffffffffffffffffffffffffffff16146109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e90611692565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611720565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a83906117ae565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b66919061136c565b60405180910390a3505050565b5f610b7e8484610827565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bf85781811015610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611816565b60405180910390fd5b610bf784848484036109b0565b5b50505050565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610c5d57610c58838383610ec2565b610dfa565b600860149054906101000a900460ff1615610dee57600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610d0d5750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610ded57600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610dad5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906118a4565b60405180910390fd5b5b5b610df9838383610ec2565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611932565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f95906119c0565b60405180910390fd5b610fa983838361112e565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390611a4e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611115919061136c565b60405180910390a3611128848484611133565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61117a82611138565b6111848185611142565b9350611194818560208601611152565b61119d81611160565b840191505092915050565b5f6020820190508181035f8301526111c08184611170565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111f5826111cc565b9050919050565b611205816111eb565b811461120f575f80fd5b50565b5f81359050611220816111fc565b92915050565b5f6020828403121561123b5761123a6111c8565b5b5f61124884828501611212565b91505092915050565b5f819050919050565b61126381611251565b811461126d575f80fd5b50565b5f8135905061127e8161125a565b92915050565b5f806040838503121561129a576112996111c8565b5b5f6112a785828601611212565b92505060206112b885828601611270565b9150509250929050565b5f8115159050919050565b6112d6816112c2565b82525050565b5f6020820190506112ef5f8301846112cd565b92915050565b6112fe816112c2565b8114611308575f80fd5b50565b5f81359050611319816112f5565b92915050565b5f8060408385031215611335576113346111c8565b5b5f61134285828601611212565b92505060206113538582860161130b565b9150509250929050565b61136681611251565b82525050565b5f60208201905061137f5f83018461135d565b92915050565b5f805f6060848603121561139c5761139b6111c8565b5b5f6113a986828701611212565b93505060206113ba86828701611212565b92505060406113cb86828701611270565b9150509250925092565b5f60ff82169050919050565b6113ea816113d5565b82525050565b5f6020820190506114035f8301846113e1565b92915050565b611412816111eb565b82525050565b5f60208201905061142b5f830184611409565b92915050565b5f8060408385031215611447576114466111c8565b5b5f61145485828601611212565b925050602061146585828601611212565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114b357607f821691505b6020821081036114c6576114c561146f565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61150382611251565b915061150e83611251565b9250828201905080821115611526576115256114cc565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611586602583611142565b91506115918261152c565b604082019050919050565b5f6020820190508181035f8301526115b38161157a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611614602683611142565b915061161f826115ba565b604082019050919050565b5f6020820190508181035f83015261164181611608565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61167c602083611142565b915061168782611648565b602082019050919050565b5f6020820190508181035f8301526116a981611670565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61170a602483611142565b9150611715826116b0565b604082019050919050565b5f6020820190508181035f830152611737816116fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611798602283611142565b91506117a38261173e565b604082019050919050565b5f6020820190508181035f8301526117c58161178c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611800601d83611142565b915061180b826117cc565b602082019050919050565b5f6020820190508181035f83015261182d816117f4565b9050919050565b7f4b72656d6c696e206861732072656a656374656420796f7572207265717565735f8201527f742e2054727920616761696e206c617465722e00000000000000000000000000602082015250565b5f61188e603383611142565b915061189982611834565b604082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61191c602583611142565b9150611927826118c2565b604082019050919050565b5f6020820190508181035f83015261194981611910565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6119aa602383611142565b91506119b582611950565b604082019050919050565b5f6020820190508181035f8301526119d78161199e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611a38602683611142565b9150611a43826119de565b604082019050919050565b5f6020820190508181035f830152611a6581611a2c565b905091905056fea2646970667358221220507225c6e2e9151a1ae439ed6f04a312ea5034563ee6b06ff81902f768a6863b64736f6c63430008190033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084d4f45583639303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4558000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035000000000000000000000000849ad0dcf130333f0059c9964cfdd0e2e1f9a36700000000000000000000000042f59ab90b03174e698ff4e662e6e7d3856927cd000000000000000000000000bde3ea85d4f16ac959940a622c04d693ce7c7298000000000000000000000000b20003c94341808703c8087dbed605280f428f300000000000000000000000006a89c55f8a6fda42af5f082276254edecd4435a600000000000000000000000075d34efdfe7ae05fad2a96aa99a46d7acb0020ad000000000000000000000000a02af7f3c8f541a226f7fdd497b38f6ba47a464d000000000000000000000000cf543c42254b82ec87062fcec301443594002be40000000000000000000000001fa3a825b2ab1aa38ba6eceea18d971f41ba8d03000000000000000000000000006a2123c0447fa555a4a1fb116974d3c4723e990000000000000000000000002569015e0b847f1ba336bda4f73c49872bf1b25a0000000000000000000000001f4f8faa052a7aa24baf7b2f7ef0f463380c56320000000000000000000000002fb05c6a79818f6eaca9a3f8a647e5c4cc616279000000000000000000000000c826705f2e54a170410646bb08faf123452702ac0000000000000000000000000be92bed2a0d55cdb32a376c9d7fe654e8cff5000000000000000000000000008e65ed5c267bd04fc40a74689604e89e06641908000000000000000000000000dba50ca567d8b893a643c66f9b6d33d1f79d4db3000000000000000000000000ff0f3be8995f71dc449d1701efa86c6799f452bf00000000000000000000000036212ec79d52fb1dca7e09f5d02546ff5d705979000000000000000000000000f3becf97043b1a66485601b399deb75adde9e075000000000000000000000000725cb3bee820ac2e760b6332f9916f8e94bf7d800000000000000000000000009db66ca8c94b8b3dc4ec827b74b35d11e1f2996b000000000000000000000000574f372d88c7b9dbfdc5d0dcc2422505a610475200000000000000000000000058d4087178bb3baeb7f0cebef41dc4124ab09c8100000000000000000000000077c1b49d8e472c3a2194e18076a2c31cd47b28f400000000000000000000000062fd27680101a7ecf64c2c19b0347ace2c9fa6ae0000000000000000000000008f9d64293d67c852faae3b9d6834e528e0d5dfa90000000000000000000000001cf6f218c9616d1e6b5f14fbe3ed0f2fa1f5a77600000000000000000000000038da7519c19164ed3f6abffd03279dcf411e34cd00000000000000000000000040b18fb9ea00f6bcc0d334653e9f3ca0c01d4e3a0000000000000000000000006095a9a5841095fecf5575402aa53655f990e139000000000000000000000000a3b65306022b34e32677b9288fe35b1049aee8c4000000000000000000000000cb5f4d191e78dca429ec4a01d8f32e97750ad31b0000000000000000000000005301d736f8868ce2ed1679ab1b171dcbd33eb642000000000000000000000000bb0fa58a7fa6b31696a179a67de0cf1fc6af089b00000000000000000000000086ba8a51300730e7fbc974e9fc5a66a9a939cbd20000000000000000000000003da82d976ee98914f381744452e39cfa8f5d462a000000000000000000000000f8101069739af9f5d0f3250f2408ec698bfec1640000000000000000000000009a6ddd839ba19304088d9fc03e9a376c1ead6b9a000000000000000000000000f2d47fcf7e8584a51f4311966ba2606811e27e870000000000000000000000008b107c2d742781ecd41933fef7b06460bb63949b000000000000000000000000330e5d4987391db16587845362d53d2c8b4b8e62000000000000000000000000a0a423075d5c4def210103930505e9cdc6b5b3440000000000000000000000002d1760e1f90e15d7ef679451cb402e34cf2612a0000000000000000000000000e86369546144bf5555859833848999842c083b4e000000000000000000000000b2349bb34987480aa0888b9b53b54d5d1c3e2d83000000000000000000000000f500fbaed62d2c49015ee5ae980056fa54cba1740000000000000000000000004a63fbbd6ad2439cf1a4fb024dcda5839a35ac8c00000000000000000000000092829516379b1f091cec2f1c9f210fe89110f2ba0000000000000000000000007479fc5af04b3459630f0a7abe2d75ad8e798ec60000000000000000000000000426807e6f149491b6e5f9872e2b31500d6773ff000000000000000000000000631530fd1aaa51a0ea35ed230ff5feeb4984812c000000000000000000000000c2fbea7b0012e6068c06a4d55e04a4e99b115ab1

-----Decoded View---------------
Arg [0] : name (string): MOEX6900
Arg [1] : symbol (string): MOEX
Arg [2] : _Comrades (address[]): 0x849aD0DCf130333f0059c9964CFdd0E2e1F9a367,0x42f59AB90b03174E698ff4E662e6E7D3856927CD,0xBde3ea85D4f16Ac959940A622c04D693CE7C7298,0xb20003C94341808703C8087Dbed605280f428F30,0x6a89c55f8A6fDa42Af5F082276254eDecD4435a6,0x75d34EfDFE7AE05fad2a96AA99A46d7AcB0020aD,0xA02Af7F3c8f541a226f7fdd497B38F6ba47A464d,0xCF543c42254B82EC87062fcEc301443594002bE4,0x1fA3a825b2AB1Aa38BA6ECEea18d971f41ba8D03,0x006A2123c0447Fa555a4a1fb116974d3C4723e99,0x2569015e0b847f1Ba336bDA4f73c49872BF1b25A,0x1F4F8faa052A7aa24baf7b2f7eF0f463380c5632,0x2FB05c6A79818f6Eaca9a3f8a647E5c4cC616279,0xc826705f2E54a170410646bB08fAf123452702Ac,0x0be92BEd2a0D55CDb32a376C9d7fe654e8cfF500,0x8E65ed5c267BD04FC40a74689604E89E06641908,0xdBA50CA567D8b893a643c66F9b6d33D1f79D4dB3,0xFF0F3Be8995F71dc449D1701efA86c6799f452Bf,0x36212Ec79D52fb1DcA7e09f5D02546fF5D705979,0xf3Becf97043b1A66485601B399Deb75aDde9e075,0x725cB3BeE820aC2E760b6332F9916f8E94Bf7D80,0x9DB66cA8c94b8b3Dc4EC827b74B35d11e1F2996B,0x574f372D88C7b9dbfdc5D0dcc2422505a6104752,0x58D4087178bB3baeB7F0CEbeF41DC4124Ab09c81,0x77c1B49d8e472C3A2194e18076a2c31cd47b28F4,0x62Fd27680101a7EcF64C2C19B0347acE2c9fa6Ae,0x8f9D64293d67c852fAAE3B9d6834e528E0D5DFA9,0x1CF6f218C9616D1E6B5F14FBE3ED0f2FA1F5a776,0x38dA7519c19164ed3F6ABFfD03279DcF411e34CD,0x40B18fb9Ea00F6BCc0d334653e9f3cA0c01d4E3A,0x6095a9a5841095fECF5575402Aa53655f990E139,0xA3B65306022b34e32677B9288fe35B1049aeE8C4,0xcB5F4D191e78dcA429ec4A01D8f32e97750Ad31B,0x5301D736f8868cE2ed1679aB1b171DCBd33eb642,0xbb0Fa58A7Fa6B31696A179a67de0cf1FC6AF089B,0x86BA8a51300730e7fbc974e9fc5A66a9a939cBd2,0x3da82d976EE98914f381744452e39cFA8f5d462A,0xf8101069739aF9f5d0f3250f2408EC698bFec164,0x9a6DdD839bA19304088D9FC03E9A376C1eAd6b9a,0xf2D47Fcf7e8584a51f4311966bA2606811e27E87,0x8b107C2D742781EcD41933fEF7B06460bB63949B,0x330E5D4987391dB16587845362d53d2C8b4B8E62,0xA0A423075D5C4dEf210103930505e9Cdc6b5B344,0x2d1760E1F90E15d7EF679451cB402e34CF2612A0,0xE86369546144Bf5555859833848999842C083B4e,0xB2349bB34987480aA0888B9B53B54d5D1c3E2D83,0xF500fbaEd62D2C49015Ee5AE980056fA54cBA174,0x4a63FbBd6Ad2439cF1A4fB024DCdA5839a35AC8c,0x92829516379B1F091CeC2F1c9f210Fe89110F2Ba,0x7479fc5aF04b3459630F0A7ABe2d75AD8E798Ec6,0x0426807E6F149491b6E5F9872e2b31500D6773FF,0x631530fd1aaa51a0Ea35eD230ff5FEEb4984812c,0xc2fBEa7b0012E6068C06A4D55e04A4e99B115Ab1

-----Encoded View---------------
61 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4d4f455836393030000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d4f455800000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 000000000000000000000000849ad0dcf130333f0059c9964cfdd0e2e1f9a367
Arg [9] : 00000000000000000000000042f59ab90b03174e698ff4e662e6e7d3856927cd
Arg [10] : 000000000000000000000000bde3ea85d4f16ac959940a622c04d693ce7c7298
Arg [11] : 000000000000000000000000b20003c94341808703c8087dbed605280f428f30
Arg [12] : 0000000000000000000000006a89c55f8a6fda42af5f082276254edecd4435a6
Arg [13] : 00000000000000000000000075d34efdfe7ae05fad2a96aa99a46d7acb0020ad
Arg [14] : 000000000000000000000000a02af7f3c8f541a226f7fdd497b38f6ba47a464d
Arg [15] : 000000000000000000000000cf543c42254b82ec87062fcec301443594002be4
Arg [16] : 0000000000000000000000001fa3a825b2ab1aa38ba6eceea18d971f41ba8d03
Arg [17] : 000000000000000000000000006a2123c0447fa555a4a1fb116974d3c4723e99
Arg [18] : 0000000000000000000000002569015e0b847f1ba336bda4f73c49872bf1b25a
Arg [19] : 0000000000000000000000001f4f8faa052a7aa24baf7b2f7ef0f463380c5632
Arg [20] : 0000000000000000000000002fb05c6a79818f6eaca9a3f8a647e5c4cc616279
Arg [21] : 000000000000000000000000c826705f2e54a170410646bb08faf123452702ac
Arg [22] : 0000000000000000000000000be92bed2a0d55cdb32a376c9d7fe654e8cff500
Arg [23] : 0000000000000000000000008e65ed5c267bd04fc40a74689604e89e06641908
Arg [24] : 000000000000000000000000dba50ca567d8b893a643c66f9b6d33d1f79d4db3
Arg [25] : 000000000000000000000000ff0f3be8995f71dc449d1701efa86c6799f452bf
Arg [26] : 00000000000000000000000036212ec79d52fb1dca7e09f5d02546ff5d705979
Arg [27] : 000000000000000000000000f3becf97043b1a66485601b399deb75adde9e075
Arg [28] : 000000000000000000000000725cb3bee820ac2e760b6332f9916f8e94bf7d80
Arg [29] : 0000000000000000000000009db66ca8c94b8b3dc4ec827b74b35d11e1f2996b
Arg [30] : 000000000000000000000000574f372d88c7b9dbfdc5d0dcc2422505a6104752
Arg [31] : 00000000000000000000000058d4087178bb3baeb7f0cebef41dc4124ab09c81
Arg [32] : 00000000000000000000000077c1b49d8e472c3a2194e18076a2c31cd47b28f4
Arg [33] : 00000000000000000000000062fd27680101a7ecf64c2c19b0347ace2c9fa6ae
Arg [34] : 0000000000000000000000008f9d64293d67c852faae3b9d6834e528e0d5dfa9
Arg [35] : 0000000000000000000000001cf6f218c9616d1e6b5f14fbe3ed0f2fa1f5a776
Arg [36] : 00000000000000000000000038da7519c19164ed3f6abffd03279dcf411e34cd
Arg [37] : 00000000000000000000000040b18fb9ea00f6bcc0d334653e9f3ca0c01d4e3a
Arg [38] : 0000000000000000000000006095a9a5841095fecf5575402aa53655f990e139
Arg [39] : 000000000000000000000000a3b65306022b34e32677b9288fe35b1049aee8c4
Arg [40] : 000000000000000000000000cb5f4d191e78dca429ec4a01d8f32e97750ad31b
Arg [41] : 0000000000000000000000005301d736f8868ce2ed1679ab1b171dcbd33eb642
Arg [42] : 000000000000000000000000bb0fa58a7fa6b31696a179a67de0cf1fc6af089b
Arg [43] : 00000000000000000000000086ba8a51300730e7fbc974e9fc5a66a9a939cbd2
Arg [44] : 0000000000000000000000003da82d976ee98914f381744452e39cfa8f5d462a
Arg [45] : 000000000000000000000000f8101069739af9f5d0f3250f2408ec698bfec164
Arg [46] : 0000000000000000000000009a6ddd839ba19304088d9fc03e9a376c1ead6b9a
Arg [47] : 000000000000000000000000f2d47fcf7e8584a51f4311966ba2606811e27e87
Arg [48] : 0000000000000000000000008b107c2d742781ecd41933fef7b06460bb63949b
Arg [49] : 000000000000000000000000330e5d4987391db16587845362d53d2c8b4b8e62
Arg [50] : 000000000000000000000000a0a423075d5c4def210103930505e9cdc6b5b344
Arg [51] : 0000000000000000000000002d1760e1f90e15d7ef679451cb402e34cf2612a0
Arg [52] : 000000000000000000000000e86369546144bf5555859833848999842c083b4e
Arg [53] : 000000000000000000000000b2349bb34987480aa0888b9b53b54d5d1c3e2d83
Arg [54] : 000000000000000000000000f500fbaed62d2c49015ee5ae980056fa54cba174
Arg [55] : 0000000000000000000000004a63fbbd6ad2439cf1a4fb024dcda5839a35ac8c
Arg [56] : 00000000000000000000000092829516379b1f091cec2f1c9f210fe89110f2ba
Arg [57] : 0000000000000000000000007479fc5af04b3459630f0a7abe2d75ad8e798ec6
Arg [58] : 0000000000000000000000000426807e6f149491b6e5f9872e2b31500d6773ff
Arg [59] : 000000000000000000000000631530fd1aaa51a0ea35ed230ff5feeb4984812c
Arg [60] : 000000000000000000000000c2fbea7b0012e6068c06a4d55e04a4e99b115ab1


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.