ETH Price: $3,396.12 (-0.83%)

Token

Social Intelligent Evolution (SIE)
 

Overview

Max Total Supply

3,000,000,000 SIE

Holders

78

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 5 Decimals)

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:
ERC20Token

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-04-24
*/

// Sources flattened with hardhat v2.9.1 https://hardhat.org

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

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

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


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


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

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

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


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


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

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


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


/**
 * @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:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `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;
        }
        _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;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]


/**
 * @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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


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


/**
 * @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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]


/**
 * @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 @openzeppelin/contracts/access/[email protected]


/**
 * @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 @openzeppelin/contracts/access/[email protected]


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}


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


/**
 * @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 @openzeppelin/contracts/utils/introspection/[email protected]


/**
 * @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 @openzeppelin/contracts/utils/introspection/[email protected]


/**
 * @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 @openzeppelin/contracts/access/[email protected]


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


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


/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}


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


/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}


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


/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}


// File contracts/ERC20Token.sol


contract ERC20Token is ERC20PresetMinterPauser {
    uint8 private value;

    constructor(
        string memory name,
        string memory symbol,
        uint8 places,
        uint256 initialSupply
    ) ERC20PresetMinterPauser(name, symbol) {
        value = places;
        mint(msg.sender, initialSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return value;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"places","type":"uint8"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002085380380620020858339810160408190526200003491620005ec565b8383818181600590805190602001906200005092919062000493565b5080516200006690600690602084019062000493565b50506007805460ff191690555062000080600033620000f3565b6200009b6000805160206200206583398151915233620000f3565b620000c77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620000f3565b50506007805461ff00191661010060ff851602179055620000e9338262000103565b50505050620006eb565b620000ff8282620001a2565b5050565b6200011e6000805160206200206583398151915233620001e5565b620001965760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f7665206d696e74657220726f6c6520746f206d696e740000000000000000000060648201526084015b60405180910390fd5b620000ff828262000210565b620001b982826200030360201b6200097c1760201c565b6000828152600160209081526040909120620001e091839062000a006200038b821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff165b92915050565b6001600160a01b038216620002685760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200018d565b6200027660008383620003a9565b80600460008282546200028a919062000673565b90915550506001600160a01b03821660009081526002602052604081208054839290620002b990849062000673565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200030f8282620001e5565b620000ff576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620003473390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620003a2836001600160a01b038416620003c1565b9392505050565b620001e08383836200041360201b62000a151760201c565b60008181526001830160205260408120546200040a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200020a565b5060006200020a565b6200042b838383620001e060201b620005761760201c565b60075460ff1615620001e05760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016200018d565b828054620004a19062000698565b90600052602060002090601f016020900481019282620004c5576000855562000510565b82601f10620004e057805160ff191683800117855562000510565b8280016001018555821562000510579182015b8281111562000510578251825591602001919060010190620004f3565b506200051e92915062000522565b5090565b5b808211156200051e576000815560010162000523565b600082601f8301126200054a578081fd5b81516001600160401b0380821115620005675762000567620006d5565b604051601f8301601f19908116603f01168101908282118183101715620005925762000592620006d5565b81604052838152602092508683858801011115620005ae578485fd5b8491505b83821015620005d15785820183015181830184015290820190620005b2565b83821115620005e257848385830101525b9695505050505050565b6000806000806080858703121562000602578384fd5b84516001600160401b038082111562000619578586fd5b620006278883890162000539565b955060208701519150808211156200063d578485fd5b506200064c8782880162000539565b935050604085015160ff8116811462000663578283fd5b6060959095015193969295505050565b600082198211156200069357634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620006ad57607f821691505b60208210811415620006cf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61196a80620006fb6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103bd578063d547741f146103e4578063dd62ed3e146103f7578063e63ab1e91461043057600080fd5b8063a457c2d714610384578063a9059cbb14610397578063ca15c873146103aa57600080fd5b80639010d07c116100d35780639010d07c1461033657806391d148541461036157806395d89b4114610374578063a217fddf1461037c57600080fd5b806370a08231146102f257806379cc67901461031b5780638456cb591461032e57600080fd5b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102b957806340c10f19146102c157806342966c68146102d45780635c975abb146102e757600080fd5b8063313ce5671461027657806336568abe1461029357806339509351146102a657600080fd5b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d1461026157600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611782565b610457565b60405190151581526020015b60405180910390f35b6101f9610482565b6040516101e8919061181f565b6101dc6102143660046116fe565b610514565b6004545b6040519081526020016101e8565b6101dc6102393660046116c3565b61052c565b61021d61024c366004611727565b60009081526020819052604090206001015490565b61027461026f36600461173f565b610550565b005b600754610100900460ff1660405160ff90911681526020016101e8565b6102746102a136600461173f565b61057b565b6101dc6102b43660046116fe565b6105fe565b61027461063d565b6102746102cf3660046116fe565b6106e3565b6102746102e2366004611727565b610782565b60075460ff166101dc565b61021d610300366004611677565b6001600160a01b031660009081526002602052604090205490565b6102746103293660046116fe565b61078f565b6102746107a4565b610349610344366004611761565b610848565b6040516001600160a01b0390911681526020016101e8565b6101dc61036f36600461173f565b610867565b6101f9610890565b61021d600081565b6101dc6103923660046116fe565b61089f565b6101dc6103a53660046116fe565b610931565b61021d6103b8366004611727565b61093f565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102746103f236600461173f565b610956565b61021d610405366004611691565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061047c575061047c82610a7b565b92915050565b606060058054610491906118e3565b80601f01602080910402602001604051908101604052809291908181526020018280546104bd906118e3565b801561050a5780601f106104df5761010080835404028352916020019161050a565b820191906000526020600020905b8154815290600101906020018083116104ed57829003601f168201915b5050505050905090565b600033610522818585610ab0565b5060019392505050565b60003361053a858285610bd4565b610545858585610c66565b506001949350505050565b60008281526020819052604090206001015461056c8133610e3f565b6105768383610ea3565b505050565b6001600160a01b03811633146105f05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105fa8282610ec5565b5050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091906105229082908690610638908790611852565b610ab0565b6106677f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610867565b6106d95760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105e7565b6106e1610ee7565b565b61070d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610867565b6107785760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016105e7565b6105fa8282610f7a565b61078c3382611065565b50565b61079a823383610bd4565b6105fa8282611065565b6107ce7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610867565b6108405760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105e7565b6106e16111bf565b6000828152600160205260408120610860908361123a565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060068054610491906118e3565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909190838110156109245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e7565b6105458286868403610ab0565b600033610522818585610c66565b600081815260016020526040812061047c90611246565b6000828152602081905260409020600101546109728133610e3f565b6105768383610ec5565b6109868282610867565b6105fa576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556109bc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610860836001600160a01b038416611250565b60075460ff16156105765760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105e7565b60006001600160e01b03198216637965db0b60e01b148061047c57506301ffc9a760e01b6001600160e01b031983161461047c565b6001600160a01b038316610b125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e7565b6001600160a01b038216610b735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e7565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600360209081526040808320938616835292905220546000198114610c605781811015610c535760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e7565b610c608484848403610ab0565b50505050565b6001600160a01b038316610cca5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e7565b6001600160a01b038216610d2c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e7565b610d3783838361129f565b6001600160a01b03831660009081526002602052604090205481811015610daf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e7565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610de6908490611852565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3291815260200190565b60405180910390a3610c60565b610e498282610867565b6105fa57610e61816001600160a01b031660146112aa565b610e6c8360206112aa565b604051602001610e7d9291906117aa565b60408051601f198184030181529082905262461bcd60e51b82526105e79160040161181f565b610ead828261097c565b60008281526001602052604090206105769082610a00565b610ecf828261148c565b600082815260016020526040902061057690826114f1565b60075460ff16610f305760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105e7565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610fd05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105e7565b610fdc6000838361129f565b8060046000828254610fee9190611852565b90915550506001600160a01b0382166000908152600260205260408120805483929061101b908490611852565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166110c55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105e7565b6110d18260008361129f565b6001600160a01b038216600090815260026020526040902054818110156111455760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105e7565b6001600160a01b0383166000908152600260205260408120838303905560048054849290611174908490611889565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60075460ff16156112055760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e7565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f5d3390565b60006108608383611506565b600061047c825490565b60008181526001830160205260408120546112975750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561047c565b50600061047c565b610576838383610a15565b606060006112b983600261186a565b6112c4906002611852565b67ffffffffffffffff8111156112ea57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611314576020820181803683370190505b509050600360fc1b8160008151811061133d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061137a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061139e84600261186a565b6113a9906001611852565b90505b600181111561143d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106113eb57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061140f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611436816118cc565b90506113ac565b5083156108605760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105e7565b6114968282610867565b156105fa576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610860836001600160a01b03841661153e565b600082600001828154811061152b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60008181526001830160205260408120548015611651576000611562600183611889565b855490915060009061157690600190611889565b90508181146115f75760008660000182815481106115a457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106115d557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061161657634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061047c565b600091505061047c565b80356001600160a01b038116811461167257600080fd5b919050565b600060208284031215611688578081fd5b6108608261165b565b600080604083850312156116a3578081fd5b6116ac8361165b565b91506116ba6020840161165b565b90509250929050565b6000806000606084860312156116d7578081fd5b6116e08461165b565b92506116ee6020850161165b565b9150604084013590509250925092565b60008060408385031215611710578182fd5b6117198361165b565b946020939093013593505050565b600060208284031215611738578081fd5b5035919050565b60008060408385031215611751578182fd5b823591506116ba6020840161165b565b60008060408385031215611773578182fd5b50508035926020909101359150565b600060208284031215611793578081fd5b81356001600160e01b031981168114610860578182fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516117e28160178501602088016118a0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516118138160288401602088016118a0565b01602801949350505050565b602081526000825180602084015261183e8160408501602087016118a0565b601f01601f19169190910160400192915050565b600082198211156118655761186561191e565b500190565b60008160001904831182151516156118845761188461191e565b500290565b60008282101561189b5761189b61191e565b500390565b60005b838110156118bb5781810151838201526020016118a3565b83811115610c605750506000910152565b6000816118db576118db61191e565b506000190190565b600181811c908216806118f757607f821691505b6020821081141561191857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206f48e67436468c72924a0c391dca4ff7fd623d36063e8b5284de852e6cd0962364736f6c634300080400339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000110d9316ec000000000000000000000000000000000000000000000000000000000000000001c536f6369616c20496e74656c6c6967656e742045766f6c7574696f6e0000000000000000000000000000000000000000000000000000000000000000000000035349450000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d5391393146103bd578063d547741f146103e4578063dd62ed3e146103f7578063e63ab1e91461043057600080fd5b8063a457c2d714610384578063a9059cbb14610397578063ca15c873146103aa57600080fd5b80639010d07c116100d35780639010d07c1461033657806391d148541461036157806395d89b4114610374578063a217fddf1461037c57600080fd5b806370a08231146102f257806379cc67901461031b5780638456cb591461032e57600080fd5b8063313ce567116101665780633f4ba83a116101405780633f4ba83a146102b957806340c10f19146102c157806342966c68146102d45780635c975abb146102e757600080fd5b8063313ce5671461027657806336568abe1461029357806339509351146102a657600080fd5b806318160ddd116101a257806318160ddd1461021957806323b872dd1461022b578063248a9ca31461023e5780632f2ff15d1461026157600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063095ea7b314610206575b600080fd5b6101dc6101d7366004611782565b610457565b60405190151581526020015b60405180910390f35b6101f9610482565b6040516101e8919061181f565b6101dc6102143660046116fe565b610514565b6004545b6040519081526020016101e8565b6101dc6102393660046116c3565b61052c565b61021d61024c366004611727565b60009081526020819052604090206001015490565b61027461026f36600461173f565b610550565b005b600754610100900460ff1660405160ff90911681526020016101e8565b6102746102a136600461173f565b61057b565b6101dc6102b43660046116fe565b6105fe565b61027461063d565b6102746102cf3660046116fe565b6106e3565b6102746102e2366004611727565b610782565b60075460ff166101dc565b61021d610300366004611677565b6001600160a01b031660009081526002602052604090205490565b6102746103293660046116fe565b61078f565b6102746107a4565b610349610344366004611761565b610848565b6040516001600160a01b0390911681526020016101e8565b6101dc61036f36600461173f565b610867565b6101f9610890565b61021d600081565b6101dc6103923660046116fe565b61089f565b6101dc6103a53660046116fe565b610931565b61021d6103b8366004611727565b61093f565b61021d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102746103f236600461173f565b610956565b61021d610405366004611691565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61021d7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60006001600160e01b03198216635a05180f60e01b148061047c575061047c82610a7b565b92915050565b606060058054610491906118e3565b80601f01602080910402602001604051908101604052809291908181526020018280546104bd906118e3565b801561050a5780601f106104df5761010080835404028352916020019161050a565b820191906000526020600020905b8154815290600101906020018083116104ed57829003601f168201915b5050505050905090565b600033610522818585610ab0565b5060019392505050565b60003361053a858285610bd4565b610545858585610c66565b506001949350505050565b60008281526020819052604090206001015461056c8133610e3f565b6105768383610ea3565b505050565b6001600160a01b03811633146105f05760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6105fa8282610ec5565b5050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091906105229082908690610638908790611852565b610ab0565b6106677f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610867565b6106d95760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016105e7565b6106e1610ee7565b565b61070d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610867565b6107785760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016105e7565b6105fa8282610f7a565b61078c3382611065565b50565b61079a823383610bd4565b6105fa8282611065565b6107ce7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610867565b6108405760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016105e7565b6106e16111bf565b6000828152600160205260408120610860908361123a565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060068054610491906118e3565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909190838110156109245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e7565b6105458286868403610ab0565b600033610522818585610c66565b600081815260016020526040812061047c90611246565b6000828152602081905260409020600101546109728133610e3f565b6105768383610ec5565b6109868282610867565b6105fa576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556109bc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000610860836001600160a01b038416611250565b60075460ff16156105765760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016105e7565b60006001600160e01b03198216637965db0b60e01b148061047c57506301ffc9a760e01b6001600160e01b031983161461047c565b6001600160a01b038316610b125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e7565b6001600160a01b038216610b735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e7565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600360209081526040808320938616835292905220546000198114610c605781811015610c535760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e7565b610c608484848403610ab0565b50505050565b6001600160a01b038316610cca5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e7565b6001600160a01b038216610d2c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e7565b610d3783838361129f565b6001600160a01b03831660009081526002602052604090205481811015610daf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e7565b6001600160a01b03808516600090815260026020526040808220858503905591851681529081208054849290610de6908490611852565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3291815260200190565b60405180910390a3610c60565b610e498282610867565b6105fa57610e61816001600160a01b031660146112aa565b610e6c8360206112aa565b604051602001610e7d9291906117aa565b60408051601f198184030181529082905262461bcd60e51b82526105e79160040161181f565b610ead828261097c565b60008281526001602052604090206105769082610a00565b610ecf828261148c565b600082815260016020526040902061057690826114f1565b60075460ff16610f305760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105e7565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610fd05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105e7565b610fdc6000838361129f565b8060046000828254610fee9190611852565b90915550506001600160a01b0382166000908152600260205260408120805483929061101b908490611852565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166110c55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105e7565b6110d18260008361129f565b6001600160a01b038216600090815260026020526040902054818110156111455760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105e7565b6001600160a01b0383166000908152600260205260408120838303905560048054849290611174908490611889565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60075460ff16156112055760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e7565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f5d3390565b60006108608383611506565b600061047c825490565b60008181526001830160205260408120546112975750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561047c565b50600061047c565b610576838383610a15565b606060006112b983600261186a565b6112c4906002611852565b67ffffffffffffffff8111156112ea57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611314576020820181803683370190505b509050600360fc1b8160008151811061133d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061137a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061139e84600261186a565b6113a9906001611852565b90505b600181111561143d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106113eb57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061140f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611436816118cc565b90506113ac565b5083156108605760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105e7565b6114968282610867565b156105fa576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610860836001600160a01b03841661153e565b600082600001828154811061152b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60008181526001830160205260408120548015611651576000611562600183611889565b855490915060009061157690600190611889565b90508181146115f75760008660000182815481106115a457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106115d557634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061161657634e487b7160e01b600052603160045260246000fd5b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061047c565b600091505061047c565b80356001600160a01b038116811461167257600080fd5b919050565b600060208284031215611688578081fd5b6108608261165b565b600080604083850312156116a3578081fd5b6116ac8361165b565b91506116ba6020840161165b565b90509250929050565b6000806000606084860312156116d7578081fd5b6116e08461165b565b92506116ee6020850161165b565b9150604084013590509250925092565b60008060408385031215611710578182fd5b6117198361165b565b946020939093013593505050565b600060208284031215611738578081fd5b5035919050565b60008060408385031215611751578182fd5b823591506116ba6020840161165b565b60008060408385031215611773578182fd5b50508035926020909101359150565b600060208284031215611793578081fd5b81356001600160e01b031981168114610860578182fd5b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516117e28160178501602088016118a0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516118138160288401602088016118a0565b01602801949350505050565b602081526000825180602084015261183e8160408501602087016118a0565b601f01601f19169190910160400192915050565b600082198211156118655761186561191e565b500190565b60008160001904831182151516156118845761188461191e565b500290565b60008282101561189b5761189b61191e565b500390565b60005b838110156118bb5781810151838201526020016118a3565b83811115610c605750506000910152565b6000816118db576118db61191e565b506000190190565b600181811c908216806118f757607f821691505b6020821081141561191857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212206f48e67436468c72924a0c391dca4ff7fd623d36063e8b5284de852e6cd0962364736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000110d9316ec000000000000000000000000000000000000000000000000000000000000000001c536f6369616c20496e74656c6c6967656e742045766f6c7574696f6e0000000000000000000000000000000000000000000000000000000000000000000000035349450000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Social Intelligent Evolution
Arg [1] : symbol (string): SIE
Arg [2] : places (uint8): 5
Arg [3] : initialSupply (uint256): 300000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 000000000000000000000000000000000000000000000000000110d9316ec000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [5] : 536f6369616c20496e74656c6c6967656e742045766f6c7574696f6e00000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5349450000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54480:436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49778:214;;;;;;:::i;:::-;;:::i;:::-;;;3677:14:1;;3670:22;3652:41;;3640:2;3625:18;49778:214:0;;;;;;;;6478:100;;;:::i;:::-;;;;;;;:::i;8829:201::-;;;;;;:::i;:::-;;:::i;7598:108::-;7686:12;;7598:108;;;3850:25:1;;;3838:2;3823:18;7598:108:0;3805:76:1;9610:295:0;;;;;;:::i;:::-;;:::i;33266:131::-;;;;;;:::i;:::-;33340:7;33367:12;;;;;;;;;;:22;;;;33266:131;33659:147;;;;;;:::i;:::-;;:::i;:::-;;54817:96;54900:5;;;;;;;54817:96;;11737:4:1;11725:17;;;11707:36;;11695:2;11680:18;54817:96:0;11662:87:1;34707:218:0;;;;;;:::i;:::-;;:::i;10314:240::-;;;;;;:::i;:::-;;:::i;54030:178::-;;;:::i;53221:205::-;;;;;;:::i;:::-;;:::i;17739:91::-;;;;;;:::i;:::-;;:::i;19371:86::-;19442:7;;;;19371:86;;7769:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7870:18:0;7843:7;7870:18;;;:9;:18;;;;;;;7769:127;18149:164;;;;;;:::i;:::-;;:::i;53640:172::-;;;:::i;50591:153::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;50591:153:0;3405:102:1;32135:147:0;;;;;;:::i;:::-;;:::i;6697:104::-;;;:::i;31226:49::-;;31271:4;31226:49;;11057:438;;;;;;:::i;:::-;;:::i;8102:193::-;;;;;;:::i;:::-;;:::i;50918:142::-;;;;;;:::i;:::-;;:::i;52463:62::-;;52501:24;52463:62;;34051:149;;;;;;:::i;:::-;;:::i;8358:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8474:18:0;;;8447:7;8474:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8358:151;52532:62;;52570:24;52532:62;;49778:214;49863:4;-1:-1:-1;;;;;;49887:57:0;;-1:-1:-1;;;49887:57:0;;:97;;;49948:36;49972:11;49948:23;:36::i;:::-;49880:104;49778:214;-1:-1:-1;;49778:214:0:o;6478:100::-;6532:13;6565:5;6558:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6478:100;:::o;8829:201::-;8912:4;4298:10;8968:32;4298:10;8984:7;8993:6;8968:8;:32::i;:::-;-1:-1:-1;9018:4:0;;8829:201;-1:-1:-1;;;8829:201:0:o;9610:295::-;9741:4;4298:10;9799:38;9815:4;4298:10;9830:6;9799:15;:38::i;:::-;9848:27;9858:4;9864:2;9868:6;9848:9;:27::i;:::-;-1:-1:-1;9893:4:0;;9610:295;-1:-1:-1;;;;9610:295:0:o;33659:147::-;33340:7;33367:12;;;;;;;;;;:22;;;31717:30;31728:4;4298:10;31717;:30::i;:::-;33773:25:::1;33784:4;33790:7;33773:10;:25::i;:::-;33659:147:::0;;;:::o;34707:218::-;-1:-1:-1;;;;;34803:23:0;;4298:10;34803:23;34795:83;;;;-1:-1:-1;;;34795:83:0;;10398:2:1;34795:83:0;;;10380:21:1;10437:2;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;-1:-1:-1;;;10527:18:1;;;10520:45;10582:19;;34795:83:0;;;;;;;;;34891:26;34903:4;34909:7;34891:11;:26::i;:::-;34707:218;;:::o;10314:240::-;4298:10;10402:4;10483:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10483:27:0;;;;;;;;;;10402:4;;4298:10;10458:66;;4298:10;;10483:27;;:40;;10513:10;;10483:40;:::i;:::-;10458:8;:66::i;54030:178::-;54083:34;52570:24;4298:10;32135:147;:::i;54083:34::-;54075:104;;;;-1:-1:-1;;;54075:104:0;;5993:2:1;54075:104:0;;;5975:21:1;6032:2;6012:18;;;6005:30;6071:34;6051:18;;;6044:62;6142:27;6122:18;;;6115:55;6187:19;;54075:104:0;5965:247:1;54075:104:0;54190:10;:8;:10::i;:::-;54030:178::o;53221:205::-;53297:34;52501:24;4298:10;32135:147;:::i;53297:34::-;53289:101;;;;-1:-1:-1;;;53289:101:0;;7932:2:1;53289:101:0;;;7914:21:1;7971:2;7951:18;;;7944:30;8010:34;7990:18;;;7983:62;-1:-1:-1;;;8061:18:1;;;8054:52;8123:19;;53289:101:0;7904:244:1;53289:101:0;53401:17;53407:2;53411:6;53401:5;:17::i;17739:91::-;17795:27;4298:10;17815:6;17795:5;:27::i;:::-;17739:91;:::o;18149:164::-;18226:46;18242:7;4298:10;18265:6;18226:15;:46::i;:::-;18283:22;18289:7;18298:6;18283:5;:22::i;53640:172::-;53691:34;52570:24;4298:10;32135:147;:::i;53691:34::-;53683:102;;;;-1:-1:-1;;;53683:102:0;;9568:2:1;53683:102:0;;;9550:21:1;9607:2;9587:18;;;9580:30;9646:34;9626:18;;;9619:62;9717:25;9697:18;;;9690:53;9760:19;;53683:102:0;9540:245:1;53683:102:0;53796:8;:6;:8::i;50591:153::-;50681:7;50708:18;;;:12;:18;;;;;:28;;50730:5;50708:21;:28::i;:::-;50701:35;50591:153;-1:-1:-1;;;50591:153:0:o;32135:147::-;32221:4;32245:12;;;;;;;;;;;-1:-1:-1;;;;;32245:29:0;;;;;;;;;;;;;;;32135:147::o;6697:104::-;6753:13;6786:7;6779:14;;;;;:::i;11057:438::-;4298:10;11150:4;11233:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11233:27:0;;;;;;;;;;11150:4;;4298:10;11279:35;;;;11271:85;;;;-1:-1:-1;;;11271:85:0;;9992:2:1;11271:85:0;;;9974:21:1;10031:2;10011:18;;;10004:30;10070:34;10050:18;;;10043:62;-1:-1:-1;;;10121:18:1;;;10114:35;10166:19;;11271:85:0;9964:227:1;11271:85:0;11392:60;11401:5;11408:7;11436:15;11417:16;:34;11392:8;:60::i;8102:193::-;8181:4;4298:10;8237:28;4298:10;8254:2;8258:6;8237:9;:28::i;50918:142::-;50998:7;51025:18;;;:12;:18;;;;;:27;;:25;:27::i;34051:149::-;33340:7;33367:12;;;;;;;;;;:22;;;31717:30;31728:4;4298:10;31717;:30::i;:::-;34166:26:::1;34178:4;34184:7;34166:11;:26::i;36208:238::-:0;36292:22;36300:4;36306:7;36292;:22::i;:::-;36287:152;;36331:6;:12;;;;;;;;;;;-1:-1:-1;;;;;36331:29:0;;;;;;;;;:36;;-1:-1:-1;;36331:36:0;36363:4;36331:36;;;36414:12;4298:10;;4218:98;36414:12;-1:-1:-1;;;;;36387:40:0;36405:7;-1:-1:-1;;;;;36387:40:0;36399:4;36387:40;;;;;;;;;;36208:238;;:::o;44607:152::-;44677:4;44701:50;44706:3;-1:-1:-1;;;;;44726:23:0;;44701:4;:50::i;21125:272::-;19442:7;;;;21333:9;21325:64;;;;-1:-1:-1;;;21325:64:0;;11174:2:1;21325:64:0;;;11156:21:1;11213:2;11193:18;;;11186:30;11252:34;11232:18;;;11225:62;-1:-1:-1;;;11303:18:1;;;11296:40;11353:19;;21325:64:0;11146:232:1;31839:204:0;31924:4;-1:-1:-1;;;;;;31948:47:0;;-1:-1:-1;;;31948:47:0;;:87;;-1:-1:-1;;;;;;;;;;29298:40:0;;;31999:36;29189:157;14693:380;-1:-1:-1;;;;;14829:19:0;;14821:68;;;;-1:-1:-1;;;14821:68:0;;9163:2:1;14821:68:0;;;9145:21:1;9202:2;9182:18;;;9175:30;9241:34;9221:18;;;9214:62;-1:-1:-1;;;9292:18:1;;;9285:34;9336:19;;14821:68:0;9135:226:1;14821:68:0;-1:-1:-1;;;;;14908:21:0;;14900:68;;;;-1:-1:-1;;;14900:68:0;;6419:2:1;14900:68:0;;;6401:21:1;6458:2;6438:18;;;6431:30;6497:34;6477:18;;;6470:62;-1:-1:-1;;;6548:18:1;;;6541:32;6590:19;;14900:68:0;6391:224:1;14900:68:0;-1:-1:-1;;;;;14981:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15033:32;;3850:25:1;;;15033:32:0;;3823:18:1;15033:32:0;;;;;;;14693:380;;;:::o;15360:453::-;-1:-1:-1;;;;;8474:18:0;;;15495:24;8474:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;15562:37:0;;15558:248;;15644:6;15624:16;:26;;15616:68;;;;-1:-1:-1;;;15616:68:0;;6822:2:1;15616:68:0;;;6804:21:1;6861:2;6841:18;;;6834:30;6900:31;6880:18;;;6873:59;6949:18;;15616:68:0;6794:179:1;15616:68:0;15728:51;15737:5;15744:7;15772:6;15753:16;:25;15728:8;:51::i;:::-;15360:453;;;;:::o;11974:671::-;-1:-1:-1;;;;;12105:18:0;;12097:68;;;;-1:-1:-1;;;12097:68:0;;8757:2:1;12097:68:0;;;8739:21:1;8796:2;8776:18;;;8769:30;8835:34;8815:18;;;8808:62;-1:-1:-1;;;8886:18:1;;;8879:35;8931:19;;12097:68:0;8729:227:1;12097:68:0;-1:-1:-1;;;;;12184:16:0;;12176:64;;;;-1:-1:-1;;;12176:64:0;;4837:2:1;12176:64:0;;;4819:21:1;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:33;5009:19;;12176:64:0;4809:225:1;12176:64:0;12253:38;12274:4;12280:2;12284:6;12253:20;:38::i;:::-;-1:-1:-1;;;;;12326:15:0;;12304:19;12326:15;;;:9;:15;;;;;;12360:21;;;;12352:72;;;;-1:-1:-1;;;12352:72:0;;7180:2:1;12352:72:0;;;7162:21:1;7219:2;7199:18;;;7192:30;7258:34;7238:18;;;7231:62;-1:-1:-1;;;7309:18:1;;;7302:36;7355:19;;12352:72:0;7152:228:1;12352:72:0;-1:-1:-1;;;;;12460:15:0;;;;;;;:9;:15;;;;;;12478:20;;;12460:38;;12520:13;;;;;;;;:23;;12492:6;;12460:15;12520:23;;12492:6;;12520:23;:::i;:::-;;;;;;;;12576:2;-1:-1:-1;;;;;12561:26:0;12570:4;-1:-1:-1;;;;;12561:26:0;;12580:6;12561:26;;;;3850:25:1;;3838:2;3823:18;;3805:76;12561:26:0;;;;;;;;12600:37;33659:147;32572:505;32661:22;32669:4;32675:7;32661;:22::i;:::-;32656:414;;32849:41;32877:7;-1:-1:-1;;;;;32849:41:0;32887:2;32849:19;:41::i;:::-;32963:38;32991:4;32998:2;32963:19;:38::i;:::-;32754:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;32754:270:0;;;;;;;;;;-1:-1:-1;;;32700:358:0;;;;;;;:::i;51153:169::-;51241:31;51258:4;51264:7;51241:16;:31::i;:::-;51283:18;;;;:12;:18;;;;;:31;;51306:7;51283:22;:31::i;51416:174::-;51505:32;51523:4;51529:7;51505:17;:32::i;:::-;51548:18;;;;:12;:18;;;;;:34;;51574:7;51548:25;:34::i;20430:120::-;19442:7;;;;19966:41;;;;-1:-1:-1;;;19966:41:0;;5241:2:1;19966:41:0;;;5223:21:1;5280:2;5260:18;;;5253:30;-1:-1:-1;;;5299:18:1;;;5292:50;5359:18;;19966:41:0;5213:170:1;19966:41:0;20489:7:::1;:15:::0;;-1:-1:-1;;20489:15:0::1;::::0;;20520:22:::1;4298:10:::0;20529:12:::1;20520:22;::::0;-1:-1:-1;;;;;3468:32:1;;;3450:51;;3438:2;3423:18;20520:22:0::1;;;;;;;20430:120::o:0;12932:399::-;-1:-1:-1;;;;;13016:21:0;;13008:65;;;;-1:-1:-1;;;13008:65:0;;10814:2:1;13008:65:0;;;10796:21:1;10853:2;10833:18;;;10826:30;10892:33;10872:18;;;10865:61;10943:18;;13008:65:0;10786:181:1;13008:65:0;13086:49;13115:1;13119:7;13128:6;13086:20;:49::i;:::-;13164:6;13148:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13181:18:0;;;;;;:9;:18;;;;;:28;;13203:6;;13181:18;:28;;13203:6;;13181:28;:::i;:::-;;;;-1:-1:-1;;13225:37:0;;3850:25:1;;;-1:-1:-1;;;;;13225:37:0;;;13242:1;;13225:37;;3838:2:1;3823:18;13225:37:0;;;;;;;34707:218;;:::o;13664:591::-;-1:-1:-1;;;;;13748:21:0;;13740:67;;;;-1:-1:-1;;;13740:67:0;;8355:2:1;13740:67:0;;;8337:21:1;8394:2;8374:18;;;8367:30;8433:34;8413:18;;;8406:62;-1:-1:-1;;;8484:18:1;;;8477:31;8525:19;;13740:67:0;8327:223:1;13740:67:0;13820:49;13841:7;13858:1;13862:6;13820:20;:49::i;:::-;-1:-1:-1;;;;;13907:18:0;;13882:22;13907:18;;;:9;:18;;;;;;13944:24;;;;13936:71;;;;-1:-1:-1;;;13936:71:0;;5590:2:1;13936:71:0;;;5572:21:1;5629:2;5609:18;;;5602:30;5668:34;5648:18;;;5641:62;-1:-1:-1;;;5719:18:1;;;5712:32;5761:19;;13936:71:0;5562:224:1;13936:71:0;-1:-1:-1;;;;;14043:18:0;;;;;;:9;:18;;;;;14064:23;;;14043:44;;14109:12;:22;;14081:6;;14043:18;14109:22;;14081:6;;14109:22;:::i;:::-;;;;-1:-1:-1;;14149:37:0;;3850:25:1;;;14175:1:0;;-1:-1:-1;;;;;14149:37:0;;;;;3838:2:1;3823:18;14149:37:0;;;;;;;33659:147;;;:::o;20171:118::-;19442:7;;;;19696:9;19688:38;;;;-1:-1:-1;;;19688:38:0;;7587:2:1;19688:38:0;;;7569:21:1;7626:2;7606:18;;;7599:30;-1:-1:-1;;;7645:18:1;;;7638:46;7701:18;;19688:38:0;7559:166:1;19688:38:0;20231:7:::1;:14:::0;;-1:-1:-1;;20231:14:0::1;20241:4;20231:14;::::0;;20261:20:::1;20268:12;4298:10:::0;;4218:98;45903:158;45977:7;46028:22;46032:3;46044:5;46028:3;:22::i;45432:117::-;45495:7;45522:19;45530:3;40916:18;;40833:109;38522:414;38585:4;40715:19;;;:12;;;:19;;;;;;38602:327;;-1:-1:-1;38645:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;38828:18;;38806:19;;;:12;;;:19;;;;;;:40;;;;38861:11;;38602:327;-1:-1:-1;38912:5:0;38905:12;;54216:217;54381:44;54408:4;54414:2;54418:6;54381:26;:44::i;27128:451::-;27203:13;27229:19;27261:10;27265:6;27261:1;:10;:::i;:::-;:14;;27274:1;27261:14;:::i;:::-;27251:25;;;;;;-1:-1:-1;;;27251:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27251:25:0;;27229:47;;-1:-1:-1;;;27287:6:0;27294:1;27287:9;;;;;;-1:-1:-1;;;27287:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;27287:15:0;;;;;;;;;-1:-1:-1;;;27313:6:0;27320:1;27313:9;;;;;;-1:-1:-1;;;27313:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;27313:15:0;;;;;;;;-1:-1:-1;27344:9:0;27356:10;27360:6;27356:1;:10;:::i;:::-;:14;;27369:1;27356:14;:::i;:::-;27344:26;;27339:135;27376:1;27372;:5;27339:135;;;-1:-1:-1;;;27424:5:0;27432:3;27424:11;27411:25;;;;;-1:-1:-1;;;27411:25:0;;;;;;;;;;;;27399:6;27406:1;27399:9;;;;;;-1:-1:-1;;;27399:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;27399:37:0;;;;;;;;-1:-1:-1;27461:1:0;27451:11;;;;;27379:3;;;:::i;:::-;;;27339:135;;;-1:-1:-1;27492:10:0;;27484:55;;;;-1:-1:-1;;;27484:55:0;;4476:2:1;27484:55:0;;;4458:21:1;;;4495:18;;;4488:30;4554:34;4534:18;;;4527:62;4606:18;;27484:55:0;4448:182:1;36578:239:0;36662:22;36670:4;36676:7;36662;:22::i;:::-;36658:152;;;36733:5;36701:12;;;;;;;;;;;-1:-1:-1;;;;;36701:29:0;;;;;;;;;;:37;;-1:-1:-1;;36701:37:0;;;36758:40;4298:10;;36701:12;;36758:40;;36733:5;36758:40;36578:239;;:::o;44935:158::-;45008:4;45032:53;45040:3;-1:-1:-1;;;;;45060:23:0;;45032:7;:53::i;41296:120::-;41363:7;41390:3;:11;;41402:5;41390:18;;;;;;-1:-1:-1;;;41390:18:0;;;;;;;;;;;;;;;;;41383:25;;41296:120;;;;:::o;39112:1420::-;39178:4;39317:19;;;:12;;;:19;;;;;;39353:15;;39349:1176;;39728:21;39752:14;39765:1;39752:10;:14;:::i;:::-;39801:18;;39728:38;;-1:-1:-1;39781:17:0;;39801:22;;39822:1;;39801:22;:::i;:::-;39781:42;;39857:13;39844:9;:26;39840:405;;39891:17;39911:3;:11;;39923:9;39911:22;;;;;;-1:-1:-1;;;39911:22:0;;;;;;;;;;;;;;;;;39891:42;;40065:9;40036:3;:11;;40048:13;40036:26;;;;;;-1:-1:-1;;;40036:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;40150:23;;;:12;;;:23;;;;;:36;;;39840:405;40326:17;;:3;;:17;;;-1:-1:-1;;;40326:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;40421:3;:12;;:19;40434:5;40421:19;;;;;;;;;;;40414:26;;;40464:4;40457:11;;;;;;;39349:1176;40508:5;40501:12;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:1;;1350:120;-1:-1:-1;1350:120:1:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:258::-;1812:6;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:2;;;1894:6;1886;1879:22;1841:2;-1:-1:-1;;1922:23:1;;;1992:2;1977:18;;;1964:32;;-1:-1:-1;1831:171:1:o;2007:306::-;2065:6;2118:2;2106:9;2097:7;2093:23;2089:32;2086:2;;;2139:6;2131;2124:22;2086:2;2170:23;;-1:-1:-1;;;;;;2222:32:1;;2212:43;;2202:2;;2274:6;2266;2259:22;2513:786;2924:25;2919:3;2912:38;2894:3;2979:6;2973:13;2995:62;3050:6;3045:2;3040:3;3036:12;3029:4;3021:6;3017:17;2995:62;:::i;:::-;-1:-1:-1;;;3116:2:1;3076:16;;;3108:11;;;3101:40;3166:13;;3188:63;3166:13;3237:2;3229:11;;3222:4;3210:17;;3188:63;:::i;:::-;3271:17;3290:2;3267:26;;2902:397;-1:-1:-1;;;;2902:397:1:o;3886:383::-;4035:2;4024:9;4017:21;3998:4;4067:6;4061:13;4110:6;4105:2;4094:9;4090:18;4083:34;4126:66;4185:6;4180:2;4169:9;4165:18;4160:2;4152:6;4148:15;4126:66;:::i;:::-;4253:2;4232:15;-1:-1:-1;;4228:29:1;4213:45;;;;4260:2;4209:54;;4007:262;-1:-1:-1;;4007:262:1:o;11754:128::-;11794:3;11825:1;11821:6;11818:1;11815:13;11812:2;;;11831:18;;:::i;:::-;-1:-1:-1;11867:9:1;;11802:80::o;11887:168::-;11927:7;11993:1;11989;11985:6;11981:14;11978:1;11975:21;11970:1;11963:9;11956:17;11952:45;11949:2;;;12000:18;;:::i;:::-;-1:-1:-1;12040:9:1;;11939:116::o;12060:125::-;12100:4;12128:1;12125;12122:8;12119:2;;;12133:18;;:::i;:::-;-1:-1:-1;12170:9:1;;12109:76::o;12190:258::-;12262:1;12272:113;12286:6;12283:1;12280:13;12272:113;;;12362:11;;;12356:18;12343:11;;;12336:39;12308:2;12301:10;12272:113;;;12403:6;12400:1;12397:13;12394:2;;;-1:-1:-1;;12438:1:1;12420:16;;12413:27;12243:205::o;12453:136::-;12492:3;12520:5;12510:2;;12529:18;;:::i;:::-;-1:-1:-1;;;12565:18:1;;12500:89::o;12594:380::-;12673:1;12669:12;;;;12716;;;12737:2;;12791:4;12783:6;12779:17;12769:27;;12737:2;12844;12836:6;12833:14;12813:18;12810:38;12807:2;;;12890:10;12885:3;12881:20;12878:1;12871:31;12925:4;12922:1;12915:15;12953:4;12950:1;12943:15;12807:2;;12649:325;;;:::o;12979:127::-;13040:10;13035:3;13031:20;13028:1;13021:31;13071:4;13068:1;13061:15;13095:4;13092:1;13085:15

Swarm Source

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