Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 18772490 | 514 days ago | IN | 0 ETH | 0.00000044 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ZenithPLUS
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2024-06-12
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;
interface IBEP20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
function burnToken() external view returns (uint256);
/**
* @dev Returns the token decimals.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the token symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the token name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the bep token owner.
*/
function getOwner() external view returns (address);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address _owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/*
* @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 GSN 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.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () { }
function _msgSender() internal view returns (address payable) {
return payable(msg.sender);
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_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 onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
contract ZenithPLUS is Context, IBEP20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply= 240000000 * 10**9;
uint8 private _decimals=9;
string private _symbol= "ZTA+";
string private _name= "Zenith ZTA plus";
uint256 private _burnToken=0;
address private constant foundationAddress = address(0xF27eB2A77AA5995dE749ef8899241c6C2C42cb40);
address private constant ecoSystemAddress = address(0x9E11e6d96A1A4A21f0579EA98e1e6c9B1bFA9D5c);
address private constant teamAddress = address(0x466B9cfFb208F9925033758795c49eC8567Dd428);
address private constant treasuryAddress = address(0x373e0573Af84d410ac8256fEC1147D657a6f0E79);
address private constant stakingRewardsAddress = address(0xbbf6eac8b91DFAA76fD298973d2796bC99B4dD45);
address private constant marketingAddress = address(0x9d0893114A813f8418Cf9EfEf5D8E9DdAB78AA9e);
address private constant liquidityAddress = address(0x0d7356e20d4b76B8346bcf97F5fBCdD69713c8F1);
address private constant advisorsAddress = address(0xAF3a24548E51C951c6A8C2F90A84e38a9CD9143d);
uint256 private foundationTokens = _totalSupply.mul(10).div(100);
uint256 private ecoSystemTokens = _totalSupply.mul(5).div(100);
uint256 private teamTokens = _totalSupply.mul(10).div(100);
uint256 private treasuryTokens = _totalSupply.mul(10).div(100);
uint256 private stakingRewardsTokens = _totalSupply.mul(40).div(100);
uint256 private marketingTokens = _totalSupply.mul(10).div(100);
uint256 private LiquidityTokens = _totalSupply.mul(10).div(100);
uint256 private advisorsTokens = _totalSupply.mul(5).div(100);
constructor() {
_balances[foundationAddress] = foundationTokens;
_balances[ecoSystemAddress] = ecoSystemTokens;
_balances[teamAddress] = teamTokens;
_balances[treasuryAddress] = treasuryTokens;
_balances[stakingRewardsAddress] = stakingRewardsTokens;
_balances[marketingAddress] = marketingTokens;
_balances[liquidityAddress] = LiquidityTokens;
_balances[advisorsAddress] = advisorsTokens;
emit Transfer(address(0), foundationAddress, foundationTokens);
emit Transfer(address(0), ecoSystemAddress, ecoSystemTokens);
emit Transfer(address(0), teamAddress, teamTokens);
emit Transfer(address(0), treasuryAddress, treasuryTokens);
emit Transfer(address(0), liquidityAddress, LiquidityTokens);
emit Transfer(address(0), marketingAddress, marketingTokens);
emit Transfer(address(0), stakingRewardsAddress, stakingRewardsTokens);
emit Transfer(address(0), advisorsAddress, advisorsTokens);
}
/**
* @dev Returns the token decimals.
*/
function decimals() override external view returns (uint8) {
return _decimals;
}
/**
* @dev Returns the bep token owner.
*/
function getOwner() override external view returns (address) {
return owner();
}
/**
* @dev Returns the token symbol.
*/
function symbol() override external view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the token name.
*/
function name() override external view returns (string memory) {
return _name;
}
/**
* @dev See {BEP20-totalSupply}.
*/
function totalSupply() override external view returns (uint256) {
return _totalSupply;
}
function burnToken() override external view returns (uint256) {
return _burnToken;
}
/**
* @dev See {BEP20-balanceOf}.
*/
function balanceOf(address account) override external view returns (uint256) {
return _balances[account];
}
/**
* @dev See {BEP20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) override external returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {BEP20-allowance}.
*/
function allowance(address owner, address spender) override external view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {BEP20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) override external returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {BEP20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {BEP20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) override external returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "BEP20: decreased allowance below zero"));
return true;
}
/**
* @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
* the total supply.
*
* Requirements
*
* - `msg.sender` must be the token owner
*/
function mint(uint256 amount) public onlyOwner returns (bool) {
_mint(_msgSender(), amount);
return true;
}
/**
* @dev Burn `amount` tokens and decreasing the total supply.
*/
function burn(uint256 amount) public onlyOwner returns (bool) {
_burn(_msgSender(), amount);
_burnToken=amount+_burnToken;
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "BEP20: transfer from the zero address");
require(recipient != address(0), "BEP20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "BEP20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "BEP20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "BEP20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "BEP20: approve from the zero address");
require(spender != address(0), "BEP20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "BEP20: burn amount exceeds allowance"));
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
670354a6ba7a1800006003556004805460ff1916600917815560c06040526080908152635a54412b60e01b60a05260059061003a908261064e565b5060408051808201909152600f81526e5a656e697468205a544120706c757360881b602082015260069061006e908261064e565b505f60075560035461008e9060649061008890600a6104ae565b9061053a565b6008556003546100a6906064906100889060056104ae565b6009556003546100be9060649061008890600a6104ae565b600a9081556003546100d691606491610088916104ae565b600b556003546100ee906064906100889060286104ae565b600c556003546101069060649061008890600a6104ae565b600d5560035461011e9060649061008890600a6104ae565b600e55600354610136906064906100889060056104ae565b600f55348015610144575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060085460016020527f87466ca699e11cdbdcc8b452a454e5e616ac4b12b5d063d2ead7636baf680ded8190556009547f58b024e2fa47ecf9a3ad73064996876b69d2220cc4768b653c371fdcefe0744a55600a547f9ade6435455d4db21526a6630c59c3a27f6da4b9bc02155efea6c484522e735255600b547f8322d4ee185bb19de8e1bc194d7d1edcd9b23ef8d2f72d4d9b0fa72949b599fd55600c547f02874210de5b7134af0ae0c1e92e4b52db346d8f70fb06990adeace1839c0f4c55600d547f172009a176dd9f884942e28c12373eac0bf664fcafdbc3203ce63272d14c375f55600e547fb79d2006bda0396e811dcfa8d4630665118868c35364893a1f25a498a8ffb9a455600f5473af3a24548e51c951c6a8c2f90a84e38a9cd9143d5f9081527fa1c9b95476524e2921fb3c8beadc0e4d0b2d3414f8b0db81eb3ab79c24074c679190915560405173f27eb2a77aa5995de749ef8899241c6c2c42cb40925f805160206115c68339815191529161030491815260200190565b60405180910390a3600954604051908152739e11e6d96a1a4a21f0579ea98e1e6c9b1bfa9d5c905f905f805160206115c68339815191529060200160405180910390a3600a5460405190815273466b9cffb208f9925033758795c49ec8567dd428905f905f805160206115c68339815191529060200160405180910390a3600b5460405190815273373e0573af84d410ac8256fec1147d657a6f0e79905f905f805160206115c68339815191529060200160405180910390a3600e54604051908152730d7356e20d4b76b8346bcf97f5fbcdd69713c8f1905f905f805160206115c68339815191529060200160405180910390a3600d54604051908152739d0893114a813f8418cf9efef5d8e9ddab78aa9e905f905f805160206115c68339815191529060200160405180910390a3600c5460405190815273bbf6eac8b91dfaa76fd298973d2796bc99b4dd45905f905f805160206115c68339815191529060200160405180910390a3600f5460405190815273af3a24548e51c951c6a8c2f90a84e38a9cd9143d905f905f805160206115c68339815191529060200160405180910390a3610784565b5f825f036104bd57505f610534565b5f6104c8838561070d565b9050826104d58583610730565b146105315760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b5f61053183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061058160201b60201c565b5f81836105a15760405162461bcd60e51b8152600401610528919061074f565b505f6105ad8486610730565b95945050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105de57607f821691505b6020821081036105fc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561064957805f5260205f20601f840160051c810160208510156106275750805b601f840160051c820191505b81811015610646575f8155600101610633565b50505b505050565b81516001600160401b03811115610667576106676105b6565b61067b8161067584546105ca565b84610602565b602080601f8311600181146106ae575f84156106975750858301515b5f19600386901b1c1916600185901b178555610705565b5f85815260208120601f198616915b828110156106dc578886015182559484019460019091019084016106bd565b50858210156106f957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808202811582820484141761053457634e487b7160e01b5f52601160045260245ffd5b5f8261074a57634e487b7160e01b5f52601260045260245ffd5b500490565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b610e35806107915f395ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063893d20e81161009e578063a457c2d71161006e578063a457c2d714610237578063a9059cbb1461024a578063dd62ed3e1461025d578063f2fde38b14610295578063faa0a264146102a8575f80fd5b8063893d20e8146101e85780638da5cb5b1461020c57806395d89b411461021c578063a0712d6814610224575f80fd5b8063313ce567116100e4578063313ce5671461017b578063395093511461019057806342966c68146101a357806370a08231146101b6578063715018a6146101de575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102b0565b60405161012a9190610bb6565b60405180910390f35b610146610141366004610c01565b610340565b604051901515815260200161012a565b6003545b60405190815260200161012a565b610146610176366004610c29565b610356565b60045460405160ff909116815260200161012a565b61014661019e366004610c01565b6103bd565b6101466101b1366004610c62565b6103f2565b61015a6101c4366004610c79565b6001600160a01b03165f9081526001602052604090205490565b6101e6610448565b005b5f546001600160a01b03165b6040516001600160a01b03909116815260200161012a565b5f546001600160a01b03166101f4565b61011d6104b9565b610146610232366004610c62565b6104c8565b610146610245366004610c01565b610504565b610146610258366004610c01565b610551565b61015a61026b366004610c92565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101e66102a3366004610c79565b61055d565b60075461015a565b6060600680546102bf90610cc3565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90610cc3565b80156103365780601f1061030d57610100808354040283529160200191610336565b820191905f5260205f20905b81548152906001019060200180831161031957829003601f168201915b5050505050905090565b5f61034c338484610592565b5060015b92915050565b5f6103628484846106b6565b6103b384336103ae85604051806060016040528060288152602001610d6b602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610839565b610592565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161034c9185906103ae9086610871565b5f80546001600160a01b031633146104255760405162461bcd60e51b815260040161041c90610cfb565b60405180910390fd5b61042f33836108d6565b60075461043c9083610d44565b6007555060015b919050565b5f546001600160a01b031633146104715760405162461bcd60e51b815260040161041c90610cfb565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6060600580546102bf90610cc3565b5f80546001600160a01b031633146104f25760405162461bcd60e51b815260040161041c90610cfb565b6104fc33836109df565b506001919050565b5f61034c33846103ae85604051806060016040528060258152602001610db960259139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610839565b5f61034c3384846106b6565b5f546001600160a01b031633146105865760405162461bcd60e51b815260040161041c90610cfb565b61058f81610ab7565b50565b6001600160a01b0383166105f45760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041c565b6001600160a01b0382166106555760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041c565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661071a5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161041c565b6001600160a01b03821661077c5760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161041c565b6107b881604051806060016040528060268152602001610d93602691396001600160a01b0386165f908152600160205260409020549190610839565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546107e69082610871565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a99085815260200190565b5f818484111561085c5760405162461bcd60e51b815260040161041c9190610bb6565b505f6108688486610d57565b95945050505050565b5f8061087d8385610d44565b9050838110156108cf5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161041c565b9392505050565b6001600160a01b0382166109365760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161041c565b61097281604051806060016040528060228152602001610dde602291396001600160a01b0385165f908152600160205260409020549190610839565b6001600160a01b0383165f908152600160205260409020556003546109979082610b75565b6003556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161041c565b600354610a429082610871565b6003556001600160a01b0382165f90815260016020526040902054610a679082610871565b6001600160a01b0383165f818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d39085815260200190565b6001600160a01b038116610b1c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041c565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6108cf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610839565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610443575f80fd5b5f8060408385031215610c12575f80fd5b610c1b83610beb565b946020939093013593505050565b5f805f60608486031215610c3b575f80fd5b610c4484610beb565b9250610c5260208501610beb565b9150604084013590509250925092565b5f60208284031215610c72575f80fd5b5035919050565b5f60208284031215610c89575f80fd5b6108cf82610beb565b5f8060408385031215610ca3575f80fd5b610cac83610beb565b9150610cba60208401610beb565b90509250929050565b600181811c90821680610cd757607f821691505b602082108103610cf557634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561035057610350610d30565b8181038181111561035057610350610d3056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e20616d6f756e7420657863656564732062616c616e6365a26469706673582212203ac978b028ad67022d80ed851236e5b6468658faee29caf75f3e795cbfd353e364736f6c63430008190033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c8063893d20e81161009e578063a457c2d71161006e578063a457c2d714610237578063a9059cbb1461024a578063dd62ed3e1461025d578063f2fde38b14610295578063faa0a264146102a8575f80fd5b8063893d20e8146101e85780638da5cb5b1461020c57806395d89b411461021c578063a0712d6814610224575f80fd5b8063313ce567116100e4578063313ce5671461017b578063395093511461019057806342966c68146101a357806370a08231146101b6578063715018a6146101de575f80fd5b806306fdde0314610115578063095ea7b31461013357806318160ddd1461015657806323b872dd14610168575b5f80fd5b61011d6102b0565b60405161012a9190610bb6565b60405180910390f35b610146610141366004610c01565b610340565b604051901515815260200161012a565b6003545b60405190815260200161012a565b610146610176366004610c29565b610356565b60045460405160ff909116815260200161012a565b61014661019e366004610c01565b6103bd565b6101466101b1366004610c62565b6103f2565b61015a6101c4366004610c79565b6001600160a01b03165f9081526001602052604090205490565b6101e6610448565b005b5f546001600160a01b03165b6040516001600160a01b03909116815260200161012a565b5f546001600160a01b03166101f4565b61011d6104b9565b610146610232366004610c62565b6104c8565b610146610245366004610c01565b610504565b610146610258366004610c01565b610551565b61015a61026b366004610c92565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101e66102a3366004610c79565b61055d565b60075461015a565b6060600680546102bf90610cc3565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90610cc3565b80156103365780601f1061030d57610100808354040283529160200191610336565b820191905f5260205f20905b81548152906001019060200180831161031957829003601f168201915b5050505050905090565b5f61034c338484610592565b5060015b92915050565b5f6103628484846106b6565b6103b384336103ae85604051806060016040528060288152602001610d6b602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610839565b610592565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161034c9185906103ae9086610871565b5f80546001600160a01b031633146104255760405162461bcd60e51b815260040161041c90610cfb565b60405180910390fd5b61042f33836108d6565b60075461043c9083610d44565b6007555060015b919050565b5f546001600160a01b031633146104715760405162461bcd60e51b815260040161041c90610cfb565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6060600580546102bf90610cc3565b5f80546001600160a01b031633146104f25760405162461bcd60e51b815260040161041c90610cfb565b6104fc33836109df565b506001919050565b5f61034c33846103ae85604051806060016040528060258152602001610db960259139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610839565b5f61034c3384846106b6565b5f546001600160a01b031633146105865760405162461bcd60e51b815260040161041c90610cfb565b61058f81610ab7565b50565b6001600160a01b0383166105f45760405162461bcd60e51b8152602060048201526024808201527f42455032303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161041c565b6001600160a01b0382166106555760405162461bcd60e51b815260206004820152602260248201527f42455032303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161041c565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661071a5760405162461bcd60e51b815260206004820152602560248201527f42455032303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161041c565b6001600160a01b03821661077c5760405162461bcd60e51b815260206004820152602360248201527f42455032303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161041c565b6107b881604051806060016040528060268152602001610d93602691396001600160a01b0386165f908152600160205260409020549190610839565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546107e69082610871565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106a99085815260200190565b5f818484111561085c5760405162461bcd60e51b815260040161041c9190610bb6565b505f6108688486610d57565b95945050505050565b5f8061087d8385610d44565b9050838110156108cf5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161041c565b9392505050565b6001600160a01b0382166109365760405162461bcd60e51b815260206004820152602160248201527f42455032303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161041c565b61097281604051806060016040528060228152602001610dde602291396001600160a01b0385165f908152600160205260409020549190610839565b6001600160a01b0383165f908152600160205260409020556003546109979082610b75565b6003556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610a355760405162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161041c565b600354610a429082610871565b6003556001600160a01b0382165f90815260016020526040902054610a679082610871565b6001600160a01b0383165f818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d39085815260200190565b6001600160a01b038116610b1c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161041c565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f6108cf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610839565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610443575f80fd5b5f8060408385031215610c12575f80fd5b610c1b83610beb565b946020939093013593505050565b5f805f60608486031215610c3b575f80fd5b610c4484610beb565b9250610c5260208501610beb565b9150604084013590509250925092565b5f60208284031215610c72575f80fd5b5035919050565b5f60208284031215610c89575f80fd5b6108cf82610beb565b5f8060408385031215610ca3575f80fd5b610cac83610beb565b9150610cba60208401610beb565b90509250929050565b600181811c90821680610cd757607f821691505b602082108103610cf557634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561035057610350610d30565b8181038181111561035057610350610d3056fe42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e20616d6f756e7420657863656564732062616c616e6365a26469706673582212203ac978b028ad67022d80ed851236e5b6468658faee29caf75f3e795cbfd353e364736f6c63430008190033
Deployed Bytecode Sourcemap
11393:10520:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14737:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15922:153;;;;;;:::i;:::-;;:::i;:::-;;;1039:14:1;;1032:22;1014:41;;1002:2;987:18;15922:153:0;874:187:1;14881:96:0;14959:12;;14881:96;;;1212:25:1;;;1200:2;1185:18;14881:96:0;1066:177:1;16520:301:0;;;;;;:::i;:::-;;:::i;14293:88::-;14366:9;;14293:88;;14366:9;;;;1723:36:1;;1711:2;1696:18;14293:88:0;1581:184:1;17203:200:0;;;;;;:::i;:::-;;:::i;18531:155::-;;;;;;:::i;:::-;;:::i;15131:115::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15222:18:0;15199:7;15222:18;;;:9;:18;;;;;;;15131:115;10695:130;;;:::i;:::-;;14441:89;14494:7;10154:6;-1:-1:-1;;;;;10154:6:0;14441:89;;;-1:-1:-1;;;;;2310:32:1;;;2292:51;;2280:2;2265:18;14441:89:0;2146:203:1;10093:73:0;10131:7;10154:6;-1:-1:-1;;;;;10154:6:0;10093:73;;14591:93;;;:::i;18326:120::-;;;;;;:::i;:::-;;:::i;17875:251::-;;;;;;:::i;:::-;;:::i;15440:159::-;;;;;;:::i;:::-;;:::i;15653:139::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15759:18:0;;;15736:7;15759:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15653:139;10970:103;;;;;;:::i;:::-;;:::i;14985:92::-;15061:10;;14985:92;;14737:88;14785:13;14814:5;14807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14737:88;:::o;15922:153::-;15999:4;16012:39;3873:10;16035:7;16044:6;16012:8;:39::i;:::-;-1:-1:-1;16065:4:0;15922:153;;;;;:::o;16520:301::-;16620:4;16633:36;16643:6;16651:9;16662:6;16633:9;:36::i;:::-;16676:121;16685:6;3873:10;16707:89;16745:6;16707:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16707:19:0;;;;;;:11;:19;;;;;;;;3873:10;16707:33;;;;;;;;;;:37;:89::i;:::-;16676:8;:121::i;:::-;-1:-1:-1;16811:4:0;16520:301;;;;;:::o;17203:200::-;3873:10;17283:4;17328:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17328:34:0;;;;;;;;;;17283:4;;17296:83;;17319:7;;17328:50;;17367:10;17328:38;:50::i;18531:155::-;18587:4;10287:6;;-1:-1:-1;;;;;10287:6:0;3873:10;10287:22;10279:67;;;;-1:-1:-1;;;10279:67:0;;;;;;;:::i;:::-;;;;;;;;;18600:27:::1;3873:10:::0;18620:6:::1;18600:5;:27::i;:::-;18652:10;::::0;18645:17:::1;::::0;:6;:17:::1;:::i;:::-;18634:10;:28:::0;-1:-1:-1;18676:4:0::1;10353:1;18531:155:::0;;;:::o;10695:130::-;10287:6;;-1:-1:-1;;;;;10287:6:0;3873:10;10287:22;10279:67;;;;-1:-1:-1;;;10279:67:0;;;;;;;:::i;:::-;10790:1:::1;10774:6:::0;;10753:40:::1;::::0;-1:-1:-1;;;;;10774:6:0;;::::1;::::0;10753:40:::1;::::0;10790:1;;10753:40:::1;10817:1;10800:19:::0;;-1:-1:-1;;;;;;10800:19:0::1;::::0;;10695:130::o;14591:93::-;14642:13;14671:7;14664:14;;;;;:::i;18326:120::-;18382:4;10287:6;;-1:-1:-1;;;;;10287:6:0;3873:10;10287:22;10279:67;;;;-1:-1:-1;;;10279:67:0;;;;;;;:::i;:::-;18395:27:::1;3873:10:::0;18415:6:::1;18395:5;:27::i;:::-;-1:-1:-1::0;18436:4:0::1;18326:120:::0;;;:::o;17875:251::-;17960:4;17973:129;3873:10;17996:7;18005:96;18044:15;18005:96;;;;;;;;;;;;;;;;;3873:10;18005:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18005:34:0;;;;;;;;;;;;:38;:96::i;15440:159::-;15520:4;15533:42;3873:10;15557:9;15568:6;15533:9;:42::i;10970:103::-;10287:6;;-1:-1:-1;;;;;10287:6:0;3873:10;10287:22;10279:67;;;;-1:-1:-1;;;10279:67:0;;;;;;;:::i;:::-;11039:28:::1;11058:8;11039:18;:28::i;:::-;10970:103:::0;:::o;21196:320::-;-1:-1:-1;;;;;21286:19:0;;21278:68;;;;-1:-1:-1;;;21278:68:0;;3829:2:1;21278:68:0;;;3811:21:1;3868:2;3848:18;;;3841:30;3907:34;3887:18;;;3880:62;-1:-1:-1;;;3958:18:1;;;3951:34;4002:19;;21278:68:0;3627:400:1;21278:68:0;-1:-1:-1;;;;;21361:21:0;;21353:68;;;;-1:-1:-1;;;21353:68:0;;4234:2:1;21353:68:0;;;4216:21:1;4273:2;4253:18;;;4246:30;4312:34;4292:18;;;4285:62;-1:-1:-1;;;4363:18:1;;;4356:32;4405:19;;21353:68:0;4032:398:1;21353:68:0;-1:-1:-1;;;;;21430:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21478:32;;1212:25:1;;;21478:32:0;;1185:18:1;21478:32:0;;;;;;;;21196:320;;;:::o;19146:449::-;-1:-1:-1;;;;;19240:20:0;;19232:70;;;;-1:-1:-1;;;19232:70:0;;4637:2:1;19232:70:0;;;4619:21:1;4676:2;4656:18;;;4649:30;4715:34;4695:18;;;4688:62;-1:-1:-1;;;4766:18:1;;;4759:35;4811:19;;19232:70:0;4435:401:1;19232:70:0;-1:-1:-1;;;;;19317:23:0;;19309:71;;;;-1:-1:-1;;;19309:71:0;;5043:2:1;19309:71:0;;;5025:21:1;5082:2;5062:18;;;5055:30;5121:34;5101:18;;;5094:62;-1:-1:-1;;;5172:18:1;;;5165:33;5215:19;;19309:71:0;4841:399:1;19309:71:0;19409;19431:6;19409:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19409:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19389:17:0;;;;;;;:9;:17;;;;;;:91;;;;19510:20;;;;;;;:32;;19535:6;19510:24;:32::i;:::-;-1:-1:-1;;;;;19487:20:0;;;;;;;:9;:20;;;;;;;:55;;;;19554:35;;;;;;;;;;19582:6;1212:25:1;;1200:2;1185:18;;1066:177;5757:178:0;5843:7;5875:12;5867:6;;;;5859:29;;;;-1:-1:-1;;;5859:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5895:9:0;5907:5;5911:1;5907;:5;:::i;:::-;5895:17;5757:178;-1:-1:-1;;;;;5757:178:0:o;4930:167::-;4988:7;;5016:5;5020:1;5016;:5;:::i;:::-;5004:17;;5041:1;5036;:6;;5028:46;;;;-1:-1:-1;;;5028:46:0;;5580:2:1;5028:46:0;;;5562:21:1;5619:2;5599:18;;;5592:30;5658:29;5638:18;;;5631:57;5705:18;;5028:46:0;5378:351:1;5028:46:0;5090:1;4930:167;-1:-1:-1;;;4930:167:0:o;20454:330::-;-1:-1:-1;;;;;20526:21:0;;20518:67;;;;-1:-1:-1;;;20518:67:0;;5936:2:1;20518:67:0;;;5918:21:1;5975:2;5955:18;;;5948:30;6014:34;5994:18;;;5987:62;-1:-1:-1;;;6065:18:1;;;6058:31;6106:19;;20518:67:0;5734:397:1;20518:67:0;20615:68;20638:6;20615:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20615:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20594:18:0;;;;;;:9;:18;;;;;:89;20705:12;;:24;;20722:6;20705:16;:24::i;:::-;20690:12;:39;20741:37;;1212:25:1;;;20767:1:0;;-1:-1:-1;;;;;20741:37:0;;;;;1200:2:1;1185:18;20741:37:0;;;;;;;;20454:330;;:::o;19856:290::-;-1:-1:-1;;;;;19928:21:0;;19920:65;;;;-1:-1:-1;;;19920:65:0;;6338:2:1;19920:65:0;;;6320:21:1;6377:2;6357:18;;;6350:30;6416:33;6396:18;;;6389:61;6467:18;;19920:65:0;6136:355:1;19920:65:0;20009:12;;:24;;20026:6;20009:16;:24::i;:::-;19994:12;:39;-1:-1:-1;;;;;20061:18:0;;;;;;:9;:18;;;;;;:30;;20084:6;20061:22;:30::i;:::-;-1:-1:-1;;;;;20040:18:0;;;;;;:9;:18;;;;;;:51;;;;20103:37;;20040:18;;;20103:37;;;;20133:6;1212:25:1;;1200:2;1185:18;;1066:177;11171:215:0;-1:-1:-1;;;;;11241:22:0;;11233:73;;;;-1:-1:-1;;;11233:73:0;;6698:2:1;11233:73:0;;;6680:21:1;6737:2;6717:18;;;6710:30;6776:34;6756:18;;;6749:62;-1:-1:-1;;;6827:18:1;;;6820:36;6873:19;;11233:73:0;6496:402:1;11233:73:0;11339:6;;;11318:38;;-1:-1:-1;;;;;11318:38:0;;;;11339:6;;;11318:38;;;11363:6;:17;;-1:-1:-1;;;;;;11363:17:0;-1:-1:-1;;;;;11363:17:0;;;;;;;;;;11171:215::o;5352:130::-;5410:7;5433:43;5437:1;5440;5433:43;;;;;;;;;;;;;;;;;:3;:43::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;615:254;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;859:2;844:18;;;;831:32;;-1:-1:-1;;;615:254:1:o;1248:328::-;1325:6;1333;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1481:38;1515:2;1504:9;1500:18;1481:38;:::i;:::-;1471:48;;1566:2;1555:9;1551:18;1538:32;1528:42;;1248:328;;;;;:::o;1770:180::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;-1:-1:-1;1921:23:1;;1770:180;-1:-1:-1;1770:180:1:o;1955:186::-;2014:6;2067:2;2055:9;2046:7;2042:23;2038:32;2035:52;;;2083:1;2080;2073:12;2035:52;2106:29;2125:9;2106:29;:::i;2354:260::-;2422:6;2430;2483:2;2471:9;2462:7;2458:23;2454:32;2451:52;;;2499:1;2496;2489:12;2451:52;2522:29;2541:9;2522:29;:::i;:::-;2512:39;;2570:38;2604:2;2593:9;2589:18;2570:38;:::i;:::-;2560:48;;2354:260;;;;;:::o;2619:380::-;2698:1;2694:12;;;;2741;;;2762:61;;2816:4;2808:6;2804:17;2794:27;;2762:61;2869:2;2861:6;2858:14;2838:18;2835:38;2832:161;;2915:10;2910:3;2906:20;2903:1;2896:31;2950:4;2947:1;2940:15;2978:4;2975:1;2968:15;2832:161;;2619:380;;;:::o;3004:356::-;3206:2;3188:21;;;3225:18;;;3218:30;3284:34;3279:2;3264:18;;3257:62;3351:2;3336:18;;3004:356::o;3365:127::-;3426:10;3421:3;3417:20;3414:1;3407:31;3457:4;3454:1;3447:15;3481:4;3478:1;3471:15;3497:125;3562:9;;;3583:10;;;3580:36;;;3596:18;;:::i;5245:128::-;5312:9;;;5333:11;;;5330:37;;;5347:18;;:::i
Swarm Source
ipfs://3ac978b028ad67022d80ed851236e5b6468658faee29caf75f3e795cbfd353e3
Loading...
Loading
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.