ETH Price: $2,029.73 (-1.21%)
 

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Approve245027032026-02-21 3:59:115 days ago1771646351IN
PikaCrypto: Old PIKA Token
0 ETH0.000003090.06647603
Transfer244473792026-02-13 10:51:3513 days ago1770979895IN
PikaCrypto: Old PIKA Token
0 ETH0.000071431
Approve243986202026-02-06 15:16:2320 days ago1770390983IN
PikaCrypto: Old PIKA Token
0 ETH0.000041930.90760646
Approve243726582026-02-03 0:08:5924 days ago1770077339IN
PikaCrypto: Old PIKA Token
0 ETH0.000004760.1024568
Approve242970062026-01-23 10:51:5934 days ago1769165519IN
PikaCrypto: Old PIKA Token
0 ETH0.000003130.06779451
Approve241786842026-01-06 22:40:4751 days ago1767739247IN
PikaCrypto: Old PIKA Token
0 ETH0.00004962.04367892
Approve240175412025-12-15 10:55:4773 days ago1765796147IN
PikaCrypto: Old PIKA Token
0 ETH0.000003430.14150825
Approve239568612025-12-06 22:41:1182 days ago1765060871IN
PikaCrypto: Old PIKA Token
0 ETH0.000002650.09
Approve236933572025-10-30 23:05:23119 days ago1761865523IN
PikaCrypto: Old PIKA Token
0 ETH0.000006830.14694965
Approve236871512025-10-30 2:13:23120 days ago1761790403IN
PikaCrypto: Old PIKA Token
0 ETH0.000009380.20289492
Transfer234206892025-09-22 19:35:11157 days ago1758569711IN
PikaCrypto: Old PIKA Token
0 ETH0.00008621.20705726
Transfer234127232025-09-21 16:49:47158 days ago1758473387IN
PikaCrypto: Old PIKA Token
0 ETH0.000063661.17245756
Transfer234117912025-09-21 13:42:23158 days ago1758462143IN
PikaCrypto: Old PIKA Token
0 ETH0.000017290.24224889
Transfer234117272025-09-21 13:29:35158 days ago1758461375IN
PikaCrypto: Old PIKA Token
0 ETH0.000017110.23961113
Transfer234117142025-09-21 13:26:47158 days ago1758461207IN
PikaCrypto: Old PIKA Token
0 ETH0.000017350.24296279
Transfer233587602025-09-14 3:54:35165 days ago1757822075IN
PikaCrypto: Old PIKA Token
0 ETH0.000017050.23885701
Approve231862682025-08-21 1:47:11190 days ago1755740831IN
PikaCrypto: Old PIKA Token
0 ETH0.00001210.26
Transfer231512342025-08-16 4:32:11194 days ago1755318731IN
PikaCrypto: Old PIKA Token
0 ETH0.000119762.21452207
Approve229527772025-07-19 10:53:59222 days ago1752922439IN
PikaCrypto: Old PIKA Token
0 ETH0.000017330.71421087
Approve228812442025-07-09 11:11:11232 days ago1752059471IN
PikaCrypto: Old PIKA Token
0 ETH0.000136155.60938988
Approve225845342025-05-28 23:28:11274 days ago1748474891IN
PikaCrypto: Old PIKA Token
0 ETH0.000101212.17747937
Approve225349282025-05-22 0:46:35281 days ago1747874795IN
PikaCrypto: Old PIKA Token
0 ETH0.00011462.46475194
Transfer222370212025-04-10 7:25:59322 days ago1744269959IN
PikaCrypto: Old PIKA Token
0 ETH0.000083091.09083376
Transfer222369592025-04-10 7:13:35322 days ago1744269215IN
PikaCrypto: Old PIKA Token
0 ETH0.000124061.62877512
Approve222187532025-04-07 18:16:11325 days ago1744049771IN
PikaCrypto: Old PIKA Token
0 ETH0.000092632
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Pika

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-05-19
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

contract Owned {
    address public owner;
    address public proposedOwner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() virtual {
        require(msg.sender == owner);
        _;
    }

    /**
     * @dev propeses a new owner
     * Can only be called by the current owner.
     */
    function proposeOwner(address payable _newOwner) external onlyOwner {
        proposedOwner = _newOwner;
    }

    /**
     * @dev claims ownership of the contract
     * Can only be called by the new proposed owner.
     */
    function claimOwnership() external {
        require(msg.sender == proposedOwner);
        emit OwnershipTransferred(owner, proposedOwner);
        owner = proposedOwner;
    }
}
// File: @openzeppelin/contracts/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol





pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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




pragma solidity 0.8.4;



contract Pika is ERC20, Owned {
    uint256 public minSupply;
    address public beneficiary;
    bool public feesEnabled;
    mapping(address => bool) public isExcludedFromFee;

    event MinSupplyUpdated(uint256 oldAmount, uint256 newAmount);
    event BeneficiaryUpdated(address oldBeneficiary, address newBeneficiary);
    event FeesEnabledUpdated(bool enabled);
    event ExcludedFromFeeUpdated(address account, bool excluded);

    constructor() ERC20("PIKA", "PIKA") {
        minSupply = 100000000 ether;
        uint256 totalSupply = 50000000000000 ether;
        feesEnabled = false;
        _mint(_msgSender(), totalSupply);
        isExcludedFromFee[msg.sender] = true;
        isExcludedFromFee[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        beneficiary = msg.sender;
    }

    /**
     * @dev if fees are enabled, subtract 2.25% fee and send it to beneficiary
     * @dev after a certain threshold, try to swap collected fees automatically
     * @dev if automatic swap fails (or beneficiary does not implement swapTokens function) transfer should still succeed
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(
            recipient != address(this),
            "Cannot send tokens to token contract"
        );
        if (
            !feesEnabled ||
            isExcludedFromFee[sender] ||
            isExcludedFromFee[recipient]
        ) {
            ERC20._transfer(sender, recipient, amount);
            return;
        }
        // burn tokens if min supply not reached yet
        uint256 burnedFee = calculateFee(amount, 25);
        if (totalSupply() - burnedFee >= minSupply) {
            _burn(sender, burnedFee);
        } else {
            burnedFee = 0;
        }
        uint256 transferFee = calculateFee(amount, 200);
        ERC20._transfer(sender, beneficiary, transferFee);
        ERC20._transfer(sender, recipient, amount - transferFee - burnedFee);
    }

    function calculateFee(uint256 _amount, uint256 _fee)
        public
        pure
        returns (uint256)
    {
        return (_amount * _fee) / 10000;
    }

    /**
     * @notice allows to burn tokens from own balance
     * @dev only allows burning tokens until minimum supply is reached
     * @param value amount of tokens to burn
     */
    function burn(uint256 value) public {
        _burn(_msgSender(), value);
        require(totalSupply() >= minSupply, "total supply exceeds min supply");
    }

    /**
     * @notice sets minimum supply of the token
     * @dev only callable by owner
     * @param _newMinSupply new minimum supply
     */
    function setMinSupply(uint256 _newMinSupply) public onlyOwner {
        emit MinSupplyUpdated(minSupply, _newMinSupply);
        minSupply = _newMinSupply;
    }

   
    /**
     * @notice sets recipient of transfer fee
     * @dev only callable by owner
     * @param _newBeneficiary new beneficiary
     */
    function setBeneficiary(address _newBeneficiary) public onlyOwner {
        setExcludeFromFee(_newBeneficiary, true);
        emit BeneficiaryUpdated(beneficiary, _newBeneficiary);
        beneficiary = _newBeneficiary;
    }

    /**
     * @notice sets whether account collects fees on token transfer
     * @dev only callable by owner
     * @param _enabled bool whether fees are enabled
     */
    function setFeesEnabled(bool _enabled) public onlyOwner {
        emit FeesEnabledUpdated(_enabled);
        feesEnabled = _enabled;
    }

    /**
     * @notice adds or removes an account that is exempt from fee collection
     * @dev only callable by owner
     * @param _account account to modify
     * @param _excluded new value
     */
    function setExcludeFromFee(address _account, bool _excluded)
        public
        onlyOwner
    {
        isExcludedFromFee[_account] = _excluded;
        emit ExcludedFromFeeUpdated(_account, _excluded);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":false,"internalType":"address","name":"oldBeneficiary","type":"address"},{"indexed":false,"internalType":"address","name":"newBeneficiary","type":"address"}],"name":"BeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"FeesEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"MinSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"calculateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"claimOwnership","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":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"proposeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proposedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newBeneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMinSupply","type":"uint256"}],"name":"setMinSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260048082526350494b4160e01b602080840182815285518087019096529285528401528151919291620000519160039162000244565b5080516200006790600490602084019062000244565b5050600580546001600160a01b031916339081179091556040519091506000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36a52b7d2dcc80cd2e40000006007556008805460ff60a01b191690556d027716b6a0adc2d677c080000000620000e333826200015c565b503360008181526009602052604081208054600160ff199182168117909255737a250d5630b4cf539739df2c5dacb4c659f2488d9092527fbaa441ac52505693dd98c7dd2f5bbf8f9349b7da9de72f9d52e5cac70e7da8ce8054909216179055600880546001600160a01b03191690911790556200034c565b6001600160a01b038216620001b75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001cb9190620002ea565b90915550506001600160a01b03821660009081526020819052604081208054839290620001fa908490620002ea565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000252906200030f565b90600052602060002090601f016020900481019282620002765760008555620002c1565b82601f106200029157805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c1578251825591602001919060010190620002a4565b50620002cf929150620002d3565b5090565b5b80821115620002cf5760008155600101620002d4565b600082198211156200030a57634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200032457607f821691505b602082108114156200034657634e487b7160e01b600052602260045260246000fd5b50919050565b6116d3806200035c6000396000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c80635342acb4116100ee578063a64e4f8a11610097578063af9549e011610071578063af9549e0146103b3578063b5ed298a146103c6578063d153b60c146103d9578063dd62ed3e146103f957600080fd5b8063a64e4f8a14610368578063a901dd921461038d578063a9059cbb146103a057600080fd5b80638fe6cae3116100c85780638fe6cae31461034457806395d89b411461034d578063a457c2d71461035557600080fd5b80635342acb4146102cb57806370a08231146102ee5780638da5cb5b1461032457600080fd5b8063313ce56711610150578063395093511161012a578063395093511461029d57806342966c68146102b05780634e71e0c8146102c357600080fd5b8063313ce5671461023657806334e731221461024557806338af3eed1461025857600080fd5b80631ac2874b116101815780631ac2874b146101fb5780631c31f7101461021057806323b872dd1461022357600080fd5b806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101e9575b600080fd5b6101b061043f565b6040516101bd91906114e2565b60405180910390f35b6101d96101d4366004611464565b6104d1565b60405190151581526020016101bd565b6002545b6040519081526020016101bd565b61020e6102093660046114a9565b6104e7565b005b61020e61021e36600461139c565b61054c565b6101d96102313660046113f0565b610616565b604051601281526020016101bd565b6101ed6102533660046114c1565b610708565b6008546102789073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101bd565b6101d96102ab366004611464565b610728565b61020e6102be3660046114a9565b61076c565b61020e6107e7565b6101d96102d936600461139c565b60096020526000908152604090205460ff1681565b6101ed6102fc36600461139c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6005546102789073ffffffffffffffffffffffffffffffffffffffff1681565b6101ed60075481565b6101b06108a0565b6101d9610363366004611464565b6108af565b6008546101d99074010000000000000000000000000000000000000000900460ff1681565b61020e61039b36600461148f565b610989565b6101d96103ae366004611464565b610a2c565b61020e6103c1366004611430565b610a39565b61020e6103d436600461139c565b610aeb565b6006546102789073ffffffffffffffffffffffffffffffffffffffff1681565b6101ed6104073660046113b8565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461044e906115f8565b80601f016020809104026020016040519081016040528092919081815260200182805461047a906115f8565b80156104c75780601f1061049c576101008083540402835291602001916104c7565b820191906000526020600020905b8154815290600101906020018083116104aa57829003601f168201915b5050505050905090565b60006104de338484610b56565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461050b57600080fd5b60075460408051918252602082018390527f8e485513f38ca4c23b0c8170161c4fd5c16f934ea7c068b376f646b0194d1b8e910160405180910390a1600755565b60055473ffffffffffffffffffffffffffffffffffffffff16331461057057600080fd5b61057b816001610a39565b6008546040805173ffffffffffffffffffffffffffffffffffffffff928316815291831660208301527fe72eaf6addaa195f3c83095031dd08f3a96808dcf047babed1fe4e4f69d6c622910160405180910390a1600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610623848484610d0a565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156106e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106fd85336106f886856115e1565b610b56565b506001949350505050565b600061271061071783856115a4565b610721919061156b565b9392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104de9185906106f8908690611553565b6107763382610edc565b60075460025410156107e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f746f74616c20737570706c792065786365656473206d696e20737570706c790060448201526064016106e0565b50565b60065473ffffffffffffffffffffffffffffffffffffffff16331461080b57600080fd5b60065460055460405173ffffffffffffffffffffffffffffffffffffffff92831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600654600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606004805461044e906115f8565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106e0565b61097f33856106f886856115e1565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146109ad57600080fd5b60405181151581527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c89060200160405180910390a16008805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60006104de338484610d0a565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a5d57600080fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f318c131114339c004fff0a22fcdbbc0566bb2a7cd3aa1660e636ec5a66784ff2910160405180910390a15050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610b0f57600080fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff8216610c9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216301415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f742073656e6420746f6b656e7320746f20746f6b656e20636f6e7460448201527f726163740000000000000000000000000000000000000000000000000000000060648201526084016106e0565b60085474010000000000000000000000000000000000000000900460ff161580610dfe575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff165b80610e2e575073ffffffffffffffffffffffffffffffffffffffff821660009081526009602052604090205460ff165b15610e4357610e3e8383836110ca565b505050565b6000610e50826019610708565b905060075481610e5f60025490565b610e6991906115e1565b10610e7d57610e788482610edc565b610e81565b5060005b6000610e8e8360c8610708565b600854909150610eb690869073ffffffffffffffffffffffffffffffffffffffff16836110ca565b610ed5858584610ec685886115e1565b610ed091906115e1565b6110ca565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8216610f7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b61103f82826115e1565b73ffffffffffffffffffffffffffffffffffffffff84166000908152602081905260408120919091556002805484929061107a9084906115e1565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cfd565b73ffffffffffffffffffffffffffffffffffffffff831661116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff8216611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106e0565b6112d082826115e1565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290611313908490611553565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137991815260200190565b60405180910390a350505050565b8035801515811461139757600080fd5b919050565b6000602082840312156113ad578081fd5b81356107218161167b565b600080604083850312156113ca578081fd5b82356113d58161167b565b915060208301356113e58161167b565b809150509250929050565b600080600060608486031215611404578081fd5b833561140f8161167b565b9250602084013561141f8161167b565b929592945050506040919091013590565b60008060408385031215611442578182fd5b823561144d8161167b565b915061145b60208401611387565b90509250929050565b60008060408385031215611476578182fd5b82356114818161167b565b946020939093013593505050565b6000602082840312156114a0578081fd5b61072182611387565b6000602082840312156114ba578081fd5b5035919050565b600080604083850312156114d3578182fd5b50508035926020909101359150565b6000602080835283518082850152825b8181101561150e578581018301518582016040015282016114f2565b8181111561151f5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156115665761156661164c565b500190565b60008261159f577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156115dc576115dc61164c565b500290565b6000828210156115f3576115f361164c565b500390565b600181811c9082168061160c57607f821691505b60208210811415611646577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146107e457600080fdfea2646970667358221220ae7289410987d98e96630d62ecf9eaeb271cc2af6c53750088785f17247c210b64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a35760003560e01c80635342acb4116100ee578063a64e4f8a11610097578063af9549e011610071578063af9549e0146103b3578063b5ed298a146103c6578063d153b60c146103d9578063dd62ed3e146103f957600080fd5b8063a64e4f8a14610368578063a901dd921461038d578063a9059cbb146103a057600080fd5b80638fe6cae3116100c85780638fe6cae31461034457806395d89b411461034d578063a457c2d71461035557600080fd5b80635342acb4146102cb57806370a08231146102ee5780638da5cb5b1461032457600080fd5b8063313ce56711610150578063395093511161012a578063395093511461029d57806342966c68146102b05780634e71e0c8146102c357600080fd5b8063313ce5671461023657806334e731221461024557806338af3eed1461025857600080fd5b80631ac2874b116101815780631ac2874b146101fb5780631c31f7101461021057806323b872dd1461022357600080fd5b806306fdde03146101a8578063095ea7b3146101c657806318160ddd146101e9575b600080fd5b6101b061043f565b6040516101bd91906114e2565b60405180910390f35b6101d96101d4366004611464565b6104d1565b60405190151581526020016101bd565b6002545b6040519081526020016101bd565b61020e6102093660046114a9565b6104e7565b005b61020e61021e36600461139c565b61054c565b6101d96102313660046113f0565b610616565b604051601281526020016101bd565b6101ed6102533660046114c1565b610708565b6008546102789073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101bd565b6101d96102ab366004611464565b610728565b61020e6102be3660046114a9565b61076c565b61020e6107e7565b6101d96102d936600461139c565b60096020526000908152604090205460ff1681565b6101ed6102fc36600461139c565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6005546102789073ffffffffffffffffffffffffffffffffffffffff1681565b6101ed60075481565b6101b06108a0565b6101d9610363366004611464565b6108af565b6008546101d99074010000000000000000000000000000000000000000900460ff1681565b61020e61039b36600461148f565b610989565b6101d96103ae366004611464565b610a2c565b61020e6103c1366004611430565b610a39565b61020e6103d436600461139c565b610aeb565b6006546102789073ffffffffffffffffffffffffffffffffffffffff1681565b6101ed6104073660046113b8565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461044e906115f8565b80601f016020809104026020016040519081016040528092919081815260200182805461047a906115f8565b80156104c75780601f1061049c576101008083540402835291602001916104c7565b820191906000526020600020905b8154815290600101906020018083116104aa57829003601f168201915b5050505050905090565b60006104de338484610b56565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461050b57600080fd5b60075460408051918252602082018390527f8e485513f38ca4c23b0c8170161c4fd5c16f934ea7c068b376f646b0194d1b8e910160405180910390a1600755565b60055473ffffffffffffffffffffffffffffffffffffffff16331461057057600080fd5b61057b816001610a39565b6008546040805173ffffffffffffffffffffffffffffffffffffffff928316815291831660208301527fe72eaf6addaa195f3c83095031dd08f3a96808dcf047babed1fe4e4f69d6c622910160405180910390a1600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610623848484610d0a565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156106e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106fd85336106f886856115e1565b610b56565b506001949350505050565b600061271061071783856115a4565b610721919061156b565b9392505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104de9185906106f8908690611553565b6107763382610edc565b60075460025410156107e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f746f74616c20737570706c792065786365656473206d696e20737570706c790060448201526064016106e0565b50565b60065473ffffffffffffffffffffffffffffffffffffffff16331461080b57600080fd5b60065460055460405173ffffffffffffffffffffffffffffffffffffffff92831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600654600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606004805461044e906115f8565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106e0565b61097f33856106f886856115e1565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146109ad57600080fd5b60405181151581527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c89060200160405180910390a16008805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60006104de338484610d0a565b60055473ffffffffffffffffffffffffffffffffffffffff163314610a5d57600080fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526009602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558251938452908301527f318c131114339c004fff0a22fcdbbc0566bb2a7cd3aa1660e636ec5a66784ff2910160405180910390a15050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610b0f57600080fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8316610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff8216610c9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216301415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f742073656e6420746f6b656e7320746f20746f6b656e20636f6e7460448201527f726163740000000000000000000000000000000000000000000000000000000060648201526084016106e0565b60085474010000000000000000000000000000000000000000900460ff161580610dfe575073ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205460ff165b80610e2e575073ffffffffffffffffffffffffffffffffffffffff821660009081526009602052604090205460ff165b15610e4357610e3e8383836110ca565b505050565b6000610e50826019610708565b905060075481610e5f60025490565b610e6991906115e1565b10610e7d57610e788482610edc565b610e81565b5060005b6000610e8e8360c8610708565b600854909150610eb690869073ffffffffffffffffffffffffffffffffffffffff16836110ca565b610ed5858584610ec685886115e1565b610ed091906115e1565b6110ca565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8216610f7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b61103f82826115e1565b73ffffffffffffffffffffffffffffffffffffffff84166000908152602081905260408120919091556002805484929061107a9084906115e1565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cfd565b73ffffffffffffffffffffffffffffffffffffffff831661116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff8216611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106e0565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106e0565b6112d082826115e1565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290611313908490611553565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137991815260200190565b60405180910390a350505050565b8035801515811461139757600080fd5b919050565b6000602082840312156113ad578081fd5b81356107218161167b565b600080604083850312156113ca578081fd5b82356113d58161167b565b915060208301356113e58161167b565b809150509250929050565b600080600060608486031215611404578081fd5b833561140f8161167b565b9250602084013561141f8161167b565b929592945050506040919091013590565b60008060408385031215611442578182fd5b823561144d8161167b565b915061145b60208401611387565b90509250929050565b60008060408385031215611476578182fd5b82356114818161167b565b946020939093013593505050565b6000602082840312156114a0578081fd5b61072182611387565b6000602082840312156114ba578081fd5b5035919050565b600080604083850312156114d3578182fd5b50508035926020909101359150565b6000602080835283518082850152825b8181101561150e578581018301518582016040015282016114f2565b8181111561151f5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156115665761156661164c565b500190565b60008261159f577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156115dc576115dc61164c565b500290565b6000828210156115f3576115f361164c565b500390565b600181811c9082168061160c57607f821691505b60208210811415611646577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146107e457600080fdfea2646970667358221220ae7289410987d98e96630d62ecf9eaeb271cc2af6c53750088785f17247c210b64736f6c63430008040033

Deployed Bytecode Sourcemap

16489:4078:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7682:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9849:169;;;;;;:::i;:::-;;:::i;:::-;;;3938:14:1;;3931:22;3913:41;;3901:2;3886:18;9849:169:0;3868:92:1;8802:108:0;8890:12;;8802:108;;;9188:25:1;;;9176:2;9161:18;8802:108:0;9143:76:1;19249:164:0;;;;;;:::i;:::-;;:::i;:::-;;19574:229;;;;;;:::i;:::-;;:::i;10500:422::-;;;;;;:::i;:::-;;:::i;8644:93::-;;;8727:2;9619:36:1;;9607:2;9592:18;8644:93:0;9574:87:1;18564:165:0;;;;;;:::i;:::-;;:::i;16557:26::-;;;;;;;;;;;;3074:42:1;3062:55;;;3044:74;;3032:2;3017:18;16557:26:0;2999:125:1;11331:215:0;;;;;;:::i;:::-;;:::i;18928:162::-;;;;;;:::i;:::-;;:::i;1000:180::-;;;:::i;16620:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;8973:127;;;;;;:::i;:::-;9074:18;;9047:7;9074:18;;;;;;;;;;;;8973:127;81:20;;;;;;;;;16526:24;;;;;;7901:104;;;:::i;12049:377::-;;;;;;:::i;:::-;;:::i;16590:23::-;;;;;;;;;;;;19988:141;;;;;;:::i;:::-;;:::i;9313:175::-;;;;;;:::i;:::-;;:::i;20346:218::-;;;;;;:::i;:::-;;:::i;762:112::-;;;;;;:::i;:::-;;:::i;108:28::-;;;;;;;;;9551:151;;;;;;:::i;:::-;9667:18;;;;9640:7;9667:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9551:151;7682:100;7736:13;7769:5;7762:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7682:100;:::o;9849:169::-;9932:4;9949:39;1889:10;9972:7;9981:6;9949:8;:39::i;:::-;-1:-1:-1;10006:4:0;9849:169;;;;:::o;19249:164::-;627:5;;;;613:10;:19;605:28;;;;;;19344:9:::1;::::0;19327:42:::1;::::0;;9398:25:1;;;9454:2;9439:18;;9432:34;;;19327:42:0::1;::::0;9371:18:1;19327:42:0::1;;;;;;;19380:9;:25:::0;19249:164::o;19574:229::-;627:5;;;;613:10;:19;605:28;;;;;;19651:40:::1;19669:15;19686:4;19651:17;:40::i;:::-;19726:11;::::0;19707:48:::1;::::0;;19726:11:::1;::::0;;::::1;3364:34:1::0;;3434:15;;;3429:2;3414:18;;3407:43;19707:48:0::1;::::0;3276:18:1;19707:48:0::1;;;;;;;19766:11;:29:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;19574:229::o;10500:422::-;10606:4;10623:36;10633:6;10641:9;10652:6;10623:9;:36::i;:::-;10699:19;;;10672:24;10699:19;;;:11;:19;;;;;;;;1889:10;10699:33;;;;;;;;10751:26;;;;10743:79;;;;;;;6856:2:1;10743:79:0;;;6838:21:1;6895:2;6875:18;;;6868:30;6934:34;6914:18;;;6907:62;7005:10;6985:18;;;6978:38;7033:19;;10743:79:0;;;;;;;;;10833:57;10842:6;1889:10;10864:25;10883:6;10864:16;:25;:::i;:::-;10833:8;:57::i;:::-;-1:-1:-1;10910:4:0;;10500:422;-1:-1:-1;;;;10500:422:0:o;18564:165::-;18665:7;18716:5;18698:14;18708:4;18698:7;:14;:::i;:::-;18697:24;;;;:::i;:::-;18690:31;18564:165;-1:-1:-1;;;18564:165:0:o;11331:215::-;1889:10;11419:4;11468:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11419:4;;11436:80;;11459:7;;11468:47;;11505:10;;11468:47;:::i;18928:162::-;18975:26;1889:10;18995:5;18975;:26::i;:::-;19037:9;;8890:12;;19020:26;;19012:70;;;;;;;8478:2:1;19012:70:0;;;8460:21:1;8517:2;8497:18;;;8490:30;8556:33;8536:18;;;8529:61;8607:18;;19012:70:0;8450:181:1;19012:70:0;18928:162;:::o;1000:180::-;1068:13;;;;1054:10;:27;1046:36;;;;;;1126:13;;1119:5;;1098:42;;1126:13;;;;;1119:5;;;;1098:42;;1126:13;;1098:42;1159:13;;1151:5;:21;;;;1159:13;;;;1151:21;;;;;;1000:180::o;7901:104::-;7957:13;7990:7;7983:14;;;;;:::i;12049:377::-;1889:10;12142:4;12186:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;12239:35;;;;12231:85;;;;;;;8838:2:1;12231:85:0;;;8820:21:1;8877:2;8857:18;;;8850:30;8916:34;8896:18;;;8889:62;8987:7;8967:18;;;8960:35;9012:19;;12231:85:0;8810:227:1;12231:85:0;12327:67;1889:10;12350:7;12359:34;12378:15;12359:16;:34;:::i;12327:67::-;-1:-1:-1;12414:4:0;;12049:377;-1:-1:-1;;;12049:377:0:o;19988:141::-;627:5;;;;613:10;:19;605:28;;;;;;20060::::1;::::0;3938:14:1;;3931:22;3913:41;;20060:28:0::1;::::0;3901:2:1;3886:18;20060:28:0::1;;;;;;;20099:11;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;19988:141::o;9313:175::-;9399:4;9416:42;1889:10;9440:9;9451:6;9416:9;:42::i;20346:218::-;627:5;;;;613:10;:19;605:28;;;;;;20458:27:::1;::::0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;20513:43;;3629:74:1;;;3719:18;;;3712:50;20513:43:0::1;::::0;3602:18:1;20513:43:0::1;;;;;;;20346:218:::0;;:::o;762:112::-;627:5;;;;613:10;:19;605:28;;;;;;841:13:::1;:25:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;762:112::o;15405:346::-;15507:19;;;15499:68;;;;;;;8073:2:1;15499:68:0;;;8055:21:1;8112:2;8092:18;;;8085:30;8151:34;8131:18;;;8124:62;8222:6;8202:18;;;8195:34;8246:19;;15499:68:0;8045:226:1;15499:68:0;15586:21;;;15578:68;;;;;;;5641:2:1;15578:68:0;;;5623:21:1;5680:2;5660:18;;;5653:30;5719:34;5699:18;;;5692:62;5790:4;5770:18;;;5763:32;5812:19;;15578:68:0;5613:224:1;15578:68:0;15659:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15711:32;;9188:25:1;;;15711:32:0;;9161:18:1;15711:32:0;;;;;;;;15405:346;;;:::o;17617:939::-;17772:26;;;17793:4;17772:26;;17750:112;;;;;;;6451:2:1;17750:112:0;;;6433:21:1;6490:2;6470:18;;;6463:30;6529:34;6509:18;;;6502:62;6600:6;6580:18;;;6573:34;6624:19;;17750:112:0;6423:226:1;17750:112:0;17892:11;;;;;;;17891:12;;:54;;-1:-1:-1;17920:25:0;;;;;;;:17;:25;;;;;;;;17891:54;:99;;;-1:-1:-1;17962:28:0;;;;;;;:17;:28;;;;;;;;17891:99;17873:219;;;18017:42;18033:6;18041:9;18052:6;18017:15;:42::i;:::-;17617:939;;;:::o;17873:219::-;18156:17;18176:24;18189:6;18197:2;18176:12;:24::i;:::-;18156:44;;18244:9;;18231;18215:13;8890:12;;;8802:108;18215:13;:25;;;;:::i;:::-;:38;18211:141;;18270:24;18276:6;18284:9;18270:5;:24::i;:::-;18211:141;;;-1:-1:-1;18339:1:0;18211:141;18362:19;18384:25;18397:6;18405:3;18384:12;:25::i;:::-;18444:11;;18362:47;;-1:-1:-1;18420:49:0;;18436:6;;18444:11;;18362:47;18420:15;:49::i;:::-;18480:68;18496:6;18504:9;18538;18515:20;18524:11;18515:6;:20;:::i;:::-;:32;;;;:::i;:::-;18480:15;:68::i;:::-;17617:939;;;;;:::o;14473:494::-;14557:21;;;14549:67;;;;;;;7265:2:1;14549:67:0;;;7247:21:1;7304:2;7284:18;;;7277:30;7343:34;7323:18;;;7316:62;7414:3;7394:18;;;7387:31;7435:19;;14549:67:0;7237:223:1;14549:67:0;14716:18;;;14691:22;14716:18;;;;;;;;;;;14753:24;;;;14745:71;;;;;;;5238:2:1;14745:71:0;;;5220:21:1;5277:2;5257:18;;;5250:30;5316:34;5296:18;;;5289:62;5387:4;5367:18;;;5360:32;5409:19;;14745:71:0;5210:224:1;14745:71:0;14848:23;14865:6;14848:14;:23;:::i;:::-;14827:18;;;:9;:18;;;;;;;;;;:44;;;;14882:12;:22;;14898:6;;14827:9;14882:22;;14898:6;;14882:22;:::i;:::-;;;;-1:-1:-1;;14922:37:0;;9188:25:1;;;14948:1:0;;14922:37;;;;;;9176:2:1;9161:18;14922:37:0;9143:76:1;12916:604:0;13022:20;;;13014:70;;;;;;;7667:2:1;13014:70:0;;;7649:21:1;7706:2;7686:18;;;7679:30;7745:34;7725:18;;;7718:62;7816:7;7796:18;;;7789:35;7841:19;;13014:70:0;7639:227:1;13014:70:0;13103:23;;;13095:71;;;;;;;4834:2:1;13095:71:0;;;4816:21:1;4873:2;4853:18;;;4846:30;4912:34;4892:18;;;4885:62;4983:5;4963:18;;;4956:33;5006:19;;13095:71:0;4806:225:1;13095:71:0;13263:17;;;13239:21;13263:17;;;;;;;;;;;13299:23;;;;13291:74;;;;;;;6044:2:1;13291:74:0;;;6026:21:1;6083:2;6063:18;;;6056:30;6122:34;6102:18;;;6095:62;6193:8;6173:18;;;6166:36;6219:19;;13291:74:0;6016:228:1;13291:74:0;13396:22;13412:6;13396:13;:22;:::i;:::-;13376:17;;;;:9;:17;;;;;;;;;;;:42;;;;13429:20;;;;;;;;:30;;13453:6;;13376:9;13429:30;;13453:6;;13429:30;:::i;:::-;;;;;;;;13494:9;13477:35;;13486:6;13477:35;;;13505:6;13477:35;;;;9188:25:1;;9176:2;9161:18;;9143:76;13477:35:0;;;;;;;;12916:604;;;;:::o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;711:398::-;779:6;787;840:2;828:9;819:7;815:23;811:32;808:2;;;861:6;853;846:22;808:2;905:9;892:23;924:31;949:5;924:31;:::i;:::-;974:5;-1:-1:-1;1031:2:1;1016:18;;1003:32;1044:33;1003:32;1044:33;:::i;:::-;1096:7;1086:17;;;798:311;;;;;:::o;1114:466::-;1191:6;1199;1207;1260:2;1248:9;1239:7;1235:23;1231:32;1228:2;;;1281:6;1273;1266:22;1228:2;1325:9;1312:23;1344:31;1369:5;1344:31;:::i;:::-;1394:5;-1:-1:-1;1451:2:1;1436:18;;1423:32;1464:33;1423:32;1464:33;:::i;:::-;1218:362;;1516:7;;-1:-1:-1;;;1570:2:1;1555:18;;;;1542:32;;1218:362::o;1585:325::-;1650:6;1658;1711:2;1699:9;1690:7;1686:23;1682:32;1679:2;;;1732:6;1724;1717:22;1679:2;1776:9;1763:23;1795:31;1820:5;1795:31;:::i;:::-;1845:5;-1:-1:-1;1869:35:1;1900:2;1885:18;;1869:35;:::i;:::-;1859:45;;1669:241;;;;;:::o;1915:325::-;1983:6;1991;2044:2;2032:9;2023:7;2019:23;2015:32;2012:2;;;2065:6;2057;2050:22;2012:2;2109:9;2096:23;2128:31;2153:5;2128:31;:::i;:::-;2178:5;2230:2;2215:18;;;;2202:32;;-1:-1:-1;;;2002:238:1:o;2245:190::-;2301:6;2354:2;2342:9;2333:7;2329:23;2325:32;2322:2;;;2375:6;2367;2360:22;2322:2;2403:26;2419:9;2403:26;:::i;2440:190::-;2499:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:2;;;2573:6;2565;2558:22;2520:2;-1:-1:-1;2601:23:1;;2510:120;-1:-1:-1;2510:120:1:o;2635:258::-;2703:6;2711;2764:2;2752:9;2743:7;2739:23;2735:32;2732:2;;;2785:6;2777;2770:22;2732:2;-1:-1:-1;;2813:23:1;;;2883:2;2868:18;;;2855:32;;-1:-1:-1;2722:171:1:o;3965:662::-;4077:4;4106:2;4135;4124:9;4117:21;4167:6;4161:13;4210:6;4205:2;4194:9;4190:18;4183:34;4235:4;4248:140;4262:6;4259:1;4256:13;4248:140;;;4357:14;;;4353:23;;4347:30;4323:17;;;4342:2;4319:26;4312:66;4277:10;;4248:140;;;4406:6;4403:1;4400:13;4397:2;;;4476:4;4471:2;4462:6;4451:9;4447:22;4443:31;4436:45;4397:2;-1:-1:-1;4543:2:1;4531:15;4548:66;4527:88;4512:104;;;;4618:2;4508:113;;4086:541;-1:-1:-1;;;4086:541:1:o;9666:128::-;9706:3;9737:1;9733:6;9730:1;9727:13;9724:2;;;9743:18;;:::i;:::-;-1:-1:-1;9779:9:1;;9714:80::o;9799:274::-;9839:1;9865;9855:2;;9900:77;9897:1;9890:88;10001:4;9998:1;9991:15;10029:4;10026:1;10019:15;9855:2;-1:-1:-1;10058:9:1;;9845:228::o;10078:::-;10118:7;10244:1;10176:66;10172:74;10169:1;10166:81;10161:1;10154:9;10147:17;10143:105;10140:2;;;10251:18;;:::i;:::-;-1:-1:-1;10291:9:1;;10130:176::o;10311:125::-;10351:4;10379:1;10376;10373:8;10370:2;;;10384:18;;:::i;:::-;-1:-1:-1;10421:9:1;;10360:76::o;10441:437::-;10520:1;10516:12;;;;10563;;;10584:2;;10638:4;10630:6;10626:17;10616:27;;10584:2;10691;10683:6;10680:14;10660:18;10657:38;10654:2;;;10728:77;10725:1;10718:88;10829:4;10826:1;10819:15;10857:4;10854:1;10847:15;10654:2;;10496:382;;;:::o;10883:184::-;10935:77;10932:1;10925:88;11032:4;11029:1;11022:15;11056:4;11053:1;11046:15;11072:154;11158:42;11151:5;11147:54;11140:5;11137:65;11127:2;;11216:1;11213;11206:12

Swarm Source

ipfs://ae7289410987d98e96630d62ecf9eaeb271cc2af6c53750088785f17247c210b

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

PIKA token contract has migrated to 0x60f5672a271c7e39e787427a18353ba59a4a3578.

0xA682Ee16b497afcEEDF47e4820Fc2af3845FD2D2
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.