ERC-20
Source Code
Exchange
Overview
Max Total Supply
500,000,000 BT
Holders
5 (0.00%)
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$500,305.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
BiteniumToken
Compiler Version
v0.6.0+commit.26b70077
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-04-02
*/
pragma solidity ^0.6.0;
contract Context {
constructor () internal { }
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
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);
}
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.
*/
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.
*/
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.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
address public owner;
address public newOwner;
event OwnershipTransferred(address indexed _from, address indexed _to);
constructor() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address _newOwner) public onlyOwner {
newOwner = _newOwner;
}
function acceptOwnership() public {
require(msg.sender == newOwner);
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
newOwner = address(0);
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract BiteniumToken is Context, IERC20, Owned {
using SafeMath for uint256;
string public symbol;
string public name;
uint8 public decimals;
uint public _totalSupply;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
constructor () public{
name = "Bitenium Token";
symbol = "BT";
decimals = 18;
_totalSupply = 500000000 * 10**uint(decimals);
_balances[owner] = _totalSupply;
emit Transfer(address(0), owner, _totalSupply);
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_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 virtual 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 virtual 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 virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_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 virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_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 virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_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 virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of `from`'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of `from`'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for `accounts`'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b0319163317905560408051808201909152600e8082526d2134ba32b734bab6902a37b5b2b760911b6020909201918252610058916003916100ff565b5060408051808201909152600280825261109560f21b602090920191825261008091816100ff565b5060048054601260ff19909116179081905560ff16600a0a631dcd6500026005819055600080546001600160a01b0390811682526006602090815260408084208590558354815195865290519216937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a361019a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061014057805160ff191683800117855561016d565b8280016001018555821561016d579182015b8281111561016d578251825591602001919060010190610152565b5061017992915061017d565b5090565b61019791905b808211156101795760008155600101610183565b90565b610e13806101a96000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806379ba5097116100a2578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034b578063d4ee1d9014610377578063dd62ed3e1461037f578063f2fde38b146103ad57610116565b806379ba5097146102bf57806379cc6790146102c75780638da5cb5b146102f357806395d89b411461031757610116565b8063313ce567116100e9578063313ce5671461022857806339509351146102465780633eaaf86b1461027257806342966c681461027a57806370a082311461029957610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610461565b604080519115158252519081900360200190f35b6101e061047e565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b03813581169160208101359091169060400135610484565b610230610511565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561051a565b6101e061056e565b6102976004803603602081101561029057600080fd5b5035610574565b005b6101e0600480360360208110156102af57600080fd5b50356001600160a01b0316610588565b6102976105a3565b610297600480360360408110156102dd57600080fd5b506001600160a01b03813516906020013561061e565b6102fb61067e565b604080516001600160a01b039092168252519081900360200190f35b61012361068d565b6101c46004803603604081101561033557600080fd5b506001600160a01b0381351690602001356106e5565b6101c46004803603604081101561036157600080fd5b506001600160a01b038135169060200135610753565b6102fb610767565b6101e06004803603604081101561039557600080fd5b506001600160a01b0381358116916020013516610776565b610297600480360360208110156103c357600080fd5b50356001600160a01b03166107a1565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104595780601f1061042e57610100808354040283529160200191610459565b820191906000526020600020905b81548152906001019060200180831161043c57829003601f168201915b505050505081565b600061047561046e6107da565b84846107de565b50600192915050565b60055490565b60006104918484846108ca565b6105078461049d6107da565b61050285604051806060016040528060288152602001610d03602891396001600160a01b038a166000908152600760205260408120906104db6107da565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610a3316565b6107de565b5060019392505050565b60045460ff1681565b60006104756105276107da565b8461050285600760006105386107da565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610aca16565b60055481565b61058561057f6107da565b82610b2b565b50565b6001600160a01b031660009081526006602052604090205490565b6001546001600160a01b031633146105ba57600080fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b600061065b82604051806060016040528060248152602001610d2b6024913961064e866106496107da565b610776565b919063ffffffff610a3316565b905061066f836106696107da565b836107de565b6106798383610b2b565b505050565b6000546001600160a01b031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104595780601f1061042e57610100808354040283529160200191610459565b60006104756106f26107da565b8461050285604051806060016040528060258152602001610db9602591396007600061071c6107da565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610a3316565b60006104756107606107da565b84846108ca565b6001546001600160a01b031681565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6000546001600160a01b031633146107b857600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166108235760405162461bcd60e51b8152600401808060200182810382526024815260200180610d956024913960400191505060405180910390fd5b6001600160a01b0382166108685760405162461bcd60e51b8152600401808060200182810382526022815260200180610cbb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661090f5760405162461bcd60e51b8152600401808060200182810382526025815260200180610d706025913960400191505060405180910390fd5b6001600160a01b0382166109545760405162461bcd60e51b8152600401808060200182810382526023815260200180610c766023913960400191505060405180910390fd5b61095f838383610679565b6109a281604051806060016040528060268152602001610cdd602691396001600160a01b038616600090815260066020526040902054919063ffffffff610a3316565b6001600160a01b0380851660009081526006602052604080822093909355908416815220546109d7908263ffffffff610aca16565b6001600160a01b0380841660008181526006602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ac25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a87578181015183820152602001610a6f565b50505050905090810190601f168015610ab45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610b24576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610b705760405162461bcd60e51b8152600401808060200182810382526021815260200180610d4f6021913960400191505060405180910390fd5b610b7c82600083610679565b610bbf81604051806060016040528060228152602001610c99602291396001600160a01b038516600090815260066020526040902054919063ffffffff610a3316565b6001600160a01b038316600090815260066020526040902055600554610beb908263ffffffff610c3316565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610b2483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610a3356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201cca9ac5cf77dba4ee3665bd0a4a625a46aaf4b399e79c5c66fdcbdd32cc2e3664736f6c63430006000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806379ba5097116100a2578063a457c2d711610071578063a457c2d71461031f578063a9059cbb1461034b578063d4ee1d9014610377578063dd62ed3e1461037f578063f2fde38b146103ad57610116565b806379ba5097146102bf57806379cc6790146102c75780638da5cb5b146102f357806395d89b411461031757610116565b8063313ce567116100e9578063313ce5671461022857806339509351146102465780633eaaf86b1461027257806342966c681461027a57806370a082311461029957610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d857806323b872dd146101f2575b600080fd5b6101236103d3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b038135169060200135610461565b604080519115158252519081900360200190f35b6101e061047e565b60408051918252519081900360200190f35b6101c46004803603606081101561020857600080fd5b506001600160a01b03813581169160208101359091169060400135610484565b610230610511565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561025c57600080fd5b506001600160a01b03813516906020013561051a565b6101e061056e565b6102976004803603602081101561029057600080fd5b5035610574565b005b6101e0600480360360208110156102af57600080fd5b50356001600160a01b0316610588565b6102976105a3565b610297600480360360408110156102dd57600080fd5b506001600160a01b03813516906020013561061e565b6102fb61067e565b604080516001600160a01b039092168252519081900360200190f35b61012361068d565b6101c46004803603604081101561033557600080fd5b506001600160a01b0381351690602001356106e5565b6101c46004803603604081101561036157600080fd5b506001600160a01b038135169060200135610753565b6102fb610767565b6101e06004803603604081101561039557600080fd5b506001600160a01b0381358116916020013516610776565b610297600480360360208110156103c357600080fd5b50356001600160a01b03166107a1565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104595780601f1061042e57610100808354040283529160200191610459565b820191906000526020600020905b81548152906001019060200180831161043c57829003601f168201915b505050505081565b600061047561046e6107da565b84846107de565b50600192915050565b60055490565b60006104918484846108ca565b6105078461049d6107da565b61050285604051806060016040528060288152602001610d03602891396001600160a01b038a166000908152600760205260408120906104db6107da565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610a3316565b6107de565b5060019392505050565b60045460ff1681565b60006104756105276107da565b8461050285600760006105386107da565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610aca16565b60055481565b61058561057f6107da565b82610b2b565b50565b6001600160a01b031660009081526006602052604090205490565b6001546001600160a01b031633146105ba57600080fd5b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b600061065b82604051806060016040528060248152602001610d2b6024913961064e866106496107da565b610776565b919063ffffffff610a3316565b905061066f836106696107da565b836107de565b6106798383610b2b565b505050565b6000546001600160a01b031681565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156104595780601f1061042e57610100808354040283529160200191610459565b60006104756106f26107da565b8461050285604051806060016040528060258152602001610db9602591396007600061071c6107da565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610a3316565b60006104756107606107da565b84846108ca565b6001546001600160a01b031681565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6000546001600160a01b031633146107b857600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166108235760405162461bcd60e51b8152600401808060200182810382526024815260200180610d956024913960400191505060405180910390fd5b6001600160a01b0382166108685760405162461bcd60e51b8152600401808060200182810382526022815260200180610cbb6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661090f5760405162461bcd60e51b8152600401808060200182810382526025815260200180610d706025913960400191505060405180910390fd5b6001600160a01b0382166109545760405162461bcd60e51b8152600401808060200182810382526023815260200180610c766023913960400191505060405180910390fd5b61095f838383610679565b6109a281604051806060016040528060268152602001610cdd602691396001600160a01b038616600090815260066020526040902054919063ffffffff610a3316565b6001600160a01b0380851660009081526006602052604080822093909355908416815220546109d7908263ffffffff610aca16565b6001600160a01b0380841660008181526006602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ac25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a87578181015183820152602001610a6f565b50505050905090810190601f168015610ab45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610b24576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610b705760405162461bcd60e51b8152600401808060200182810382526021815260200180610d4f6021913960400191505060405180910390fd5b610b7c82600083610679565b610bbf81604051806060016040528060228152602001610c99602291396001600160a01b038516600090815260066020526040902054919063ffffffff610a3316565b6001600160a01b038316600090815260066020526040902055600554610beb908263ffffffff610c3316565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610b2483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610a3356fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201cca9ac5cf77dba4ee3665bd0a4a625a46aaf4b399e79c5c66fdcbdd32cc2e3664736f6c63430006000033
Deployed Bytecode Sourcemap
9788:8688:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9788:8688:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9906:19;;;:::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;9906:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11492:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11492:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10461:100;;;:::i;:::-;;;;;;;;;;;;;;;;12133:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12133:321:0;;;;;;;;;;;;;;;;;:::i;9932:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12863:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12863:218:0;;;;;;;;:::i;9960:24::-;;;:::i;17764:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17764:91:0;;:::i;:::-;;10624:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10624:119:0;-1:-1:-1;;;;;10624:119:0;;:::i;8408:196::-;;;:::i;18172:295::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18172:295:0;;;;;;;;:::i;8010:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;8010:20:0;;;;;;;;;;;;;;9879;;;:::i;13584:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13584:269:0;;;;;;;;:::i;10956:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10956:175:0;;;;;;;;:::i;8037:23::-;;;:::i;11194:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11194:151:0;;;;;;;;;;:::i;8300:102::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8300:102:0;-1:-1:-1;;;;;8300:102:0;;:::i;9906:19::-;;;;;;;;;;;;;;;-1:-1:-1;;9906:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11492:169::-;11575:4;11592:39;11601:12;:10;:12::i;:::-;11615:7;11624:6;11592:8;:39::i;:::-;-1:-1:-1;11649:4:0;11492:169;;;;:::o;10461:100::-;10541:12;;10461:100;:::o;12133:321::-;12239:4;12256:36;12266:6;12274:9;12285:6;12256:9;:36::i;:::-;12303:121;12312:6;12320:12;:10;:12::i;:::-;12334:89;12372:6;12334:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12334:19:0;;;;;;:11;:19;;;;;;12354:12;:10;:12::i;:::-;-1:-1:-1;;;;;12334:33:0;;;;;;;;;;;;-1:-1:-1;12334:33:0;;;:89;;:37;:89;:::i;:::-;12303:8;:121::i;:::-;-1:-1:-1;12442:4:0;12133:321;;;;;:::o;9932:21::-;;;;;;:::o;12863:218::-;12951:4;12968:83;12977:12;:10;:12::i;:::-;12991:7;13000:50;13039:10;13000:11;:25;13012:12;:10;:12::i;:::-;-1:-1:-1;;;;;13000:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13000:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;9960:24::-;;;;:::o;17764:91::-;17820:27;17826:12;:10;:12::i;:::-;17840:6;17820:5;:27::i;:::-;17764:91;:::o;10624:119::-;-1:-1:-1;;;;;10717:18:0;10690:7;10717:18;;;:9;:18;;;;;;;10624:119::o;8408:196::-;8475:8;;-1:-1:-1;;;;;8475:8:0;8461:10;:22;8453:31;;;;;;8528:8;;;8521:5;;8500:37;;-1:-1:-1;;;;;8528:8:0;;;;8521:5;;;;8500:37;;;8556:8;;;;8548:16;;-1:-1:-1;;;;;;8548:16:0;;;-1:-1:-1;;;;;8556:8:0;;8548:16;;;;8575:21;;;8408:196::o;18172:295::-;18249:26;18278:84;18315:6;18278:84;;;;;;;;;;;;;;;;;:32;18288:7;18297:12;:10;:12::i;:::-;18278:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;18249:113;;18375:51;18384:7;18393:12;:10;:12::i;:::-;18407:18;18375:8;:51::i;:::-;18437:22;18443:7;18452:6;18437:5;:22::i;:::-;18172:295;;;:::o;8010:20::-;;;-1:-1:-1;;;;;8010:20:0;;:::o;9879:::-;;;;;;;;;;;;;;-1:-1:-1;;9879:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13584:269;13677:4;13694:129;13703:12;:10;:12::i;:::-;13717:7;13726:96;13765:15;13726:96;;;;;;;;;;;;;;;;;:11;:25;13738:12;:10;:12::i;:::-;-1:-1:-1;;;;;13726:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13726:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;10956:175::-;11042:4;11059:42;11069:12;:10;:12::i;:::-;11083:9;11094:6;11059:9;:42::i;8037:23::-;;;-1:-1:-1;;;;;8037:23:0;;:::o;11194:151::-;-1:-1:-1;;;;;11310:18:0;;;11283:7;11310:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11194:151::o;8300:102::-;8266:5;;-1:-1:-1;;;;;8266:5:0;8252:10;:19;8244:28;;;;;;8374:8:::1;:20:::0;;-1:-1:-1;;;;;;8374:20:0::1;-1:-1:-1::0;;;;;8374:20:0;;;::::1;::::0;;;::::1;::::0;;8300:102::o;88:106::-;176:10;88:106;:::o;16731:346::-;-1:-1:-1;;;;;16833:19:0;;16825:68;;;;-1:-1:-1;;;16825:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16912:21:0;;16904:68;;;;-1:-1:-1;;;16904:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16985:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17037:32;;;;;;;;;;;;;;;;;16731:346;;;:::o;14343:539::-;-1:-1:-1;;;;;14449:20:0;;14441:70;;;;-1:-1:-1;;;14441:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14530:23:0;;14522:71;;;;-1:-1:-1;;;14522:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14606:47;14627:6;14635:9;14646:6;14606:20;:47::i;:::-;14686:71;14708:6;14686:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14686:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;14666:17:0;;;;;;;:9;:17;;;;;;:91;;;;14791:20;;;;;;;:32;;14816:6;14791:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14768:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;14839:35;;;;;;;14768:20;;14839:35;;;;;;;;;;;;;14343:539;;;:::o;4225:192::-;4311:7;4347:12;4339:6;;;;4331:29;;;;-1:-1:-1;;;4331: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;4331:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4383:5:0;;;4225:192::o;3338:181::-;3396:7;3428:5;;;3452:6;;;;3444:46;;;;;-1:-1:-1;;;3444:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3510:1;3338:181;-1:-1:-1;;;3338:181:0:o;15873:418::-;-1:-1:-1;;;;;15957:21:0;;15949:67;;;;-1:-1:-1;;;15949:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16029:49;16050:7;16067:1;16071:6;16029:20;:49::i;:::-;16112:68;16135:6;16112:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16112:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16091:18:0;;;;;;:9;:18;;;;;:89;16206:12;;:24;;16223:6;16206:24;:16;:24;:::i;:::-;16191:12;:39;16246:37;;;;;;;;16272:1;;-1:-1:-1;;;;;16246:37:0;;;;;;;;;;;;15873:418;;:::o;3794:136::-;3852:7;3879:43;3883:1;3886;3879:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://1cca9ac5cf77dba4ee3665bd0a4a625a46aaf4b399e79c5c66fdcbdd32cc2e36
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.
Add Token to MetaMask (Web3)