ETH Price: $3,264.94 (+0.53%)
Gas: 3 Gwei

Token

Sigma (SIGMA)
 

Overview

Max Total Supply

420,690,000,000,000 SIGMA

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.707547413218604614 SIGMA

Value
$0.00
0xd4ff108570ac56c5061862499cf58ef4227072f5
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:
Sigmacoin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-26
*/

//      ___                       ___           ___           ___     
//     /  /\        ___          /  /\         /__/\         /  /\    
//    /  /:/_      /  /\        /  /:/_       |  |::\       /  /::\   
//   /  /:/ /\    /  /:/       /  /:/ /\      |  |:|:\     /  /:/\:\  
//  /  /:/ /::\  /__/::\      /  /:/_/::\   __|__|:|\:\   /  /:/~/::\ 
// /__/:/ /:/\:\ \__\/\:\__  /__/:/__\/\:\ /__/::::| \:\ /__/:/ /:/\:\
// \  \:\/:/~/:/    \  \:\/\ \  \:\ /~~/:/ \  \:\~~\__\/ \  \:\/:/__\/
//  \  \::/ /:/      \__\::/  \  \:\  /:/   \  \:\        \  \::/     
//   \__\/ /:/       /__/:/    \  \:\/:/     \  \:\        \  \:\     
//     /__/:/        \__\/      \  \::/       \  \:\        \  \:\    
//     \__\/                     \__\/         \__\/         \__\/   

// Sources flattened with hardhat v2.14.0 https://hardhat.org
// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


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

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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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


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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @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 contracts/Sigmacoin.sol

pragma solidity ^0.8.0;
contract Sigmacoin is ERC20, Ownable, ERC20Burnable {

    mapping (address => bool) private _blacklist;
    address public pancakeswapV2Pair;

    constructor(string memory name, string memory symbol, uint256 _totalSupply) ERC20(name, symbol) {
        _mint(msg.sender, _totalSupply);
    }
    function setPancakeswapPair(address _pancakeswapV2Pair) external onlyOwner {
        require(_pancakeswapV2Pair != address(0), "Invalid address");
        pancakeswapV2Pair = _pancakeswapV2Pair;
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        require(!_blacklist[msg.sender], "You are not allowed to transfer tokens as you are blacklisted");
        require(!_blacklist[recipient], "You are not allowed receive tokens as you are blacklisted");
        return super.transfer(recipient, amount);
    }
    
    function blacklist(address account) public onlyOwner {
        _blacklist[account] = true;
    }
    
    function unBlacklist(address account) public onlyOwner {
        _blacklist[account] = false;
    }
    
    function isBlacklisted(address account) public view returns (bool) {
        return _blacklist[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","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":"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":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pancakeswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pancakeswapV2Pair","type":"address"}],"name":"setPancakeswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620012ba380380620012ba83398101604081905262000034916200026b565b828260036200004483826200036c565b5060046200005382826200036c565b505050620000706200006a6200008560201b60201c565b62000089565b6200007c3382620000db565b50505062000460565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200014a919062000438565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ce57600080fd5b81516001600160401b0380821115620001eb57620001eb620001a6565b604051601f8301601f19908116603f01168101908282118183101715620002165762000216620001a6565b816040528381526020925086838588010111156200023357600080fd5b600091505b8382101562000257578582018301518183018401529082019062000238565b600093810190920192909252949350505050565b6000806000606084860312156200028157600080fd5b83516001600160401b03808211156200029957600080fd5b620002a787838801620001bc565b94506020860151915080821115620002be57600080fd5b50620002cd86828701620001bc565b925050604084015190509250925092565b600181811c90821680620002f357607f821691505b6020821081036200031457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a157600081815260208120601f850160051c81016020861015620003435750805b601f850160051c820191505b8181101562000364578281556001016200034f565b505050505050565b81516001600160401b03811115620003885762000388620001a6565b620003a081620003998454620002de565b846200031a565b602080601f831160018114620003d85760008415620003bf5750858301515b600019600386901b1c1916600185901b17855562000364565b600085815260208120601f198616915b828110156200040957888601518255948401946001909101908401620003e8565b5085821015620004285787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200045a57634e487b7160e01b600052601160045260246000fd5b92915050565b610e4a80620004706000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610287578063ab116e4e1461029a578063dd62ed3e146102ad578063f2fde38b146102c0578063f9f92be4146102d3578063fe575a87146102e657600080fd5b8063715018a61461024057806379cc6790146102485780638da5cb5b1461025b57806395d89b411461026c578063a457c2d71461027457600080fd5b8063313ce567116100ff578063313ce567146101b757806339509351146101c657806342966c68146101d957806352892884146101ec57806370a082311461021757600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631a8952661461018f57806323b872dd146101a4575b600080fd5b610144610312565b6040516101519190610c82565b60405180910390f35b61016d610168366004610cec565b6103a4565b6040519015158152602001610151565b6002545b604051908152602001610151565b6101a261019d366004610d16565b6103be565b005b61016d6101b2366004610d31565b6103e7565b60405160128152602001610151565b61016d6101d4366004610cec565b61040b565b6101a26101e7366004610d6d565b61042d565b6007546101ff906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b610181610225366004610d16565b6001600160a01b031660009081526020819052604090205490565b6101a261043a565b6101a2610256366004610cec565b61044e565b6005546001600160a01b03166101ff565b610144610467565b61016d610282366004610cec565b610476565b61016d610295366004610cec565b6104f6565b6101a26102a8366004610d16565b61061c565b6101816102bb366004610d86565b61068e565b6101a26102ce366004610d16565b6106b9565b6101a26102e1366004610d16565b61072f565b61016d6102f4366004610d16565b6001600160a01b031660009081526006602052604090205460ff1690565b60606003805461032190610db9565b80601f016020809104026020016040519081016040528092919081815260200182805461034d90610db9565b801561039a5780601f1061036f5761010080835404028352916020019161039a565b820191906000526020600020905b81548152906001019060200180831161037d57829003601f168201915b5050505050905090565b6000336103b281858561075b565b60019150505b92915050565b6103c6610880565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000336103f58582856108da565b610400858585610954565b506001949350505050565b6000336103b281858561041e838361068e565b6104289190610df3565b61075b565b6104373382610af8565b50565b610442610880565b61044c6000610c22565b565b6104598233836108da565b6104638282610af8565b5050565b60606004805461032190610db9565b60003381610484828661068e565b9050838110156104e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610400828686840361075b565b3360009081526006602052604081205460ff161561057c5760405162461bcd60e51b815260206004820152603d60248201527f596f7520617265206e6f7420616c6c6f77656420746f207472616e736665722060448201527f746f6b656e7320617320796f752061726520626c61636b6c697374656400000060648201526084016104e0565b6001600160a01b03831660009081526006602052604090205460ff161561060b5760405162461bcd60e51b815260206004820152603960248201527f596f7520617265206e6f7420616c6c6f776564207265636569766520746f6b6560448201527f6e7320617320796f752061726520626c61636b6c69737465640000000000000060648201526084016104e0565b6106158383610c74565b9392505050565b610624610880565b6001600160a01b03811661066c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016104e0565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106c1610880565b6001600160a01b0381166107265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e0565b61043781610c22565b610737610880565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b0383166107bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e0565b6001600160a01b03821661081e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b0316331461044c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e0565b60006108e6848461068e565b9050600019811461094e57818110156109415760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e0565b61094e848484840361075b565b50505050565b6001600160a01b0383166109b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e0565b6001600160a01b038216610a1a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e0565b6001600160a01b03831660009081526020819052604090205481811015610a925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361094e565b6001600160a01b038216610b585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e0565b6001600160a01b03821660009081526020819052604090205481811015610bcc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e0565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610873565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103b2818585610954565b600060208083528351808285015260005b81811015610caf57858101830151858201604001528201610c93565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce757600080fd5b919050565b60008060408385031215610cff57600080fd5b610d0883610cd0565b946020939093013593505050565b600060208284031215610d2857600080fd5b61061582610cd0565b600080600060608486031215610d4657600080fd5b610d4f84610cd0565b9250610d5d60208501610cd0565b9150604084013590509250925092565b600060208284031215610d7f57600080fd5b5035919050565b60008060408385031215610d9957600080fd5b610da283610cd0565b9150610db060208401610cd0565b90509250929050565b600181811c90821680610dcd57607f821691505b602082108103610ded57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103b857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fa0c009f5f06d6f81144207dfabaeb3c681df53be96971a97ec0c3176480185e64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000014bddab3e51a57cff87a5000000000000000000000000000000000000000000000000000000000000000000000055369676d6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055349474d41000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610287578063ab116e4e1461029a578063dd62ed3e146102ad578063f2fde38b146102c0578063f9f92be4146102d3578063fe575a87146102e657600080fd5b8063715018a61461024057806379cc6790146102485780638da5cb5b1461025b57806395d89b411461026c578063a457c2d71461027457600080fd5b8063313ce567116100ff578063313ce567146101b757806339509351146101c657806342966c68146101d957806352892884146101ec57806370a082311461021757600080fd5b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461017d5780631a8952661461018f57806323b872dd146101a4575b600080fd5b610144610312565b6040516101519190610c82565b60405180910390f35b61016d610168366004610cec565b6103a4565b6040519015158152602001610151565b6002545b604051908152602001610151565b6101a261019d366004610d16565b6103be565b005b61016d6101b2366004610d31565b6103e7565b60405160128152602001610151565b61016d6101d4366004610cec565b61040b565b6101a26101e7366004610d6d565b61042d565b6007546101ff906001600160a01b031681565b6040516001600160a01b039091168152602001610151565b610181610225366004610d16565b6001600160a01b031660009081526020819052604090205490565b6101a261043a565b6101a2610256366004610cec565b61044e565b6005546001600160a01b03166101ff565b610144610467565b61016d610282366004610cec565b610476565b61016d610295366004610cec565b6104f6565b6101a26102a8366004610d16565b61061c565b6101816102bb366004610d86565b61068e565b6101a26102ce366004610d16565b6106b9565b6101a26102e1366004610d16565b61072f565b61016d6102f4366004610d16565b6001600160a01b031660009081526006602052604090205460ff1690565b60606003805461032190610db9565b80601f016020809104026020016040519081016040528092919081815260200182805461034d90610db9565b801561039a5780601f1061036f5761010080835404028352916020019161039a565b820191906000526020600020905b81548152906001019060200180831161037d57829003601f168201915b5050505050905090565b6000336103b281858561075b565b60019150505b92915050565b6103c6610880565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000336103f58582856108da565b610400858585610954565b506001949350505050565b6000336103b281858561041e838361068e565b6104289190610df3565b61075b565b6104373382610af8565b50565b610442610880565b61044c6000610c22565b565b6104598233836108da565b6104638282610af8565b5050565b60606004805461032190610db9565b60003381610484828661068e565b9050838110156104e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610400828686840361075b565b3360009081526006602052604081205460ff161561057c5760405162461bcd60e51b815260206004820152603d60248201527f596f7520617265206e6f7420616c6c6f77656420746f207472616e736665722060448201527f746f6b656e7320617320796f752061726520626c61636b6c697374656400000060648201526084016104e0565b6001600160a01b03831660009081526006602052604090205460ff161561060b5760405162461bcd60e51b815260206004820152603960248201527f596f7520617265206e6f7420616c6c6f776564207265636569766520746f6b6560448201527f6e7320617320796f752061726520626c61636b6c69737465640000000000000060648201526084016104e0565b6106158383610c74565b9392505050565b610624610880565b6001600160a01b03811661066c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016104e0565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6106c1610880565b6001600160a01b0381166107265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e0565b61043781610c22565b610737610880565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b0383166107bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e0565b6001600160a01b03821661081e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6005546001600160a01b0316331461044c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e0565b60006108e6848461068e565b9050600019811461094e57818110156109415760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e0565b61094e848484840361075b565b50505050565b6001600160a01b0383166109b85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e0565b6001600160a01b038216610a1a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e0565b6001600160a01b03831660009081526020819052604090205481811015610a925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e0565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361094e565b6001600160a01b038216610b585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104e0565b6001600160a01b03821660009081526020819052604090205481811015610bcc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104e0565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610873565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103b2818585610954565b600060208083528351808285015260005b81811015610caf57858101830151858201604001528201610c93565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce757600080fd5b919050565b60008060408385031215610cff57600080fd5b610d0883610cd0565b946020939093013593505050565b600060208284031215610d2857600080fd5b61061582610cd0565b600080600060608486031215610d4657600080fd5b610d4f84610cd0565b9250610d5d60208501610cd0565b9150604084013590509250925092565b600060208284031215610d7f57600080fd5b5035919050565b60008060408385031215610d9957600080fd5b610da283610cd0565b9150610db060208401610cd0565b90509250929050565b600181811c90821680610dcd57607f821691505b602082108103610ded57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103b857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fa0c009f5f06d6f81144207dfabaeb3c681df53be96971a97ec0c3176480185e64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000014bddab3e51a57cff87a5000000000000000000000000000000000000000000000000000000000000000000000055369676d6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055349474d41000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Sigma
Arg [1] : symbol (string): SIGMA
Arg [2] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 5369676d61000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5349474d41000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25339:1228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12921:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15272:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15272:201:0;1004:187:1;14041:108:0;14129:12;;14041:108;;;1342:25:1;;;1330:2;1315:18;14041:108:0;1196:177:1;26339:101:0;;;;;;:::i;:::-;;:::i;:::-;;16053:295;;;;;;:::i;:::-;;:::i;13883:93::-;;;13966:2;2044:36:1;;2032:2;2017:18;13883:93:0;1902:184:1;16757:238:0;;;;;;:::i;:::-;;:::i;24696:91::-;;;;;;:::i;:::-;;:::i;25451:32::-;;;;;-1:-1:-1;;;;;25451:32:0;;;;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;25451:32:0;2276:203:1;14212:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14313:18:0;14286:7;14313:18;;;;;;;;;;;;14212:127;3673:103;;;:::i;25106:164::-;;;;;;:::i;:::-;;:::i;3025:87::-;3098:6;;-1:-1:-1;;;;;3098:6:0;3025:87;;13140:104;;;:::i;17498:436::-;;;;;;:::i;:::-;;:::i;25855:362::-;;;;;;:::i;:::-;;:::i;25644:203::-;;;;;;:::i;:::-;;:::i;14801:151::-;;;;;;:::i;:::-;;:::i;3931:201::-;;;;;;:::i;:::-;;:::i;26229:98::-;;;;;;:::i;:::-;;:::i;26452:112::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26537:19:0;26513:4;26537:19;;;:10;:19;;;;;;;;;26452:112;12921:100;12975:13;13008:5;13001:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12921:100;:::o;15272:201::-;15355:4;1650:10;15411:32;1650:10;15427:7;15436:6;15411:8;:32::i;:::-;15461:4;15454:11;;;15272:201;;;;;:::o;26339:101::-;2911:13;:11;:13::i;:::-;-1:-1:-1;;;;;26405:19:0::1;26427:5;26405:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;26405:27:0::1;::::0;;26339:101::o;16053:295::-;16184:4;1650:10;16242:38;16258:4;1650:10;16273:6;16242:15;:38::i;:::-;16291:27;16301:4;16307:2;16311:6;16291:9;:27::i;:::-;-1:-1:-1;16336:4:0;;16053:295;-1:-1:-1;;;;16053:295:0:o;16757:238::-;16845:4;1650:10;16901:64;1650:10;16917:7;16954:10;16926:25;1650:10;16917:7;16926:9;:25::i;:::-;:38;;;;:::i;:::-;16901:8;:64::i;24696:91::-;24752:27;1650:10;24772:6;24752:5;:27::i;:::-;24696:91;:::o;3673:103::-;2911:13;:11;:13::i;:::-;3738:30:::1;3765:1;3738:18;:30::i;:::-;3673:103::o:0;25106:164::-;25183:46;25199:7;1650:10;25222:6;25183:15;:46::i;:::-;25240:22;25246:7;25255:6;25240:5;:22::i;:::-;25106:164;;:::o;13140:104::-;13196:13;13229:7;13222:14;;;;;:::i;17498:436::-;17591:4;1650:10;17591:4;17674:25;1650:10;17691:7;17674:9;:25::i;:::-;17647:52;;17738:15;17718:16;:35;;17710:85;;;;-1:-1:-1;;;17710:85:0;;3563:2:1;17710:85:0;;;3545:21:1;3602:2;3582:18;;;3575:30;3641:34;3621:18;;;3614:62;-1:-1:-1;;;3692:18:1;;;3685:35;3737:19;;17710:85:0;;;;;;;;;17831:60;17840:5;17847:7;17875:15;17856:16;:34;17831:8;:60::i;25855:362::-;25978:10;25941:4;25967:22;;;:10;:22;;;;;;;;25966:23;25958:97;;;;-1:-1:-1;;;25958:97:0;;3969:2:1;25958:97:0;;;3951:21:1;4008:2;3988:18;;;3981:30;4047:34;4027:18;;;4020:62;4118:31;4098:18;;;4091:59;4167:19;;25958:97:0;3767:425:1;25958:97:0;-1:-1:-1;;;;;26075:21:0;;;;;;:10;:21;;;;;;;;26074:22;26066:92;;;;-1:-1:-1;;;26066:92:0;;4399:2:1;26066:92:0;;;4381:21:1;4438:2;4418:18;;;4411:30;4477:34;4457:18;;;4450:62;4548:27;4528:18;;;4521:55;4593:19;;26066:92:0;4197:421:1;26066:92:0;26176:33;26191:9;26202:6;26176:14;:33::i;:::-;26169:40;25855:362;-1:-1:-1;;;25855:362:0:o;25644:203::-;2911:13;:11;:13::i;:::-;-1:-1:-1;;;;;25738:32:0;::::1;25730:60;;;::::0;-1:-1:-1;;;25730:60:0;;4825:2:1;25730:60:0::1;::::0;::::1;4807:21:1::0;4864:2;4844:18;;;4837:30;-1:-1:-1;;;4883:18:1;;;4876:45;4938:18;;25730:60:0::1;4623:339:1::0;25730:60:0::1;25801:17;:38:::0;;-1:-1:-1;;;;;;25801:38:0::1;-1:-1:-1::0;;;;;25801:38:0;;;::::1;::::0;;;::::1;::::0;;25644:203::o;14801:151::-;-1:-1:-1;;;;;14917:18:0;;;14890:7;14917:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14801:151::o;3931:201::-;2911:13;:11;:13::i;:::-;-1:-1:-1;;;;;4020:22:0;::::1;4012:73;;;::::0;-1:-1:-1;;;4012:73:0;;5169:2:1;4012:73:0::1;::::0;::::1;5151:21:1::0;5208:2;5188:18;;;5181:30;5247:34;5227:18;;;5220:62;-1:-1:-1;;;5298:18:1;;;5291:36;5344:19;;4012:73:0::1;4967:402:1::0;4012:73:0::1;4096:28;4115:8;4096:18;:28::i;26229:98::-:0;2911:13;:11;:13::i;:::-;-1:-1:-1;;;;;26293:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;26293:26:0::1;26315:4;26293:26;::::0;;26229:98::o;21525:380::-;-1:-1:-1;;;;;21661:19:0;;21653:68;;;;-1:-1:-1;;;21653:68:0;;5576:2:1;21653:68:0;;;5558:21:1;5615:2;5595:18;;;5588:30;5654:34;5634:18;;;5627:62;-1:-1:-1;;;5705:18:1;;;5698:34;5749:19;;21653:68:0;5374:400:1;21653:68:0;-1:-1:-1;;;;;21740:21:0;;21732:68;;;;-1:-1:-1;;;21732:68:0;;5981:2:1;21732:68:0;;;5963:21:1;6020:2;6000:18;;;5993:30;6059:34;6039:18;;;6032:62;-1:-1:-1;;;6110:18:1;;;6103:32;6152:19;;21732:68:0;5779:398:1;21732:68:0;-1:-1:-1;;;;;21813:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21865:32;;1342:25:1;;;21865:32:0;;1315:18:1;21865:32:0;;;;;;;;21525:380;;;:::o;3190:132::-;3098:6;;-1:-1:-1;;;;;3098:6:0;1650:10;3254:23;3246:68;;;;-1:-1:-1;;;3246:68:0;;6384:2:1;3246:68:0;;;6366:21:1;;;6403:18;;;6396:30;6462:34;6442:18;;;6435:62;6514:18;;3246:68:0;6182:356:1;22196:453:0;22331:24;22358:25;22368:5;22375:7;22358:9;:25::i;:::-;22331:52;;-1:-1:-1;;22398:16:0;:37;22394:248;;22480:6;22460:16;:26;;22452:68;;;;-1:-1:-1;;;22452:68:0;;6745:2:1;22452:68:0;;;6727:21:1;6784:2;6764:18;;;6757:30;6823:31;6803:18;;;6796:59;6872:18;;22452:68:0;6543:353:1;22452:68:0;22564:51;22573:5;22580:7;22608:6;22589:16;:25;22564:8;:51::i;:::-;22320:329;22196:453;;;:::o;18404:840::-;-1:-1:-1;;;;;18535:18:0;;18527:68;;;;-1:-1:-1;;;18527:68:0;;7103:2:1;18527:68:0;;;7085:21:1;7142:2;7122:18;;;7115:30;7181:34;7161:18;;;7154:62;-1:-1:-1;;;7232:18:1;;;7225:35;7277:19;;18527:68:0;6901:401:1;18527:68:0;-1:-1:-1;;;;;18614:16:0;;18606:64;;;;-1:-1:-1;;;18606:64:0;;7509:2:1;18606:64:0;;;7491:21:1;7548:2;7528:18;;;7521:30;7587:34;7567:18;;;7560:62;-1:-1:-1;;;7638:18:1;;;7631:33;7681:19;;18606:64:0;7307:399:1;18606:64:0;-1:-1:-1;;;;;18756:15:0;;18734:19;18756:15;;;;;;;;;;;18790:21;;;;18782:72;;;;-1:-1:-1;;;18782:72:0;;7913:2:1;18782:72:0;;;7895:21:1;7952:2;7932:18;;;7925:30;7991:34;7971:18;;;7964:62;-1:-1:-1;;;8042:18:1;;;8035:36;8088:19;;18782:72:0;7711:402:1;18782:72:0;-1:-1:-1;;;;;18890:15:0;;;:9;:15;;;;;;;;;;;18908:20;;;18890:38;;19108:13;;;;;;;;;;:23;;;;;;19160:26;;1342:25:1;;;19108:13:0;;19160:26;;1315:18:1;19160:26:0;;;;;;;19199:37;20412:675;;-1:-1:-1;;;;;20496:21:0;;20488:67;;;;-1:-1:-1;;;20488:67:0;;8320:2:1;20488:67:0;;;8302:21:1;8359:2;8339:18;;;8332:30;8398:34;8378:18;;;8371:62;-1:-1:-1;;;8449:18:1;;;8442:31;8490:19;;20488:67:0;8118:397:1;20488:67:0;-1:-1:-1;;;;;20655:18:0;;20630:22;20655:18;;;;;;;;;;;20692:24;;;;20684:71;;;;-1:-1:-1;;;20684:71:0;;8722:2:1;20684:71:0;;;8704:21:1;8761:2;8741:18;;;8734:30;8800:34;8780:18;;;8773:62;-1:-1:-1;;;8851:18:1;;;8844:32;8893:19;;20684:71:0;8520:398:1;20684:71:0;-1:-1:-1;;;;;20791:18:0;;:9;:18;;;;;;;;;;;20812:23;;;20791:44;;20930:12;:22;;;;;;;20981:37;1342:25:1;;;20791:9:0;;:18;20981:37;;1315:18:1;20981:37:0;1196:177:1;4292:191:0;4385:6;;;-1:-1:-1;;;;;4402:17:0;;;-1:-1:-1;;;;;;4402:17:0;;;;;;;4435:40;;4385:6;;;4402:17;4385:6;;4435:40;;4366:16;;4435:40;4355:128;4292:191;:::o;14545:193::-;14624:4;1650:10;14680:28;1650:10;14697:2;14701:6;14680:9;:28::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:186::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1529:29;1548:9;1529:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:180::-;2150:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:52;;;2219:1;2216;2209:12;2171:52;-1:-1:-1;2242:23:1;;2091:180;-1:-1:-1;2091:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:222::-;3199:9;;;3220:10;;;3217:133;;;3272:10;3267:3;3263:20;3260:1;3253:31;3307:4;3304:1;3297:15;3335:4;3332:1;3325:15

Swarm Source

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