ETH Price: $2,588.77 (-2.93%)
Gas: 2 Gwei

Token

EYES Protocol (EYES)
 

Overview

Max Total Supply

9,976,270,460 EYES

Holders

174

Market

Price

$0.01 @ 0.000002 ETH (+206.92%)

Onchain Market Cap

$55,634,375.44

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,251,626.15714051 EYES

Value
$107,359.98 ( ~41.4715 Eth) [0.1930%]
0x91bf7A51BbbAC32193EeCC5b55b50eA3EcbAF619
Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$225.61
Market Capitalization:$0.00
Circulating Supply:0.00 EYES
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EYESToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : EYESToken.sol
// contracts/EYESToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;

import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol';
import '@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol';
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract EYESToken is AccessControl, ERC20, ERC20Burnable, ERC20Pausable {
    bytes32 public constant ROLE_ADMIN       = keccak256("ROLE_ADMIN");
    bytes32 public constant ROLE_ADMIN_ADMIN = keccak256("ROLE_ADMIN_ADMIN");
    bytes32 public constant ROLE_PREVENT     = keccak256("ROLE_PREVENT");

    mapping (address => bool) private _locked_wallets;

    event WalletStateChanged(address indexed _wallet, bool _locked);

    constructor(address admin, address eco, address team, address[15] memory sales, address[20] memory markets) ERC20("EYES Protocol", "EYES") {
        /* Setup roles
         * - Admin address has role `ROLE_ADMIN`
         * - Admin address has role `ROLE_ADMIN_ADMIN`
         * Addresses with `ROLE_ADMIN` can
         * - Pause/unpause token contract
         * - Lock/unlock wallet
         * Addresses with `ROLE_ADMIN_ADMIN` can
         * - Grant other addresses `ROLE_ADMIN` role */
        _setupRole(ROLE_ADMIN,       admin);
        _setupRole(ROLE_ADMIN_ADMIN, admin);
        _setRoleAdmin(ROLE_ADMIN, ROLE_ADMIN_ADMIN);

        /* By default `ROLE_ADMIN_ADMIN` and `ROLE_ADMIN_ADMIN`'s admin role
         * are the same. Setting it to `ROLE_PREVENT` to prevent someone with
         * `ROLE_ADMIN_ADMIN` role from granting others `ROLE_ADMIN_ADMIN` role. */
        _setRoleAdmin(ROLE_ADMIN_ADMIN, ROLE_PREVENT);

        uint256 EXPECTED_TOTAL_SUPPLY = 10000000000 ether;
        uint256 MINTAGE_ECO_TOKEN     =  5000000000 ether;
        uint256 MINTAGE_TEAM_TOKEN    =  1500000000 ether;
        uint256 MINTAGE_PER_WALLET    =   100000000 ether;

        _mint(eco, MINTAGE_ECO_TOKEN);
        _approve(eco, admin, MINTAGE_ECO_TOKEN);

        _mint(team, MINTAGE_TEAM_TOKEN);
        _approve(team, admin, MINTAGE_TEAM_TOKEN);

        for (uint i = 0; i < sales.length; i += 1) {
            _mint(sales[i], MINTAGE_PER_WALLET);
            _approve(sales[i], admin, MINTAGE_PER_WALLET);
        }
        for (uint i = 0; i < markets.length; i += 1) {
            _mint(markets[i], MINTAGE_PER_WALLET);
            _approve(markets[i], admin, MINTAGE_PER_WALLET);
        }
        assert (totalSupply() == EXPECTED_TOTAL_SUPPLY);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20, ERC20Pausable) {
        require (!_locked_wallets[from], "source wallet address is locked");
        super._beforeTokenTransfer(from, to, amount);
    }

    function lock_wallet(address wallet, bool lock) external onlyRole(ROLE_ADMIN) {
        require (wallet != address(0x0), "you can't lock 0x0");
        require (_locked_wallets[wallet] != lock, "the wallet is set to given state already");
        _locked_wallets[wallet] = lock;
        emit WalletStateChanged(wallet, lock);
    }

    function pause() external onlyRole(ROLE_ADMIN) whenNotPaused {
        _pause();
    }

    function unpause() external onlyRole(ROLE_ADMIN) whenPaused {
        _unpause();
    }
}

File 2 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 13 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 7 of 13 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

File 8 of 13 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

File 9 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 10 of 13 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 12 of 13 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"eco","type":"address"},{"internalType":"address","name":"team","type":"address"},{"internalType":"address[15]","name":"sales","type":"address[15]"},{"internalType":"address[20]","name":"markets","type":"address[20]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"_locked","type":"bool"}],"name":"WalletStateChanged","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_ADMIN_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_PREVENT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"lock","type":"bool"}],"name":"lock_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620020b8380380620020b883398101604081905262000034916200083c565b6040518060400160405280600d81526020016c11565154c8141c9bdd1bd8dbdb609a1b815250604051806040016040528060048152602001634559455360e01b81525081600490805190602001906200008f929190620006c1565b508051620000a5906005906020840190620006c1565b50506006805460ff1916905550620000cd60008051602062002098833981519152866200029f565b620000e860008051602062002078833981519152866200029f565b620001126000805160206200209883398151915260008051602062002078833981519152620002af565b6200014d600080516020620020788339815191527f12590ecd457d4ae4c21475456083fe8a2e3f50934d61752a9a5272cbac96e745620002af565b6b204fce5e3e250261100000006b1027e72f1f128130880000006b04d8c55aefb8c05b5c0000006a52b7d2dcc80cd2e40000006200018c8884620002fa565b62000199888a85620003f1565b620001a58783620002fa565b620001b2878a84620003f1565b60005b600f8110156200021f57620001e48782600f8110620001d857620001d86200090a565b602002015183620002fa565b6200020a8782600f8110620001fd57620001fd6200090a565b60200201518b84620003f1565b6200021760018262000920565b9050620001b5565b5060005b6014811015620002745762000246868260148110620001d857620001d86200090a565b6200025f868260148110620001fd57620001fd6200090a565b6200026c60018262000920565b905062000223565b50836200028060035490565b1462000290576200029062000947565b5050505050505050506200099a565b620002ab828262000519565b5050565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6001600160a01b038216620003565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200036460008383620005b9565b806003600082825462000378919062000920565b90915550506001600160a01b03821660009081526001602052604081208054839290620003a790849062000920565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316620004555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200034d565b6001600160a01b038216620004b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200034d565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620002ab576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620005753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6001600160a01b03831660009081526007602052604090205460ff1615620006245760405162461bcd60e51b815260206004820152601f60248201527f736f757263652077616c6c65742061646472657373206973206c6f636b65640060448201526064016200034d565b6200063c8383836200064160201b62000a1f1760201c565b505050565b620006598383836200063c60201b620005b91760201c565b60065460ff16156200063c5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016200034d565b828054620006cf906200095d565b90600052602060002090601f016020900481019282620006f357600085556200073e565b82601f106200070e57805160ff19168380011785556200073e565b828001600101855582156200073e579182015b828111156200073e57825182559160200191906001019062000721565b506200074c92915062000750565b5090565b5b808211156200074c576000815560010162000751565b80516001600160a01b03811681146200077f57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60405161028081016001600160401b0381118282101715620007c057620007c062000784565b60405290565b6040516101e081016001600160401b0381118282101715620007c057620007c062000784565b6000620007f86200079a565b9050806102808301848111156200080e57600080fd5b835b818110156200083357620008248162000767565b83526020928301920162000810565b50505092915050565b60008060008060006104c086880312156200085657600080fd5b620008618662000767565b945060206200087281880162000767565b9450620008826040880162000767565b935087607f8801126200089457600080fd5b6200089e620007c6565b8061024089018a811115620008b257600080fd5b60608a015b81811015620008d957620008cb8162000767565b8452928401928401620008b7565b508195508a61025f8b0112620008ee57600080fd5b620008fa8b82620007ec565b9450505050509295509295909350565b634e487b7160e01b600052603260045260246000fd5b600082198211156200094257634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052600160045260246000fd5b600181811c908216806200097257607f821691505b602082108114156200099457634e487b7160e01b600052602260045260246000fd5b50919050565b6116ce80620009aa6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806342966c68116100f957806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610391578063d391014b146103a4578063d547741f146103b9578063dd62ed3e146103cc57600080fd5b806395d89b411461036e578063a217fddf14610376578063a457c2d71461037e57600080fd5b806372ad9abe116100d357806372ad9abe1461032d57806379cc6790146103405780638456cb591461035357806391d148541461035b57600080fd5b806342966c68146102e65780635c975abb146102f957806370a082311461030457600080fd5b80632934d9741161016657806336568abe1161014057806336568abe1461029157806339509351146102a45780633b0ec9b4146102b75780633f4ba83a146102de57600080fd5b80632934d974146102465780632f2ff15d1461026d578063313ce5671461028257600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063095ea7b3146101eb57806318160ddd146101fe57806323b872dd14610210578063248a9ca314610223575b600080fd5b6101c16101bc366004611350565b610405565b60405190151581526020015b60405180910390f35b6101de61043c565b6040516101cd91906113a6565b6101c16101f93660046113f5565b6104ce565b6003545b6040519081526020016101cd565b6101c161021e36600461141f565b6104e4565b61020261023136600461145b565b60009081526020819052604090206001015490565b6102027fc5030d11a3ba899f2ab5448f1c6529490e2d4a245fd708d6ed0803194023a16681565b61028061027b366004611474565b610593565b005b604051601281526020016101cd565b61028061029f366004611474565b6105be565b6101c16102b23660046113f5565b61063c565b6102027f12590ecd457d4ae4c21475456083fe8a2e3f50934d61752a9a5272cbac96e74581565b610280610678565b6102806102f436600461145b565b6106e5565b60065460ff166101c1565b6102026103123660046114a0565b6001600160a01b031660009081526001602052604090205490565b61028061033b3660046114bb565b6106ef565b61028061034e3660046113f5565b610833565b6102806108b4565b6101c1610369366004611474565b61091b565b6101de610944565b610202600081565b6101c161038c3660046113f5565b610953565b6101c161039f3660046113f5565b6109ec565b61020260008051602061167983398151915281565b6102806103c7366004611474565b6109f9565b6102026103da3660046114f7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b148061043657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461044b90611521565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611521565b80156104c45780601f10610499576101008083540402835291602001916104c4565b820191906000526020600020905b8154815290600101906020018083116104a757829003601f168201915b5050505050905090565b60006104db338484610a85565b50600192915050565b60006104f1848484610ba9565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561057b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105888533858403610a85565b506001949350505050565b6000828152602081905260409020600101546105af8133610d84565b6105b98383610de8565b505050565b6001600160a01b038116331461062e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610572565b6106388282610e6c565b5050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104db918590610673908690611572565b610a85565b6000805160206116798339815191526106918133610d84565b60065460ff166106da5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610572565b6106e2610ed1565b50565b6106e23382610f64565b6000805160206116798339815191526107088133610d84565b6001600160a01b0383166107535760405162461bcd60e51b81526020600482015260126024820152710796f752063616e2774206c6f636b203078360741b6044820152606401610572565b6001600160a01b03831660009081526007602052604090205460ff16151582151514156107d35760405162461bcd60e51b815260206004820152602860248201527f7468652077616c6c65742069732073657420746f20676976656e20737461746560448201526720616c726561647960c01b6064820152608401610572565b6001600160a01b038316600081815260076020908152604091829020805460ff191686151590811790915591519182527fd6851ff6efa8a9cdc6d6c373a4ae879c1170692bbfd45d6dbf7733b1c1c6cea6910160405180910390a2505050565b600061083f83336103da565b90508181101561089d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610572565b6108aa8333848403610a85565b6105b98383610f64565b6000805160206116798339815191526108cd8133610d84565b60065460ff16156109135760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b6106e26110be565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606005805461044b90611521565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156109d55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610572565b6109e23385858403610a85565b5060019392505050565b60006104db338484610ba9565b600082815260208190526040902060010154610a158133610d84565b6105b98383610e6c565b60065460ff16156105b95760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610572565b6001600160a01b038316610ae75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610572565b6001600160a01b038216610b485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610572565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610572565b6001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610572565b610c7a838383611139565b6001600160a01b03831660009081526001602052604090205481811015610cf25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610572565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d29908490611572565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7591815260200190565b60405180910390a35b50505050565b610d8e828261091b565b61063857610da6816001600160a01b031660146111ad565b610db18360206111ad565b604051602001610dc292919061158a565b60408051601f198184030181529082905262461bcd60e51b8252610572916004016113a6565b610df2828261091b565b610638576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610e283390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610e76828261091b565b15610638576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16610f1a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610572565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610fc45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610572565b610fd082600083611139565b6001600160a01b038216600090815260016020526040902054818110156110445760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610572565b6001600160a01b03831660009081526001602052604081208383039055600380548492906110739084906115ff565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60065460ff16156111045760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f473390565b6001600160a01b03831660009081526007602052604090205460ff16156111a25760405162461bcd60e51b815260206004820152601f60248201527f736f757263652077616c6c65742061646472657373206973206c6f636b6564006044820152606401610572565b6105b9838383610a1f565b606060006111bc836002611616565b6111c7906002611572565b67ffffffffffffffff8111156111df576111df611635565b6040519080825280601f01601f191660200182016040528015611209576020820181803683370190505b509050600360fc1b816000815181106112245761122461164b565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112535761125361164b565b60200101906001600160f81b031916908160001a9053506000611277846002611616565b611282906001611572565b90505b60018111156112fa576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106112b6576112b661164b565b1a60f81b8282815181106112cc576112cc61164b565b60200101906001600160f81b031916908160001a90535060049490941c936112f381611661565b9050611285565b5083156113495760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610572565b9392505050565b60006020828403121561136257600080fd5b81356001600160e01b03198116811461134957600080fd5b60005b8381101561139557818101518382015260200161137d565b83811115610d7e5750506000910152565b60208152600082518060208401526113c581604085016020870161137a565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146113f057600080fd5b919050565b6000806040838503121561140857600080fd5b611411836113d9565b946020939093013593505050565b60008060006060848603121561143457600080fd5b61143d846113d9565b925061144b602085016113d9565b9150604084013590509250925092565b60006020828403121561146d57600080fd5b5035919050565b6000806040838503121561148757600080fd5b82359150611497602084016113d9565b90509250929050565b6000602082840312156114b257600080fd5b611349826113d9565b600080604083850312156114ce57600080fd5b6114d7836113d9565b9150602083013580151581146114ec57600080fd5b809150509250929050565b6000806040838503121561150a57600080fd5b611513836113d9565b9150611497602084016113d9565b600181811c9082168061153557607f821691505b6020821081141561155657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115855761158561155c565b500190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516115c281601785016020880161137a565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516115f381602884016020880161137a565b01602801949350505050565b6000828210156116115761161161155c565b500390565b60008160001904831182151516156116305761163061155c565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816116705761167061155c565b50600019019056fe2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096a2646970667358221220a87cb1f9d3e88aaeccaa14ce912e079e428ef22cb77bbd50cbe48bd87db37dc164736f6c634300080b0033c5030d11a3ba899f2ab5448f1c6529490e2d4a245fd708d6ed0803194023a1662172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca0250960000000000000000000000006dfcc7c9246902f255980233e68670587ff36eb60000000000000000000000005fb699f4e726549da573b469541ddfef5b0ccfdd000000000000000000000000ab8f8242339377815f530dad387f4544eb38bddc000000000000000000000000182e668dd9943c178899230119ca02a7773db0d90000000000000000000000005ed418d786a806f91705a962ff6ef5e46e2017d20000000000000000000000002ad0eb8a84cc444d0eb46d1d742398618da13443000000000000000000000000509c409cc7baad7e322977dc1072718b7ca1b244000000000000000000000000e6ce9225ce36b3eb2feef3e4181b8a033f3dc85900000000000000000000000065857c508b33bd8604cf359e0d7eb32077bf966c000000000000000000000000ade669a5135b40ab120829aa70ae0c521175f7820000000000000000000000007481805a997d787d3bbbecdece86050b70e70ee5000000000000000000000000acd001b069492d40d4c2667824cee7630479453d0000000000000000000000009750614a10f1e01eb9ca5939b97cdf00a4d2b7a2000000000000000000000000c4792cf35c9aa51f44687ef9483f9b4b8ab0dfb2000000000000000000000000da240513f9b4cb3a1eefb6e841cccaf8a7deb95f0000000000000000000000006a592cf31667e0efa342751e4e0596f485bf9ff8000000000000000000000000698ffc30167db5259aa2a0339e5b1aa48f09e6b300000000000000000000000093d3e434719901bec8f954a3d2689b02757e7403000000000000000000000000ccfb3ef651a4b012c54291d5f15c13ed5f8af64f000000000000000000000000f369025da13459324f404f7482ac6aed42d65381000000000000000000000000837a1daee2bc40b963c7c8899550825936e91a7f00000000000000000000000093677826a16bd1cc6c81a3ab2eb620bbfc630caf0000000000000000000000002baf0f6d83ce4b95268178996e3d7833aec4442a000000000000000000000000153c0966d705440260d9c2d6071d02bd08610a420000000000000000000000008c41d4ac0282be6462a8d514abeb39946e0f45e1000000000000000000000000b33d67a4a9c1af6ddccba5655a2760041878c573000000000000000000000000bd136ec8554f21ceace775dca1ca88c84681002600000000000000000000000067dc784427a9366fd5e2d9bc550c34e902cb100000000000000000000000000017b1615866239a6b7c5bc18dc67323d69c3f09b2000000000000000000000000c28e78c2950ddb9a01cab1699aacabe48359c533000000000000000000000000109e658de08a07db0df28afefdb08ea4e55d65530000000000000000000000009c0c319a56657942bad0f7ac4ffbe3dceff142ce0000000000000000000000009eecded57bd24a28e56c6a9db5f6cc63badfed27000000000000000000000000fb93293cc9ce3753fe3aefbbf2b6649989eff50a000000000000000000000000fa8ba234162cc6fc49d11793dd8ad64c6b54ef8c0000000000000000000000001256c6ef2e59bd56397e9a14cd949089be5813e300000000000000000000000061d9183fa9eff68d8108d728eb6c2fe3ec38a2d90000000000000000000000003b8eff7c10c819db7888e57ed8fb757f43011d5a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806342966c68116100f957806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610391578063d391014b146103a4578063d547741f146103b9578063dd62ed3e146103cc57600080fd5b806395d89b411461036e578063a217fddf14610376578063a457c2d71461037e57600080fd5b806372ad9abe116100d357806372ad9abe1461032d57806379cc6790146103405780638456cb591461035357806391d148541461035b57600080fd5b806342966c68146102e65780635c975abb146102f957806370a082311461030457600080fd5b80632934d9741161016657806336568abe1161014057806336568abe1461029157806339509351146102a45780633b0ec9b4146102b75780633f4ba83a146102de57600080fd5b80632934d974146102465780632f2ff15d1461026d578063313ce5671461028257600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063095ea7b3146101eb57806318160ddd146101fe57806323b872dd14610210578063248a9ca314610223575b600080fd5b6101c16101bc366004611350565b610405565b60405190151581526020015b60405180910390f35b6101de61043c565b6040516101cd91906113a6565b6101c16101f93660046113f5565b6104ce565b6003545b6040519081526020016101cd565b6101c161021e36600461141f565b6104e4565b61020261023136600461145b565b60009081526020819052604090206001015490565b6102027fc5030d11a3ba899f2ab5448f1c6529490e2d4a245fd708d6ed0803194023a16681565b61028061027b366004611474565b610593565b005b604051601281526020016101cd565b61028061029f366004611474565b6105be565b6101c16102b23660046113f5565b61063c565b6102027f12590ecd457d4ae4c21475456083fe8a2e3f50934d61752a9a5272cbac96e74581565b610280610678565b6102806102f436600461145b565b6106e5565b60065460ff166101c1565b6102026103123660046114a0565b6001600160a01b031660009081526001602052604090205490565b61028061033b3660046114bb565b6106ef565b61028061034e3660046113f5565b610833565b6102806108b4565b6101c1610369366004611474565b61091b565b6101de610944565b610202600081565b6101c161038c3660046113f5565b610953565b6101c161039f3660046113f5565b6109ec565b61020260008051602061167983398151915281565b6102806103c7366004611474565b6109f9565b6102026103da3660046114f7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006001600160e01b03198216637965db0b60e01b148061043657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461044b90611521565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611521565b80156104c45780601f10610499576101008083540402835291602001916104c4565b820191906000526020600020905b8154815290600101906020018083116104a757829003601f168201915b5050505050905090565b60006104db338484610a85565b50600192915050565b60006104f1848484610ba9565b6001600160a01b03841660009081526002602090815260408083203384529091529020548281101561057b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105888533858403610a85565b506001949350505050565b6000828152602081905260409020600101546105af8133610d84565b6105b98383610de8565b505050565b6001600160a01b038116331461062e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610572565b6106388282610e6c565b5050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104db918590610673908690611572565b610a85565b6000805160206116798339815191526106918133610d84565b60065460ff166106da5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610572565b6106e2610ed1565b50565b6106e23382610f64565b6000805160206116798339815191526107088133610d84565b6001600160a01b0383166107535760405162461bcd60e51b81526020600482015260126024820152710796f752063616e2774206c6f636b203078360741b6044820152606401610572565b6001600160a01b03831660009081526007602052604090205460ff16151582151514156107d35760405162461bcd60e51b815260206004820152602860248201527f7468652077616c6c65742069732073657420746f20676976656e20737461746560448201526720616c726561647960c01b6064820152608401610572565b6001600160a01b038316600081815260076020908152604091829020805460ff191686151590811790915591519182527fd6851ff6efa8a9cdc6d6c373a4ae879c1170692bbfd45d6dbf7733b1c1c6cea6910160405180910390a2505050565b600061083f83336103da565b90508181101561089d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610572565b6108aa8333848403610a85565b6105b98383610f64565b6000805160206116798339815191526108cd8133610d84565b60065460ff16156109135760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b6106e26110be565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606005805461044b90611521565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156109d55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610572565b6109e23385858403610a85565b5060019392505050565b60006104db338484610ba9565b600082815260208190526040902060010154610a158133610d84565b6105b98383610e6c565b60065460ff16156105b95760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610572565b6001600160a01b038316610ae75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610572565b6001600160a01b038216610b485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610572565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c0d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610572565b6001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610572565b610c7a838383611139565b6001600160a01b03831660009081526001602052604090205481811015610cf25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610572565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d29908490611572565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7591815260200190565b60405180910390a35b50505050565b610d8e828261091b565b61063857610da6816001600160a01b031660146111ad565b610db18360206111ad565b604051602001610dc292919061158a565b60408051601f198184030181529082905262461bcd60e51b8252610572916004016113a6565b610df2828261091b565b610638576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610e283390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610e76828261091b565b15610638576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60065460ff16610f1a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610572565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610fc45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610572565b610fd082600083611139565b6001600160a01b038216600090815260016020526040902054818110156110445760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610572565b6001600160a01b03831660009081526001602052604081208383039055600380548492906110739084906115ff565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60065460ff16156111045760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610572565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f473390565b6001600160a01b03831660009081526007602052604090205460ff16156111a25760405162461bcd60e51b815260206004820152601f60248201527f736f757263652077616c6c65742061646472657373206973206c6f636b6564006044820152606401610572565b6105b9838383610a1f565b606060006111bc836002611616565b6111c7906002611572565b67ffffffffffffffff8111156111df576111df611635565b6040519080825280601f01601f191660200182016040528015611209576020820181803683370190505b509050600360fc1b816000815181106112245761122461164b565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106112535761125361164b565b60200101906001600160f81b031916908160001a9053506000611277846002611616565b611282906001611572565b90505b60018111156112fa576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106112b6576112b661164b565b1a60f81b8282815181106112cc576112cc61164b565b60200101906001600160f81b031916908160001a90535060049490941c936112f381611661565b9050611285565b5083156113495760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610572565b9392505050565b60006020828403121561136257600080fd5b81356001600160e01b03198116811461134957600080fd5b60005b8381101561139557818101518382015260200161137d565b83811115610d7e5750506000910152565b60208152600082518060208401526113c581604085016020870161137a565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146113f057600080fd5b919050565b6000806040838503121561140857600080fd5b611411836113d9565b946020939093013593505050565b60008060006060848603121561143457600080fd5b61143d846113d9565b925061144b602085016113d9565b9150604084013590509250925092565b60006020828403121561146d57600080fd5b5035919050565b6000806040838503121561148757600080fd5b82359150611497602084016113d9565b90509250929050565b6000602082840312156114b257600080fd5b611349826113d9565b600080604083850312156114ce57600080fd5b6114d7836113d9565b9150602083013580151581146114ec57600080fd5b809150509250929050565b6000806040838503121561150a57600080fd5b611513836113d9565b9150611497602084016113d9565b600181811c9082168061153557607f821691505b6020821081141561155657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115855761158561155c565b500190565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516115c281601785016020880161137a565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516115f381602884016020880161137a565b01602801949350505050565b6000828210156116115761161161155c565b500390565b60008160001904831182151516156116305761163061155c565b500290565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6000816116705761167061155c565b50600019019056fe2172861495e7b85edac73e3cd5fbb42dd675baadf627720e687bcfdaca025096a2646970667358221220a87cb1f9d3e88aaeccaa14ce912e079e428ef22cb77bbd50cbe48bd87db37dc164736f6c634300080b0033

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

0000000000000000000000006dfcc7c9246902f255980233e68670587ff36eb60000000000000000000000005fb699f4e726549da573b469541ddfef5b0ccfdd000000000000000000000000ab8f8242339377815f530dad387f4544eb38bddc000000000000000000000000182e668dd9943c178899230119ca02a7773db0d90000000000000000000000005ed418d786a806f91705a962ff6ef5e46e2017d20000000000000000000000002ad0eb8a84cc444d0eb46d1d742398618da13443000000000000000000000000509c409cc7baad7e322977dc1072718b7ca1b244000000000000000000000000e6ce9225ce36b3eb2feef3e4181b8a033f3dc85900000000000000000000000065857c508b33bd8604cf359e0d7eb32077bf966c000000000000000000000000ade669a5135b40ab120829aa70ae0c521175f7820000000000000000000000007481805a997d787d3bbbecdece86050b70e70ee5000000000000000000000000acd001b069492d40d4c2667824cee7630479453d0000000000000000000000009750614a10f1e01eb9ca5939b97cdf00a4d2b7a2000000000000000000000000c4792cf35c9aa51f44687ef9483f9b4b8ab0dfb2000000000000000000000000da240513f9b4cb3a1eefb6e841cccaf8a7deb95f0000000000000000000000006a592cf31667e0efa342751e4e0596f485bf9ff8000000000000000000000000698ffc30167db5259aa2a0339e5b1aa48f09e6b300000000000000000000000093d3e434719901bec8f954a3d2689b02757e7403000000000000000000000000ccfb3ef651a4b012c54291d5f15c13ed5f8af64f000000000000000000000000f369025da13459324f404f7482ac6aed42d65381000000000000000000000000837a1daee2bc40b963c7c8899550825936e91a7f00000000000000000000000093677826a16bd1cc6c81a3ab2eb620bbfc630caf0000000000000000000000002baf0f6d83ce4b95268178996e3d7833aec4442a000000000000000000000000153c0966d705440260d9c2d6071d02bd08610a420000000000000000000000008c41d4ac0282be6462a8d514abeb39946e0f45e1000000000000000000000000b33d67a4a9c1af6ddccba5655a2760041878c573000000000000000000000000bd136ec8554f21ceace775dca1ca88c84681002600000000000000000000000067dc784427a9366fd5e2d9bc550c34e902cb100000000000000000000000000017b1615866239a6b7c5bc18dc67323d69c3f09b2000000000000000000000000c28e78c2950ddb9a01cab1699aacabe48359c533000000000000000000000000109e658de08a07db0df28afefdb08ea4e55d65530000000000000000000000009c0c319a56657942bad0f7ac4ffbe3dceff142ce0000000000000000000000009eecded57bd24a28e56c6a9db5f6cc63badfed27000000000000000000000000fb93293cc9ce3753fe3aefbbf2b6649989eff50a000000000000000000000000fa8ba234162cc6fc49d11793dd8ad64c6b54ef8c0000000000000000000000001256c6ef2e59bd56397e9a14cd949089be5813e300000000000000000000000061d9183fa9eff68d8108d728eb6c2fe3ec38a2d90000000000000000000000003b8eff7c10c819db7888e57ed8fb757f43011d5a

-----Decoded View---------------
Arg [0] : admin (address): 0x6dfcC7C9246902f255980233e68670587ff36EB6
Arg [1] : eco (address): 0x5FB699F4E726549dA573b469541dDfEf5b0ccFDD
Arg [2] : team (address): 0xab8F8242339377815f530Dad387F4544eb38bDDc
Arg [3] : sales (address[15]): 0x182E668dd9943c178899230119cA02A7773db0D9,0x5ed418D786A806f91705A962fF6EF5e46E2017D2,0x2aD0eB8a84cc444D0eb46D1D742398618da13443,0x509c409cc7baaD7e322977DC1072718B7Ca1b244,0xE6CE9225cE36b3EB2feeF3e4181b8A033f3DC859,0x65857c508B33BD8604cf359E0d7EB32077bF966C,0xADE669a5135b40ab120829aA70Ae0C521175F782,0x7481805A997D787D3bBbecdeCe86050B70E70EE5,0xaCd001B069492d40d4c2667824cEe7630479453d,0x9750614a10f1E01EB9ca5939b97cDf00A4D2B7a2,0xc4792CF35c9AA51F44687EF9483f9b4B8Ab0dfB2,0xDA240513F9B4Cb3a1eEFb6e841CCCAF8a7deb95F,0x6A592cf31667e0EFa342751e4E0596f485bF9ff8,0x698Ffc30167db5259AA2a0339E5B1aA48f09E6B3,0x93d3e434719901bEC8f954a3D2689B02757e7403
Arg [4] : markets (address[20]): 0xccfb3Ef651a4B012c54291D5F15C13ED5f8Af64F,0xF369025dA13459324f404F7482AC6aeD42D65381,0x837A1DaEe2BC40b963C7C8899550825936E91A7f,0x93677826a16bd1cc6c81a3AB2EB620BBfc630CAf,0x2Baf0F6d83CE4B95268178996E3D7833aEc4442a,0x153C0966d705440260d9C2D6071d02BD08610A42,0x8c41D4AC0282be6462a8d514abeB39946E0F45e1,0xB33D67a4A9c1aF6DDCCbA5655a2760041878c573,0xBd136eC8554F21CEaCe775Dca1cA88c846810026,0x67dc784427a9366fd5E2D9bC550c34e902cB1000,0x17b1615866239a6B7c5BC18Dc67323D69C3f09b2,0xc28E78C2950DdB9a01CAb1699aaCaBE48359c533,0x109e658dE08A07DB0DF28afEFDb08EA4E55D6553,0x9C0C319A56657942bAd0F7ac4FfBe3DceFF142cE,0x9EECdeD57bd24A28e56c6a9db5f6CC63BadfEd27,0xFB93293cC9Ce3753fe3aEFBBF2b6649989Eff50A,0xFa8BA234162CC6fc49D11793dD8AD64C6B54EF8C,0x1256c6EF2E59bD56397E9A14cd949089BE5813e3,0x61d9183Fa9EFf68d8108d728Eb6c2Fe3ec38A2D9,0x3b8efF7C10c819db7888E57ed8fB757F43011d5A

-----Encoded View---------------
38 Constructor Arguments found :
Arg [0] : 0000000000000000000000006dfcc7c9246902f255980233e68670587ff36eb6
Arg [1] : 0000000000000000000000005fb699f4e726549da573b469541ddfef5b0ccfdd
Arg [2] : 000000000000000000000000ab8f8242339377815f530dad387f4544eb38bddc
Arg [3] : 000000000000000000000000182e668dd9943c178899230119ca02a7773db0d9
Arg [4] : 0000000000000000000000005ed418d786a806f91705a962ff6ef5e46e2017d2
Arg [5] : 0000000000000000000000002ad0eb8a84cc444d0eb46d1d742398618da13443
Arg [6] : 000000000000000000000000509c409cc7baad7e322977dc1072718b7ca1b244
Arg [7] : 000000000000000000000000e6ce9225ce36b3eb2feef3e4181b8a033f3dc859
Arg [8] : 00000000000000000000000065857c508b33bd8604cf359e0d7eb32077bf966c
Arg [9] : 000000000000000000000000ade669a5135b40ab120829aa70ae0c521175f782
Arg [10] : 0000000000000000000000007481805a997d787d3bbbecdece86050b70e70ee5
Arg [11] : 000000000000000000000000acd001b069492d40d4c2667824cee7630479453d
Arg [12] : 0000000000000000000000009750614a10f1e01eb9ca5939b97cdf00a4d2b7a2
Arg [13] : 000000000000000000000000c4792cf35c9aa51f44687ef9483f9b4b8ab0dfb2
Arg [14] : 000000000000000000000000da240513f9b4cb3a1eefb6e841cccaf8a7deb95f
Arg [15] : 0000000000000000000000006a592cf31667e0efa342751e4e0596f485bf9ff8
Arg [16] : 000000000000000000000000698ffc30167db5259aa2a0339e5b1aa48f09e6b3
Arg [17] : 00000000000000000000000093d3e434719901bec8f954a3d2689b02757e7403
Arg [18] : 000000000000000000000000ccfb3ef651a4b012c54291d5f15c13ed5f8af64f
Arg [19] : 000000000000000000000000f369025da13459324f404f7482ac6aed42d65381
Arg [20] : 000000000000000000000000837a1daee2bc40b963c7c8899550825936e91a7f
Arg [21] : 00000000000000000000000093677826a16bd1cc6c81a3ab2eb620bbfc630caf
Arg [22] : 0000000000000000000000002baf0f6d83ce4b95268178996e3d7833aec4442a
Arg [23] : 000000000000000000000000153c0966d705440260d9c2d6071d02bd08610a42
Arg [24] : 0000000000000000000000008c41d4ac0282be6462a8d514abeb39946e0f45e1
Arg [25] : 000000000000000000000000b33d67a4a9c1af6ddccba5655a2760041878c573
Arg [26] : 000000000000000000000000bd136ec8554f21ceace775dca1ca88c846810026
Arg [27] : 00000000000000000000000067dc784427a9366fd5e2d9bc550c34e902cb1000
Arg [28] : 00000000000000000000000017b1615866239a6b7c5bc18dc67323d69c3f09b2
Arg [29] : 000000000000000000000000c28e78c2950ddb9a01cab1699aacabe48359c533
Arg [30] : 000000000000000000000000109e658de08a07db0df28afefdb08ea4e55d6553
Arg [31] : 0000000000000000000000009c0c319a56657942bad0f7ac4ffbe3dceff142ce
Arg [32] : 0000000000000000000000009eecded57bd24a28e56c6a9db5f6cc63badfed27
Arg [33] : 000000000000000000000000fb93293cc9ce3753fe3aefbbf2b6649989eff50a
Arg [34] : 000000000000000000000000fa8ba234162cc6fc49d11793dd8ad64c6b54ef8c
Arg [35] : 0000000000000000000000001256c6ef2e59bd56397e9a14cd949089be5813e3
Arg [36] : 00000000000000000000000061d9183fa9eff68d8108d728eb6c2fe3ec38a2d9
Arg [37] : 0000000000000000000000003b8eff7c10c819db7888e57ed8fb757f43011d5a


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.