Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 65 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 21123610 | 509 days ago | IN | 0 ETH | 0.00043631 | ||||
| Approve | 21055634 | 518 days ago | IN | 0 ETH | 0.00023044 | ||||
| Approve | 21012047 | 524 days ago | IN | 0 ETH | 0.00049149 | ||||
| Approve | 20980565 | 529 days ago | IN | 0 ETH | 0.00085221 | ||||
| Approve | 20980526 | 529 days ago | IN | 0 ETH | 0.00104926 | ||||
| Approve | 20980490 | 529 days ago | IN | 0 ETH | 0.00085437 | ||||
| Approve | 20980364 | 529 days ago | IN | 0 ETH | 0.00072375 | ||||
| Approve | 20980353 | 529 days ago | IN | 0 ETH | 0.00053192 | ||||
| Transfer | 20980331 | 529 days ago | IN | 0 ETH | 0.00087768 | ||||
| Transfer | 20980309 | 529 days ago | IN | 0 ETH | 0.00089176 | ||||
| Approve | 20980290 | 529 days ago | IN | 0 ETH | 0.00073224 | ||||
| Approve | 20980279 | 529 days ago | IN | 0 ETH | 0.00096492 | ||||
| Transfer | 20980269 | 529 days ago | IN | 0 ETH | 0.00092265 | ||||
| Approve | 20980263 | 529 days ago | IN | 0 ETH | 0.00075914 | ||||
| Approve | 20980261 | 529 days ago | IN | 0 ETH | 0.00073759 | ||||
| Approve | 20980254 | 529 days ago | IN | 0 ETH | 0.00073591 | ||||
| Approve | 20980254 | 529 days ago | IN | 0 ETH | 0.0008019 | ||||
| Approve | 20980254 | 529 days ago | IN | 0 ETH | 0.0008019 | ||||
| Approve | 20980249 | 529 days ago | IN | 0 ETH | 0.00072177 | ||||
| Approve | 20980249 | 529 days ago | IN | 0 ETH | 0.00087538 | ||||
| Approve | 20980248 | 529 days ago | IN | 0 ETH | 0.00076796 | ||||
| Approve | 20980247 | 529 days ago | IN | 0 ETH | 0.00070357 | ||||
| Approve | 20980245 | 529 days ago | IN | 0 ETH | 0.00133966 | ||||
| Renounce Ownersh... | 20980238 | 529 days ago | IN | 0 ETH | 0.00039514 | ||||
| Anti Whaleyo_rmv | 20980235 | 529 days ago | IN | 0 ETH | 0.00036062 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 20980225 | 529 days ago | 0.0102144 ETH | ||||
| Transfer | 20980225 | 529 days ago | 0.0068096 ETH | ||||
| Transfer | 20980225 | 529 days ago | 0.004256 ETH | ||||
| Transfer | 20980225 | 529 days ago | 0.02128001 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.03130327 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.02086884 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.01304303 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.06521515 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.0338261 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.02255073 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.0140942 ETH | ||||
| Transfer | 20980223 | 529 days ago | 0.07047104 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.03064767 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.02043178 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.01276986 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.06384932 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.03309075 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.0220605 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.01378781 ETH | ||||
| Transfer | 20980213 | 529 days ago | 0.06893906 ETH | ||||
| Transfer | 20980210 | 529 days ago | 0.03523253 ETH | ||||
| Transfer | 20980210 | 529 days ago | 0.02348835 ETH | ||||
| Transfer | 20980210 | 529 days ago | 0.01468022 ETH | ||||
| Transfer | 20980210 | 529 days ago | 0.07340112 ETH | ||||
| Transfer | 20980210 | 529 days ago | 0.03825724 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
YODAP
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-10-16
*/
/*
* SPDX-License-Identifier: MIT
* https://t.me/YODAP_ENTER
* https://x.com/Yodapcoin
* https://yodap.online/
*/
pragma solidity 0.8.19;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(
address owner,
address spender
) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
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 Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @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_) {
_name = name_;
_symbol = symbol_;
}
/**
* @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 Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(
address account
) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(
address spender,
uint256 amount
) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the upd allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(
currentAllowance >= amount,
"ERC20: transfer amount exceeds allowance"
);
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the upd allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(
address spender,
uint256 addedValue
) public virtual returns (bool) {
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][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 upd 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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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:
*
* - `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 virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(
senderBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(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:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(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");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(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 Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_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);
}
}
interface IDexFactory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(
address tokenA,
address tokenB
) external view returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract YODAP is ERC20, Ownable {
using SafeMath for uint256;
IDexRouter private immutable dexRouter;
address public immutable dexPair;
// Swapback
bool private swapping;
bool private swapbackEnabled = false;
uint256 private swapBackValueMin;
uint256 private swapBackValueMax;
//Anti-whale
bool private limitsInEffect = true;
uint256 private maxWallet;
uint256 private maxTx;
bool public tradingLive = false;
uint256 private split = 20;
// Fee receivers
address private mktReceiver;
address private projectReceiver;
address private devReceiver;
uint256 private totalBuyFee;
uint256 private buyMktFee;
uint256 private buyDevFee;
uint256 private totalSellFee;
uint256 private sellMktFee;
uint256 private sellDevFee;
uint256 private tokensForMarketing;
uint256 private tokensForDev;
/******************/
// exlcude from fees and max transaction amount
mapping(address => bool) private isFeeExempt;
mapping(address => bool) private isTxLimitExempt;
mapping(address => bool) private automatedMarketMakerPairs;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
event UpdateUniswapV2Router(
address indexed newAddress,
address indexed oldAddress
);
event ExcludeFromFees(address indexed account, bool isExcluded);
event ExcludeFromLimits(address indexed account, bool isExcluded);
event SetPairLiquiditt(address indexed pair, bool indexed value);
event TradingEnabled(uint256 indexed timestamp);
event LimitsRemoved(uint256 indexed timestamp);
event DisabledTransferDelay(uint256 indexed timestamp);
event SwapbackSettingsUpdated(
bool enabled,
uint256 swapBackValueMin,
uint256 swapBackValueMax
);
event MaxTxUpdated(uint256 maxTx);
event MaxWalletUpdated(uint256 maxWallet);
event mktReceiverUpdated(
address indexed newWallet,
address indexed oldWallet
);
event devReceiverUpdated(
address indexed newWallet,
address indexed oldWallet
);
event BuyFeeUpdated(
uint256 totalBuyFee,
uint256 buyMktFee,
uint256 buyDevFee
);
event SellFeeUpdated(
uint256 totalSellFee,
uint256 sellMktFee,
uint256 sellDevFee
);
constructor() ERC20("YODAP", "ODAP") {
IDexRouter _dexRouter = IDexRouter(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
AntiWhaleyo_setWL(address(_dexRouter), true);
dexRouter = _dexRouter;
dexPair = IDexFactory(_dexRouter.factory()).createPair(
address(this),
_dexRouter.WETH()
);
AntiWhaleyo_setWL(address(dexPair), true);
_setPairLiquiditt(address(dexPair), true);
uint256 _buyMktFee = 35;
uint256 _buyDevFee = 0;
uint256 _sellMktFee = 35;
uint256 _sellDevFee = 0;
uint256 _totalSupply = 10_000_000_000 * 10 ** decimals();
maxTx = (_totalSupply * 20) / 1000;
maxWallet = (_totalSupply * 20) / 1000;
swapBackValueMin = (_totalSupply * 1) / 1000;
swapBackValueMax = (_totalSupply * 2) / 100;
buyMktFee = _buyMktFee;
buyDevFee = _buyDevFee;
totalBuyFee = buyMktFee + buyDevFee;
sellMktFee = _sellMktFee;
sellDevFee = _sellDevFee;
totalSellFee = sellMktFee + sellDevFee;
mktReceiver = address(msg.sender);
projectReceiver = address(msg.sender);
devReceiver = address(msg.sender);
// exclude from paying fees or having max transaction amount
feesydp_exempt(msg.sender, true);
feesydp_exempt(address(this), true);
feesydp_exempt(address(0xdead), true);
feesydp_exempt(mktReceiver, true);
AntiWhaleyo_setWL(msg.sender, true);
AntiWhaleyo_setWL(address(this), true);
AntiWhaleyo_setWL(address(0xdead), true);
AntiWhaleyo_setWL(mktReceiver, true);
transferOwnership(msg.sender);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, _totalSupply);
}
/**
* @notice Information about the swapback settings
* @return _swapbackEnabled if swapback is enabled
* @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback
* @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback
*/
function ydpRd_SB()
external
view
returns (
bool _swapbackEnabled,
uint256 _swapBackValueMin,
uint256 _swapBackValueMax
)
{
_swapbackEnabled = swapbackEnabled;
_swapBackValueMin = swapBackValueMin;
_swapBackValueMax = swapBackValueMax;
}
/**
* @notice Information about the anti whale parameters
* @return _limitsInEffect if the wallet limits are in effect
* @return _maxWallet The maximum amount of tokens that can be held by a wallet
* @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction
*/
function ydpRd_Lim()
external
view
returns (
bool _limitsInEffect,
uint256 _maxWallet,
uint256 _maxTx
)
{
_limitsInEffect = limitsInEffect;
_maxWallet = maxWallet;
_maxTx = maxTx;
}
/**
* @notice The wallets that receive the collected fees
* @return _mktReceiver The wallet that receives the marketing fees
* @return _devReceiver The wallet that receives the dev fees
*/
function ydpRd_Recv()
external
view
returns (
address _mktReceiver,
address _devReceiver
)
{
return (mktReceiver, devReceiver);
}
/**
* @notice Fees for buys, sells, and transfers
* @return _totalBuyFee The total fee for buys
* @return _buyMktFee The fee for buys that gets sent to marketing
* @return _buyDevFee The fee for buys that gets sent to dev
* @return _totalSellFee The total fee for sells
* @return _sellMktFee The fee for sells that gets sent to marketing
* @return _sellDevFee The fee for sells that gets sent to dev
*/
function ydpRd_Fees()
external
view
returns (
uint256 _totalBuyFee,
uint256 _buyMktFee,
uint256 _buyDevFee,
uint256 _totalSellFee,
uint256 _sellMktFee,
uint256 _sellDevFee
)
{
_totalBuyFee = totalBuyFee;
_buyMktFee = buyMktFee;
_buyDevFee = buyDevFee;
_totalSellFee = totalSellFee;
_sellMktFee = sellMktFee;
_sellDevFee = sellDevFee;
}
/**
* @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
* @param _target The wallet to check
* @return _isFeeExempt If the wallet is excluded from fees
* @return _isTxLimitExempt If the wallet is excluded from max transaction amount
* @return _automatedMarketMakerPairs If the wallet is a automated market maker pair
*/
function ydpRd_Addresses(
address _target
)
external
view
returns (
bool _isFeeExempt,
bool _isTxLimitExempt,
bool _automatedMarketMakerPairs
)
{
_isFeeExempt = isFeeExempt[_target];
_isTxLimitExempt = isTxLimitExempt[_target];
_automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
}
receive() external payable {}
/**
* @notice Opens public trading for the token
* @dev onlyOwner.
*/
function enableTrading() external onlyOwner {
tradingLive = true;
swapbackEnabled = true;
emit TradingEnabled(block.timestamp);
}
/**
* @notice Removes the max wallet and max transaction limits
* @dev onlyOwner.
* Emits an {LimitsRemoved} event
*/
function AntiWhaleyo_rmv() external onlyOwner {
limitsInEffect = false;
emit LimitsRemoved(block.timestamp);
}
/**
* @notice sets if swapback is enabled and sets the minimum and maximum amounts
* @dev onlyOwner.
* Emits an {SwapbackSettingsUpdated} event
* @param _enabled If swapback is enabled
* @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
* @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
*/
function setSBrngYd(
bool _enabled,
uint256 _min,
uint256 _max
) external onlyOwner {
require(
_min >= 1,
"Swap amount cannot be lower than 0.01% total supply."
);
require(_max >= _min, "maximum amount cant be higher than minimum");
swapbackEnabled = _enabled;
swapBackValueMin = (totalSupply() * _min) / 10000;
swapBackValueMax = (totalSupply() * _max) / 10000;
emit SwapbackSettingsUpdated(_enabled, _min, _max);
}
/**
* @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
* @dev onlyOwner.
* Emits an {MaxTxUpdated} event
* @param newVl Base 1000, so 1% = 10
*/
function AntiWhaleyo_chngeMaxTxVals(uint256 newVl) external onlyOwner {
require(newVl >= 2, "Cannot set maxTx lower than 0.2%");
maxTx = (newVl * totalSupply()) / 1000;
emit MaxTxUpdated(maxTx);
}
/**
* @notice Changes the maximum amount of tokens a wallet can hold
* @dev onlyOwner.
* Emits an {MaxWalletUpdated} event
* @param newVl Base 1000, so 1% = 10
*/
function AntiWhaleyo_chngeMaxWalletVals(uint256 newVl) external onlyOwner {
require(newVl >= 5, "Cannot set maxWallet lower than 0.5%");
maxWallet = (newVl * totalSupply()) / 1000;
emit MaxWalletUpdated(maxWallet);
}
/**
* @notice Sets if a wallet is excluded from the max wallet and tx limits
* @dev onlyOwner.
* Emits an {ExcludeFromLimits} event
* @param updAds The wallet to update
* @param isEx If the wallet is excluded or not
*/
function AntiWhaleyo_setWL(
address updAds,
bool isEx
) public onlyOwner {
isTxLimitExempt[updAds] = isEx;
emit ExcludeFromLimits(updAds, isEx);
}
/**
* @notice Sets the fees for buys
* @dev onlyOwner.
* Emits a {BuyFeeUpdated} event
* All fees added up must be less than 100
* @param _marketingFee The fee for the marketing wallet
* @param _devFee The fee for the dev wallet
*/
function feesydp_buy(
uint256 _marketingFee,
uint256 _devFee
) external onlyOwner {
buyMktFee = _marketingFee;
buyDevFee = _devFee;
totalBuyFee = buyMktFee + buyDevFee;
require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%");
emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee);
}
/**
* @notice Sets the fees for sells
* @dev onlyOwner.
* Emits a {SellFeeUpdated} event
* All fees added up must be less than 100
* @param _marketingFee The fee for the marketing wallet
* @param _devFee The fee for the dev wallet
*/
function feesydp_sell(
uint256 _marketingFee,
uint256 _devFee
) external onlyOwner {
sellMktFee = _marketingFee;
sellDevFee = _devFee;
totalSellFee = sellMktFee + sellDevFee;
require(
totalSellFee <= 100,
"Total sell fee cannot be higher than 100%"
);
emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee);
}
/**
* @notice Sets if an address is excluded from fees
* @dev onlyOwner.
* Emits an {ExcludeFromFees} event
* @param account The wallet to update
* @param excluded If the wallet is excluded or not
*/
function feesydp_exempt(address account, bool excluded) public onlyOwner {
isFeeExempt[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function _setPairLiquiditt(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetPairLiquiditt(pair, value);
}
/**
* @notice Sets the marketing wallet
* @dev onlyOwner.
* Emits an {mktReceiverUpdated} event
* @param newWallet The new marketing wallet
*/
function txWlt_setMktWallet(address newWallet) external onlyOwner {
emit mktReceiverUpdated(newWallet, mktReceiver);
mktReceiver = newWallet;
}
function txWlt_setProjectWallet(address newWallet) external onlyOwner {
projectReceiver = newWallet;
}
/**
* @notice Sets the dev wallet
* @dev onlyOwner.
* Emits an {devReceiverUpdated} event
* @param newWallet The new dev wallet
*/
function txWlt_setDevWallet(address newWallet) external onlyOwner {
emit devReceiverUpdated(newWallet, devReceiver);
devReceiver = newWallet;
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingLive) {
require(
isFeeExempt[from] || isFeeExempt[to],
"_transfer:: Trading is not active."
);
}
//when buy
if (automatedMarketMakerPairs[from] && !isTxLimitExempt[to]) {
require(
amount <= maxTx,
"Buy transfer amount exceeds the maxTx."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] && !isTxLimitExempt[from]
) {
require(
amount <= maxTx,
"Sell transfer amount exceeds the maxTx."
);
} else if (!isTxLimitExempt[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapBackValueMin;
if (
canSwap &&
swapbackEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!isFeeExempt[from] &&
!isFeeExempt[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (isFeeExempt[from] || isFeeExempt[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && totalSellFee > 0) {
fees = amount.mul(totalSellFee).div(100);
tokensForDev += (fees * sellDevFee) / totalSellFee;
tokensForMarketing += (fees * sellMktFee) / totalSellFee;
}
// on buy
else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
fees = amount.mul(totalBuyFee).div(100);
tokensForDev += (fees * buyDevFee) / totalBuyFee;
tokensForMarketing += (fees * buyMktFee) / totalBuyFee;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function setSplit(uint256 _split) external onlyOwner {
split = _split;
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = dexRouter.WETH();
_approve(address(this), address(dexRouter), tokenAmount);
// make the swap
dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
bool success;
if (contractBalance == 0) {
return;
}
if (contractBalance > swapBackValueMax) {
contractBalance = swapBackValueMax;
}
uint256 amountToSwapForETH = contractBalance;
swapTokensForEth(amountToSwapForETH);
uint256 ethForDev = address(this).balance.mul(split).div(100);
uint256 ethForMkt = address(this).balance.sub(ethForDev).mul(40).div(100);
tokensForMarketing = 0;
tokensForDev = 0;
(success, ) = address(devReceiver).call{value: ethForDev}("");
(success, ) = address(mktReceiver).call{value: ethForMkt}(
""
);
(success, ) = address(projectReceiver).call{value: address(this).balance}(
""
);
}
}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":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetPairLiquiditt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"inputs":[{"internalType":"uint256","name":"newVl","type":"uint256"}],"name":"AntiWhaleyo_chngeMaxTxVals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVl","type":"uint256"}],"name":"AntiWhaleyo_chngeMaxWalletVals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"AntiWhaleyo_rmv","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"AntiWhaleyo_setWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feesydp_buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"feesydp_exempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feesydp_sell","outputs":[],"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":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSBrngYd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_split","type":"uint256"}],"name":"setSplit","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":[],"name":"tradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"txWlt_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"txWlt_setMktWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"txWlt_setProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"ydpRd_Addresses","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ydpRd_Fees","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ydpRd_Lim","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ydpRd_Recv","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ydpRd_SB","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526005805460ff60a81b191690556008805460ff19908116600117909155600b805490911690556014600c553480156200003c57600080fd5b50604051806040016040528060058152602001640594f4441560dc1b8152506040518060400160405280600481526020016304f4441560e41b81525081600390816200008991906200084d565b5060046200009882826200084d565b505050620000b5620000af6200040260201b60201c565b62000406565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d781600162000458565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000122573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000148919062000919565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000196573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bc919062000919565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000230919062000919565b6001600160a01b031660a08190526200024b90600162000458565b60a0516200025b90600162000507565b60236000818180620002706012600a62000a60565b62000281906402540be40062000a71565b90506103e86200029382601462000a71565b6200029f919062000a8b565b600a556103e8620002b282601462000a71565b620002be919062000a8b565b6009556103e8620002d182600162000a71565b620002dd919062000a8b565b6006556064620002ef82600262000a71565b620002fb919062000a8b565b6007556011859055601284905562000314848662000aae565b601055601483905560158290556200032d828462000aae565b601355600d8054336001600160a01b03199182168117909255600e8054821683179055600f805490911682179055620003689060016200055b565b620003753060016200055b565b6200038461dead60016200055b565b600d546200039d906001600160a01b031660016200055b565b620003aa33600162000458565b620003b730600162000458565b620003c661dead600162000458565b600d54620003df906001600160a01b0316600162000458565b620003ea33620005ff565b620003f63382620006bf565b50505050505062000ac4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004a75760405162461bcd60e51b8152602060048201819052602482015260008051602062002ef083398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fad04553f435dbb657011da17f2c82a7cb2b241f7e8ed5d277f27b7a9a6de9d9491a35050565b6005546001600160a01b03163314620005a65760405162461bcd60e51b8152602060048201819052602482015260008051602062002ef083398151915260448201526064016200049e565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101620004fb565b6005546001600160a01b031633146200064a5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ef083398151915260448201526064016200049e565b6001600160a01b038116620006b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200049e565b620006bc8162000406565b50565b6001600160a01b038216620007175760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200049e565b80600260008282546200072b919062000aae565b90915550506001600160a01b038216600090815260208190526040812080548392906200075a90849062000aae565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007d457607f821691505b602082108103620007f557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007a457600081815260208120601f850160051c81016020861015620008245750805b601f850160051c820191505b81811015620008455782815560010162000830565b505050505050565b81516001600160401b03811115620008695762000869620007a9565b62000881816200087a8454620007bf565b84620007fb565b602080601f831160018114620008b95760008415620008a05750858301515b600019600386901b1c1916600185901b17855562000845565b600085815260208120601f198616915b82811015620008ea57888601518255948401946001909101908401620008c9565b5085821015620009095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200092c57600080fd5b81516001600160a01b03811681146200094457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009a25781600019048211156200098657620009866200094b565b808516156200099457918102915b93841c939080029062000966565b509250929050565b600082620009bb5750600162000a5a565b81620009ca5750600062000a5a565b8160018114620009e35760028114620009ee5762000a0e565b600191505062000a5a565b60ff84111562000a025762000a026200094b565b50506001821b62000a5a565b5060208310610133831016604e8410600b841016171562000a33575081810a62000a5a565b62000a3f838362000961565b806000190482111562000a565762000a566200094b565b0290505b92915050565b60006200094460ff841683620009aa565b808202811582820484141762000a5a5762000a5a6200094b565b60008262000aa957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a5a5762000a5a6200094b565b60805160a0516123f862000af8600039600061068f015260008181611e5f01528181611f180152611f5401526123f86000f3fe6080604052600436106101fd5760003560e01c806377e566b61161010d578063cd7ccd56116100a0578063dd62ed3e1161006f578063dd62ed3e14610617578063de0f0e5b1461065d578063f242ab411461067d578063f25e1c3e146106b1578063f2fde38b1461072457600080fd5b8063cd7ccd56146105a2578063cde04f84146105b7578063d0e03dac146105d7578063d5b3e621146105f757600080fd5b8063975fff2e116100dc578063975fff2e14610522578063a457c2d714610542578063a9059cbb14610562578063c290ac081461058257600080fd5b806377e566b6146104a65780638a8c523c146104c65780638da5cb5b146104db57806395d89b411461050d57600080fd5b806323b872dd116101905780635aaca3ab1161015f5780635aaca3ab146103c8578063674e694f146103ef57806370a082311461040f578063715018a614610445578063774e9e251461045a57600080fd5b806323b872dd1461034c578063313ce5671461036c57806332c6f96b1461038857806339509351146103a857600080fd5b8063099d7118116101cc578063099d7118146102a657806311704f52146102e057806318160ddd146102fa578063190c1b0f1461031957600080fd5b806304e4df8b1461020957806306becb7a1461022b57806306fdde031461024b578063095ea7b31461027657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50610229610224366004611fe9565b610744565b005b34801561023757600080fd5b50610229610246366004611fe9565b6107d4565b34801561025757600080fd5b5061026061085b565b60405161026d9190612006565b60405180910390f35b34801561028257600080fd5b50610296610291366004612054565b6108ed565b604051901515815260200161026d565b3480156102b257600080fd5b50600854600954600a5460ff909216915b60408051931515845260208401929092529082015260600161026d565b3480156102ec57600080fd5b50600b546102969060ff1681565b34801561030657600080fd5b506002545b60405190815260200161026d565b34801561032557600080fd5b50600d54600f54604080516001600160a01b0393841681529290911660208301520161026d565b34801561035857600080fd5b50610296610367366004612080565b610904565b34801561037857600080fd5b506040516012815260200161026d565b34801561039457600080fd5b506102296103a3366004611fe9565b6109ae565b3480156103b457600080fd5b506102966103c3366004612054565b6109fa565b3480156103d457600080fd5b50600554600654600754600160a81b90920460ff16916102c3565b3480156103fb57600080fd5b5061022961040a3660046120c1565b610a36565b34801561041b57600080fd5b5061030b61042a366004611fe9565b6001600160a01b031660009081526020819052604090205490565b34801561045157600080fd5b50610229610a65565b34801561046657600080fd5b50601054601154601254601354601454601554604080519687526020870195909552938501929092526060840152608083015260a082015260c00161026d565b3480156104b257600080fd5b506102296104c13660046120ef565b610a9b565b3480156104d257600080fd5b50610229610c39565b3480156104e757600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161026d565b34801561051957600080fd5b50610260610cb0565b34801561052e57600080fd5b5061022961053d3660046120c1565b610cbf565b34801561054e57600080fd5b5061029661055d366004612054565b610d96565b34801561056e57600080fd5b5061029661057d366004612054565b610e2f565b34801561058e57600080fd5b5061022961059d366004612122565b610e3c565b3480156105ae57600080fd5b50610229610f2f565b3480156105c357600080fd5b506102296105d23660046120c1565b610f90565b3480156105e357600080fd5b506102296105f2366004612122565b61106c565b34801561060357600080fd5b50610229610612366004612144565b611156565b34801561062357600080fd5b5061030b610632366004612179565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561066957600080fd5b50610229610678366004612144565b6111e0565b34801561068957600080fd5b506104f57f000000000000000000000000000000000000000000000000000000000000000081565b3480156106bd57600080fd5b506107056106cc366004611fe9565b6001600160a01b03166000908152601860209081526040808320546019835281842054601a90935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161026d565b34801561073057600080fd5b5061022961073f366004611fe9565b611262565b6005546001600160a01b031633146107775760405162461bcd60e51b815260040161076e906121b2565b60405180910390fd5b600d546040516001600160a01b03918216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146107fe5760405162461bcd60e51b815260040161076e906121b2565b600f546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60606003805461086a906121e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610896906121e7565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b60006108fa3384846112fd565b5060015b92915050565b6000610911848484611421565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109965760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161076e565b6109a385338584036112fd565b506001949350505050565b6005546001600160a01b031633146109d85760405162461bcd60e51b815260040161076e906121b2565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108fa918590610a31908690612237565b6112fd565b6005546001600160a01b03163314610a605760405162461bcd60e51b815260040161076e906121b2565b600c55565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161076e906121b2565b610a996000611ac1565b565b6005546001600160a01b03163314610ac55760405162461bcd60e51b815260040161076e906121b2565b6001821015610b335760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161076e565b81811015610b965760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161076e565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610bc0919061224a565b610bca9190612261565b60065561271081610bda60025490565b610be4919061224a565b610bee9190612261565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610c635760405162461bcd60e51b815260040161076e906121b2565b600b805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b60606004805461086a906121e7565b6005546001600160a01b03163314610ce95760405162461bcd60e51b815260040161076e906121b2565b6002811015610d3a5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161076e565b6103e8610d4660025490565b610d50908361224a565b610d5a9190612261565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e185760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161076e565b610e2533858584036112fd565b5060019392505050565b60006108fa338484611421565b6005546001600160a01b03163314610e665760405162461bcd60e51b815260040161076e906121b2565b60148290556015819055610e7a8183612237565b601381905560641015610ee15760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161076e565b601354601454601554604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b6005546001600160a01b03163314610f595760405162461bcd60e51b815260040161076e906121b2565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610fba5760405162461bcd60e51b815260040161076e906121b2565b60058110156110175760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161076e565b6103e861102360025490565b61102d908361224a565b6110379190612261565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d8b565b6005546001600160a01b031633146110965760405162461bcd60e51b815260040161076e906121b2565b601182905560128190556110aa8183612237565b6010819055606410156111105760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161076e565b601054601154601254604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610f23565b6005546001600160a01b031633146111805760405162461bcd60e51b815260040161076e906121b2565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b0316331461120a5760405162461bcd60e51b815260040161076e906121b2565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016111d4565b6005546001600160a01b0316331461128c5760405162461bcd60e51b815260040161076e906121b2565b6001600160a01b0381166112f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b6112fa81611ac1565b50565b6001600160a01b03831661135f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161076e565b6001600160a01b0382166113c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161076e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114475760405162461bcd60e51b815260040161076e90612283565b6001600160a01b03821661146d5760405162461bcd60e51b815260040161076e906122c8565b806000036114865761148183836000611b13565b505050565b60085460ff16156117eb576005546001600160a01b038481169116148015906114bd57506005546001600160a01b03838116911614155b80156114d157506001600160a01b03821615155b80156114e857506001600160a01b03821661dead14155b80156114fe5750600554600160a01b900460ff16155b156117eb57600b5460ff166115a3576001600160a01b03831660009081526018602052604090205460ff168061154c57506001600160a01b03821660009081526018602052604090205460ff165b6115a35760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161076e565b6001600160a01b0383166000908152601a602052604090205460ff1680156115e457506001600160a01b03821660009081526019602052604090205460ff16155b156116b957600a5481111561164a5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161076e565b6009546001600160a01b0383166000908152602081905260409020546116709083612237565b11156116b45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161076e565b6117eb565b6001600160a01b0382166000908152601a602052604090205460ff1680156116fa57506001600160a01b03831660009081526019602052604090205460ff16155b1561176157600a548111156116b45760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161076e565b6001600160a01b03821660009081526019602052604090205460ff166117eb576009546001600160a01b0383166000908152602081905260409020546117a79083612237565b11156117eb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161076e565b30600090815260208190526040902054600654811080159081906118185750600554600160a81b900460ff165b801561182e5750600554600160a01b900460ff16155b801561185357506001600160a01b0385166000908152601a602052604090205460ff16155b801561187857506001600160a01b03851660009081526018602052604090205460ff16155b801561189d57506001600160a01b03841660009081526018602052604090205460ff16155b156118cb576005805460ff60a01b1916600160a01b1790556118bd611c68565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061191957506001600160a01b03851660009081526018602052604090205460ff165b15611922575060005b60008115611aad576001600160a01b0386166000908152601a602052604090205460ff16801561195457506000601354115b156119e257611979606461197360135488611de990919063ffffffff16565b90611dfc565b90506013546015548261198c919061224a565b6119969190612261565b601760008282546119a79190612237565b90915550506013546014546119bc908361224a565b6119c69190612261565b601660008282546119d79190612237565b90915550611a8f9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611a0c57506000601054115b15611a8f57611a2b606461197360105488611de990919063ffffffff16565b905060105460125482611a3e919061224a565b611a489190612261565b60176000828254611a599190612237565b9091555050601054601154611a6e908361224a565b611a789190612261565b60166000828254611a899190612237565b90915550505b8015611aa057611aa0873083611b13565b611aaa818661230b565b94505b611ab8878787611b13565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b395760405162461bcd60e51b815260040161076e90612283565b6001600160a01b038216611b5f5760405162461bcd60e51b815260040161076e906122c8565b6001600160a01b03831660009081526020819052604090205481811015611bd75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161076e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c0e908490612237565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c5a91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611c84575050565b600754821115611c945760075491505b81611c9e81611e08565b6000611cba6064611973600c5447611de990919063ffffffff16565b90506000611cd860646119736028611cd24787611fc8565b90611de9565b600060168190556017819055600f546040519293506001600160a01b031691849181818185875af1925050503d8060008114611d30576040519150601f19603f3d011682016040523d82523d6000602084013e611d35565b606091505b5050600d546040519195506001600160a01b0316908290600081818185875af1925050503d8060008114611d85576040519150601f19603f3d011682016040523d82523d6000602084013e611d8a565b606091505b5050600e546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b5050505050505050565b6000611df5828461224a565b9392505050565b6000611df58284612261565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e3d57611e3d61231e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edf9190612334565b81600181518110611ef257611ef261231e565b60200260200101906001600160a01b031690816001600160a01b031681525050611f3d307f0000000000000000000000000000000000000000000000000000000000000000846112fd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f92908590600090869030904290600401612351565b600060405180830381600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b505050505050565b6000611df5828461230b565b6001600160a01b03811681146112fa57600080fd5b600060208284031215611ffb57600080fd5b8135611df581611fd4565b600060208083528351808285015260005b8181101561203357858101830151858201604001528201612017565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561206757600080fd5b823561207281611fd4565b946020939093013593505050565b60008060006060848603121561209557600080fd5b83356120a081611fd4565b925060208401356120b081611fd4565b929592945050506040919091013590565b6000602082840312156120d357600080fd5b5035919050565b803580151581146120ea57600080fd5b919050565b60008060006060848603121561210457600080fd5b61210d846120da565b95602085013595506040909401359392505050565b6000806040838503121561213557600080fd5b50508035926020909101359150565b6000806040838503121561215757600080fd5b823561216281611fd4565b9150612170602084016120da565b90509250929050565b6000806040838503121561218c57600080fd5b823561219781611fd4565b915060208301356121a781611fd4565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121fb57607f821691505b60208210810361221b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108fe576108fe612221565b80820281158282048414176108fe576108fe612221565b60008261227e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108fe576108fe612221565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561234657600080fd5b8151611df581611fd4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123a15784516001600160a01b03168352938301939183019160010161237c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ad18f8873bf892df647980f22c5a26f954e2c3b589e5133c1584b518c3363b0364736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806377e566b61161010d578063cd7ccd56116100a0578063dd62ed3e1161006f578063dd62ed3e14610617578063de0f0e5b1461065d578063f242ab411461067d578063f25e1c3e146106b1578063f2fde38b1461072457600080fd5b8063cd7ccd56146105a2578063cde04f84146105b7578063d0e03dac146105d7578063d5b3e621146105f757600080fd5b8063975fff2e116100dc578063975fff2e14610522578063a457c2d714610542578063a9059cbb14610562578063c290ac081461058257600080fd5b806377e566b6146104a65780638a8c523c146104c65780638da5cb5b146104db57806395d89b411461050d57600080fd5b806323b872dd116101905780635aaca3ab1161015f5780635aaca3ab146103c8578063674e694f146103ef57806370a082311461040f578063715018a614610445578063774e9e251461045a57600080fd5b806323b872dd1461034c578063313ce5671461036c57806332c6f96b1461038857806339509351146103a857600080fd5b8063099d7118116101cc578063099d7118146102a657806311704f52146102e057806318160ddd146102fa578063190c1b0f1461031957600080fd5b806304e4df8b1461020957806306becb7a1461022b57806306fdde031461024b578063095ea7b31461027657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b50610229610224366004611fe9565b610744565b005b34801561023757600080fd5b50610229610246366004611fe9565b6107d4565b34801561025757600080fd5b5061026061085b565b60405161026d9190612006565b60405180910390f35b34801561028257600080fd5b50610296610291366004612054565b6108ed565b604051901515815260200161026d565b3480156102b257600080fd5b50600854600954600a5460ff909216915b60408051931515845260208401929092529082015260600161026d565b3480156102ec57600080fd5b50600b546102969060ff1681565b34801561030657600080fd5b506002545b60405190815260200161026d565b34801561032557600080fd5b50600d54600f54604080516001600160a01b0393841681529290911660208301520161026d565b34801561035857600080fd5b50610296610367366004612080565b610904565b34801561037857600080fd5b506040516012815260200161026d565b34801561039457600080fd5b506102296103a3366004611fe9565b6109ae565b3480156103b457600080fd5b506102966103c3366004612054565b6109fa565b3480156103d457600080fd5b50600554600654600754600160a81b90920460ff16916102c3565b3480156103fb57600080fd5b5061022961040a3660046120c1565b610a36565b34801561041b57600080fd5b5061030b61042a366004611fe9565b6001600160a01b031660009081526020819052604090205490565b34801561045157600080fd5b50610229610a65565b34801561046657600080fd5b50601054601154601254601354601454601554604080519687526020870195909552938501929092526060840152608083015260a082015260c00161026d565b3480156104b257600080fd5b506102296104c13660046120ef565b610a9b565b3480156104d257600080fd5b50610229610c39565b3480156104e757600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161026d565b34801561051957600080fd5b50610260610cb0565b34801561052e57600080fd5b5061022961053d3660046120c1565b610cbf565b34801561054e57600080fd5b5061029661055d366004612054565b610d96565b34801561056e57600080fd5b5061029661057d366004612054565b610e2f565b34801561058e57600080fd5b5061022961059d366004612122565b610e3c565b3480156105ae57600080fd5b50610229610f2f565b3480156105c357600080fd5b506102296105d23660046120c1565b610f90565b3480156105e357600080fd5b506102296105f2366004612122565b61106c565b34801561060357600080fd5b50610229610612366004612144565b611156565b34801561062357600080fd5b5061030b610632366004612179565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561066957600080fd5b50610229610678366004612144565b6111e0565b34801561068957600080fd5b506104f57f000000000000000000000000dcc5b6abf5f8e1076ae628715c769a97281f882b81565b3480156106bd57600080fd5b506107056106cc366004611fe9565b6001600160a01b03166000908152601860209081526040808320546019835281842054601a90935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161026d565b34801561073057600080fd5b5061022961073f366004611fe9565b611262565b6005546001600160a01b031633146107775760405162461bcd60e51b815260040161076e906121b2565b60405180910390fd5b600d546040516001600160a01b03918216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146107fe5760405162461bcd60e51b815260040161076e906121b2565b600f546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60606003805461086a906121e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610896906121e7565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b60006108fa3384846112fd565b5060015b92915050565b6000610911848484611421565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109965760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161076e565b6109a385338584036112fd565b506001949350505050565b6005546001600160a01b031633146109d85760405162461bcd60e51b815260040161076e906121b2565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108fa918590610a31908690612237565b6112fd565b6005546001600160a01b03163314610a605760405162461bcd60e51b815260040161076e906121b2565b600c55565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161076e906121b2565b610a996000611ac1565b565b6005546001600160a01b03163314610ac55760405162461bcd60e51b815260040161076e906121b2565b6001821015610b335760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161076e565b81811015610b965760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161076e565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610bc0919061224a565b610bca9190612261565b60065561271081610bda60025490565b610be4919061224a565b610bee9190612261565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610c635760405162461bcd60e51b815260040161076e906121b2565b600b805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b60606004805461086a906121e7565b6005546001600160a01b03163314610ce95760405162461bcd60e51b815260040161076e906121b2565b6002811015610d3a5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161076e565b6103e8610d4660025490565b610d50908361224a565b610d5a9190612261565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e185760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161076e565b610e2533858584036112fd565b5060019392505050565b60006108fa338484611421565b6005546001600160a01b03163314610e665760405162461bcd60e51b815260040161076e906121b2565b60148290556015819055610e7a8183612237565b601381905560641015610ee15760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161076e565b601354601454601554604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b6005546001600160a01b03163314610f595760405162461bcd60e51b815260040161076e906121b2565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610fba5760405162461bcd60e51b815260040161076e906121b2565b60058110156110175760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161076e565b6103e861102360025490565b61102d908361224a565b6110379190612261565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610d8b565b6005546001600160a01b031633146110965760405162461bcd60e51b815260040161076e906121b2565b601182905560128190556110aa8183612237565b6010819055606410156111105760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161076e565b601054601154601254604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610f23565b6005546001600160a01b031633146111805760405162461bcd60e51b815260040161076e906121b2565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6005546001600160a01b0316331461120a5760405162461bcd60e51b815260040161076e906121b2565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016111d4565b6005546001600160a01b0316331461128c5760405162461bcd60e51b815260040161076e906121b2565b6001600160a01b0381166112f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b6112fa81611ac1565b50565b6001600160a01b03831661135f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161076e565b6001600160a01b0382166113c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161076e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114475760405162461bcd60e51b815260040161076e90612283565b6001600160a01b03821661146d5760405162461bcd60e51b815260040161076e906122c8565b806000036114865761148183836000611b13565b505050565b60085460ff16156117eb576005546001600160a01b038481169116148015906114bd57506005546001600160a01b03838116911614155b80156114d157506001600160a01b03821615155b80156114e857506001600160a01b03821661dead14155b80156114fe5750600554600160a01b900460ff16155b156117eb57600b5460ff166115a3576001600160a01b03831660009081526018602052604090205460ff168061154c57506001600160a01b03821660009081526018602052604090205460ff165b6115a35760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161076e565b6001600160a01b0383166000908152601a602052604090205460ff1680156115e457506001600160a01b03821660009081526019602052604090205460ff16155b156116b957600a5481111561164a5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161076e565b6009546001600160a01b0383166000908152602081905260409020546116709083612237565b11156116b45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161076e565b6117eb565b6001600160a01b0382166000908152601a602052604090205460ff1680156116fa57506001600160a01b03831660009081526019602052604090205460ff16155b1561176157600a548111156116b45760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161076e565b6001600160a01b03821660009081526019602052604090205460ff166117eb576009546001600160a01b0383166000908152602081905260409020546117a79083612237565b11156117eb5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161076e565b30600090815260208190526040902054600654811080159081906118185750600554600160a81b900460ff165b801561182e5750600554600160a01b900460ff16155b801561185357506001600160a01b0385166000908152601a602052604090205460ff16155b801561187857506001600160a01b03851660009081526018602052604090205460ff16155b801561189d57506001600160a01b03841660009081526018602052604090205460ff16155b156118cb576005805460ff60a01b1916600160a01b1790556118bd611c68565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b90920482161591168061191957506001600160a01b03851660009081526018602052604090205460ff165b15611922575060005b60008115611aad576001600160a01b0386166000908152601a602052604090205460ff16801561195457506000601354115b156119e257611979606461197360135488611de990919063ffffffff16565b90611dfc565b90506013546015548261198c919061224a565b6119969190612261565b601760008282546119a79190612237565b90915550506013546014546119bc908361224a565b6119c69190612261565b601660008282546119d79190612237565b90915550611a8f9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611a0c57506000601054115b15611a8f57611a2b606461197360105488611de990919063ffffffff16565b905060105460125482611a3e919061224a565b611a489190612261565b60176000828254611a599190612237565b9091555050601054601154611a6e908361224a565b611a789190612261565b60166000828254611a899190612237565b90915550505b8015611aa057611aa0873083611b13565b611aaa818661230b565b94505b611ab8878787611b13565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b395760405162461bcd60e51b815260040161076e90612283565b6001600160a01b038216611b5f5760405162461bcd60e51b815260040161076e906122c8565b6001600160a01b03831660009081526020819052604090205481811015611bd75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161076e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c0e908490612237565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c5a91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611c84575050565b600754821115611c945760075491505b81611c9e81611e08565b6000611cba6064611973600c5447611de990919063ffffffff16565b90506000611cd860646119736028611cd24787611fc8565b90611de9565b600060168190556017819055600f546040519293506001600160a01b031691849181818185875af1925050503d8060008114611d30576040519150601f19603f3d011682016040523d82523d6000602084013e611d35565b606091505b5050600d546040519195506001600160a01b0316908290600081818185875af1925050503d8060008114611d85576040519150601f19603f3d011682016040523d82523d6000602084013e611d8a565b606091505b5050600e546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b5050505050505050565b6000611df5828461224a565b9392505050565b6000611df58284612261565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e3d57611e3d61231e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edf9190612334565b81600181518110611ef257611ef261231e565b60200260200101906001600160a01b031690816001600160a01b031681525050611f3d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112fd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f92908590600090869030904290600401612351565b600060405180830381600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b505050505050565b6000611df5828461230b565b6001600160a01b03811681146112fa57600080fd5b600060208284031215611ffb57600080fd5b8135611df581611fd4565b600060208083528351808285015260005b8181101561203357858101830151858201604001528201612017565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561206757600080fd5b823561207281611fd4565b946020939093013593505050565b60008060006060848603121561209557600080fd5b83356120a081611fd4565b925060208401356120b081611fd4565b929592945050506040919091013590565b6000602082840312156120d357600080fd5b5035919050565b803580151581146120ea57600080fd5b919050565b60008060006060848603121561210457600080fd5b61210d846120da565b95602085013595506040909401359392505050565b6000806040838503121561213557600080fd5b50508035926020909101359150565b6000806040838503121561215757600080fd5b823561216281611fd4565b9150612170602084016120da565b90509250929050565b6000806040838503121561218c57600080fd5b823561219781611fd4565b915060208301356121a781611fd4565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121fb57607f821691505b60208210810361221b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108fe576108fe612221565b80820281158282048414176108fe576108fe612221565b60008261227e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108fe576108fe612221565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561234657600080fd5b8151611df581611fd4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123a15784516001600160a01b03168352938301939183019160010161237c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ad18f8873bf892df647980f22c5a26f954e2c3b589e5133c1584b518c3363b0364736f6c63430008130033
Deployed Bytecode Sourcemap
25404:19024:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38668:166;;;;;;;;;;-1:-1:-1;38668:166:0;;;;;:::i;:::-;;:::i;:::-;;39132;;;;;;;;;;-1:-1:-1;39132:166:0;;;;;:::i;:::-;;:::i;11002:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13235:194;;;;;;;;;;-1:-1:-1;13235:194:0;;;;;:::i;:::-;;:::i;:::-;;;1440:14:1;;1433:22;1415:41;;1403:2;1388:18;13235:194:0;1275:187:1;30963:293:0;;;;;;;;;;-1:-1:-1;31176:14:0;;31214:9;;31243:5;;31176:14;;;;;30963:293;;;;1688:14:1;;1681:22;1663:41;;1735:2;1720:18;;1713:34;;;;1763:18;;;1756:34;1651:2;1636:18;30963:293:0;1467:329:1;25856:31:0;;;;;;;;;;-1:-1:-1;25856:31:0;;;;;;;;12122:108;;;;;;;;;;-1:-1:-1;12210:12:0;;12122:108;;;1947:25:1;;;1935:2;1920:18;12122:108:0;1801:177:1;31482:210:0;;;;;;;;;;-1:-1:-1;31659:11:0;;31672;;31482:210;;;-1:-1:-1;;;;;31659:11:0;;;2195:34:1;;31672:11:0;;;;2260:2:1;2245:18;;2238:43;2130:18;31482:210:0;1983:304:1;13907:529:0;;;;;;;;;;-1:-1:-1;13907:529:0;;;;;:::i;:::-;;:::i;11964:93::-;;;;;;;;;;-1:-1:-1;11964:93:0;;12047:2;2895:36:1;;2883:2;2868:18;11964:93:0;2753:184:1;38842:116:0;;;;;;;;;;-1:-1:-1;38842:116:0;;;;;:::i;:::-;;:::i;14841:290::-;;;;;;;;;;-1:-1:-1;14841:290:0;;;;;:::i;:::-;;:::i;30266:349::-;;;;;;;;;;-1:-1:-1;30498:15:0;;30544:16;;30591;;-1:-1:-1;;;30498:15:0;;;;;;30266:349;;42832:86;;;;;;;;;;-1:-1:-1;42832:86:0;;;;;:::i;:::-;;:::i;12293:143::-;;;;;;;;;;-1:-1:-1;12293:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12410:18:0;12383:7;12410:18;;;;;;;;;;;;12293:143;22341:103;;;;;;;;;;;;;:::i;32156:513::-;;;;;;;;;;-1:-1:-1;32475:11:0;;32510:9;;32543;;32579:12;;32616:10;;32651;;32156:513;;;3414:25:1;;;3470:2;3455:18;;3448:34;;;;3498:18;;;3491:34;;;;3556:2;3541:18;;3534:34;3599:3;3584:19;;3577:35;3643:3;3628:19;;3621:35;3401:3;3386:19;32156:513:0;3127:535:1;34596:544:0;;;;;;;;;;-1:-1:-1;34596:544:0;;;;;:::i;:::-;;:::i;33682:161::-;;;;;;;;;;;;;:::i;21690:87::-;;;;;;;;;;-1:-1:-1;21763:6:0;;-1:-1:-1;;;;;21763:6:0;21690:87;;;-1:-1:-1;;;;;4317:32:1;;;4299:51;;4287:2;4272:18;21690:87:0;4153:203:1;11221:104:0;;;;;;;;;;;;;:::i;35375:228::-;;;;;;;;;;-1:-1:-1;35375:228:0;;;;;:::i;:::-;;:::i;15630:475::-;;;;;;;;;;-1:-1:-1;15630:475:0;;;;;:::i;:::-;;:::i;12649:200::-;;;;;;;;;;-1:-1:-1;12649:200:0;;;;;:::i;:::-;;:::i;37464:420::-;;;;;;;;;;-1:-1:-1;37464:420:0;;;;;:::i;:::-;;:::i;33998:133::-;;;;;;;;;;;;;:::i;35809:248::-;;;;;;;;;;-1:-1:-1;35809:248:0;;;;;:::i;:::-;;:::i;36804:371::-;;;;;;;;;;-1:-1:-1;36804:371:0;;;;;:::i;:::-;;:::i;38133:173::-;;;;;;;;;;-1:-1:-1;38133:173:0;;;;;:::i;:::-;;:::i;12912:176::-;;;;;;;;;;-1:-1:-1;12912:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13053:18:0;;;13026:7;13053:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12912:176;36325:192;;;;;;;;;;-1:-1:-1;36325:192:0;;;;;:::i;:::-;;:::i;25524:32::-;;;;;;;;;;;;;;;33119:420;;;;;;;;;;-1:-1:-1;33119:420:0;;;;;:::i;:::-;-1:-1:-1;;;;;33383:20:0;33241:17;33383:20;;;:11;:20;;;;;;;;;33433:15;:24;;;;;;33497:25;:34;;;;;;33383:20;;;;;33433:24;;;;33497:34;;33119:420;;;;;5536:14:1;;5529:22;5511:41;;5595:14;;5588:22;5583:2;5568:18;;5561:50;5654:14;5647:22;5627:18;;;5620:50;5499:2;5484:18;33119:420:0;5327:349:1;22599:238:0;;;;;;;;;;-1:-1:-1;22599:238:0;;;;;:::i;:::-;;:::i;38668:166::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;;;;;;;;;38780:11:::1;::::0;38750:42:::1;::::0;-1:-1:-1;;;;;38780:11:0;;::::1;::::0;38750:42;::::1;::::0;::::1;::::0;38780:11:::1;::::0;38750:42:::1;38803:11;:23:::0;;-1:-1:-1;;;;;;38803:23:0::1;-1:-1:-1::0;;;;;38803:23:0;;;::::1;::::0;;;::::1;::::0;;38668:166::o;39132:::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;39244:11:::1;::::0;39214:42:::1;::::0;-1:-1:-1;;;;;39244:11:0;;::::1;::::0;39214:42;::::1;::::0;::::1;::::0;39244:11:::1;::::0;39214:42:::1;39267:11;:23:::0;;-1:-1:-1;;;;;;39267:23:0::1;-1:-1:-1::0;;;;;39267:23:0;;;::::1;::::0;;;::::1;::::0;;39132:166::o;11002:100::-;11056:13;11089:5;11082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11002:100;:::o;13235:194::-;13343:4;13360:39;10088:10;13383:7;13392:6;13360:8;:39::i;:::-;-1:-1:-1;13417:4:0;13235:194;;;;;:::o;13907:529::-;14047:4;14064:36;14074:6;14082:9;14093:6;14064:9;:36::i;:::-;-1:-1:-1;;;;;14140:19:0;;14113:24;14140:19;;;:11;:19;;;;;;;;10088:10;14140:33;;;;;;;;14206:26;;;;14184:116;;;;-1:-1:-1;;;14184:116:0;;6629:2:1;14184:116:0;;;6611:21:1;6668:2;6648:18;;;6641:30;6707:34;6687:18;;;6680:62;-1:-1:-1;;;6758:18:1;;;6751:38;6806:19;;14184:116:0;6427:404:1;14184:116:0;14336:57;14345:6;10088:10;14386:6;14367:16;:25;14336:8;:57::i;:::-;-1:-1:-1;14424:4:0;;13907:529;-1:-1:-1;;;;13907:529:0:o;38842:116::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;38923:15:::1;:27:::0;;-1:-1:-1;;;;;;38923:27:0::1;-1:-1:-1::0;;;;;38923:27:0;;;::::1;::::0;;;::::1;::::0;;38842:116::o;14841:290::-;10088:10;14954:4;15043:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15043:34:0;;;;;;;;;;14954:4;;14971:130;;15021:7;;15043:47;;15080:10;;15043:47;:::i;:::-;14971:8;:130::i;42832:86::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;42896:5:::1;:14:::0;42832:86::o;22341:103::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;22406:30:::1;22433:1;22406:18;:30::i;:::-;22341:103::o:0;34596:544::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;34753:1:::1;34745:4;:9;;34723:111;;;::::0;-1:-1:-1;;;34723:111:0;;7300:2:1;34723:111:0::1;::::0;::::1;7282:21:1::0;7339:2;7319:18;;;7312:30;7378:34;7358:18;;;7351:62;-1:-1:-1;;;7429:18:1;;;7422:50;7489:19;;34723:111:0::1;7098:416:1::0;34723:111:0::1;34861:4;34853;:12;;34845:67;;;::::0;-1:-1:-1;;;34845:67:0;;7721:2:1;34845:67:0::1;::::0;::::1;7703:21:1::0;7760:2;7740:18;;;7733:30;7799:34;7779:18;;;7772:62;-1:-1:-1;;;7850:18:1;;;7843:40;7900:19;;34845:67:0::1;7519:406:1::0;34845:67:0::1;34925:15;:26:::0;;-1:-1:-1;;;;34925:26:0::1;-1:-1:-1::0;;;34925:26:0;::::1;;;;::::0;;12210:12;;35006:5:::1;::::0;34998:4;;34982:20:::1;;;;:::i;:::-;34981:30;;;;:::i;:::-;34962:16;:49:::0;35066:5:::1;35058:4:::0;35042:13:::1;12210:12:::0;;;12122:108;35042:13:::1;:20;;;;:::i;:::-;35041:30;;;;:::i;:::-;35022:16;:49:::0;35087:45:::1;::::0;;1688:14:1;;1681:22;1663:41;;1735:2;1720:18;;1713:34;;;1763:18;;;1756:34;;;35087:45:0::1;::::0;1651:2:1;1636:18;35087:45:0::1;;;;;;;34596:544:::0;;;:::o;33682:161::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;33737:11:::1;:18:::0;;-1:-1:-1;;33737:18:0::1;33751:4;33737:18;::::0;;33766:15:::1;:22:::0;;-1:-1:-1;;;;33766:22:0::1;-1:-1:-1::0;;;33766:22:0::1;::::0;;33804:31:::1;::::0;33819:15:::1;::::0;33804:31:::1;::::0;33737:11:::1;::::0;33804:31:::1;33682:161::o:0;11221:104::-;11277:13;11310:7;11303:14;;;;;:::i;35375:228::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;35473:1:::1;35464:5;:10;;35456:55;;;::::0;-1:-1:-1;;;35456:55:0;;8527:2:1;35456:55:0::1;::::0;::::1;8509:21:1::0;;;8546:18;;;8539:30;8605:34;8585:18;;;8578:62;8657:18;;35456:55:0::1;8325:356:1::0;35456:55:0::1;35556:4;35539:13;12210:12:::0;;;12122:108;35539:13:::1;35531:21;::::0;:5;:21:::1;:::i;:::-;35530:30;;;;:::i;:::-;35522:5;:38:::0;;;35576:19:::1;::::0;1947:25:1;;;35576:19:0::1;::::0;1935:2:1;1920:18;35576:19:0::1;;;;;;;;35375:228:::0;:::o;15630:475::-;10088:10;15748:4;15792:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15792:34:0;;;;;;;;;;15859:35;;;;15837:122;;;;-1:-1:-1;;;15837:122:0;;8888:2:1;15837:122:0;;;8870:21:1;8927:2;8907:18;;;8900:30;8966:34;8946:18;;;8939:62;-1:-1:-1;;;9017:18:1;;;9010:35;9062:19;;15837:122:0;8686:401:1;15837:122:0;15995:67;10088:10;16018:7;16046:15;16027:16;:34;15995:8;:67::i;:::-;-1:-1:-1;16093:4:0;;15630:475;-1:-1:-1;;;15630:475:0:o;12649:200::-;12760:4;12777:42;10088:10;12801:9;12812:6;12777:9;:42::i;37464:420::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;37581:10:::1;:26:::0;;;37618:10:::1;:20:::0;;;37664:23:::1;37631:7:::0;37594:13;37664:23:::1;:::i;:::-;37649:12;:38:::0;;;37736:3:::1;-1:-1:-1::0;37720:19:0::1;37698:110;;;::::0;-1:-1:-1;;;37698:110:0;;9294:2:1;37698:110:0::1;::::0;::::1;9276:21:1::0;9333:2;9313:18;;;9306:30;9372:34;9352:18;;;9345:62;-1:-1:-1;;;9423:18:1;;;9416:39;9472:19;;37698:110:0::1;9092:405:1::0;37698:110:0::1;37839:12;::::0;37853:10:::1;::::0;37865::::1;::::0;37824:52:::1;::::0;;9704:25:1;;;9760:2;9745:18;;9738:34;;;;9788:18;;;9781:34;37824:52:0::1;::::0;9692:2:1;9677:18;37824:52:0::1;;;;;;;;37464:420:::0;;:::o;33998:133::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;34055:14:::1;:22:::0;;-1:-1:-1;;34055:22:0::1;::::0;;34093:30:::1;::::0;34107:15:::1;::::0;34093:30:::1;::::0;34072:5:::1;::::0;34093:30:::1;33998:133::o:0;35809:248::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;35911:1:::1;35902:5;:10;;35894:59;;;::::0;-1:-1:-1;;;35894:59:0;;10028:2:1;35894:59:0::1;::::0;::::1;10010:21:1::0;10067:2;10047:18;;;10040:30;10106:34;10086:18;;;10079:62;-1:-1:-1;;;10157:18:1;;;10150:34;10201:19;;35894:59:0::1;9826:400:1::0;35894:59:0::1;36002:4;35985:13;12210:12:::0;;;12122:108;35985:13:::1;35977:21;::::0;:5;:21:::1;:::i;:::-;35976:30;;;;:::i;:::-;35964:9;:42:::0;;;36022:27:::1;::::0;1947:25:1;;;36022:27:0::1;::::0;1935:2:1;1920:18;36022:27:0::1;1801:177:1::0;36804:371:0;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;36920:9:::1;:25:::0;;;36956:9:::1;:19:::0;;;37000:21:::1;36968:7:::0;36932:13;37000:21:::1;:::i;:::-;36986:11;:35:::0;;;37055:3:::1;-1:-1:-1::0;37040:18:0::1;37032:71;;;::::0;-1:-1:-1;;;37032:71:0;;10433:2:1;37032:71:0::1;::::0;::::1;10415:21:1::0;10472:2;10452:18;;;10445:30;10511:34;10491:18;;;10484:62;-1:-1:-1;;;10562:18:1;;;10555:38;10610:19;;37032:71:0::1;10231:404:1::0;37032:71:0::1;37133:11;::::0;37146:9:::1;::::0;37157::::1;::::0;37119:48:::1;::::0;;9704:25:1;;;9760:2;9745:18;;9738:34;;;;9788:18;;;9781:34;37119:48:0::1;::::0;9692:2:1;9677:18;37119:48:0::1;9502:319:1::0;38133:173:0;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38217:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;38217:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38264:34;;1415:41:1;;;38264:34:0::1;::::0;1388:18:1;38264:34:0::1;;;;;;;;38133:173:::0;;:::o;36325:192::-;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36432:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;36432:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36478:31;;1415:41:1;;;36478:31:0::1;::::0;1388:18:1;36478:31:0::1;1275:187:1::0;22599:238:0;21763:6;;-1:-1:-1;;;;;21763:6:0;10088:10;21910:23;21902:68;;;;-1:-1:-1;;;21902:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22702:22:0;::::1;22680:110;;;::::0;-1:-1:-1;;;22680:110:0;;10842:2:1;22680:110:0::1;::::0;::::1;10824:21:1::0;10881:2;10861:18;;;10854:30;10920:34;10900:18;;;10893:62;-1:-1:-1;;;10971:18:1;;;10964:36;11017:19;;22680:110:0::1;10640:402:1::0;22680:110:0::1;22801:28;22820:8;22801:18;:28::i;:::-;22599:238:::0;:::o;19413:380::-;-1:-1:-1;;;;;19549:19:0;;19541:68;;;;-1:-1:-1;;;19541:68:0;;11249:2:1;19541:68:0;;;11231:21:1;11288:2;11268:18;;;11261:30;11327:34;11307:18;;;11300:62;-1:-1:-1;;;11378:18:1;;;11371:34;11422:19;;19541:68:0;11047:400:1;19541:68:0;-1:-1:-1;;;;;19628:21:0;;19620:68;;;;-1:-1:-1;;;19620:68:0;;11654:2:1;19620:68:0;;;11636:21:1;11693:2;11673:18;;;11666:30;11732:34;11712:18;;;11705:62;-1:-1:-1;;;11783:18:1;;;11776:32;11825:19;;19620:68:0;11452:398:1;19620:68:0;-1:-1:-1;;;;;19701:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19753:32;;1947:25:1;;;19753:32:0;;1920:18:1;19753:32:0;;;;;;;19413:380;;;:::o;39308:3516::-;-1:-1:-1;;;;;39440:18:0;;39432:68;;;;-1:-1:-1;;;39432:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39519:16:0;;39511:64;;;;-1:-1:-1;;;39511:64:0;;;;;;;:::i;:::-;39592:6;39602:1;39592:11;39588:93;;39620:28;39636:4;39642:2;39646:1;39620:15;:28::i;:::-;39308:3516;;;:::o;39588:93::-;39697:14;;;;39693:1498;;;21763:6;;-1:-1:-1;;;;;39750:15:0;;;21763:6;;39750:15;;;;:49;;-1:-1:-1;21763:6:0;;-1:-1:-1;;;;;39786:13:0;;;21763:6;;39786:13;;39750:49;:86;;;;-1:-1:-1;;;;;;39820:16:0;;;;39750:86;:128;;;;-1:-1:-1;;;;;;39857:21:0;;39871:6;39857:21;;39750:128;:158;;;;-1:-1:-1;39900:8:0;;-1:-1:-1;;;39900:8:0;;;;39899:9;39750:158;39728:1452;;;39948:11;;;;39943:217;;-1:-1:-1;;;;;40018:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;40039:15:0;;;;;;:11;:15;;;;;;;;40018:36;39984:156;;;;-1:-1:-1;;;39984:156:0;;12867:2:1;39984:156:0;;;12849:21:1;12906:2;12886:18;;;12879:30;12945:34;12925:18;;;12918:62;-1:-1:-1;;;12996:18:1;;;12989:32;13038:19;;39984:156:0;12665:398:1;39984:156:0;-1:-1:-1;;;;;40212:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;40248:19:0;;;;;;:15;:19;;;;;;;;40247:20;40212:55;40208:957;;;40336:5;;40326:6;:15;;40292:139;;;;-1:-1:-1;;;40292:139:0;;13270:2:1;40292:139:0;;;13252:21:1;13309:2;13289:18;;;13282:30;13348:34;13328:18;;;13321:62;-1:-1:-1;;;13399:18:1;;;13392:36;13445:19;;40292:139:0;13068:402:1;40292:139:0;40514:9;;-1:-1:-1;;;;;12410:18:0;;12383:7;12410:18;;;;;;;;;;;40488:22;;:6;:22;:::i;:::-;:35;;40454:140;;;;-1:-1:-1;;;40454:140:0;;13677:2:1;40454:140:0;;;13659:21:1;13716:2;13696:18;;;13689:30;-1:-1:-1;;;13735:18:1;;;13728:49;13794:18;;40454:140:0;13475:343:1;40454:140:0;40208:957;;;-1:-1:-1;;;;;40692:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;40726:21:0;;;;;;:15;:21;;;;;;;;40725:22;40692:55;40666:499;;;40834:5;;40824:6;:15;;40790:140;;;;-1:-1:-1;;;40790:140:0;;14025:2:1;40790:140:0;;;14007:21:1;14064:2;14044:18;;;14037:30;14103:34;14083:18;;;14076:62;-1:-1:-1;;;14154:18:1;;;14147:37;14201:19;;40790:140:0;13823:403:1;40666:499:0;-1:-1:-1;;;;;40961:19:0;;;;;;:15;:19;;;;;;;;40956:209;;41065:9;;-1:-1:-1;;;;;12410:18:0;;12383:7;12410:18;;;;;;;;;;;41039:22;;:6;:22;:::i;:::-;:35;;41005:140;;;;-1:-1:-1;;;41005:140:0;;13677:2:1;41005:140:0;;;13659:21:1;13716:2;13696:18;;;13689:30;-1:-1:-1;;;13735:18:1;;;13728:49;13794:18;;41005:140:0;13475:343:1;41005:140:0;41252:4;41203:28;12410:18;;;;;;;;;;;41310:16;;41286:40;;;;;;;41357:39;;-1:-1:-1;41381:15:0;;-1:-1:-1;;;41381:15:0;;;;41357:39;:65;;;;-1:-1:-1;41414:8:0;;-1:-1:-1;;;41414:8:0;;;;41413:9;41357:65;:114;;;;-1:-1:-1;;;;;;41440:31:0;;;;;;:25;:31;;;;;;;;41439:32;41357:114;:149;;;;-1:-1:-1;;;;;;41489:17:0;;;;;;:11;:17;;;;;;;;41488:18;41357:149;:182;;;;-1:-1:-1;;;;;;41524:15:0;;;;;;:11;:15;;;;;;;;41523:16;41357:182;41339:314;;;41566:8;:15;;-1:-1:-1;;;;41566:15:0;-1:-1:-1;;;41566:15:0;;;41598:10;:8;:10::i;:::-;41625:8;:16;;-1:-1:-1;;;;41625:16:0;;;41339:314;41681:8;;-1:-1:-1;;;;;41791:17:0;;41665:12;41791:17;;;:11;:17;;;;;;41681:8;-1:-1:-1;;;41681:8:0;;;;;41680:9;;41791:17;;:36;;-1:-1:-1;;;;;;41812:15:0;;;;;;:11;:15;;;;;;;;41791:36;41787:84;;;-1:-1:-1;41854:5:0;41787:84;41883:12;41988:7;41984:787;;;-1:-1:-1;;;;;42040:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;42088:1;42073:12;;:16;42040:49;42036:586;;;42117:33;42146:3;42117:24;42128:12;;42117:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;42110:40;;42207:12;;42193:10;;42186:4;:17;;;;:::i;:::-;42185:34;;;;:::i;:::-;42169:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;42282:12:0;;42268:10;;42261:17;;:4;:17;:::i;:::-;42260:34;;;;:::i;:::-;42238:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;42036:586:0;;-1:-1:-1;42036:586:0;;-1:-1:-1;;;;;42356:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;42405:1;42391:11;;:15;42356:50;42352:270;;;42434:32;42462:3;42434:23;42445:11;;42434:6;:10;;:23;;;;:::i;:32::-;42427:39;;42522:11;;42509:9;;42502:4;:16;;;;:::i;:::-;42501:32;;;;:::i;:::-;42485:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;42595:11:0;;42582:9;;42575:16;;:4;:16;:::i;:::-;42574:32;;;;:::i;:::-;42552:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;42352:270:0;42642:8;;42638:91;;42671:42;42687:4;42701;42708;42671:15;:42::i;:::-;42745:14;42755:4;42745:14;;:::i;:::-;;;41984:787;42783:33;42799:4;42805:2;42809:6;42783:15;:33::i;:::-;39421:3403;;;;39308:3516;;;:::o;22997:191::-;23090:6;;;-1:-1:-1;;;;;23107:17:0;;;-1:-1:-1;;;;;;23107:17:0;;;;;;;23140:40;;23090:6;;;23107:17;23090:6;;23140:40;;23071:16;;23140:40;23060:128;22997:191;:::o;16595:770::-;-1:-1:-1;;;;;16735:20:0;;16727:70;;;;-1:-1:-1;;;16727:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16816:23:0;;16808:71;;;;-1:-1:-1;;;16808:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16976:17:0;;16952:21;16976:17;;;;;;;;;;;17026:23;;;;17004:111;;;;-1:-1:-1;;;17004:111:0;;14566:2:1;17004:111:0;;;14548:21:1;14605:2;14585:18;;;14578:30;14644:34;14624:18;;;14617:62;-1:-1:-1;;;14695:18:1;;;14688:36;14741:19;;17004:111:0;14364:402:1;17004:111:0;-1:-1:-1;;;;;17151:17:0;;;:9;:17;;;;;;;;;;;17171:22;;;17151:42;;17215:20;;;;;;;;:30;;17187:6;;17151:9;17215:30;;17187:6;;17215:30;:::i;:::-;;;;;;;;17280:9;-1:-1:-1;;;;;17263:35:0;17272:6;-1:-1:-1;;;;;17263:35:0;;17291:6;17263:35;;;;1947:25:1;;1935:2;1920:18;;1801:177;17263:35:0;;;;;;;;16716:649;16595:770;;;:::o;43507:918::-;43590:4;43546:23;12410:18;;;;;;;;;;;;43636:20;;;43632:59;;43673:7;;43507:918::o;43632:59::-;43725:16;;43707:15;:34;43703:101;;;43776:16;;43758:34;;43703:101;43845:15;43873:36;43845:15;43873:16;:36::i;:::-;43922:17;43942:41;43979:3;43942:32;43968:5;;43942:21;:25;;:32;;;;:::i;:41::-;43922:61;-1:-1:-1;43996:17:0;44016:53;44065:3;44016:44;44057:2;44016:36;:21;43922:61;44016:25;:36::i;:::-;:40;;:44::i;:53::-;44103:1;44082:18;:22;;;44115:12;:16;;;44166:11;;44158:47;;43996:73;;-1:-1:-1;;;;;;44166:11:0;;44191:9;;44158:47;44103:1;44158:47;44191:9;44166:11;44158:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44240:11:0;;44232:71;;44144:61;;-1:-1:-1;;;;;;44240:11:0;;44265:9;;44232:71;;;;44265:9;44240:11;44232:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44338:15:0;;44330:87;;44218:85;;-1:-1:-1;;;;;;44338:15:0;;44367:21;;44330:87;;;;44367:21;44338:15;44330:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;43507:918:0:o;3367:98::-;3425:7;3452:5;3456:1;3452;:5;:::i;:::-;3445:12;3367:98;-1:-1:-1;;;3367:98:0:o;3766:::-;3824:7;3851:5;3855:1;3851;:5;:::i;42926:571::-;43076:16;;;43090:1;43076:16;;;;;;;;43052:21;;43076:16;;;;;;;;;;-1:-1:-1;43076:16:0;43052:40;;43121:4;43103;43108:1;43103:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43103:23:0;;;-1:-1:-1;;;;;43103:23:0;;;;;43147:9;-1:-1:-1;;;;;43147:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43137:4;43142:1;43137:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;43137:26:0;;;-1:-1:-1;;;;;43137:26:0;;;;;43176:56;43193:4;43208:9;43220:11;43176:8;:56::i;:::-;43271:218;;-1:-1:-1;;;43271:218:0;;-1:-1:-1;;;;;43271:9:0;:60;;;;:218;;43346:11;;43372:1;;43416:4;;43443;;43463:15;;43271:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42981:516;42926:571;:::o;3010:98::-;3068:7;3095:5;3099:1;3095;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:548::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;686:3;871:1;866:2;857:6;846:9;842:22;838:31;831:42;941:2;934;930:7;925:2;917:6;913:15;909:29;898:9;894:45;890:54;882:62;;;;402:548;;;;:::o;955:315::-;1023:6;1031;1084:2;1072:9;1063:7;1059:23;1055:32;1052:52;;;1100:1;1097;1090:12;1052:52;1139:9;1126:23;1158:31;1183:5;1158:31;:::i;:::-;1208:5;1260:2;1245:18;;;;1232:32;;-1:-1:-1;;;955:315:1:o;2292:456::-;2369:6;2377;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2493:9;2480:23;2512:31;2537:5;2512:31;:::i;:::-;2562:5;-1:-1:-1;2619:2:1;2604:18;;2591:32;2632:33;2591:32;2632:33;:::i;:::-;2292:456;;2684:7;;-1:-1:-1;;;2738:2:1;2723:18;;;;2710:32;;2292:456::o;2942:180::-;3001:6;3054:2;3042:9;3033:7;3029:23;3025:32;3022:52;;;3070:1;3067;3060:12;3022:52;-1:-1:-1;3093:23:1;;2942:180;-1:-1:-1;2942:180:1:o;3667:160::-;3732:20;;3788:13;;3781:21;3771:32;;3761:60;;3817:1;3814;3807:12;3761:60;3667:160;;;:::o;3832:316::-;3906:6;3914;3922;3975:2;3963:9;3954:7;3950:23;3946:32;3943:52;;;3991:1;3988;3981:12;3943:52;4014:26;4030:9;4014:26;:::i;:::-;4004:36;4087:2;4072:18;;4059:32;;-1:-1:-1;4138:2:1;4123:18;;;4110:32;;3832:316;-1:-1:-1;;;3832:316:1:o;4361:248::-;4429:6;4437;4490:2;4478:9;4469:7;4465:23;4461:32;4458:52;;;4506:1;4503;4496:12;4458:52;-1:-1:-1;;4529:23:1;;;4599:2;4584:18;;;4571:32;;-1:-1:-1;4361:248:1:o;4614:315::-;4679:6;4687;4740:2;4728:9;4719:7;4715:23;4711:32;4708:52;;;4756:1;4753;4746:12;4708:52;4795:9;4782:23;4814:31;4839:5;4814:31;:::i;:::-;4864:5;-1:-1:-1;4888:35:1;4919:2;4904:18;;4888:35;:::i;:::-;4878:45;;4614:315;;;;;:::o;4934:388::-;5002:6;5010;5063:2;5051:9;5042:7;5038:23;5034:32;5031:52;;;5079:1;5076;5069:12;5031:52;5118:9;5105:23;5137:31;5162:5;5137:31;:::i;:::-;5187:5;-1:-1:-1;5244:2:1;5229:18;;5216:32;5257:33;5216:32;5257:33;:::i;:::-;5309:7;5299:17;;;4934:388;;;;;:::o;5681:356::-;5883:2;5865:21;;;5902:18;;;5895:30;5961:34;5956:2;5941:18;;5934:62;6028:2;6013:18;;5681:356::o;6042:380::-;6121:1;6117:12;;;;6164;;;6185:61;;6239:4;6231:6;6227:17;6217:27;;6185:61;6292:2;6284:6;6281:14;6261:18;6258:38;6255:161;;6338:10;6333:3;6329:20;6326:1;6319:31;6373:4;6370:1;6363:15;6401:4;6398:1;6391:15;6255:161;;6042:380;;;:::o;6836:127::-;6897:10;6892:3;6888:20;6885:1;6878:31;6928:4;6925:1;6918:15;6952:4;6949:1;6942:15;6968:125;7033:9;;;7054:10;;;7051:36;;;7067:18;;:::i;7930:168::-;8003:9;;;8034;;8051:15;;;8045:22;;8031:37;8021:71;;8072:18;;:::i;8103:217::-;8143:1;8169;8159:132;;8213:10;8208:3;8204:20;8201:1;8194:31;8248:4;8245:1;8238:15;8276:4;8273:1;8266:15;8159:132;-1:-1:-1;8305:9:1;;8103:217::o;11855:401::-;12057:2;12039:21;;;12096:2;12076:18;;;12069:30;12135:34;12130:2;12115:18;;12108:62;-1:-1:-1;;;12201:2:1;12186:18;;12179:35;12246:3;12231:19;;11855:401::o;12261:399::-;12463:2;12445:21;;;12502:2;12482:18;;;12475:30;12541:34;12536:2;12521:18;;12514:62;-1:-1:-1;;;12607:2:1;12592:18;;12585:33;12650:3;12635:19;;12261:399::o;14231:128::-;14298:9;;;14319:11;;;14316:37;;;14333:18;;:::i;15113:127::-;15174:10;15169:3;15165:20;15162:1;15155:31;15205:4;15202:1;15195:15;15229:4;15226:1;15219:15;15245:251;15315:6;15368:2;15356:9;15347:7;15343:23;15339:32;15336:52;;;15384:1;15381;15374:12;15336:52;15416:9;15410:16;15435:31;15460:5;15435:31;:::i;15501:980::-;15763:4;15811:3;15800:9;15796:19;15842:6;15831:9;15824:25;15868:2;15906:6;15901:2;15890:9;15886:18;15879:34;15949:3;15944:2;15933:9;15929:18;15922:31;15973:6;16008;16002:13;16039:6;16031;16024:22;16077:3;16066:9;16062:19;16055:26;;16116:2;16108:6;16104:15;16090:29;;16137:1;16147:195;16161:6;16158:1;16155:13;16147:195;;;16226:13;;-1:-1:-1;;;;;16222:39:1;16210:52;;16317:15;;;;16282:12;;;;16258:1;16176:9;16147:195;;;-1:-1:-1;;;;;;;16398:32:1;;;;16393:2;16378:18;;16371:60;-1:-1:-1;;;16462:3:1;16447:19;16440:35;16359:3;15501:980;-1:-1:-1;;;15501:980:1:o
Swarm Source
ipfs://ad18f8873bf892df647980f22c5a26f954e2c3b589e5133c1584b518c3363b03
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.