ETH Price: $3,148.42 (+0.93%)
Gas: 3 Gwei

Token

SANA (SANA)
 

Overview

Max Total Supply

10,000,000,000 SANA

Holders

1,954

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 16 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-15
*/

pragma solidity 0.5.0;

contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

/**
 * @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.
     *
     * 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);
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract ERC20 is Context, 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(_msgSender(), 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 amount) public 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 returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

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

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}


contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is Context, ERC20, MinterRole {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public onlyMinter {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public onlyMinter {
        _burnFrom(account, amount);
    }
}


/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

/**
 * @notice  This contract is for the Swarm BZZ token. This contract inherits
 *          from all the above imported contracts indirectly through the
 *          implemented contracts. ERC20Capped is Mintable, Burnable is an ERC20
 */
contract Token is ERC20Detailed, ERC20Mintable, ERC20Burnable {
    /**
      * @dev    Initialises all the inherited smart contracts
      */
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) 
        ERC20()
        ERC20Detailed(
            _name,
            _symbol,
            _decimals
        )
        ERC20Mintable()
        ERC20Burnable()
        public
    {
        _mint(msg.sender,1e26);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b5060405162001a3c38038062001a3c833981018060405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b505060209182015185519194509250849184918491620000f191600091860190620004cb565b50815162000107906001906020850190620004cb565b506002805460ff191660ff9290921691909117905550620001459050620001366401000000006200016e810204565b64010000000062000173810204565b62000165336a52b7d2dcc80cd2e4000000640100000000620001c5810204565b5050506200056d565b335b90565b6200018e60068264010000000062001327620002e882021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b600160a060020a03821615156200023d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546200025a908264010000000062000e2b6200038f82021704565b600555600160a060020a03821660009081526003602052604090205462000290908264010000000062000e2b6200038f82021704565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002fd82826401000000006200040b810204565b156200036a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200040457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000600160a060020a0382161515620004ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200050e57805160ff19168380011785556200053e565b828001600101855582156200053e579182015b828111156200053e57825182559160200191906001019062000521565b506200054c92915062000550565b5090565b6200017091905b808211156200054c576000815560010162000557565b6114bf806200057d6000396000f3fe6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101cc57806323b872dd146101f3578063313ce56714610236578063395093511461026157806340c10f191461029a57806342966c68146102d357806370a08231146102ff57806379cc67901461033257806395d89b411461036b578063983b2d561461038057806398650275146103b3578063a457c2d7146103c8578063a9059cbb14610401578063aa271e1a1461043a578063dd62ed3e1461046d575b600080fd5b34801561010157600080fd5b5061010a6104a8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101b8600480360360408110156101a257600080fd5b50600160a060020a03813516906020013561053e565b604080519115158252519081900360200190f35b3480156101d857600080fd5b506101e161055b565b60408051918252519081900360200190f35b3480156101ff57600080fd5b506101b86004803603606081101561021657600080fd5b50600160a060020a03813581169160208101359091169060400135610561565b34801561024257600080fd5b5061024b610640565b6040805160ff9092168252519081900360200190f35b34801561026d57600080fd5b506101b86004803603604081101561028457600080fd5b50600160a060020a038135169060200135610649565b3480156102a657600080fd5b506101b8600480360360408110156102bd57600080fd5b50600160a060020a03813516906020013561069d565b3480156102df57600080fd5b506102fd600480360360208110156102f657600080fd5b5035610711565b005b34801561030b57600080fd5b506101e16004803603602081101561032257600080fd5b5035600160a060020a0316610788565b34801561033e57600080fd5b506102fd6004803603604081101561035557600080fd5b50600160a060020a0381351690602001356107a3565b34801561037757600080fd5b5061010a610814565b34801561038c57600080fd5b506102fd600480360360208110156103a357600080fd5b5035600160a060020a0316610874565b3480156103bf57600080fd5b506102fd6108e0565b3480156103d457600080fd5b506101b8600480360360408110156103eb57600080fd5b50600160a060020a0381351690602001356108f2565b34801561040d57600080fd5b506101b86004803603604081101561042457600080fd5b50600160a060020a0381351690602001356109a4565b34801561044657600080fd5b506101b86004803603602081101561045d57600080fd5b5035600160a060020a03166109b8565b34801561047957600080fd5b506101e16004803603604081101561049057600080fd5b50600160a060020a03813581169160200135166109d1565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105345780601f1061050957610100808354040283529160200191610534565b820191906000526020600020905b81548152906001019060200180831161051757829003601f168201915b5050505050905090565b600061055261054b6109fc565b8484610a00565b50600192915050565b60055490565b600061056e848484610b6d565b6106368461057a6109fc565b61063185606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600460008b600160a060020a0316600160a060020a03168152602001908152602001600020600061060a6109fc565b600160a060020a03168152602081019190915260400160002054919063ffffffff610d9116565b610a00565b5060019392505050565b60025460ff1690565b60006105526106566109fc565b8461063185600460006106676109fc565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610e2b16565b60006106af6106aa6109fc565b6109b8565b1515610707576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b6105528383610e8f565b61071c6106aa6109fc565b1515610774576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b61078561077f6109fc565b82610f86565b50565b600160a060020a031660009081526003602052604090205490565b6107ae6106aa6109fc565b1515610806576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b6108108282611107565b5050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105345780601f1061050957610100808354040283529160200191610534565b61087f6106aa6109fc565b15156108d7576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b610785816111ad565b6108f06108eb6109fc565b6111f5565b565b60006105526108ff6109fc565b8461063185606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f0000000000000000000000000000000000000000000000000000008152506004600061096d6109fc565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d9116565b60006105526109b16109fc565b8484610b6d565b60006109cb60068363ffffffff61123d16565b92915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b3390565b600160a060020a0383161515610a85576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610b0b576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610bf3576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610c79576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a038616600090815260039091529190912054610d0091839063ffffffff610d9116565b600160a060020a038085166000908152600360205260408082209390935590841681522054610d35908263ffffffff610e2b16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610e235760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610de8578181015183820152602001610dd0565b50505050905090810190601f168015610e155780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e88576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610eef576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554610f02908263ffffffff610e2b16565b600555600160a060020a038216600090815260036020526040902054610f2e908263ffffffff610e2b16565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561100c576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a03851660009081526003909152919091205461109391839063ffffffff610d9116565b600160a060020a0383166000908152600360205260409020556005546110bf908263ffffffff6112e516565b600555604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6111118282610f86565b6108108261111d6109fc565b61063184606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e6365000000000000000000000000000000000000000000000000000000008152506004600089600160a060020a0316600160a060020a03168152602001908152602001600020600061060a6109fc565b6111be60068263ffffffff61132716565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61120660068263ffffffff6113ab16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a03821615156112c5576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6000610e8883836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d91565b611331828261123d565b15611386576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6113b5828261123d565b1515611431576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fe20746865204d696e74657220726f6c65000000000000000000000000000000004d696e746572526f6c653a2063616c6c657220646f6573206e6f742068617665a165627a7a72305820053f21ab99c4b23919e1616e5dceec3208859d5da669ced40e53202c130aadcd0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000453414e4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453414e4100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100f5578063095ea7b31461017f57806318160ddd146101cc57806323b872dd146101f3578063313ce56714610236578063395093511461026157806340c10f191461029a57806342966c68146102d357806370a08231146102ff57806379cc67901461033257806395d89b411461036b578063983b2d561461038057806398650275146103b3578063a457c2d7146103c8578063a9059cbb14610401578063aa271e1a1461043a578063dd62ed3e1461046d575b600080fd5b34801561010157600080fd5b5061010a6104a8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014457818101518382015260200161012c565b50505050905090810190601f1680156101715780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018b57600080fd5b506101b8600480360360408110156101a257600080fd5b50600160a060020a03813516906020013561053e565b604080519115158252519081900360200190f35b3480156101d857600080fd5b506101e161055b565b60408051918252519081900360200190f35b3480156101ff57600080fd5b506101b86004803603606081101561021657600080fd5b50600160a060020a03813581169160208101359091169060400135610561565b34801561024257600080fd5b5061024b610640565b6040805160ff9092168252519081900360200190f35b34801561026d57600080fd5b506101b86004803603604081101561028457600080fd5b50600160a060020a038135169060200135610649565b3480156102a657600080fd5b506101b8600480360360408110156102bd57600080fd5b50600160a060020a03813516906020013561069d565b3480156102df57600080fd5b506102fd600480360360208110156102f657600080fd5b5035610711565b005b34801561030b57600080fd5b506101e16004803603602081101561032257600080fd5b5035600160a060020a0316610788565b34801561033e57600080fd5b506102fd6004803603604081101561035557600080fd5b50600160a060020a0381351690602001356107a3565b34801561037757600080fd5b5061010a610814565b34801561038c57600080fd5b506102fd600480360360208110156103a357600080fd5b5035600160a060020a0316610874565b3480156103bf57600080fd5b506102fd6108e0565b3480156103d457600080fd5b506101b8600480360360408110156103eb57600080fd5b50600160a060020a0381351690602001356108f2565b34801561040d57600080fd5b506101b86004803603604081101561042457600080fd5b50600160a060020a0381351690602001356109a4565b34801561044657600080fd5b506101b86004803603602081101561045d57600080fd5b5035600160a060020a03166109b8565b34801561047957600080fd5b506101e16004803603604081101561049057600080fd5b50600160a060020a03813581169160200135166109d1565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105345780601f1061050957610100808354040283529160200191610534565b820191906000526020600020905b81548152906001019060200180831161051757829003601f168201915b5050505050905090565b600061055261054b6109fc565b8484610a00565b50600192915050565b60055490565b600061056e848484610b6d565b6106368461057a6109fc565b61063185606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600460008b600160a060020a0316600160a060020a03168152602001908152602001600020600061060a6109fc565b600160a060020a03168152602081019190915260400160002054919063ffffffff610d9116565b610a00565b5060019392505050565b60025460ff1690565b60006105526106566109fc565b8461063185600460006106676109fc565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610e2b16565b60006106af6106aa6109fc565b6109b8565b1515610707576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b6105528383610e8f565b61071c6106aa6109fc565b1515610774576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b61078561077f6109fc565b82610f86565b50565b600160a060020a031660009081526003602052604090205490565b6107ae6106aa6109fc565b1515610806576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b6108108282611107565b5050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105345780601f1061050957610100808354040283529160200191610534565b61087f6106aa6109fc565b15156108d7576040805160e560020a62461bcd02815260206004820152603060248201526000805160206114748339815191526044820152600080516020611454833981519152606482015290519081900360840190fd5b610785816111ad565b6108f06108eb6109fc565b6111f5565b565b60006105526108ff6109fc565b8461063185606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f0000000000000000000000000000000000000000000000000000008152506004600061096d6109fc565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d9116565b60006105526109b16109fc565b8484610b6d565b60006109cb60068363ffffffff61123d16565b92915050565b600160a060020a03918216600090815260046020908152604080832093909416825291909152205490565b3390565b600160a060020a0383161515610a85576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610b0b576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610bf3576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610c79576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a038616600090815260039091529190912054610d0091839063ffffffff610d9116565b600160a060020a038085166000908152600360205260408082209390935590841681522054610d35908263ffffffff610e2b16565b600160a060020a0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610e235760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610de8578181015183820152602001610dd0565b50505050905090810190601f168015610e155780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610e88576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610eef576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554610f02908263ffffffff610e2b16565b600555600160a060020a038216600090815260036020526040902054610f2e908263ffffffff610e2b16565b600160a060020a03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561100c576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a03851660009081526003909152919091205461109391839063ffffffff610d9116565b600160a060020a0383166000908152600360205260409020556005546110bf908263ffffffff6112e516565b600555604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6111118282610f86565b6108108261111d6109fc565b61063184606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e6365000000000000000000000000000000000000000000000000000000008152506004600089600160a060020a0316600160a060020a03168152602001908152602001600020600061060a6109fc565b6111be60068263ffffffff61132716565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61120660068263ffffffff6113ab16565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a03821615156112c5576040805160e560020a62461bcd02815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b6000610e8883836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d91565b611331828261123d565b15611386576040805160e560020a62461bcd02815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b6113b5828261123d565b1515611431576040805160e560020a62461bcd02815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0316600090815260209190915260409020805460ff1916905556fe20746865204d696e74657220726f6c65000000000000000000000000000000004d696e746572526f6c653a2063616c6c657220646f6573206e6f742068617665a165627a7a72305820053f21ab99c4b23919e1616e5dceec3208859d5da669ced40e53202c130aadcd0029

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000453414e4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453414e4100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SANA
Arg [1] : _symbol (string): SANA
Arg [2] : _decimals (uint8): 16

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 53414e4100000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 53414e4100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20918:491:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19732:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19732:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;19732:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10138:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10138:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10138:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;9159:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9159:91:0;;;;;;;;;;;;;;;;;;;;10762:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10762:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10762:304:0;;;;;;;;;;;;;;;;;;20584:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20584:83:0;;;;;;;;;;;;;;;;;;;;;;;11475:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11475:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11475:210:0;;;;;;;;;18302:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18302:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18302:143:0;;;;;;;;;18836:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18836:94:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18836:94:0;;;;;9313:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9313:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9313:110:0;-1:-1:-1;;;;;9313:110:0;;;18992:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18992:114:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18992:114:0;;;;;;;;;19934:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19934:87:0;;;;17424:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17424:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17424:92:0;-1:-1:-1;;;;;17424:92:0;;;17524:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17524:79:0;;;;12188:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12188:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12188:261:0;;;;;;;;;9636:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9636:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9636:158:0;;;;;;;;;17307:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17307:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17307:109:0;-1:-1:-1;;;;;17307:109:0;;;9857:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9857:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9857:134:0;;;;;;;;;;;19732:83;19802:5;19795:12;;;;;;;;-1:-1:-1;;19795:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19769:13;;19795:12;;19802:5;;19795:12;;19802:5;19795:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19732:83;:::o;10138:152::-;10204:4;10221:39;10230:12;:10;:12::i;:::-;10244:7;10253:6;10221:8;:39::i;:::-;-1:-1:-1;10278:4:0;10138:152;;;;:::o;9159:91::-;9230:12;;9159:91;:::o;10762:304::-;10851:4;10868:36;10878:6;10886:9;10897:6;10868:9;:36::i;:::-;10915:121;10924:6;10932:12;:10;:12::i;:::-;10946:89;10984:6;10946:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;10958:6;-1:-1:-1;;;;;10946:19:0;-1:-1:-1;;;;;10946:19:0;;;;;;;;;;;;:33;10966:12;:10;:12::i;:::-;-1:-1:-1;;;;;10946:33:0;;;;;;;;;;;;-1:-1:-1;10946:33:0;;;:89;;:37;:89;:::i;:::-;10915:8;:121::i;:::-;-1:-1:-1;11054:4:0;10762:304;;;;;:::o;20584:83::-;20650:9;;;;20584:83;:::o;11475:210::-;11555:4;11572:83;11581:12;:10;:12::i;:::-;11595:7;11604:50;11643:10;11604:11;:25;11616:12;:10;:12::i;:::-;-1:-1:-1;;;;;11604:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11604:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18302:143::-;18376:4;17204:22;17213:12;:10;:12::i;:::-;17204:8;:22::i;:::-;17196:83;;;;;;;-1:-1:-1;;;;;17196:83:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;;;;;;;;;;;;18393:22;18399:7;18408:6;18393:5;:22::i;18836:94::-;17204:22;17213:12;:10;:12::i;17204:22::-;17196:83;;;;;;;-1:-1:-1;;;;;17196:83:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;;;;;;;;;;;;18895:27;18901:12;:10;:12::i;:::-;18915:6;18895:5;:27::i;:::-;18836:94;:::o;9313:110::-;-1:-1:-1;;;;;9397:18:0;9370:7;9397:18;;;:9;:18;;;;;;;9313:110::o;18992:114::-;17204:22;17213:12;:10;:12::i;17204:22::-;17196:83;;;;;;;-1:-1:-1;;;;;17196:83:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;;;;;;;;;;;;19072:26;19082:7;19091:6;19072:9;:26::i;:::-;18992:114;;:::o;19934:87::-;20006:7;19999:14;;;;;;;;-1:-1:-1;;19999:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19973:13;;19999:14;;20006:7;;19999:14;;20006:7;19999:14;;;;;;;;;;;;;;;;;;;;;;;;17424:92;17204:22;17213:12;:10;:12::i;17204:22::-;17196:83;;;;;;;-1:-1:-1;;;;;17196:83:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;-1:-1:-1;;;;;;;;;;;17196:83:0;;;;;;;;;;;;;;;17489:19;17500:7;17489:10;:19::i;17524:79::-;17568:27;17582:12;:10;:12::i;:::-;17568:13;:27::i;:::-;17524:79::o;12188:261::-;12273:4;12290:129;12299:12;:10;:12::i;:::-;12313:7;12322:96;12361:15;12322:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;12334:12;:10;:12::i;:::-;-1:-1:-1;;;;;12322:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;12322:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;9636:158::-;9705:4;9722:42;9732:12;:10;:12::i;:::-;9746:9;9757:6;9722:9;:42::i;17307:109::-;17363:4;17387:21;:8;17400:7;17387:21;:12;:21;:::i;:::-;17380:28;17307:109;-1:-1:-1;;17307:109:0:o;9857:134::-;-1:-1:-1;;;;;9956:18:0;;;9929:7;9956:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9857:134::o;295:98::-;375:10;295:98;:::o;15119:338::-;-1:-1:-1;;;;;15213:19:0;;;;15205:68;;;;;-1:-1:-1;;;;;15205:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15292:21:0;;;;15284:68;;;;;-1:-1:-1;;;;;15284:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15365:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15417:32;;;;;;;;;;;;;;;;;15119:338;;;:::o;12939:471::-;-1:-1:-1;;;;;13037:20:0;;;;13029:70;;;;;-1:-1:-1;;;;;13029:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13118:23:0;;;;13110:71;;;;;-1:-1:-1;;;;;13110:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13214;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13214:17:0;;-1:-1:-1;13214:17:0;;;:9;:17;;;;;;;;:71;;13236:6;;13214:71;:21;:71;:::i;:::-;-1:-1:-1;;;;;13194:17:0;;;;;;;:9;:17;;;;;;:91;;;;13319:20;;;;;;;:32;;13344:6;13319:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;13296:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;13367:35;;;;;;;13296:20;;13367:35;;;;;;;;;;;;;12939:471;;;:::o;5188:192::-;5274:7;5310:12;5302:6;;;;5294:29;;;;-1:-1:-1;;;;;5294:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5294:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5346:5:0;;;5188:192::o;4259:181::-;4317:7;4349:5;;;4373:6;;;;4365:46;;;;;-1:-1:-1;;;;;4365:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4431:1;4259:181;-1:-1:-1;;;4259:181:0:o;13691:308::-;-1:-1:-1;;;;;13767:21:0;;;;13759:65;;;;;-1:-1:-1;;;;;13759:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13852:12;;:24;;13869:6;13852:24;:16;:24;:::i;:::-;13837:12;:39;-1:-1:-1;;;;;13908:18:0;;;;;;:9;:18;;;;;;:30;;13931:6;13908:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;13887:18:0;;;;;;:9;:18;;;;;;;;:51;;;;13954:37;;;;;;;13887:18;;;;13954:37;;;;;;;;;;13691:308;;:::o;14331:348::-;-1:-1:-1;;;;;14407:21:0;;;;14399:67;;;;;-1:-1:-1;;;;;14399:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14500:68;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14500:18:0;;-1:-1:-1;14500:18:0;;;:9;:18;;;;;;;;:68;;14523:6;;14500:68;:22;:68;:::i;:::-;-1:-1:-1;;;;;14479:18:0;;;;;;:9;:18;;;;;:89;14594:12;;:24;;14611:6;14594:24;:16;:24;:::i;:::-;14579:12;:39;14634:37;;;;;;;;14660:1;;-1:-1:-1;;;;;14634:37:0;;;;;;;;;;;;14331:348;;:::o;15643:232::-;15715:22;15721:7;15730:6;15715:5;:22::i;:::-;15748:119;15757:7;15766:12;:10;:12::i;:::-;15780:86;15819:6;15780:86;;;;;;;;;;;;;;;;;;;;;;;:11;:20;15792:7;-1:-1:-1;;;;;15780:20:0;-1:-1:-1;;;;;15780:20:0;;;;;;;;;;;;:34;15801:12;:10;:12::i;17611:122::-;17668:21;:8;17681:7;17668:21;:12;:21;:::i;:::-;17705:20;;-1:-1:-1;;;;;17705:20:0;;;;;;;;17611:122;:::o;17741:130::-;17801:24;:8;17817:7;17801:24;:15;:24;:::i;:::-;17841:22;;-1:-1:-1;;;;;17841:22:0;;;;;;;;17741:130;:::o;16665:203::-;16737:4;-1:-1:-1;;;;;16762:21:0;;;;16754:68;;;;;-1:-1:-1;;;;;16754:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16840:20:0;:11;:20;;;;;;;;;;;;;;;16665:203::o;4715:136::-;4773:7;4800:43;4804:1;4807;4800:43;;;;;;;;;;;;;;;;;;:3;:43::i;16129:178::-;16207:18;16211:4;16217:7;16207:3;:18::i;:::-;16206:19;16198:63;;;;;-1:-1:-1;;;;;16198:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16272:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16272:27:0;16295:4;16272:27;;;16129:178::o;16387:183::-;16467:18;16471:4;16477:7;16467:3;:18::i;:::-;16459:64;;;;;;;-1:-1:-1;;;;;16459:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16534:20:0;16557:5;16534:20;;;;;;;;;;;:28;;-1:-1:-1;;16534:28:0;;;16387:183::o

Swarm Source

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