ETH Price: $3,396.62 (-1.50%)
Gas: 2 Gwei

Token

CardX (CARDX)
 

Overview

Max Total Supply

90,940,000 CARDX

Holders

260

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
44,000 CARDX

Value
$0.00
0x050cc956891abd3c72d1188f5a1aaf9c0c2a29a0
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:
CardX

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-20
*/

// File: node_modules\@openzeppelin\contracts\utils\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol



pragma solidity >=0.6.0 <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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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

// File: @openzeppelin\contracts\utils\Pausable.sol



pragma solidity >=0.6.0 <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 () internal {
        _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\access\Ownable.sol



pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\CardX.sol


pragma solidity >=0.6.0 <0.8.0;


contract CardX is ERC20, Pausable, Ownable {
    constructor() ERC20("CardX", "CARDX") { 
	   _setupDecimals(8);
	   _mint(0xeE98dE208D712AD770ffbb8d99F20F85aca2B150, 90940000 * 10 ** decimals()); 
	   transferOwnership(0xeE98dE208D712AD770ffbb8d99F20F85aca2B150);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806005815260200164086c2e4c8b60db1b8152506040518060400160405280600581526020016408682a488b60db1b8152508160039080519060200190620000669291906200048f565b5080516200007c9060049060208401906200048f565b50506005805461ff001960ff199091166012171690555060006200009f62000152565b6005805462010000600160b01b031916620100006001600160a01b0384169081029190911790915560405191925090600090600080516020620014b3833981519152908290a350620000f2600862000156565b6200012d73ee98de208d712ad770ffbb8d99f20f85aca2b150620001156200016c565b60ff16600a0a63056ba260026200017560201b60201c565b6200014c73ee98de208d712ad770ffbb8d99f20f85aca2b15062000284565b6200053b565b3390565b6005805460ff191660ff92909216919091179055565b60055460ff1690565b6001600160a01b038216620001d1576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001df600083836200039d565b620001fb816002546200040a60201b620008ff1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022e918390620008ff6200040a821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200028e62000152565b6001600160a01b0316620002a16200046c565b6001600160a01b031614620002fd576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116620003445760405162461bcd60e51b81526004018080602001828103825260268152602001806200148d6026913960400191505060405180910390fd5b6005546040516001600160a01b03808416926201000090041690600080516020620014b383398151915290600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b620003a762000481565b15620003ed576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b620004058383836200040560201b620009601760201c565b505050565b60008282018381101562000465576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6005546201000090046001600160a01b031690565b600554610100900460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004c7576000855562000512565b82601f10620004e257805160ff191683800117855562000512565b8280016001018555821562000512579182015b8281111562000512578251825591602001919060010190620004f5565b506200052092915062000524565b5090565b5b8082111562000520576000815560010162000525565b610f42806200054b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102d3578063a457c2d7146102db578063a9059cbb14610307578063dd62ed3e14610333578063f2fde38b146103615761010b565b806370a0823114610279578063715018a61461029f5780638456cb59146102a75780638da5cb5b146102af5761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b5780633f4ba83a146102675780635c975abb146102715761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b610118610387565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561041d565b604080519115158252519081900360200190f35b6101d561043a565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610440565b6102256104c7565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b0381351690602001356104d0565b61026f61051e565b005b6101b961058a565b6101d56004803603602081101561028f57600080fd5b50356001600160a01b0316610598565b61026f6105b3565b61026f610667565b6102b76106d1565b604080516001600160a01b039092168252519081900360200190f35b6101186106e6565b6101b9600480360360408110156102f157600080fd5b506001600160a01b038135169060200135610747565b6101b96004803603604081101561031d57600080fd5b506001600160a01b0381351690602001356107af565b6101d56004803603604081101561034957600080fd5b506001600160a01b03813581169160200135166107c3565b61026f6004803603602081101561037757600080fd5b50356001600160a01b03166107ee565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b820191906000526020600020905b8154815290600101906020018083116103f657829003601f168201915b5050505050905090565b600061043161042a610965565b8484610969565b50600192915050565b60025490565b600061044d848484610a55565b6104bd84610459610965565b6104b885604051806060016040528060288152602001610e57602891396001600160a01b038a16600090815260016020526040812090610497610965565b6001600160a01b031681526020810191909152604001600020549190610bb0565b610969565b5060019392505050565b60055460ff1690565b60006104316104dd610965565b846104b885600160006104ee610965565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906108ff565b610526610965565b6001600160a01b03166105376106d1565b6001600160a01b031614610580576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b610588610c47565b565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6105bb610965565b6001600160a01b03166105cc6106d1565b6001600160a01b031614610615576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b6005546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805462010000600160b01b0319169055565b61066f610965565b6001600160a01b03166106806106d1565b6001600160a01b0316146106c9576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b610588610ce8565b6005546201000090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b6000610431610754610965565b846104b885604051806060016040528060258152602001610ee8602591396001600061077e610965565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610bb0565b60006104316107bc610965565b8484610a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107f6610965565b6001600160a01b03166108076106d1565b6001600160a01b031614610850576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b6001600160a01b0381166108955760405162461bcd60e51b8152600401808060200182810382526026815260200180610de96026913960400191505060405180910390fd5b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600082820183811015610959576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b505050565b3390565b6001600160a01b0383166109ae5760405162461bcd60e51b8152600401808060200182810382526024815260200180610ec46024913960400191505060405180910390fd5b6001600160a01b0382166109f35760405162461bcd60e51b8152600401808060200182810382526022815260200180610e0f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a9a5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e9f6025913960400191505060405180910390fd5b6001600160a01b038216610adf5760405162461bcd60e51b8152600401808060200182810382526023815260200180610dc66023913960400191505060405180910390fd5b610aea838383610d6d565b610b2781604051806060016040528060268152602001610e31602691396001600160a01b0386166000908152602081905260409020549190610bb0565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b5690826108ff565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c3f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c04578181015183820152602001610bec565b50505050905090810190601f168015610c315780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b610c4f61058a565b610c97576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ccb610965565b604080516001600160a01b039092168252519081900360200190a1565b610cf061058a565b15610d35576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ccb610965565b610d7561058a565b15610dba576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61096083838361096056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dadc001858c6f3cbda24cf15b1688a58ce9def26021b64398a2f032317862dcb64736f6c634300070600334f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573738be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102d3578063a457c2d7146102db578063a9059cbb14610307578063dd62ed3e14610333578063f2fde38b146103615761010b565b806370a0823114610279578063715018a61461029f5780638456cb59146102a75780638da5cb5b146102af5761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b5780633f4ba83a146102675780635c975abb146102715761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b610118610387565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561041d565b604080519115158252519081900360200190f35b6101d561043a565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610440565b6102256104c7565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b0381351690602001356104d0565b61026f61051e565b005b6101b961058a565b6101d56004803603602081101561028f57600080fd5b50356001600160a01b0316610598565b61026f6105b3565b61026f610667565b6102b76106d1565b604080516001600160a01b039092168252519081900360200190f35b6101186106e6565b6101b9600480360360408110156102f157600080fd5b506001600160a01b038135169060200135610747565b6101b96004803603604081101561031d57600080fd5b506001600160a01b0381351690602001356107af565b6101d56004803603604081101561034957600080fd5b506001600160a01b03813581169160200135166107c3565b61026f6004803603602081101561037757600080fd5b50356001600160a01b03166107ee565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b820191906000526020600020905b8154815290600101906020018083116103f657829003601f168201915b5050505050905090565b600061043161042a610965565b8484610969565b50600192915050565b60025490565b600061044d848484610a55565b6104bd84610459610965565b6104b885604051806060016040528060288152602001610e57602891396001600160a01b038a16600090815260016020526040812090610497610965565b6001600160a01b031681526020810191909152604001600020549190610bb0565b610969565b5060019392505050565b60055460ff1690565b60006104316104dd610965565b846104b885600160006104ee610965565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906108ff565b610526610965565b6001600160a01b03166105376106d1565b6001600160a01b031614610580576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b610588610c47565b565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6105bb610965565b6001600160a01b03166105cc6106d1565b6001600160a01b031614610615576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b6005546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805462010000600160b01b0319169055565b61066f610965565b6001600160a01b03166106806106d1565b6001600160a01b0316146106c9576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b610588610ce8565b6005546201000090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104135780601f106103e857610100808354040283529160200191610413565b6000610431610754610965565b846104b885604051806060016040528060258152602001610ee8602591396001600061077e610965565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610bb0565b60006104316107bc610965565b8484610a55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107f6610965565b6001600160a01b03166108076106d1565b6001600160a01b031614610850576040805162461bcd60e51b81526020600482018190526024820152600080516020610e7f833981519152604482015290519081900360640190fd5b6001600160a01b0381166108955760405162461bcd60e51b8152600401808060200182810382526026815260200180610de96026913960400191505060405180910390fd5b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600082820183811015610959576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b505050565b3390565b6001600160a01b0383166109ae5760405162461bcd60e51b8152600401808060200182810382526024815260200180610ec46024913960400191505060405180910390fd5b6001600160a01b0382166109f35760405162461bcd60e51b8152600401808060200182810382526022815260200180610e0f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a9a5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e9f6025913960400191505060405180910390fd5b6001600160a01b038216610adf5760405162461bcd60e51b8152600401808060200182810382526023815260200180610dc66023913960400191505060405180910390fd5b610aea838383610d6d565b610b2781604051806060016040528060268152602001610e31602691396001600160a01b0386166000908152602081905260409020549190610bb0565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b5690826108ff565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c3f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c04578181015183820152602001610bec565b50505050905090810190601f168015610c315780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b610c4f61058a565b610c97576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ccb610965565b604080516001600160a01b039092168252519081900360200190a1565b610cf061058a565b15610d35576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610ccb610965565b610d7561058a565b15610dba576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61096083838361096056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dadc001858c6f3cbda24cf15b1688a58ce9def26021b64398a2f032317862dcb64736f6c63430007060033

Deployed Bytecode Sourcemap

27038:627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13503:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15649:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15649:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14602:108;;;:::i;:::-;;;;;;;;;;;;;;;;16300:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16300:321:0;;;;;;;;;;;;;;;;;:::i;14446:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17030:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17030:218:0;;;;;;;;:::i;27390:65::-;;;:::i;:::-;;23465:86;;;:::i;14773:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14773:127:0;-1:-1:-1;;;;;14773:127:0;;:::i;26413:148::-;;;:::i;27321:61::-;;;:::i;25762:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;25762:87:0;;;;;;;;;;;;;;13713:95;;;:::i;17751:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17751:269:0;;;;;;;;:::i;15113:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15113:175:0;;;;;;;;:::i;15351:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15351:151:0;;;;;;;;;;:::i;26716:244::-;;;;;;;;;;;;;;;;-1:-1:-1;26716:244:0;-1:-1:-1;;;;;26716:244:0;;:::i;13503:91::-;13581:5;13574:12;;;;;;;;-1:-1:-1;;13574:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13548:13;;13574:12;;13581:5;;13574:12;;13581:5;13574:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13503:91;:::o;15649:169::-;15732:4;15749:39;15758:12;:10;:12::i;:::-;15772:7;15781:6;15749:8;:39::i;:::-;-1:-1:-1;15806:4:0;15649:169;;;;:::o;14602:108::-;14690:12;;14602:108;:::o;16300:321::-;16406:4;16423:36;16433:6;16441:9;16452:6;16423:9;:36::i;:::-;16470:121;16479:6;16487:12;:10;:12::i;:::-;16501:89;16539:6;16501:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16501:19:0;;;;;;:11;:19;;;;;;16521:12;:10;:12::i;:::-;-1:-1:-1;;;;;16501:33:0;;;;;;;;;;;;-1:-1:-1;16501:33:0;;;:89;:37;:89::i;:::-;16470:8;:121::i;:::-;-1:-1:-1;16609:4:0;16300:321;;;;;:::o;14446:91::-;14520:9;;;;14446:91;:::o;17030:218::-;17118:4;17135:83;17144:12;:10;:12::i;:::-;17158:7;17167:50;17206:10;17167:11;:25;17179:12;:10;:12::i;:::-;-1:-1:-1;;;;;17167:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17167:25:0;;;:34;;;;;;;;;;;:38;:50::i;27390:65::-;25993:12;:10;:12::i;:::-;-1:-1:-1;;;;;25982:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25982:23:0;;25974:68;;;;;-1:-1:-1;;;25974:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25974:68:0;;;;;;;;;;;;;;;27437:10:::1;:8;:10::i;:::-;27390:65::o:0;23465:86::-;23536:7;;;;;;;;23465:86::o;14773:127::-;-1:-1:-1;;;;;14874:18:0;14847:7;14874:18;;;;;;;;;;;;14773:127::o;26413:148::-;25993:12;:10;:12::i;:::-;-1:-1:-1;;;;;25982:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25982:23:0;;25974:68;;;;;-1:-1:-1;;;25974:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25974:68:0;;;;;;;;;;;;;;;26504:6:::1;::::0;26483:40:::1;::::0;26520:1:::1;::::0;26504:6;;::::1;-1:-1:-1::0;;;;;26504:6:0::1;::::0;26483:40:::1;::::0;26520:1;;26483:40:::1;26534:6;:19:::0;;-1:-1:-1;;;;;;26534:19:0::1;::::0;;26413:148::o;27321:61::-;25993:12;:10;:12::i;:::-;-1:-1:-1;;;;;25982:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25982:23:0;;25974:68;;;;;-1:-1:-1;;;25974:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25974:68:0;;;;;;;;;;;;;;;27366:8:::1;:6;:8::i;25762:87::-:0;25835:6;;;;;-1:-1:-1;;;;;25835:6:0;;25762:87::o;13713:95::-;13793:7;13786:14;;;;;;;;-1:-1:-1;;13786:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13760:13;;13786:14;;13793:7;;13786:14;;13793:7;13786:14;;;;;;;;;;;;;;;;;;;;;;;;17751:269;17844:4;17861:129;17870:12;:10;:12::i;:::-;17884:7;17893:96;17932:15;17893:96;;;;;;;;;;;;;;;;;:11;:25;17905:12;:10;:12::i;:::-;-1:-1:-1;;;;;17893:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17893:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15113:175::-;15199:4;15216:42;15226:12;:10;:12::i;:::-;15240:9;15251:6;15216:9;:42::i;15351:151::-;-1:-1:-1;;;;;15467:18:0;;;15440:7;15467:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15351:151::o;26716:244::-;25993:12;:10;:12::i;:::-;-1:-1:-1;;;;;25982:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25982:23:0;;25974:68;;;;;-1:-1:-1;;;25974:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25974:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26805:22:0;::::1;26797:73;;;;-1:-1:-1::0;;;26797:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26907:6;::::0;26886:38:::1;::::0;-1:-1:-1;;;;;26886:38:0;;::::1;::::0;26907:6;;::::1;;::::0;26886:38:::1;::::0;;;::::1;26935:6;:17:::0;;-1:-1:-1;;;;;26935:17:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;26935:17:0;;::::1;::::0;;;::::1;::::0;;26716:244::o;6668:179::-;6726:7;6758:5;;;6782:6;;;;6774:46;;;;;-1:-1:-1;;;6774:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6838:1;6668:179;-1:-1:-1;;;6668:179:0:o;22277:92::-;;;;:::o;680:106::-;768:10;680:106;:::o;20898:346::-;-1:-1:-1;;;;;21000:19:0;;20992:68;;;;-1:-1:-1;;;20992:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21079:21:0;;21071:68;;;;-1:-1:-1;;;21071:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21152:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21204:32;;;;;;;;;;;;;;;;;20898:346;;;:::o;18510:539::-;-1:-1:-1;;;;;18616:20:0;;18608:70;;;;-1:-1:-1;;;18608:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18697:23:0;;18689:71;;;;-1:-1:-1;;;18689:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18773:47;18794:6;18802:9;18813:6;18773:20;:47::i;:::-;18853:71;18875:6;18853:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18853:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18833:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18958:20;;;;;;;:32;;18983:6;18958:24;:32::i;:::-;-1:-1:-1;;;;;18935:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19006:35;;;;;;;18935:20;;19006:35;;;;;;;;;;;;;18510:539;;;:::o;9495:166::-;9581:7;9617:12;9609:6;;;;9601:29;;;;-1:-1:-1;;;9601:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9648:5:0;;;9495:166::o;24524:120::-;24068:8;:6;:8::i;:::-;24060:41;;;;;-1:-1:-1;;;24060:41:0;;;;;;;;;;;;-1:-1:-1;;;24060:41:0;;;;;;;;;;;;;;;24583:7:::1;:15:::0;;-1:-1:-1;;24583:15:0::1;::::0;;24614:22:::1;24623:12;:10;:12::i;:::-;24614:22;::::0;;-1:-1:-1;;;;;24614:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;24524:120::o:0;24265:118::-;23791:8;:6;:8::i;:::-;23790:9;23782:38;;;;;-1:-1:-1;;;23782:38:0;;;;;;;;;;;;-1:-1:-1;;;23782:38:0;;;;;;;;;;;;;;;24325:7:::1;:14:::0;;-1:-1:-1;;24325:14:0::1;;;::::0;;24355:20:::1;24362:12;:10;:12::i;27463:199::-:0;23791:8;:6;:8::i;:::-;23790:9;23782:38;;;;;-1:-1:-1;;;23782:38:0;;;;;;;;;;;;-1:-1:-1;;;23782:38:0;;;;;;;;;;;;;;;27610:44:::1;27637:4;27643:2;27647:6;27610:26;:44::i

Swarm Source

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