ETH Price: $2,595.63 (-2.35%)

Token

DOVE ($DOVE)
 

Overview

Max Total Supply

444,777,000,000,000 $DOVE

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 $DOVE

Value
$0.00
0x8d97e79b24e846c955bbf639aee97a0324987e74
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:
DOVE

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
london EvmVersion, MIT license
File 1 of 6 : DOVE.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
    Website: http://Dove.is

    X account: https://x.com/DOVEonETH

    TG: http://t.me/DoveonETH
*/

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";


contract DOVE is IERC20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;
    mapping(address => mapping (address => uint256)) private _allowances;
    mapping(address => bool) public blacklistedUsers;

    uint256 private _totalSupply;
    uint8 private _decimals;
    string private _symbol;
    string private _name;

    address[] public airdropAddress;
    uint256[] public airdropAmount;
    bool public transferApproval = true;

    constructor() {
        _name = "DOVE";
        _symbol = "$DOVE";
        _decimals = 18;
        _totalSupply = 444777000000000000000000000000000;
        _balances[_msgSender()] = _totalSupply;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    /**
    * @dev Returns the erc token owner.
    */
    function getOwner() external view returns (address) {
        return owner();
    }

    /**
    * @dev Returns the token decimals.
    */
    function decimals() external view returns (uint8) {
        return _decimals;
    }

    /**
    * @dev Returns the token symbol.
    */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

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

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

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

    /**
    * @dev See {ERC20-transfer}.
    *
    * Requirements:
    *
    * - `recipient` cannot be the zero address.
    * - the caller must have a balance of at least `amount`.
    */
    function transfer(address recipient, uint256 amount) external override returns (bool) {
        require(!blacklistedUsers[_msgSender()], "You are a blacklisted user");
        require(transferApproval, "Can't transfer DOVE tokens");

        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
    * @dev See {ERC20-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) external override returns (bool) {
        require(!blacklistedUsers[_msgSender()], "You are a blacklisted user");
        require(transferApproval, "Can't transfer DOVE tokens");

        _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 {ERC20-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `spender` cannot be the zero address.
    */
    function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
    * @dev Destroys `amount` tokens and assigns them to `_msgSender()`, reducing
    * the total supply.
    *
    * Requirements
    *
    * - `_msgSender()` must be the token owner
    */
    function burn(uint256 amount) public returns (bool) {
        _burn(_msgSender(), amount);
        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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
    * from the caller's allowance.
    *
    * See {_burn} and {_approve}.
    */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
    
    /**
    * setBlacklisted
    * @dev function that sets blacklisted address
    **/
    function setBlacklisted(address _addr, bool _value) external onlyOwner {
        require(blacklistedUsers[_addr] != _value, "Not changed");
        blacklistedUsers[_addr] = _value;
    }

    /**
    * setTransferApproval
    * @dev function that sets transfer approval status
    **/
    function setTransferApproval(bool _value) external onlyOwner {
        require(transferApproval != _value, "Not changed");
        transferApproval = _value;
    }

    /**
    * setAirdropAddress
    * @dev function that sets airdrop address array
    **/
    function setAirdropAddress(address[] memory _airdropAddress) external onlyOwner {
        airdropAddress = _airdropAddress;
    }

    /**
    * setAirdropAmount
    * @dev function that sets airdrop amount array
    **/
    function setAirdropAmount(uint256[] memory _airdropAmount) external onlyOwner {
        airdropAmount = _airdropAmount;
    }

    /**
    * airdrop
    * @dev function that airdrops DOVE tokens to airdrop addresses
    **/
    function airdrop(address tokenAddress) external onlyOwner {
        for(uint256 i = 0; i < airdropAddress.length ; i ++) {
            IERC20(tokenAddress).transfer(airdropAddress[i], airdropAmount[i]);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 3 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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) {
        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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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":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":"tokenAddress","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airdropAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airdropAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedUsers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddress","type":"address[]"}],"name":"setAirdropAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_airdropAmount","type":"uint256[]"}],"name":"setAirdropAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setTransferApproval","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":[],"name":"transferApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

6080604052600a805460ff191660011790553480156200001e57600080fd5b506200002a336200011f565b604080518082019091526004815263444f564560e01b602082015260079062000054908262000214565b5060408051808201909152600581526424444f564560d81b602082015260069062000080908262000214565b506005805460ff191660121790556d15eddfff4f3b42a1db2328000000600481905560016000620000ae3390565b6001600160a01b03168152602081019190915260400160002055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200011191815260200190565b60405180910390a3620002e0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019a57607f821691505b602082108103620001bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020f57600081815260208120601f850160051c81016020861015620001ea5750805b601f850160051c820191505b818110156200020b57828155600101620001f6565b5050505b505050565b81516001600160401b038111156200023057620002306200016f565b620002488162000241845462000185565b84620001c1565b602080601f831160018114620002805760008415620002675750858301515b600019600386901b1c1916600185901b1785556200020b565b600085815260208120601f198616915b82811015620002b15788860151825594840194600190910190840162000290565b5085821015620002d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114e380620002f06000396000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c806378e3f3f2116100ee578063a4d5a3a511610097578063d01dd6d211610071578063d01dd6d214610375578063d186ab6a14610388578063dd62ed3e14610395578063f2fde38b146103ce57600080fd5b8063a4d5a3a51461033c578063a9059cbb1461034f578063b6d45b901461036257600080fd5b806395d89b41116100c857806395d89b411461030e5780639d181d4414610316578063a457c2d71461032957600080fd5b806378e3f3f2146102c5578063893d20e8146102d85780638da5cb5b146102fd57600080fd5b8063313ce56711610150578063668ba8c31161012a578063668ba8c31461028157806370a0823114610294578063715018a6146102bd57600080fd5b8063313ce56714610246578063395093511461025b57806342966c681461026e57600080fd5b806321860a051161018157806321860a05146101fb57806322c0aec71461021057806323b872dd1461023357600080fd5b806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101e9575b600080fd5b6101b06103e1565b6040516101bd919061102f565b60405180910390f35b6101d96101d4366004611099565b610473565b60405190151581526020016101bd565b6004545b6040519081526020016101bd565b61020e6102093660046110c3565b61048a565b005b6101d961021e3660046110c3565b60036020526000908152604090205460ff1681565b6101d96102413660046110de565b610597565b60055460405160ff90911681526020016101bd565b6101d9610269366004611099565b6106b5565b6101d961027c36600461111a565b6106eb565b61020e61028f36600461119e565b6106ff565b6101ed6102a23660046110c3565b6001600160a01b031660009081526001602052604090205490565b61020e61071a565b61020e6102d336600461123b565b61072e565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101bd565b6000546001600160a01b03166102e5565b6101b0610749565b61020e6103243660046112cf565b610758565b6101d9610337366004611099565b6107bb565b6101ed61034a36600461111a565b61080a565b6101d961035d366004611099565b61082b565b6102e561037036600461111a565b6108e8565b61020e6103833660046112ec565b610912565b600a546101d99060ff1681565b6101ed6103a3366004611323565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6103dc3660046110c3565b6109a3565b6060600780546103f090611356565b80601f016020809104026020016040519081016040528092919081815260200182805461041c90611356565b80156104695780601f1061043e57610100808354040283529160200191610469565b820191906000526020600020905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b6000610480338484610a33565b5060015b92915050565b610492610b8c565b60005b60085481101561059357816001600160a01b031663a9059cbb600883815481106104c1576104c1611390565b600091825260209091200154600980546001600160a01b0390921691859081106104ed576104ed611390565b6000918252602090912001546040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561055c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058091906113a6565b508061058b816113d9565b915050610495565b5050565b3360009081526003602052604081205460ff16156105fc5760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206120626c61636b6c6973746564207573657200000000000060448201526064015b60405180910390fd5b600a5460ff1661064e5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e7366657220444f564520746f6b656e7300000000000060448201526064016105f3565b610659848484610be6565b6106ab84336106a685604051806060016040528060288152602001611461602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610d9e565b610a33565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104809185906106a69086610dca565b60006106f73383610ddd565b506001919050565b610707610b8c565b8051610593906008906020840190610f6d565b610722610b8c565b61072c6000610f04565b565b610736610b8c565b8051610593906009906020840190610fdf565b6060600680546103f090611356565b610760610b8c565b600a5481151560ff9091161515036107a85760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105f3565b600a805460ff1916911515919091179055565b600061048033846106a685604051806060016040528060258152602001611489602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610d9e565b6009818154811061081a57600080fd5b600091825260209091200154905081565b3360009081526003602052604081205460ff161561088b5760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206120626c61636b6c6973746564207573657200000000000060448201526064016105f3565b600a5460ff166108dd5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e7366657220444f564520746f6b656e7300000000000060448201526064016105f3565b610480338484610be6565b600881815481106108f857600080fd5b6000918252602090912001546001600160a01b0316905081565b61091a610b8c565b6001600160a01b03821660009081526003602052604090205481151560ff9091161515036109785760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105f3565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b6109ab610b8c565b6001600160a01b038116610a275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105f3565b610a3081610f04565b50565b6001600160a01b038316610aae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105f3565b6001600160a01b038216610b2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105f3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000546001600160a01b0316331461072c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f3565b6001600160a01b038316610c625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105f3565b6001600160a01b038216610cde5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105f3565b610d1b8160405180606001604052806026815260200161143b602691396001600160a01b0386166000908152600160205260409020549190610d9e565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610d4a9082610dca565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b7f9085815260200190565b60008184841115610dc25760405162461bcd60e51b81526004016105f3919061102f565b505050900390565b6000610dd682846113f2565b9392505050565b6001600160a01b038216610e595760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105f3565b610e9681604051806060016040528060228152602001611419602291396001600160a01b0385166000908152600160205260409020549190610d9e565b6001600160a01b038316600090815260016020526040902055600454610ebc9082610f61565b6004556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610dd68284611405565b828054828255906000526020600020908101928215610fcf579160200282015b82811115610fcf578251825473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909116178255602090920191600190910190610f8d565b50610fdb92915061101a565b5090565b828054828255906000526020600020908101928215610fcf579160200282015b82811115610fcf578251825591602001919060010190610fff565b5b80821115610fdb576000815560010161101b565b600060208083528351808285015260005b8181101561105c57858101830151858201604001528201611040565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461109457600080fd5b919050565b600080604083850312156110ac57600080fd5b6110b58361107d565b946020939093013593505050565b6000602082840312156110d557600080fd5b610dd68261107d565b6000806000606084860312156110f357600080fd5b6110fc8461107d565b925061110a6020850161107d565b9150604084013590509250925092565b60006020828403121561112c57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561117257611172611133565b604052919050565b600067ffffffffffffffff82111561119457611194611133565b5060051b60200190565b600060208083850312156111b157600080fd5b823567ffffffffffffffff8111156111c857600080fd5b8301601f810185136111d957600080fd5b80356111ec6111e78261117a565b611149565b81815260059190911b8201830190838101908783111561120b57600080fd5b928401925b82841015611230576112218461107d565b82529284019290840190611210565b979650505050505050565b6000602080838503121561124e57600080fd5b823567ffffffffffffffff81111561126557600080fd5b8301601f8101851361127657600080fd5b80356112846111e78261117a565b81815260059190911b820183019083810190878311156112a357600080fd5b928401925b82841015611230578335825292840192908401906112a8565b8015158114610a3057600080fd5b6000602082840312156112e157600080fd5b8135610dd6816112c1565b600080604083850312156112ff57600080fd5b6113088361107d565b91506020830135611318816112c1565b809150509250929050565b6000806040838503121561133657600080fd5b61133f8361107d565b915061134d6020840161107d565b90509250929050565b600181811c9082168061136a57607f821691505b60208210810361138a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156113b857600080fd5b8151610dd6816112c1565b634e487b7160e01b600052601160045260246000fd5b6000600182016113eb576113eb6113c3565b5060010190565b80820180821115610484576104846113c3565b81810381811115610484576104846113c356fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122082146bf94b673e5311bdf98a705da03028b22c261b9083c6d05758b078a984a664736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a35760003560e01c806378e3f3f2116100ee578063a4d5a3a511610097578063d01dd6d211610071578063d01dd6d214610375578063d186ab6a14610388578063dd62ed3e14610395578063f2fde38b146103ce57600080fd5b8063a4d5a3a51461033c578063a9059cbb1461034f578063b6d45b901461036257600080fd5b806395d89b41116100c857806395d89b411461030e5780639d181d4414610316578063a457c2d71461032957600080fd5b806378e3f3f2146102c5578063893d20e8146102d85780638da5cb5b146102fd57600080fd5b8063313ce56711610150578063668ba8c31161012a578063668ba8c31461028157806370a0823114610294578063715018a6146102bd57600080fd5b8063313ce56714610246578063395093511461025b57806342966c681461026e57600080fd5b806321860a051161018157806321860a05146101fb57806322c0aec71461021057806323b872dd1461023357600080fd5b806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101e9575b600080fd5b6101b06103e1565b6040516101bd919061102f565b60405180910390f35b6101d96101d4366004611099565b610473565b60405190151581526020016101bd565b6004545b6040519081526020016101bd565b61020e6102093660046110c3565b61048a565b005b6101d961021e3660046110c3565b60036020526000908152604090205460ff1681565b6101d96102413660046110de565b610597565b60055460405160ff90911681526020016101bd565b6101d9610269366004611099565b6106b5565b6101d961027c36600461111a565b6106eb565b61020e61028f36600461119e565b6106ff565b6101ed6102a23660046110c3565b6001600160a01b031660009081526001602052604090205490565b61020e61071a565b61020e6102d336600461123b565b61072e565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101bd565b6000546001600160a01b03166102e5565b6101b0610749565b61020e6103243660046112cf565b610758565b6101d9610337366004611099565b6107bb565b6101ed61034a36600461111a565b61080a565b6101d961035d366004611099565b61082b565b6102e561037036600461111a565b6108e8565b61020e6103833660046112ec565b610912565b600a546101d99060ff1681565b6101ed6103a3366004611323565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6103dc3660046110c3565b6109a3565b6060600780546103f090611356565b80601f016020809104026020016040519081016040528092919081815260200182805461041c90611356565b80156104695780601f1061043e57610100808354040283529160200191610469565b820191906000526020600020905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b6000610480338484610a33565b5060015b92915050565b610492610b8c565b60005b60085481101561059357816001600160a01b031663a9059cbb600883815481106104c1576104c1611390565b600091825260209091200154600980546001600160a01b0390921691859081106104ed576104ed611390565b6000918252602090912001546040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561055c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058091906113a6565b508061058b816113d9565b915050610495565b5050565b3360009081526003602052604081205460ff16156105fc5760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206120626c61636b6c6973746564207573657200000000000060448201526064015b60405180910390fd5b600a5460ff1661064e5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e7366657220444f564520746f6b656e7300000000000060448201526064016105f3565b610659848484610be6565b6106ab84336106a685604051806060016040528060288152602001611461602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610d9e565b610a33565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104809185906106a69086610dca565b60006106f73383610ddd565b506001919050565b610707610b8c565b8051610593906008906020840190610f6d565b610722610b8c565b61072c6000610f04565b565b610736610b8c565b8051610593906009906020840190610fdf565b6060600680546103f090611356565b610760610b8c565b600a5481151560ff9091161515036107a85760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105f3565b600a805460ff1916911515919091179055565b600061048033846106a685604051806060016040528060258152602001611489602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610d9e565b6009818154811061081a57600080fd5b600091825260209091200154905081565b3360009081526003602052604081205460ff161561088b5760405162461bcd60e51b815260206004820152601a60248201527f596f7520617265206120626c61636b6c6973746564207573657200000000000060448201526064016105f3565b600a5460ff166108dd5760405162461bcd60e51b815260206004820152601a60248201527f43616e2774207472616e7366657220444f564520746f6b656e7300000000000060448201526064016105f3565b610480338484610be6565b600881815481106108f857600080fd5b6000918252602090912001546001600160a01b0316905081565b61091a610b8c565b6001600160a01b03821660009081526003602052604090205481151560ff9091161515036109785760405162461bcd60e51b815260206004820152600b60248201526a139bdd0818da185b99d95960aa1b60448201526064016105f3565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b6109ab610b8c565b6001600160a01b038116610a275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105f3565b610a3081610f04565b50565b6001600160a01b038316610aae5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105f3565b6001600160a01b038216610b2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105f3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000546001600160a01b0316331461072c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f3565b6001600160a01b038316610c625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105f3565b6001600160a01b038216610cde5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105f3565b610d1b8160405180606001604052806026815260200161143b602691396001600160a01b0386166000908152600160205260409020549190610d9e565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610d4a9082610dca565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b7f9085815260200190565b60008184841115610dc25760405162461bcd60e51b81526004016105f3919061102f565b505050900390565b6000610dd682846113f2565b9392505050565b6001600160a01b038216610e595760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105f3565b610e9681604051806060016040528060228152602001611419602291396001600160a01b0385166000908152600160205260409020549190610d9e565b6001600160a01b038316600090815260016020526040902055600454610ebc9082610f61565b6004556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610dd68284611405565b828054828255906000526020600020908101928215610fcf579160200282015b82811115610fcf578251825473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03909116178255602090920191600190910190610f8d565b50610fdb92915061101a565b5090565b828054828255906000526020600020908101928215610fcf579160200282015b82811115610fcf578251825591602001919060010190610fff565b5b80821115610fdb576000815560010161101b565b600060208083528351808285015260005b8181101561105c57858101830151858201604001528201611040565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461109457600080fd5b919050565b600080604083850312156110ac57600080fd5b6110b58361107d565b946020939093013593505050565b6000602082840312156110d557600080fd5b610dd68261107d565b6000806000606084860312156110f357600080fd5b6110fc8461107d565b925061110a6020850161107d565b9150604084013590509250925092565b60006020828403121561112c57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561117257611172611133565b604052919050565b600067ffffffffffffffff82111561119457611194611133565b5060051b60200190565b600060208083850312156111b157600080fd5b823567ffffffffffffffff8111156111c857600080fd5b8301601f810185136111d957600080fd5b80356111ec6111e78261117a565b611149565b81815260059190911b8201830190838101908783111561120b57600080fd5b928401925b82841015611230576112218461107d565b82529284019290840190611210565b979650505050505050565b6000602080838503121561124e57600080fd5b823567ffffffffffffffff81111561126557600080fd5b8301601f8101851361127657600080fd5b80356112846111e78261117a565b81815260059190911b820183019083810190878311156112a357600080fd5b928401925b82841015611230578335825292840192908401906112a8565b8015158114610a3057600080fd5b6000602082840312156112e157600080fd5b8135610dd6816112c1565b600080604083850312156112ff57600080fd5b6113088361107d565b91506020830135611318816112c1565b809150509250929050565b6000806040838503121561133657600080fd5b61133f8361107d565b915061134d6020840161107d565b90509250929050565b600181811c9082168061136a57607f821691505b60208210810361138a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156113b857600080fd5b8151610dd6816112c1565b634e487b7160e01b600052601160045260246000fd5b6000600182016113eb576113eb6113c3565b5060010190565b80820180821115610484576104846113c3565b81810381811115610484576104846113c356fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122082146bf94b673e5311bdf98a705da03028b22c261b9083c6d05758b078a984a664736f6c63430008100033

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.