ETH Price: $2,640.32 (-2.84%)

Token

AirDrop Protocol (DROP)
 

Overview

Max Total Supply

1,000,000,000 DROP

Holders

39

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AIR

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : AIR.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";


contract AIR is IERC20, Ownable, IERC20Metadata {
    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;

    address public Minter;
    uint256 public TaxPercentage;

    constructor(string memory name_, string memory symbol_, address _minter, uint256 _taxPercentage, uint256 _supply) {
        _name = name_;
        _symbol = symbol_;
        TaxPercentage = _taxPercentage;
        Minter = _minter;
        _totalSupply = _supply * 10 ** uint256(decimals());
        _balances[_msgSender()] = totalSupply();
        emit Transfer(address(0), _msgSender(), totalSupply());
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function changeAdmin(address _minter) external onlyOwner
    {
      require(_minter != address(0), "changeAdmin: Not good.");
      Minter = _minter;
    }

    function changeTaxPercentage(uint256 _taxPercentage) external onlyOwner
    {
      require(_taxPercentage <= 10000, "changeTaxPercentage: Needs to be lower than 10000");
      TaxPercentage = _taxPercentage;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(from, to, amount);

        uint256 currentAllowance = _allowances[from][_msgSender()];
        require(
            currentAllowance >= amount,
            "APTOKEN:transferFrom:ALLOWANCE_EXCEEDED: Transfer amount exceeds allowance."
        );
        unchecked {
            _approve(from, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);

        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "APTOKEN:decreaseAllowance:ALLOWANCE_UNDERFLOW: Subtraction results in sub-zero allowance."
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "APTOKEN:_transfer:FROM_ZERO: Cannot transfer from the zero address.");
        require(to != address(0), "APTOKEN:_transfer:TO_ZERO: Cannot transfer to the zero address.");
        require(amount > 0, "APTOKEN:_transfer:ZERO_AMOUNT: Transfer amount must be greater than zero.");
        require(amount <= _balances[from], "APTOKEN:_transfer:INSUFFICIENT_BALANCE: Transfer amount exceeds balance.");

        uint256 tax = amount.mul(TaxPercentage).div(10000);
        uint256 taxedAmount = amount.sub(tax);

        _beforeTokenTransfer(from, to, amount);

        _balances[from] -= amount;
        _balances[to] += taxedAmount;
        // _moveDelegates(delegates[from], delegates[to], uint224(taxedAmount));

        if (tax > 0) {
            _balances[Minter] += tax;

            // _moveDelegates(delegates[from], delegates[address(treasuryHandler)], uint224(tax));

            emit Transfer(from, Minter, tax);
        }

        // treasuryHandler.afterTransferHandler(from, to, amount);
        _afterTokenTransfer(from, to, amount);

        emit Transfer(from, to, taxedAmount);
    }


    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    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);
    }

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}


    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 2 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;
        }
    }
}

File 3 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 4 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 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 6 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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_minter","type":"address"},{"internalType":"uint256","name":"_taxPercentage","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TaxPercentage","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxPercentage","type":"uint256"}],"name":"changeTaxPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002cc238038062002cc28339818101604052810190620000379190620004fc565b620000576200004b620001ea60201b60201c565b620001f260201b60201c565b846004908162000068919062000803565b5083600590816200007a919062000803565b508160078190555082600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000d3620002b660201b60201c565b60ff16600a620000e4919062000a6d565b81620000f1919062000abe565b60038190555062000107620002bf60201b60201c565b600160006200011b620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000169620001ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001c8620002bf60201b60201c565b604051620001d7919062000b1a565b60405180910390a3505050505062000b37565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6000600354905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200033282620002e7565b810181811067ffffffffffffffff82111715620003545762000353620002f8565b5b80604052505050565b600062000369620002c9565b905062000377828262000327565b919050565b600067ffffffffffffffff8211156200039a5762000399620002f8565b5b620003a582620002e7565b9050602081019050919050565b60005b83811015620003d2578082015181840152602081019050620003b5565b60008484015250505050565b6000620003f5620003ef846200037c565b6200035d565b905082815260208101848484011115620004145762000413620002e2565b5b62000421848285620003b2565b509392505050565b600082601f830112620004415762000440620002dd565b5b815162000453848260208601620003de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000489826200045c565b9050919050565b6200049b816200047c565b8114620004a757600080fd5b50565b600081519050620004bb8162000490565b92915050565b6000819050919050565b620004d681620004c1565b8114620004e257600080fd5b50565b600081519050620004f681620004cb565b92915050565b600080600080600060a086880312156200051b576200051a620002d3565b5b600086015167ffffffffffffffff8111156200053c576200053b620002d8565b5b6200054a8882890162000429565b955050602086015167ffffffffffffffff8111156200056e576200056d620002d8565b5b6200057c8882890162000429565b94505060406200058f88828901620004aa565b9350506060620005a288828901620004e5565b9250506080620005b588828901620004e5565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061557607f821691505b6020821081036200062b576200062a620005cd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000656565b620006a1868362000656565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006e4620006de620006d884620004c1565b620006b9565b620004c1565b9050919050565b6000819050919050565b6200070083620006c3565b620007186200070f82620006eb565b84845462000663565b825550505050565b600090565b6200072f62000720565b6200073c818484620006f5565b505050565b5b8181101562000764576200075860008262000725565b60018101905062000742565b5050565b601f821115620007b3576200077d8162000631565b620007888462000646565b8101602085101562000798578190505b620007b0620007a78562000646565b83018262000741565b50505b505050565b600082821c905092915050565b6000620007d860001984600802620007b8565b1980831691505092915050565b6000620007f38383620007c5565b9150826002028217905092915050565b6200080e82620005c2565b67ffffffffffffffff8111156200082a5762000829620002f8565b5b620008368254620005fc565b6200084382828562000768565b600060209050601f8311600181146200087b576000841562000866578287015190505b620008728582620007e5565b865550620008e2565b601f1984166200088b8662000631565b60005b82811015620008b5578489015182556001820191506020850194506020810190506200088e565b86831015620008d55784890151620008d1601f891682620007c5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009785780860481111562000950576200094f620008ea565b5b6001851615620009605780820291505b8081029050620009708562000919565b945062000930565b94509492505050565b60008262000993576001905062000a66565b81620009a3576000905062000a66565b8160018114620009bc5760028114620009c757620009fd565b600191505062000a66565b60ff841115620009dc57620009db620008ea565b5b8360020a915084821115620009f657620009f5620008ea565b5b5062000a66565b5060208310610133831016604e8410600b841016171562000a375782820a90508381111562000a315762000a30620008ea565b5b62000a66565b62000a46848484600162000926565b9250905081840481111562000a605762000a5f620008ea565b5b81810290505b9392505050565b600062000a7a82620004c1565b915062000a8783620004c1565b925062000ab67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000981565b905092915050565b600062000acb82620004c1565b915062000ad883620004c1565b925082820262000ae881620004c1565b9150828204841483151762000b025762000b01620008ea565b5b5092915050565b62000b1481620004c1565b82525050565b600060208201905062000b31600083018462000b09565b92915050565b61217b8062000b476000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f8578063a457c2d714610316578063a9059cbb14610346578063dd62ed3e14610376578063f2fde38b146103a657610121565b806370a0823114610268578063715018a61461029857806386e670cb146102a25780638da5cb5b146102be5780638f283970146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c6814610210578063432ecb0d1461022c5780634de7a8b81461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c2565b60405161013b9190611495565b60405180910390f35b61015e60048036038101906101599190611550565b610454565b60405161016b91906115ab565b60405180910390f35b61017c610477565b60405161018991906115d5565b60405180910390f35b6101ac60048036038101906101a791906115f0565b610481565b6040516101b991906115ab565b60405180910390f35b6101ca610579565b6040516101d7919061165f565b60405180910390f35b6101fa60048036038101906101f59190611550565b610582565b60405161020791906115ab565b60405180910390f35b61022a6004803603810190610225919061167a565b61062e565b005b610234610642565b60405161024191906115d5565b60405180910390f35b610252610648565b60405161025f91906116b6565b60405180910390f35b610282600480360381019061027d91906116d1565b61066e565b60405161028f91906115d5565b60405180910390f35b6102a06106b7565b005b6102bc60048036038101906102b7919061167a565b6106cb565b005b6102c6610722565b6040516102d391906116b6565b60405180910390f35b6102f660048036038101906102f191906116d1565b61074b565b005b610300610806565b60405161030d9190611495565b60405180910390f35b610330600480360381019061032b9190611550565b610898565b60405161033d91906115ab565b60405180910390f35b610360600480360381019061035b9190611550565b610983565b60405161036d91906115ab565b60405180910390f35b610390600480360381019061038b91906116fe565b6109a6565b60405161039d91906115d5565b60405180910390f35b6103c060048036038101906103bb91906116d1565b610a2d565b005b6060600480546103d19061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546103fd9061176d565b801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b5050505050905090565b60008061045f610ab0565b905061046c818585610ab8565b600191505092915050565b6000600354905090565b600061048e848484610c81565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d9610ab0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055090611836565b60405180910390fd5b61056d85610565610ab0565b858403610ab8565b60019150509392505050565b60006012905090565b600061062461058f610ab0565b84846002600061059d610ab0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061f9190611885565b610ab8565b6001905092915050565b61063f610639610ab0565b8261109f565b50565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106bf611277565b6106c960006112f5565b565b6106d3611277565b612710811115610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f9061192b565b60405180910390fd5b8060078190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610753611277565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b990611997565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600580546108159061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546108419061176d565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b600080600260006108a7610ab0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90611a4f565b60405180910390fd5b61097861096f610ab0565b85858403610ab8565b600191505092915050565b60008061098e610ab0565b905061099b818585610c81565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a35611277565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90611ae1565b60405180910390fd5b610aad816112f5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90611b73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611c05565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c7491906115d5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790611cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690611d4f565b60405180910390fd5b60008111610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990611e07565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90611ebf565b60405180910390fd5b6000610e4f612710610e41600754856113b990919063ffffffff16565b6113cf90919063ffffffff16565b90506000610e6682846113e590919063ffffffff16565b9050610e738585856113fb565b82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ec29190611edf565b9250508190555080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f189190611885565b925050819055506000821115611028578160016000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f999190611885565b92505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161101f91906115d5565b60405180910390a35b611033858585611400565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109091906115d5565b60405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590611f85565b60405180910390fd5b61111a826000836113fb565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612017565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111f99190611edf565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125e91906115d5565b60405180910390a361127283600084611400565b505050565b61127f610ab0565b73ffffffffffffffffffffffffffffffffffffffff1661129d610722565b73ffffffffffffffffffffffffffffffffffffffff16146112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612083565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836113c791906120a3565b905092915050565b600081836113dd9190612114565b905092915050565b600081836113f39190611edf565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561143f578082015181840152602081019050611424565b60008484015250505050565b6000601f19601f8301169050919050565b600061146782611405565b6114718185611410565b9350611481818560208601611421565b61148a8161144b565b840191505092915050565b600060208201905081810360008301526114af818461145c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114e7826114bc565b9050919050565b6114f7816114dc565b811461150257600080fd5b50565b600081359050611514816114ee565b92915050565b6000819050919050565b61152d8161151a565b811461153857600080fd5b50565b60008135905061154a81611524565b92915050565b60008060408385031215611567576115666114b7565b5b600061157585828601611505565b92505060206115868582860161153b565b9150509250929050565b60008115159050919050565b6115a581611590565b82525050565b60006020820190506115c0600083018461159c565b92915050565b6115cf8161151a565b82525050565b60006020820190506115ea60008301846115c6565b92915050565b600080600060608486031215611609576116086114b7565b5b600061161786828701611505565b935050602061162886828701611505565b92505060406116398682870161153b565b9150509250925092565b600060ff82169050919050565b61165981611643565b82525050565b60006020820190506116746000830184611650565b92915050565b6000602082840312156116905761168f6114b7565b5b600061169e8482850161153b565b91505092915050565b6116b0816114dc565b82525050565b60006020820190506116cb60008301846116a7565b92915050565b6000602082840312156116e7576116e66114b7565b5b60006116f584828501611505565b91505092915050565b60008060408385031215611715576117146114b7565b5b600061172385828601611505565b925050602061173485828601611505565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061178557607f821691505b6020821081036117985761179761173e565b5b50919050565b7f4150544f4b454e3a7472616e7366657246726f6d3a414c4c4f57414e43455f4560008201527f584345454445443a205472616e7366657220616d6f756e74206578636565647360208201527f20616c6c6f77616e63652e000000000000000000000000000000000000000000604082015250565b6000611820604b83611410565b915061182b8261179e565b606082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118908261151a565b915061189b8361151a565b92508282019050808211156118b3576118b2611856565b5b92915050565b7f6368616e676554617850657263656e746167653a204e6565647320746f20626560008201527f206c6f776572207468616e203130303030000000000000000000000000000000602082015250565b6000611915603183611410565b9150611920826118b9565b604082019050919050565b6000602082019050818103600083015261194481611908565b9050919050565b7f6368616e676541646d696e3a204e6f7420676f6f642e00000000000000000000600082015250565b6000611981601683611410565b915061198c8261194b565b602082019050919050565b600060208201905081810360008301526119b081611974565b9050919050565b7f4150544f4b454e3a6465637265617365416c6c6f77616e63653a414c4c4f574160008201527f4e43455f554e444552464c4f573a205375627472616374696f6e20726573756c60208201527f747320696e207375622d7a65726f20616c6c6f77616e63652e00000000000000604082015250565b6000611a39605983611410565b9150611a44826119b7565b606082019050919050565b60006020820190508181036000830152611a6881611a2c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611acb602683611410565b9150611ad682611a6f565b604082019050919050565b60006020820190508181036000830152611afa81611abe565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b5d602483611410565b9150611b6882611b01565b604082019050919050565b60006020820190508181036000830152611b8c81611b50565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bef602283611410565b9150611bfa82611b93565b604082019050919050565b60006020820190508181036000830152611c1e81611be2565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a46524f4d5f5a45524f3a2043616e60008201527f6e6f74207472616e736665722066726f6d20746865207a65726f20616464726560208201527f73732e0000000000000000000000000000000000000000000000000000000000604082015250565b6000611ca7604383611410565b9150611cb282611c25565b606082019050919050565b60006020820190508181036000830152611cd681611c9a565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a544f5f5a45524f3a2043616e6e6f60008201527f74207472616e7366657220746f20746865207a65726f20616464726573732e00602082015250565b6000611d39603f83611410565b9150611d4482611cdd565b604082019050919050565b60006020820190508181036000830152611d6881611d2c565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a5a45524f5f414d4f554e543a205460008201527f72616e7366657220616d6f756e74206d7573742062652067726561746572207460208201527f68616e207a65726f2e0000000000000000000000000000000000000000000000604082015250565b6000611df1604983611410565b9150611dfc82611d6f565b606082019050919050565b60006020820190508181036000830152611e2081611de4565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a494e53554646494349454e545f4260008201527f414c414e43453a205472616e7366657220616d6f756e7420657863656564732060208201527f62616c616e63652e000000000000000000000000000000000000000000000000604082015250565b6000611ea9604883611410565b9150611eb482611e27565b606082019050919050565b60006020820190508181036000830152611ed881611e9c565b9050919050565b6000611eea8261151a565b9150611ef58361151a565b9250828203905081811115611f0d57611f0c611856565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6f602183611410565b9150611f7a82611f13565b604082019050919050565b60006020820190508181036000830152611f9e81611f62565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612001602283611410565b915061200c82611fa5565b604082019050919050565b6000602082019050818103600083015261203081611ff4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061206d602083611410565b915061207882612037565b602082019050919050565b6000602082019050818103600083015261209c81612060565b9050919050565b60006120ae8261151a565b91506120b98361151a565b92508282026120c78161151a565b915082820484148315176120de576120dd611856565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061211f8261151a565b915061212a8361151a565b92508261213a576121396120e5565b5b82820490509291505056fea2646970667358221220a834c6a588a97917059485a5e68c385240ad26190ec5c41c0e75b693a8cf071164736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000b6efcfd512073adad37c2ddfc9a8363251f8e36f0000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000001041697244726f702050726f746f636f6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444524f5000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f8578063a457c2d714610316578063a9059cbb14610346578063dd62ed3e14610376578063f2fde38b146103a657610121565b806370a0823114610268578063715018a61461029857806386e670cb146102a25780638da5cb5b146102be5780638f283970146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c6814610210578063432ecb0d1461022c5780634de7a8b81461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c2565b60405161013b9190611495565b60405180910390f35b61015e60048036038101906101599190611550565b610454565b60405161016b91906115ab565b60405180910390f35b61017c610477565b60405161018991906115d5565b60405180910390f35b6101ac60048036038101906101a791906115f0565b610481565b6040516101b991906115ab565b60405180910390f35b6101ca610579565b6040516101d7919061165f565b60405180910390f35b6101fa60048036038101906101f59190611550565b610582565b60405161020791906115ab565b60405180910390f35b61022a6004803603810190610225919061167a565b61062e565b005b610234610642565b60405161024191906115d5565b60405180910390f35b610252610648565b60405161025f91906116b6565b60405180910390f35b610282600480360381019061027d91906116d1565b61066e565b60405161028f91906115d5565b60405180910390f35b6102a06106b7565b005b6102bc60048036038101906102b7919061167a565b6106cb565b005b6102c6610722565b6040516102d391906116b6565b60405180910390f35b6102f660048036038101906102f191906116d1565b61074b565b005b610300610806565b60405161030d9190611495565b60405180910390f35b610330600480360381019061032b9190611550565b610898565b60405161033d91906115ab565b60405180910390f35b610360600480360381019061035b9190611550565b610983565b60405161036d91906115ab565b60405180910390f35b610390600480360381019061038b91906116fe565b6109a6565b60405161039d91906115d5565b60405180910390f35b6103c060048036038101906103bb91906116d1565b610a2d565b005b6060600480546103d19061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546103fd9061176d565b801561044a5780601f1061041f5761010080835404028352916020019161044a565b820191906000526020600020905b81548152906001019060200180831161042d57829003601f168201915b5050505050905090565b60008061045f610ab0565b905061046c818585610ab8565b600191505092915050565b6000600354905090565b600061048e848484610c81565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d9610ab0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055090611836565b60405180910390fd5b61056d85610565610ab0565b858403610ab8565b60019150509392505050565b60006012905090565b600061062461058f610ab0565b84846002600061059d610ab0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061f9190611885565b610ab8565b6001905092915050565b61063f610639610ab0565b8261109f565b50565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106bf611277565b6106c960006112f5565b565b6106d3611277565b612710811115610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f9061192b565b60405180910390fd5b8060078190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610753611277565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b990611997565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600580546108159061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546108419061176d565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b600080600260006108a7610ab0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90611a4f565b60405180910390fd5b61097861096f610ab0565b85858403610ab8565b600191505092915050565b60008061098e610ab0565b905061099b818585610c81565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a35611277565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b90611ae1565b60405180910390fd5b610aad816112f5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90611b73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d90611c05565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c7491906115d5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790611cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690611d4f565b60405180910390fd5b60008111610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990611e07565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90611ebf565b60405180910390fd5b6000610e4f612710610e41600754856113b990919063ffffffff16565b6113cf90919063ffffffff16565b90506000610e6682846113e590919063ffffffff16565b9050610e738585856113fb565b82600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ec29190611edf565b9250508190555080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f189190611885565b925050819055506000821115611028578160016000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f999190611885565b92505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161101f91906115d5565b60405180910390a35b611033858585611400565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161109091906115d5565b60405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590611f85565b60405180910390fd5b61111a826000836113fb565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612017565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111f99190611edf565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125e91906115d5565b60405180910390a361127283600084611400565b505050565b61127f610ab0565b73ffffffffffffffffffffffffffffffffffffffff1661129d610722565b73ffffffffffffffffffffffffffffffffffffffff16146112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612083565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836113c791906120a3565b905092915050565b600081836113dd9190612114565b905092915050565b600081836113f39190611edf565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561143f578082015181840152602081019050611424565b60008484015250505050565b6000601f19601f8301169050919050565b600061146782611405565b6114718185611410565b9350611481818560208601611421565b61148a8161144b565b840191505092915050565b600060208201905081810360008301526114af818461145c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114e7826114bc565b9050919050565b6114f7816114dc565b811461150257600080fd5b50565b600081359050611514816114ee565b92915050565b6000819050919050565b61152d8161151a565b811461153857600080fd5b50565b60008135905061154a81611524565b92915050565b60008060408385031215611567576115666114b7565b5b600061157585828601611505565b92505060206115868582860161153b565b9150509250929050565b60008115159050919050565b6115a581611590565b82525050565b60006020820190506115c0600083018461159c565b92915050565b6115cf8161151a565b82525050565b60006020820190506115ea60008301846115c6565b92915050565b600080600060608486031215611609576116086114b7565b5b600061161786828701611505565b935050602061162886828701611505565b92505060406116398682870161153b565b9150509250925092565b600060ff82169050919050565b61165981611643565b82525050565b60006020820190506116746000830184611650565b92915050565b6000602082840312156116905761168f6114b7565b5b600061169e8482850161153b565b91505092915050565b6116b0816114dc565b82525050565b60006020820190506116cb60008301846116a7565b92915050565b6000602082840312156116e7576116e66114b7565b5b60006116f584828501611505565b91505092915050565b60008060408385031215611715576117146114b7565b5b600061172385828601611505565b925050602061173485828601611505565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061178557607f821691505b6020821081036117985761179761173e565b5b50919050565b7f4150544f4b454e3a7472616e7366657246726f6d3a414c4c4f57414e43455f4560008201527f584345454445443a205472616e7366657220616d6f756e74206578636565647360208201527f20616c6c6f77616e63652e000000000000000000000000000000000000000000604082015250565b6000611820604b83611410565b915061182b8261179e565b606082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118908261151a565b915061189b8361151a565b92508282019050808211156118b3576118b2611856565b5b92915050565b7f6368616e676554617850657263656e746167653a204e6565647320746f20626560008201527f206c6f776572207468616e203130303030000000000000000000000000000000602082015250565b6000611915603183611410565b9150611920826118b9565b604082019050919050565b6000602082019050818103600083015261194481611908565b9050919050565b7f6368616e676541646d696e3a204e6f7420676f6f642e00000000000000000000600082015250565b6000611981601683611410565b915061198c8261194b565b602082019050919050565b600060208201905081810360008301526119b081611974565b9050919050565b7f4150544f4b454e3a6465637265617365416c6c6f77616e63653a414c4c4f574160008201527f4e43455f554e444552464c4f573a205375627472616374696f6e20726573756c60208201527f747320696e207375622d7a65726f20616c6c6f77616e63652e00000000000000604082015250565b6000611a39605983611410565b9150611a44826119b7565b606082019050919050565b60006020820190508181036000830152611a6881611a2c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611acb602683611410565b9150611ad682611a6f565b604082019050919050565b60006020820190508181036000830152611afa81611abe565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b5d602483611410565b9150611b6882611b01565b604082019050919050565b60006020820190508181036000830152611b8c81611b50565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bef602283611410565b9150611bfa82611b93565b604082019050919050565b60006020820190508181036000830152611c1e81611be2565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a46524f4d5f5a45524f3a2043616e60008201527f6e6f74207472616e736665722066726f6d20746865207a65726f20616464726560208201527f73732e0000000000000000000000000000000000000000000000000000000000604082015250565b6000611ca7604383611410565b9150611cb282611c25565b606082019050919050565b60006020820190508181036000830152611cd681611c9a565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a544f5f5a45524f3a2043616e6e6f60008201527f74207472616e7366657220746f20746865207a65726f20616464726573732e00602082015250565b6000611d39603f83611410565b9150611d4482611cdd565b604082019050919050565b60006020820190508181036000830152611d6881611d2c565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a5a45524f5f414d4f554e543a205460008201527f72616e7366657220616d6f756e74206d7573742062652067726561746572207460208201527f68616e207a65726f2e0000000000000000000000000000000000000000000000604082015250565b6000611df1604983611410565b9150611dfc82611d6f565b606082019050919050565b60006020820190508181036000830152611e2081611de4565b9050919050565b7f4150544f4b454e3a5f7472616e736665723a494e53554646494349454e545f4260008201527f414c414e43453a205472616e7366657220616d6f756e7420657863656564732060208201527f62616c616e63652e000000000000000000000000000000000000000000000000604082015250565b6000611ea9604883611410565b9150611eb482611e27565b606082019050919050565b60006020820190508181036000830152611ed881611e9c565b9050919050565b6000611eea8261151a565b9150611ef58361151a565b9250828203905081811115611f0d57611f0c611856565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f6f602183611410565b9150611f7a82611f13565b604082019050919050565b60006020820190508181036000830152611f9e81611f62565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612001602283611410565b915061200c82611fa5565b604082019050919050565b6000602082019050818103600083015261203081611ff4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061206d602083611410565b915061207882612037565b602082019050919050565b6000602082019050818103600083015261209c81612060565b9050919050565b60006120ae8261151a565b91506120b98361151a565b92508282026120c78161151a565b915082820484148315176120de576120dd611856565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061211f8261151a565b915061212a8361151a565b92508261213a576121396120e5565b5b82820490509291505056fea2646970667358221220a834c6a588a97917059485a5e68c385240ad26190ec5c41c0e75b693a8cf071164736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000b6efcfd512073adad37c2ddfc9a8363251f8e36f0000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000001041697244726f702050726f746f636f6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444524f5000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): AirDrop Protocol
Arg [1] : symbol_ (string): DROP
Arg [2] : _minter (address): 0xB6EfcFd512073AdAD37C2DdfC9a8363251f8e36f
Arg [3] : _taxPercentage (uint256): 400
Arg [4] : _supply (uint256): 1000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000b6efcfd512073adad37c2ddfc9a8363251f8e36f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [4] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 41697244726f702050726f746f636f6c00000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 44524f5000000000000000000000000000000000000000000000000000000000


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.