Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BLB
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-04-09
*/
// File: node_modules\openzeppelin-solidity\contracts\token\ERC20\IERC20.sol
pragma solidity ^0.5.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see `ERC20Detailed`.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a `Transfer` event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through `transferFrom`. This is
* zero by default.
*
* This value changes when `approve` or `transferFrom` are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* > Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an `Approval` event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a `Transfer` event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to `approve`. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: openzeppelin-solidity\contracts\token\ERC20\ERC20.sol
pragma solidity ^0.5.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`.
*
* *For a detailed writeup see our guide [How to implement supply
* mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an `Approval` event is emitted on calls to `transferFrom`.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
* functions have been added to mitigate the well-known issues around setting
* allowances. See `IERC20.approve`.
*/
contract ERC20 is IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
/**
* @dev See `IERC20.totalSupply`.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See `IERC20.balanceOf`.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See `IERC20.transfer`.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
_transfer(msg.sender, recipient, amount);
return true;
}
/**
* @dev See `IERC20.allowance`.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See `IERC20.approve`.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
/**
* @dev See `IERC20.transferFrom`.
*
* Emits an `Approval` event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of `ERC20`;
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `value`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to `approve` that can be used as a mitigation for
* problems described in `IERC20.approve`.
*
* Emits an `Approval` event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to `approve` that can be used as a mitigation for
* problems described in `IERC20.approve`.
*
* Emits an `Approval` event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to `transfer`, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a `Transfer` event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a `Transfer` event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destoys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a `Transfer` event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 value) internal {
require(account != address(0), "ERC20: burn from the zero address");
_totalSupply = _totalSupply.sub(value);
_balances[account] = _balances[account].sub(value);
emit Transfer(account, address(0), value);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an `Approval` event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 value) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = value;
emit Approval(owner, spender, value);
}
/**
* @dev Destoys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See `_burn` and `_approve`.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
}
}
// File: openzeppelin-solidity\contracts\token\ERC20\ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @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 that 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;
}
}
// File: openzeppelin-solidity\contracts\ownership\Ownable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be aplied to your functions to restrict their use to
* the owner.
*/
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
_owner = msg.sender;
emit OwnershipTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return msg.sender == _owner;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* > Note: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: openzeppelin-solidity\contracts\access\Roles.sol
pragma solidity ^0.5.0;
/**
* @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];
}
}
// File: openzeppelin-solidity\contracts\math\SafeMath.sol
pragma solidity ^0.5.0;
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
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-solidity/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) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, "SafeMath: division by zero");
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) {
require(b != 0, "SafeMath: modulo by zero");
return a % b;
}
}
// File: contracts\BlockBerry.sol
pragma solidity ^0.5.11;
contract BlockBerry is ERC20, ERC20Detailed, Ownable {
using SafeMath for uint256;
using Roles for Roles.Role;
uint256 private _cap;
constructor(string memory description, string memory symbol, uint256 cap) //initialize the contract
ERC20Detailed(description, symbol, 18) //description symbol decimals
public {
_cap = cap;
}
/**
* @dev returns cap of tokens
*/
function cap() public view returns (uint256) {
return _cap;
}
/**
* @dev mints tokens. see ERC20._mint
* requirements: cannot exceed total cap
*/
function mint(uint256 value) public onlyOwner returns (bool) {
require(totalSupply().add(value) <= _cap, "Cap exceeded");
_mint(msg.sender, value);
return true;
}
/**
* @dev burn tokens. see _burn
*/
function burn(uint256 value) public onlyOwner returns (bool) {
_burn(msg.sender, value);
return true;
}
/**
* @dev override func to check if relevant accounts are frozen. see ERC20.transfer
*/
function transfer(address to, uint256 value) public notFrozen(msg.sender) notFrozen(to) returns (bool) {
return super.transfer(to, value);
}
/**
* @dev override func to check if relevant accounts are frozen. see ERC20.transferFrom
*/
function transferFrom(address from, address to, uint256 value) public notFrozen(msg.sender) notFrozen(from) notFrozen(to) returns (bool) {
return super.transferFrom(from, to, value);
}
/**
* @dev Emitted when owner freezes an account
*/
event Freeze(address indexed frozenAccount);
/**
* @dev Emitted when owner unfreezes an account
*/
event Unfreeze(address indexed unfrozenAccount);
/**
* @dev _frozenAccounts keeps tracks of accounts that are frozen
*/
Roles.Role private _frozenAccounts;
/**
* @dev used to override transfer funcs to ensure no transfers to and from frozen accounts
*/
modifier notFrozen(address account) {
require(!isFrozen(account), "Account is frozen");
_;
}
/**
* @dev checks if an account is frozen
*/
function isFrozen(address account) public view returns (bool) {
return _frozenAccounts.has(account);
}
/**
* @dev freeze functionality, requires account to be not the owner's account
* only owner can call this, and owner cannot provide his own address to freeze
*/
function freeze(address account) public onlyOwner returns (bool) {
require(account!=msg.sender, "owner cannot freeze own account");
_frozenAccounts.add(account);
emit Freeze(account);
return true;
}
/**
* @dev unfreeze an account
*/
function unfreeze(address account) public onlyOwner returns (bool) {
_frozenAccounts.remove(account);
emit Unfreeze(account);
return true;
}
}
// File: contracts\BLB.sol
pragma solidity 0.5.11;
contract BLB is BlockBerry {
constructor(string memory description, string memory symbol, uint256 cap) //initialize the contract
BlockBerry(description, symbol, cap)
public { }
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unfreeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"freeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cap","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"frozenAccount","type":"address"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"unfrozenAccount","type":"address"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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"}]Contract Creation Code
60806040523480156200001157600080fd5b506040516200173e3803806200173e833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060405260209081015185519093508592508491849184918491601291620001c69160039186019062000252565b508151620001dc90600490602085019062000252565b506005805460ff191660ff9290921691909117610100600160a81b03191661010033810291909117918290556040516001600160a01b0391909204169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a360065550620002f79350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200029557805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c5578251825591602001919060010190620002a8565b50620002d3929150620002d7565b5090565b620002f491905b80821115620002d35760008155600101620002de565b90565b61143780620003076000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a0712d681161007c578063a0712d6814610368578063a457c2d714610385578063a9059cbb146103b1578063dd62ed3e146103dd578063e58398361461040b578063f2fde38b1461043157610137565b8063715018a6146103045780638d1fdf2f1461030e5780638da5cb5b146103345780638f32d59b1461035857806395d89b411461036057610137565b8063355274ea116100ff578063355274ea14610267578063395093511461026f57806342966c681461029b57806345c8b1a6146102b857806370a08231146102de57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b610144610457565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b0381351690602001356104ed565b604080519115158252519081900360200190f35b610201610503565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610509565b610251610611565b6040805160ff9092168252519081900360200190f35b61020161061a565b6101e56004803603604081101561028557600080fd5b506001600160a01b038135169060200135610620565b6101e5600480360360208110156102b157600080fd5b5035610661565b6101e5600480360360208110156102ce57600080fd5b50356001600160a01b03166106bc565b610201600480360360208110156102f457600080fd5b50356001600160a01b0316610752565b61030c61076d565b005b6101e56004803603602081101561032457600080fd5b50356001600160a01b0316610804565b61033c6108f8565b604080516001600160a01b039092168252519081900360200190f35b6101e561090c565b610144610922565b6101e56004803603602081101561037e57600080fd5b5035610983565b6101e56004803603604081101561039b57600080fd5b506001600160a01b038135169060200135610a33565b6101e5600480360360408110156103c757600080fd5b506001600160a01b038135169060200135610a6f565b610201600480360360408110156103f357600080fd5b506001600160a01b0381358116916020013516610b24565b6101e56004803603602081101561042157600080fd5b50356001600160a01b0316610b4f565b61030c6004803603602081101561044757600080fd5b50356001600160a01b0316610b68565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e35780601f106104b8576101008083540402835291602001916104e3565b820191906000526020600020905b8154815290600101906020018083116104c657829003601f168201915b5050505050905090565b60006104fa338484610bbb565b50600192915050565b60025490565b60003361051581610b4f565b1561055b576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b8461056581610b4f565b156105ab576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b846105b581610b4f565b156105fb576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b610606878787610ca7565b979650505050505050565b60055460ff1690565b60065490565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104fa91859061065c908663ffffffff610cf916565b610bbb565b600061066b61090c565b6106aa576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b6106b43383610d5a565b506001919050565b60006106c661090c565b610705576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b61071660078363ffffffff610e3316565b6040516001600160a01b038316907fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee90600090a2506001919050565b6001600160a01b031660009081526020819052604090205490565b61077561090c565b6107b4576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061080e61090c565b61084d576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b6001600160a01b0382163314156108ab576040805162461bcd60e51b815260206004820152601f60248201527f6f776e65722063616e6e6f7420667265657a65206f776e206163636f756e7400604482015290519081900360640190fd5b6108bc60078363ffffffff610e9a16565b6040516001600160a01b038316907faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304990600090a2506001919050565b60055461010090046001600160a01b031690565b60055461010090046001600160a01b0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e35780601f106104b8576101008083540402835291602001916104e3565b600061098d61090c565b6109cc576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b6006546109e7836109db610503565b9063ffffffff610cf916565b1115610a29576040805162461bcd60e51b815260206004820152600c60248201526b10d85c08195e18d95959195960a21b604482015290519081900360640190fd5b6106b43383610f1b565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104fa91859061065c908663ffffffff61100b16565b600033610a7b81610b4f565b15610ac1576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b83610acb81610b4f565b15610b11576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b610b1b8585611068565b95945050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610b6260078363ffffffff61107516565b92915050565b610b7061090c565b610baf576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b610bb8816110dc565b50565b6001600160a01b038316610c005760405162461bcd60e51b81526004018080602001828103825260248152602001806113df6024913960400191505060405180910390fd5b6001600160a01b038216610c455760405162461bcd60e51b81526004018080602001828103825260228152602001806113146022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610cb4848484611188565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610cef91869161065c908663ffffffff61100b16565b5060019392505050565b600082820183811015610d53576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d9f5760405162461bcd60e51b81526004018080602001828103825260218152602001806113996021913960400191505060405180910390fd5b600254610db2908263ffffffff61100b16565b6002556001600160a01b038216600090815260208190526040902054610dde908263ffffffff61100b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610e3d8282611075565b610e785760405162461bcd60e51b81526004018080602001828103825260218152602001806113366021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b610ea48282611075565b15610ef6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038216610f76576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610f89908263ffffffff610cf916565b6002556001600160a01b038216600090815260208190526040902054610fb5908263ffffffff610cf916565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115611062576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006104fa338484611188565b60006001600160a01b0382166110bc5760405162461bcd60e51b81526004018080602001828103825260228152602001806113776022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166111215760405162461bcd60e51b81526004018080602001828103825260268152602001806112ee6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166111cd5760405162461bcd60e51b81526004018080602001828103825260258152602001806113ba6025913960400191505060405180910390fd5b6001600160a01b0382166112125760405162461bcd60e51b81526004018080602001828103825260238152602001806112cb6023913960400191505060405180910390fd5b6001600160a01b03831660009081526020819052604090205461123b908263ffffffff61100b16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611270908263ffffffff610cf916565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158209db0277cf7ad16f8319c5e854b4286d2cfda69acf7916257832d88fe7fb85ffb64736f6c634300050b0032000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000000000000000000000000000000000000000000014426c6f636b426572727920424c4220546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424c420000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a0712d681161007c578063a0712d6814610368578063a457c2d714610385578063a9059cbb146103b1578063dd62ed3e146103dd578063e58398361461040b578063f2fde38b1461043157610137565b8063715018a6146103045780638d1fdf2f1461030e5780638da5cb5b146103345780638f32d59b1461035857806395d89b411461036057610137565b8063355274ea116100ff578063355274ea14610267578063395093511461026f57806342966c681461029b57806345c8b1a6146102b857806370a08231146102de57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b610144610457565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b0381351690602001356104ed565b604080519115158252519081900360200190f35b610201610503565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b03813581169160208101359091169060400135610509565b610251610611565b6040805160ff9092168252519081900360200190f35b61020161061a565b6101e56004803603604081101561028557600080fd5b506001600160a01b038135169060200135610620565b6101e5600480360360208110156102b157600080fd5b5035610661565b6101e5600480360360208110156102ce57600080fd5b50356001600160a01b03166106bc565b610201600480360360208110156102f457600080fd5b50356001600160a01b0316610752565b61030c61076d565b005b6101e56004803603602081101561032457600080fd5b50356001600160a01b0316610804565b61033c6108f8565b604080516001600160a01b039092168252519081900360200190f35b6101e561090c565b610144610922565b6101e56004803603602081101561037e57600080fd5b5035610983565b6101e56004803603604081101561039b57600080fd5b506001600160a01b038135169060200135610a33565b6101e5600480360360408110156103c757600080fd5b506001600160a01b038135169060200135610a6f565b610201600480360360408110156103f357600080fd5b506001600160a01b0381358116916020013516610b24565b6101e56004803603602081101561042157600080fd5b50356001600160a01b0316610b4f565b61030c6004803603602081101561044757600080fd5b50356001600160a01b0316610b68565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e35780601f106104b8576101008083540402835291602001916104e3565b820191906000526020600020905b8154815290600101906020018083116104c657829003601f168201915b5050505050905090565b60006104fa338484610bbb565b50600192915050565b60025490565b60003361051581610b4f565b1561055b576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b8461056581610b4f565b156105ab576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b846105b581610b4f565b156105fb576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b610606878787610ca7565b979650505050505050565b60055460ff1690565b60065490565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104fa91859061065c908663ffffffff610cf916565b610bbb565b600061066b61090c565b6106aa576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b6106b43383610d5a565b506001919050565b60006106c661090c565b610705576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b61071660078363ffffffff610e3316565b6040516001600160a01b038316907fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee90600090a2506001919050565b6001600160a01b031660009081526020819052604090205490565b61077561090c565b6107b4576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061080e61090c565b61084d576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b6001600160a01b0382163314156108ab576040805162461bcd60e51b815260206004820152601f60248201527f6f776e65722063616e6e6f7420667265657a65206f776e206163636f756e7400604482015290519081900360640190fd5b6108bc60078363ffffffff610e9a16565b6040516001600160a01b038316907faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304990600090a2506001919050565b60055461010090046001600160a01b031690565b60055461010090046001600160a01b0316331490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e35780601f106104b8576101008083540402835291602001916104e3565b600061098d61090c565b6109cc576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b6006546109e7836109db610503565b9063ffffffff610cf916565b1115610a29576040805162461bcd60e51b815260206004820152600c60248201526b10d85c08195e18d95959195960a21b604482015290519081900360640190fd5b6106b43383610f1b565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104fa91859061065c908663ffffffff61100b16565b600033610a7b81610b4f565b15610ac1576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b83610acb81610b4f565b15610b11576040805162461bcd60e51b815260206004820152601160248201527020b1b1b7bab73a1034b990333937bd32b760791b604482015290519081900360640190fd5b610b1b8585611068565b95945050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610b6260078363ffffffff61107516565b92915050565b610b7061090c565b610baf576040805162461bcd60e51b81526020600482018190526024820152600080516020611357833981519152604482015290519081900360640190fd5b610bb8816110dc565b50565b6001600160a01b038316610c005760405162461bcd60e51b81526004018080602001828103825260248152602001806113df6024913960400191505060405180910390fd5b6001600160a01b038216610c455760405162461bcd60e51b81526004018080602001828103825260228152602001806113146022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610cb4848484611188565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610cef91869161065c908663ffffffff61100b16565b5060019392505050565b600082820183811015610d53576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d9f5760405162461bcd60e51b81526004018080602001828103825260218152602001806113996021913960400191505060405180910390fd5b600254610db2908263ffffffff61100b16565b6002556001600160a01b038216600090815260208190526040902054610dde908263ffffffff61100b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610e3d8282611075565b610e785760405162461bcd60e51b81526004018080602001828103825260218152602001806113366021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b610ea48282611075565b15610ef6576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6001600160a01b038216610f76576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610f89908263ffffffff610cf916565b6002556001600160a01b038216600090815260208190526040902054610fb5908263ffffffff610cf916565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082821115611062576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006104fa338484611188565b60006001600160a01b0382166110bc5760405162461bcd60e51b81526004018080602001828103825260228152602001806113776022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381166111215760405162461bcd60e51b81526004018080602001828103825260268152602001806112ee6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166111cd5760405162461bcd60e51b81526004018080602001828103825260258152602001806113ba6025913960400191505060405180910390fd5b6001600160a01b0382166112125760405162461bcd60e51b81526004018080602001828103825260238152602001806112cb6023913960400191505060405180910390fd5b6001600160a01b03831660009081526020819052604090205461123b908263ffffffff61100b16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611270908263ffffffff610cf916565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a723158209db0277cf7ad16f8319c5e854b4286d2cfda69acf7916257832d88fe7fb85ffb64736f6c634300050b0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000000000000000000000000000000000000000000014426c6f636b426572727920424c4220546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000003424c420000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : description (string): BlockBerry BLB Token
Arg [1] : symbol (string): BLB
Arg [2] : cap (uint256): 10000000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 426c6f636b426572727920424c4220546f6b656e000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 424c420000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
23047:194:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23047:194:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11664:83;;;:::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;11664:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5434:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5434:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4457:91;;;:::i;:::-;;;;;;;;;;;;;;;;21320:198;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21320:198:0;;;;;;;;;;;;;;;;;:::i;12522:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20362:75;;;:::i;6718:206::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6718:206:0;;;;;;;;:::i;20808:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20808:126:0;;:::i;22811:172::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22811:172:0;-1:-1:-1;;;;;22811:172:0;;:::i;4611:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4611:110:0;-1:-1:-1;;;;;4611:110:0;;:::i;14330:140::-;;;:::i;:::-;;22513:239;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22513:239:0;-1:-1:-1;;;;;22513:239:0;;:::i;13519:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;13519:79:0;;;;;;;;;;;;;;13885:92;;;:::i;11866:87::-;;;:::i;20552:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20552:194:0;;:::i;7427:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7427:216:0;;;;;;;;:::i;21048:154::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21048:154:0;;;;;;;;:::i;5153:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5153:134:0;;;;;;;;;;:::i;22204:116::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22204:116:0;-1:-1:-1;;;;;22204:116:0;;:::i;14625:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14625:109:0;-1:-1:-1;;;;;14625:109:0;;:::i;11664:83::-;11734:5;11727:12;;;;;;;;-1:-1:-1;;11727:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11701:13;;11727:12;;11734:5;;11727:12;;11734:5;11727:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11664:83;:::o;5434:148::-;5499:4;5516:36;5525:10;5537:7;5546:5;5516:8;:36::i;:::-;-1:-1:-1;5570:4:0;5434:148;;;;:::o;4457:91::-;4528:12;;4457:91;:::o;21320:198::-;21451:4;21400:10;22075:17;22084:7;22075:8;:17::i;:::-;22074:18;22066:48;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;;;;21422:4;22075:17;22084:7;22075:8;:17::i;:::-;22074:18;22066:48;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;;;;21438:2;22075:17;22084:7;22075:8;:17::i;:::-;22074:18;22066:48;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;;;;21475:35;21494:4;21500:2;21504:5;21475:18;:35::i;:::-;21468:42;21320:198;-1:-1:-1;;;;;;;21320:198:0:o;12522:83::-;12588:9;;;;12522:83;:::o;20362:75::-;20425:4;;20362:75;:::o;6718:206::-;6824:10;6798:4;6845:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6845:32:0;;;;;;;;;;6798:4;;6815:79;;6836:7;;6845:48;;6882:10;6845:48;:36;:48;:::i;:::-;6815:8;:79::i;20808:126::-;20863:4;13731:9;:7;:9::i;:::-;13723:54;;;;;-1:-1:-1;;;13723:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13723:54:0;;;;;;;;;;;;;;;20880:24;20886:10;20898:5;20880;:24::i;:::-;-1:-1:-1;20922:4:0;20808:126;;;:::o;22811:172::-;22872:4;13731:9;:7;:9::i;:::-;13723:54;;;;;-1:-1:-1;;;13723:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13723:54:0;;;;;;;;;;;;;;;22889:31;:15;22912:7;22889:31;:22;:31;:::i;:::-;22936:17;;-1:-1:-1;;;;;22936:17:0;;;;;;;;-1:-1:-1;22971:4:0;22811:172;;;:::o;4611:110::-;-1:-1:-1;;;;;4695:18:0;4668:7;4695:18;;;;;;;;;;;;4611:110::o;14330:140::-;13731:9;:7;:9::i;:::-;13723:54;;;;;-1:-1:-1;;;13723:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13723:54:0;;;;;;;;;;;;;;;14413:6;;14392:40;;14429:1;;14413:6;;;-1:-1:-1;;;;;14413:6:0;;14392:40;;14429:1;;14392:40;14443:6;:19;;-1:-1:-1;;;;;;14443:19:0;;;14330:140::o;22513:239::-;22572:4;13731:9;:7;:9::i;:::-;13723:54;;;;;-1:-1:-1;;;13723:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13723:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22597:19:0;;22606:10;22597:19;;22589:63;;;;;-1:-1:-1;;;22589:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22663:28;:15;22683:7;22663:28;:19;:28;:::i;:::-;22707:15;;-1:-1:-1;;;;;22707:15:0;;;;;;;;-1:-1:-1;22740:4:0;22513:239;;;:::o;13519:79::-;13584:6;;;;;-1:-1:-1;;;;;13584:6:0;;13519:79::o;13885:92::-;13963:6;;;;;-1:-1:-1;;;;;13963:6:0;13949:10;:20;;13885:92::o;11866:87::-;11938:7;11931:14;;;;;;;;-1:-1:-1;;11931:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11905:13;;11931:14;;11938:7;;11931:14;;11938:7;11931:14;;;;;;;;;;;;;;;;;;;;;;;;20552:194;20607:4;13731:9;:7;:9::i;:::-;13723:54;;;;;-1:-1:-1;;;13723:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13723:54:0;;;;;;;;;;;;;;;20660:4;;20632:24;20650:5;20632:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;20624:57;;;;;-1:-1:-1;;;20624:57:0;;;;;;;;;;;;-1:-1:-1;;;20624:57:0;;;;;;;;;;;;;;;20692:24;20698:10;20710:5;20692;:24::i;7427:216::-;7538:10;7512:4;7559:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;7559:32:0;;;;;;;;;;7512:4;;7529:84;;7550:7;;7559:53;;7596:15;7559:53;:36;:53;:::i;21048:154::-;21145:4;21110:10;22075:17;22084:7;22075:8;:17::i;:::-;22074:18;22066:48;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;;;;21132:2;22075:17;22084:7;22075:8;:17::i;:::-;22074:18;22066:48;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;-1:-1:-1;;;22066:48:0;;;;;;;;;;;;;;;21169:25;21184:2;21188:5;21169:14;:25::i;:::-;21162:32;21048:154;-1:-1:-1;;;;;21048:154:0:o;5153:134::-;-1:-1:-1;;;;;5252:18:0;;;5225:7;5252:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5153:134::o;22204:116::-;22260:4;22284:28;:15;22304:7;22284:28;:19;:28;:::i;:::-;22277:35;22204:116;-1:-1:-1;;22204:116:0:o;14625:109::-;13731:9;:7;:9::i;:::-;13723:54;;;;;-1:-1:-1;;;13723:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;13723:54:0;;;;;;;;;;;;;;;14698:28;14717:8;14698:18;:28::i;:::-;14625:109;:::o;10229:335::-;-1:-1:-1;;;;;10322:19:0;;10314:68;;;;-1:-1:-1;;;10314:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10401:21:0;;10393:68;;;;-1:-1:-1;;;10393:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10474:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;10525:31;;;;;;;;;;;;;;;;;10229:335;;;:::o;6053:256::-;6142:4;6159:36;6169:6;6177:9;6188:6;6159:9;:36::i;:::-;-1:-1:-1;;;;;6235:19:0;;;;;;:11;:19;;;;;;;;6223:10;6235:31;;;;;;;;;6206:73;;6215:6;;6235:43;;6271:6;6235:43;:35;:43;:::i;6206:73::-;-1:-1:-1;6297:4:0;6053:256;;;;;:::o;17078:181::-;17136:7;17168:5;;;17192:6;;;;17184:46;;;;;-1:-1:-1;;;17184:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17250:1;17078:181;-1:-1:-1;;;17078:181:0:o;9483:306::-;-1:-1:-1;;;;;9558:21:0;;9550:67;;;;-1:-1:-1;;;9550:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9645:12;;:23;;9662:5;9645:23;:16;:23;:::i;:::-;9630:12;:38;-1:-1:-1;;;;;9700:18:0;;:9;:18;;;;;;;;;;;:29;;9723:5;9700:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;9679:18:0;;:9;:18;;;;;;;;;;;:50;;;;9745:36;;;;;;;9679:9;;9745:36;;;;;;;;;;;9483:306;;:::o;15669:183::-;15749:18;15753:4;15759:7;15749:3;:18::i;:::-;15741:64;;;;-1:-1:-1;;;15741:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15816:20:0;15839:5;15816:20;;;;;;;;;;;:28;;-1:-1:-1;;15816:28:0;;;15669:183::o;15411:178::-;15489:18;15493:4;15499:7;15489:3;:18::i;:::-;15488:19;15480:63;;;;;-1:-1:-1;;;15480:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15554:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;15554:27:0;15577:4;15554:27;;;15411:178::o;8843:308::-;-1:-1:-1;;;;;8919:21:0;;8911:65;;;;;-1:-1:-1;;;8911:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9004:12;;:24;;9021:6;9004:24;:16;:24;:::i;:::-;8989:12;:39;-1:-1:-1;;;;;9060:18:0;;:9;:18;;;;;;;;;;;:30;;9083:6;9060:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;9039:18:0;;:9;:18;;;;;;;;;;;:51;;;;9106:37;;;;;;;9039:18;;:9;;9106:37;;;;;;;;;;8843:308;;:::o;17534:184::-;17592:7;17625:1;17620;:6;;17612:49;;;;;-1:-1:-1;;;17612:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17684:5:0;;;17534:184::o;4934:156::-;5003:4;5020:40;5030:10;5042:9;5053:6;5020:9;:40::i;15947:203::-;16019:4;-1:-1:-1;;;;;16044:21:0;;16036:68;;;;-1:-1:-1;;;16036:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16122:20:0;:11;:20;;;;;;;;;;;;;;;15947:203::o;14840:229::-;-1:-1:-1;;;;;14914:22:0;;14906:73;;;;-1:-1:-1;;;14906:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15016:6;;14995:38;;-1:-1:-1;;;;;14995:38:0;;;;15016:6;;;;;14995:38;;;;;15044:6;:17;;-1:-1:-1;;;;;15044:17:0;;;;;-1:-1:-1;;;;;;15044:17:0;;;;;;;;;14840:229::o;8133:429::-;-1:-1:-1;;;;;8231:20:0;;8223:70;;;;-1:-1:-1;;;8223:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8312:23:0;;8304:71;;;;-1:-1:-1;;;8304:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8408:17:0;;:9;:17;;;;;;;;;;;:29;;8430:6;8408:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;8388:17:0;;;:9;:17;;;;;;;;;;;:49;;;;8471:20;;;;;;;:32;;8496:6;8471:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;8448:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;8519:35;;;;;;;8448:20;;8519:35;;;;;;;;;;;;;8133:429;;;:::o
Swarm Source
bzzr://9db0277cf7ad16f8319c5e854b4286d2cfda69acf7916257832d88fe7fb85ffb
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.