ETH Price: $3,447.28 (+4.76%)

Token

Rotten v2 (ROTS)
 

Overview

Max Total Supply

24,000,000 ROTS

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,525.091803362750408756 ROTS

Value
$0.00
0x0daec973b492f9d17a37ce5f91daf5deec5bee6a
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:
RottenToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-05
*/

pragma solidity ^0.5.0;

/*****************************************************************************
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 */
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");

        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        
        return c;
    }
}

/*****************************************************************************
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
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.
     *
     * > 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);
}

/*****************************************************************************
 * @dev Basic implementation of the `IERC20` interface.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

     /**
     * @dev Destoys `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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

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

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

/*****************************************************************************
 * @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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

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

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Paused();
    event Unpaused();

    bool public paused = false;
    
    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Paused();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpaused();
    }
}

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 **/
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

/*****************************************************************************
 * @title RottenToken
 * @dev RottenToken is an ERC20 implementation of the Rotten ecosystem token. 
 * All tokens are initially pre-assigned to the creator, and can later be distributed 
 * freely using transfer transferFrom and other ERC20 functions.
 */
 
contract RottenToken is Ownable, ERC20Pausable {
    string public constant name = "Rotten v2";
    string public constant symbol = "ROTS";
    uint8 public constant decimals = 18;

    uint256 public constant initialSupply = 24000000*10**uint256(decimals);

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public {
        _mint(msg.sender, initialSupply);
    }

    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
    
    event DepositReceived(address indexed from, uint256 value);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"DepositReceived","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":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526003805460ff60a01b1916905534801561001d57600080fd5b50600380546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3610088336a13da329b633647180000006001600160e01b0361008d16565b6101e8565b6001600160a01b0382166100e8576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6101018160025461018760201b610c971790919060201c565b6002556001600160a01b03821660009081526020818152604090912054610131918390610c97610187821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156101e1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610dfb806101f76000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610345578063a457c2d71461034d578063a9059cbb14610379578063dd62ed3e146103a5578063f2fde38b146103d35761012c565b806370a08231146102bf57806379cc6790146102e55780638456cb59146103115780638da5cb5b146103195780638f32d59b1461033d5761012c565b8063378dc3dc116100f4578063378dc3dc1461025c57806339509351146102645780633f4ba83a1461029057806342966c681461029a5780635c975abb146102b75761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396103f9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561041e565b604080519115158252519081900360200190f35b6101f6610449565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b0381358116916020810135909116906040013561044f565b61024661047c565b6040805160ff9092168252519081900360200190f35b6101f6610481565b6101da6004803603604081101561027a57600080fd5b506001600160a01b038135169060200135610490565b6102986104b4565b005b610298600480360360208110156102b057600080fd5b503561055b565b6101da610568565b6101f6600480360360208110156102d557600080fd5b50356001600160a01b0316610578565b610298600480360360408110156102fb57600080fd5b506001600160a01b038135169060200135610593565b6102986105a1565b61032161064f565b604080516001600160a01b039092168252519081900360200190f35b6101da61065e565b61013961066f565b6101da6004803603604081101561036357600080fd5b506001600160a01b03813516906020013561068f565b6101da6004803603604081101561038f57600080fd5b506001600160a01b0381351690602001356106b3565b6101f6600480360360408110156103bb57600080fd5b506001600160a01b03813581169160200135166106d7565b610298600480360360208110156103e957600080fd5b50356001600160a01b0316610702565b604051806040016040528060098152602001682937ba3a32b7103b1960b91b81525081565b600354600090600160a01b900460ff161561043857600080fd5b61044283836107fc565b9392505050565b60025490565b600354600090600160a01b900460ff161561046957600080fd5b610474848484610812565b949350505050565b601281565b6a13da329b6336471800000081565b600354600090600160a01b900460ff16156104aa57600080fd5b6104428383610869565b6104bc61065e565b61050d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600354600160a01b900460ff1661052357600080fd5b6003805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b61056533826108a5565b50565b600354600160a01b900460ff1681565b6001600160a01b031660009081526020819052604090205490565b61059d828261097e565b5050565b6105a961065e565b6105fa576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600354600160a01b900460ff161561061157600080fd5b6003805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6003546001600160a01b031690565b6003546001600160a01b0316331490565b60405180604001604052806004815260200163524f545360e01b81525081565b600354600090600160a01b900460ff16156106a957600080fd5b61044283836109c3565b600354600090600160a01b900460ff16156106cd57600080fd5b61044283836109ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61070a61065e565b61075b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166107a05760405162461bcd60e51b8152600401808060200182810382526026815260200180610d156026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610809338484610a0c565b50600192915050565b600061081f848484610af8565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461085f91869161085a908663ffffffff610c3a16565b610a0c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161080991859061085a908663ffffffff610c9716565b6001600160a01b0382166108ea5760405162461bcd60e51b8152600401808060200182810382526021815260200180610d5d6021913960400191505060405180910390fd5b6002546108fd908263ffffffff610c3a16565b6002556001600160a01b038216600090815260208190526040902054610929908263ffffffff610c3a16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b61098882826108a5565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461059d91849161085a908563ffffffff610c3a16565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161080991859061085a908663ffffffff610c3a16565b6000610809338484610af8565b6001600160a01b038316610a515760405162461bcd60e51b8152600401808060200182810382526024815260200180610da36024913960400191505060405180910390fd5b6001600160a01b038216610a965760405162461bcd60e51b8152600401808060200182810382526022815260200180610d3b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b3d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610d7e6025913960400191505060405180910390fd5b6001600160a01b038216610b825760405162461bcd60e51b8152600401808060200182810382526023815260200180610cf26023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610bab908263ffffffff610c3a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610be0908263ffffffff610c9716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610c91576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610442576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820ea9f536c51609f6053a11c66826e913618ed58ef97e3c3067997ab83e0c41ea864736f6c63430005110032

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610345578063a457c2d71461034d578063a9059cbb14610379578063dd62ed3e146103a5578063f2fde38b146103d35761012c565b806370a08231146102bf57806379cc6790146102e55780638456cb59146103115780638da5cb5b146103195780638f32d59b1461033d5761012c565b8063378dc3dc116100f4578063378dc3dc1461025c57806339509351146102645780633f4ba83a1461029057806342966c681461029a5780635c975abb146102b75761012c565b806306fdde0314610131578063095ea7b3146101ae57806318160ddd146101ee57806323b872dd14610208578063313ce5671461023e575b600080fd5b6101396103f9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101da600480360360408110156101c457600080fd5b506001600160a01b03813516906020013561041e565b604080519115158252519081900360200190f35b6101f6610449565b60408051918252519081900360200190f35b6101da6004803603606081101561021e57600080fd5b506001600160a01b0381358116916020810135909116906040013561044f565b61024661047c565b6040805160ff9092168252519081900360200190f35b6101f6610481565b6101da6004803603604081101561027a57600080fd5b506001600160a01b038135169060200135610490565b6102986104b4565b005b610298600480360360208110156102b057600080fd5b503561055b565b6101da610568565b6101f6600480360360208110156102d557600080fd5b50356001600160a01b0316610578565b610298600480360360408110156102fb57600080fd5b506001600160a01b038135169060200135610593565b6102986105a1565b61032161064f565b604080516001600160a01b039092168252519081900360200190f35b6101da61065e565b61013961066f565b6101da6004803603604081101561036357600080fd5b506001600160a01b03813516906020013561068f565b6101da6004803603604081101561038f57600080fd5b506001600160a01b0381351690602001356106b3565b6101f6600480360360408110156103bb57600080fd5b506001600160a01b03813581169160200135166106d7565b610298600480360360208110156103e957600080fd5b50356001600160a01b0316610702565b604051806040016040528060098152602001682937ba3a32b7103b1960b91b81525081565b600354600090600160a01b900460ff161561043857600080fd5b61044283836107fc565b9392505050565b60025490565b600354600090600160a01b900460ff161561046957600080fd5b610474848484610812565b949350505050565b601281565b6a13da329b6336471800000081565b600354600090600160a01b900460ff16156104aa57600080fd5b6104428383610869565b6104bc61065e565b61050d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600354600160a01b900460ff1661052357600080fd5b6003805460ff60a01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b61056533826108a5565b50565b600354600160a01b900460ff1681565b6001600160a01b031660009081526020819052604090205490565b61059d828261097e565b5050565b6105a961065e565b6105fa576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600354600160a01b900460ff161561061157600080fd5b6003805460ff60a01b1916600160a01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6003546001600160a01b031690565b6003546001600160a01b0316331490565b60405180604001604052806004815260200163524f545360e01b81525081565b600354600090600160a01b900460ff16156106a957600080fd5b61044283836109c3565b600354600090600160a01b900460ff16156106cd57600080fd5b61044283836109ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61070a61065e565b61075b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166107a05760405162461bcd60e51b8152600401808060200182810382526026815260200180610d156026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610809338484610a0c565b50600192915050565b600061081f848484610af8565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461085f91869161085a908663ffffffff610c3a16565b610a0c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161080991859061085a908663ffffffff610c9716565b6001600160a01b0382166108ea5760405162461bcd60e51b8152600401808060200182810382526021815260200180610d5d6021913960400191505060405180910390fd5b6002546108fd908263ffffffff610c3a16565b6002556001600160a01b038216600090815260208190526040902054610929908263ffffffff610c3a16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b61098882826108a5565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461059d91849161085a908563ffffffff610c3a16565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161080991859061085a908663ffffffff610c3a16565b6000610809338484610af8565b6001600160a01b038316610a515760405162461bcd60e51b8152600401808060200182810382526024815260200180610da36024913960400191505060405180910390fd5b6001600160a01b038216610a965760405162461bcd60e51b8152600401808060200182810382526022815260200180610d3b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b3d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610d7e6025913960400191505060405180910390fd5b6001600160a01b038216610b825760405162461bcd60e51b8152600401808060200182810382526023815260200180610cf26023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610bab908263ffffffff610c3a16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610be0908263ffffffff610c9716565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610c91576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610442576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820ea9f536c51609f6053a11c66826e913618ed58ef97e3c3067997ab83e0c41ea864736f6c63430005110032

Deployed Bytecode Sourcemap

14870:867:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14870:867:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14924:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14924:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14002:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14002:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4329:91;;;:::i;:::-;;;;;;;;;;;;;;;;13834:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13834:160:0;;;;;;;;;;;;;;;;;:::i;15017:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15061:70;;;:::i;14150:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14150:175:0;;;;;;;;:::i;13446:106::-;;;:::i;:::-;;15417:81;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15417:81:0;;:::i;12760:26::-;;;:::i;4483:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4483:110:0;-1:-1:-1;;;;;4483:110:0;;:::i;15560:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15560:103:0;;;;;;;;:::i;13247:104::-;;;:::i;11705:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;11705:79:0;;;;;;;;;;;;;;12071:92;;;:::i;14972:38::-;;;:::i;14333:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14333:185:0;;;;;;;;:::i;13694:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13694:132:0;;;;;;;;:::i;5025:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5025:134:0;;;;;;;;;;:::i;12318:236::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12318:236:0;-1:-1:-1;;;;;12318:236:0;;:::i;14924:41::-;;;;;;;;;;;;;;-1:-1:-1;;;14924:41:0;;;;:::o;14002:140::-;12950:6;;14081:4;;-1:-1:-1;;;12950:6:0;;;;12949:7;12941:16;;;;;;14105:29;14119:7;14128:5;14105:13;:29::i;:::-;14098:36;14002:140;-1:-1:-1;;;14002:140:0:o;4329:91::-;4400:12;;4329:91;:::o;13834:160::-;12950:6;;13927:4;;-1:-1:-1;;;12950:6:0;;;;12949:7;12941:16;;;;;;13951:35;13970:4;13976:2;13980:5;13951:18;:35::i;:::-;13944:42;13834:160;-1:-1:-1;;;;13834:160:0:o;15017:35::-;15050:2;15017:35;:::o;15061:70::-;15101:30;15061:70;:::o;14150:175::-;12950:6;;14241:12;;-1:-1:-1;;;12950:6:0;;;;12949:7;12941:16;;;;;;14273:44;14297:7;14306:10;14273:23;:44::i;13446:106::-;11917:9;:7;:9::i;:::-;11909:54;;;;;-1:-1:-1;;;11909:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13128:6;;-1:-1:-1;;;13128:6:0;;;;13120:15;;;;;;13504:6;:14;;-1:-1:-1;;;;13504:14:0;;;13534:10;;;;13513:5;;13534:10;13446:106::o;15417:81::-;15465:25;15471:10;15483:6;15465:5;:25::i;:::-;15417:81;:::o;12760:26::-;;;-1:-1:-1;;;12760:26:0;;;;;:::o;4483:110::-;-1:-1:-1;;;;;4567:18:0;4540:7;4567:18;;;;;;;;;;;;4483:110::o;15560:103::-;15629:26;15639:7;15648:6;15629:9;:26::i;:::-;15560:103;;:::o;13247:104::-;11917:9;:7;:9::i;:::-;11909:54;;;;;-1:-1:-1;;;11909:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12950:6;;-1:-1:-1;;;12950:6:0;;;;12949:7;12941:16;;;;;;13306:6;:13;;-1:-1:-1;;;;13306:13:0;-1:-1:-1;;;13306:13:0;;;13335:8;;;;13306:13;;13335:8;13247:104::o;11705:79::-;11770:6;;-1:-1:-1;;;;;11770:6:0;11705:79;:::o;12071:92::-;12149:6;;-1:-1:-1;;;;;12149:6:0;12135:10;:20;;12071:92::o;14972:38::-;;;;;;;;;;;;;;-1:-1:-1;;;14972:38:0;;;;:::o;14333:185::-;12950:6;;14429:12;;-1:-1:-1;;;12950:6:0;;;;12949:7;12941:16;;;;;;14461:49;14485:7;14494:15;14461:23;:49::i;13694:132::-;12950:6;;13769:4;;-1:-1:-1;;;12950:6:0;;;;12949:7;12941:16;;;;;;13793:25;13808:2;13812:5;13793:14;:25::i;5025:134::-;-1:-1:-1;;;;;5124:18:0;;;5097:7;5124:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5025:134::o;12318:236::-;11917:9;:7;:9::i;:::-;11909:54;;;;;-1:-1:-1;;;11909:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12399:22:0;;12391:73;;;;-1:-1:-1;;;12391:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12501:6;;12480:38;;-1:-1:-1;;;;;12480:38:0;;;;12501:6;;12480:38;;12501:6;;12480:38;12529:6;:17;;-1:-1:-1;;;;;;12529:17:0;-1:-1:-1;;;;;12529:17:0;;;;;;;;;;12318:236::o;5306:148::-;5371:4;5388:36;5397:10;5409:7;5418:5;5388:8;:36::i;:::-;-1:-1:-1;5442:4:0;5306:148;;;;:::o;5925:256::-;6014:4;6031:36;6041:6;6049:9;6060:6;6031:9;:36::i;:::-;-1:-1:-1;;;;;6107:19:0;;;;;;:11;:19;;;;;;;;6095:10;6107:31;;;;;;;;;6078:73;;6087:6;;6107:43;;6143:6;6107:43;:35;:43;:::i;:::-;6078:8;:73::i;:::-;-1:-1:-1;6169:4:0;5925:256;;;;;:::o;6590:206::-;6696:10;6670:4;6717:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6717:32:0;;;;;;;;;;6670:4;;6687:79;;6708:7;;6717:48;;6754:10;6717:48;:36;:48;:::i;9355:306::-;-1:-1:-1;;;;;9430:21:0;;9422:67;;;;-1:-1:-1;;;9422:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9517:12;;:23;;9534:5;9517:23;:16;:23;:::i;:::-;9502:12;:38;-1:-1:-1;;;;;9572:18:0;;:9;:18;;;;;;;;;;;:29;;9595:5;9572:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;9551:18:0;;:9;:18;;;;;;;;;;;:50;;;;9617:36;;;;;;;9551:9;;9617:36;;;;;;;;;;;9355:306;;:::o;10621:188::-;10693:22;10699:7;10708:6;10693:5;:22::i;:::-;-1:-1:-1;;;;;10756:20:0;;;;;;:11;:20;;;;;;;;10744:10;10756:32;;;;;;;;;10726:75;;10735:7;;10756:44;;10793:6;10756:44;:36;:44;:::i;7299:216::-;7410:10;7384:4;7431:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;7431:32:0;;;;;;;;;;7384:4;;7401:84;;7422:7;;7431:53;;7468:15;7431:53;:36;:53;:::i;4806:156::-;4875:4;4892:40;4902:10;4914:9;4925:6;4892:9;:40::i;10101:335::-;-1:-1:-1;;;;;10194:19:0;;10186:68;;;;-1:-1:-1;;;10186:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10273:21:0;;10265:68;;;;-1:-1:-1;;;10265:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10346:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;10397:31;;;;;;;;;;;;;;;;;10101:335;;;:::o;8005:429::-;-1:-1:-1;;;;;8103:20:0;;8095:70;;;;-1:-1:-1;;;8095:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8184:23:0;;8176:71;;;;-1:-1:-1;;;8176:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8280:17:0;;:9;:17;;;;;;;;;;;:29;;8302:6;8280:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;8260:17:0;;;:9;:17;;;;;;;;;;;:49;;;;8343:20;;;;;;;:32;;8368:6;8343:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;8320:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;8391:35;;;;;;;8320:20;;8391:35;;;;;;;;;;;;;8005:429;;;:::o;413:160::-;471:7;504:1;499;:6;;491:49;;;;;-1:-1:-1;;;491:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;560:5:0;;;413:160::o;224:181::-;282:7;314:5;;;338:6;;;;330:46;;;;;-1:-1:-1;;;330:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://ea9f536c51609f6053a11c66826e913618ed58ef97e3c3067997ab83e0c41ea8
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.