Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Cross-Chain Transactions
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BABYDOGEonBase
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2025-04-18
*/
// SPDX-License-Identifier: MIT
// ************************************************************************************
/*
.-%%%%%#+:.. -+#*=+#+.
*%####*##%###%# --=+##=+#+.
#####%#**#%@##%#### %%*-:-+##+...
###%%%#%%#**###%######## ##+#*-:-##%-....
##%# .+%%***#%%%%%%%%####.....---... %%%%%%#=--*%****....
%% ..%%#**%%%%%##########-------..###%%%%*=-+*-. ****..
.=%###%@%#******+=-------++++++-..-==#---==.
.:*#%%##*********+-------++***+=:.....-++-=.
--##*********#%**+-----=+*#**+:::.....-*-:.
...+******%@@%***+-----=*++%@@%#:......:....
...-******@@@%=@**-----:-+++@@@#%@=::..........
....=****%#*%#%@@@**=---...:--%%@%+:::-:..::.....
...:*****%#****%@#*+---.:.....::@@@@@%#:+-.::::.....
.-+******#=-=******=--=%@@%=:....::::::...-::::::....
.---------=******=----@@@%%*.....::::--.............
..-------*****##*=----+%@@*:.....:++*++=-...........
:==------=+*#####*=---=*%%*=:...=#****=:............
..-===----------=#%@%###%%#**%%#*=----:...........
..:-====---------=*%*+**+=#+--------::::::....
..:-===--------==-*#%%#+---------:::::...
..=#======---=+++++==---------:=-.
.-+#%#+==++*=---==-----=##**#--=::.
:#@@%##****#%##+===*#%#*****-:::-:.
.+%%%%%%%%%%@@@@@%@@@%#%%%%:.=::::.
.-#%%%%%%%%%%@#+###*%%%%%+-*:::::..
.:%@@%%%%%%%%**==#+##%%#+=*-:::::.
.=#%%%%%%%%%%*=-+*+=#*%%%%=:::::...
.=###%%%%%%+-=*=-+=*=--=#*::::..::.
.-###*##+BABYDOGE on Base=#*=...:-.
..+####**=----------------+**+:...:::...
.:**######*=babydoge20.com=*****+-..:::..
.*=*****###*===----=----=+#***++=:.:::::.
:*+********##*===LFG=====******++:...-::::.
-**********#%#%*+++====*%#***++-.::.----:.
.=#********#%%#*+++++++*##****-:.:::+=--.
.**********%#***Anti-Snipe*-::::::+++-.
.********###%#***%*#%%%#**-::::::+**+=.
.-##******#Anti-Jeet@@@@@*+:::::::=-......
..-********#%%%%%@@@@@@%%##*--::::::-.....:..
.==+===+++**#%##%##%@%-*%###@*-:.......::--.::.
..:*=*===++==+*#%%%%%#%%%%%%%#%%+-.:...:...:+-=-.
-=++===#=+=+*##**++==--::--==++--::...=..=.
.*+=++##+=+=-... .:=+*=-:-+:.: .
*/
// ************************************************************************************
// The New BABYDOGE on Base
pragma solidity 0.8.28;
pragma experimental ABIEncoderV2;
// flattened
// import "@openzeppelin/[email protected]/access/Ownable.sol";
// import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
// import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
// import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
// import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
// Add V2Router02, V2Factory and V2Pair
// File: @openzeppelin/[email protected]/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/[email protected]/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_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);
}
}
// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @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);
}
// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev 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 {}
}
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
// How much goes to liquidity?
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 swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
interface IUniswapV2Factory {
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 IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (
uint112 reserve0,
uint112 reserve1,
uint32 blockTimestampLast
);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
contract BABYDOGEonBase is ERC20, Ownable {
IUniswapV2Router02 public immutable _uniswapV2Router;
address private uniswapV2Pair;
address payable private marketingWallet;
address payable private treasuryWallet;
address private constant deadAddress = address(0xdead);
bool private swapping;
string private constant _name = "BabyDoge on Base";
string private constant _symbol = "BABYDOGE";
// Total Supply is 4.2B (Billion)
uint256 public initialTotalSupply = 4_200_000_000 * 1e18;
uint256 public maxTransactionAmount = initialTotalSupply / 100;
uint256 public maxWallet = initialTotalSupply / 100;
uint256 public swapTokensAtAmount = 5000 * 1e18;
uint256 private blockStart;
uint256 private blockAdd;
uint256 private blockSnipe;
bool public tradingOpen = false;
bool public swapEnabled = false;
bool public limitsInEffect = true;
mapping(uint256 => uint256) private swapInBlock;
uint256 public BuyFee = 5; // 5% Buy Fee - Fees distributed as per tokenomics
uint256 public SellFee = 5; // 5% Sell Fee
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) private _isExcludedMaxTransactionAmount;
mapping(address => bool) private automatedMarketMakerPairs;
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
// Anti-JEET LOGIC - track last buy block
mapping(address => uint256) private _lastBuyBlock;
uint256 public jeetBlockWindow = 100; // Number of blocks to consider a jeet sell
uint256 public jeetSellFee = 50; // 50% sell fee for jeets
constructor(address _marketingWallet, address _treasuryWallet) ERC20("BabyDoge on Base", "BABYDOGE") {
// _uniswapV2Router = IUniswapV2Router02(0x8cFe327CEc66d1C090Dd72bd0FF11d690C33a2Eb); // Base Mainnet PancakeRouter
// https://basescan.org/address/0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24#code // UniswapV2Router02
_uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24); // Base Mainnet UniSwapV2Router02
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
excludeFromMaxTransaction(address(uniswapV2Pair), true);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
marketingWallet = payable(_marketingWallet);
treasuryWallet = payable(_treasuryWallet);
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(marketingWallet), true);
excludeFromFees(address(treasuryWallet), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(marketingWallet), true);
excludeFromMaxTransaction(address(treasuryWallet), true);
_mint(_msgSender(), initialTotalSupply);
}
receive() external payable {}
function openTrading(uint256 openingFee, uint256 maxOpen, uint256 _blocksnipe) external onlyOwner() {
require(!tradingOpen,"Trading is already open");
BuyFee = openingFee;
SellFee = openingFee;
maxTransactionAmount = initialTotalSupply / maxOpen;
maxWallet = initialTotalSupply / maxOpen;
blockSnipe = _blocksnipe;
blockStart = block.number;
swapEnabled = true;
tradingOpen = true;
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
function setAutomatedMarketMakerPair(address pair, bool value)
public
onlyOwner
{
require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
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;
}
// Set Sniper params low for Roburna only 25/25
uint256 blockNum = block.number;
if (limitsInEffect) {
if(blockNum > (blockStart + blockSnipe))
{
BuyFee = 40; // Sniper fees high to deter snipers before re-launch blocks fees
SellFee = 40;
maxTransactionAmount = initialTotalSupply / 200; // Max Transaction
maxWallet = initialTotalSupply / 100; // Max Wallet
}
// Anti-JEET LOGIC - sell fee is 50%
if (automatedMarketMakerPairs[from]) {
// This is a BUY
_lastBuyBlock[to] = block.number;
}
if (automatedMarketMakerPairs[to]) {
// This is a SELL
if (!_isExcludedFromFees[from]) {
uint256 lastBuy = _lastBuyBlock[from];
if (lastBuy > 0 && (block.number - lastBuy) <= jeetBlockWindow) {
SellFee = jeetSellFee; // Apply high 50% jeet sell fee
} else {
SellFee = 40; // Normal snipe sell fee otherwise non-snipe fee of 5%
}
}
}
if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
if (!tradingOpen) {
require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
}
if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]
) {
require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
}
else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
}
else if (!_isExcludedMaxTransactionAmount[to]) {
require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && (swapInBlock[blockNum] < 3)) {
swapping = true;
swapBack();
++swapInBlock[blockNum];
swapping = false;
}
bool takeFee = !swapping;
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
if (takeFee) {
if (automatedMarketMakerPairs[to]) {
fees = amount * SellFee / 100;
}
else {
fees = amount * BuyFee / 100;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForEth(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = _uniswapV2Router.WETH();
_approve(address(this), address(_uniswapV2Router), tokenAmount);
_uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
uint256 contractETHBalance = address(this).balance;
// Fees to Marketing and Treasury wallets, see tokenomics for more detail
uint256 marketingShare = contractETHBalance * 60 / 100; // 60% goes to Marketing Wallet
uint256 treasuryShare = contractETHBalance * 40 / 100; // 40% goes to Treasury Wallet
(bool successMarketing, ) = marketingWallet.call{value: marketingShare}("");
(bool successTreasury, ) = treasuryWallet.call{value: treasuryShare}("");
require(successMarketing && successTreasury, "Transfer failed");
}
function removeLimits() external onlyOwner {
limitsInEffect = false;
}
function clearStuckEth() external {
require(_msgSender() == marketingWallet || _msgSender() == treasuryWallet, "Not authorized");
uint256 contractBalance = address(this).balance;
uint256 marketingShare = contractBalance * 60 / 100; // 60% goes to Marketing Wallet
uint256 treasuryShare = contractBalance * 40 / 100; // 40% goes to Treasury Wallet
(bool successMarketing, ) = marketingWallet.call{value: marketingShare}("");
(bool successTreasury, ) = treasuryWallet.call{value: treasuryShare}("");
require(successMarketing && successTreasury, "Transfer failed");
}
function clearStuckTokens(uint256 amount) external {
require(_msgSender() == marketingWallet);
swapTokensForEth(amount * (10 ** 18));
}
function setFee(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
require(_buyFee <= 25 && _sellFee <= 25, "Fees cannot exceed 50%"); // For anti-snipe
BuyFee = _buyFee;
SellFee = _sellFee;
}
// MIKE OI!! Function to update the marketing wallet
function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
marketingWallet = payable(newMarketingWallet); // Explicitly cast to payable
}
// MIKE OI!! Function to update the treasury wallet
function updateTreasuryWallet(address newTreasuryWallet) external onlyOwner {
treasuryWallet = payable(newTreasuryWallet); // Explicitly cast to payable
}
function setSwapTokensAtAmount(uint256 _amount) external onlyOwner {
swapTokensAtAmount = _amount * (10 ** 18);
}
function airdrop(address[] calldata addresses, uint256[] calldata amounts) external {
require(addresses.length > 0 && amounts.length == addresses.length);
address from = msg.sender;
for (uint i = 0; i < addresses.length; i++) {
_transfer(from, addresses[i], amounts[i] * (10**18));
}
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 tokensToSwap;
if (contractBalance == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 100) {
contractBalance = swapTokensAtAmount * 100;
}
tokensToSwap = contractBalance;
swapTokensForEth(tokensToSwap);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_treasuryWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","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":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"clearStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jeetBlockWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jeetSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"openingFee","type":"uint256"},{"internalType":"uint256","name":"maxOpen","type":"uint256"},{"internalType":"uint256","name":"_blocksnipe","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a06040526b0d92289838d21a996800000060095560646009546100239190610648565b600a5560646009546100359190610648565b600b5569010f0cf064dd59200000600c556010805462ffffff1916620100001790556005601281905560135560646018556032601955348015610076575f5ffd5b50604051612a9c380380612a9c83398101604081905261009591610682565b6040518060400160405280601081526020016f42616279446f6765206f6e204261736560801b8152506040518060400160405280600881526020016742414259444f474560c01b81525081600390816100ee919061074a565b5060046100fb828261074a565b50505061011461010f6103a460201b60201c565b6103a8565b734752ba5dbc23f44d87826276bf6fd6b1c372ad2460808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610167573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061018b9190610804565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101d8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101fc9190610804565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610246573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061026a9190610804565b600680546001600160a01b0319166001600160a01b039290921691821790556102949060016103f9565b6006546102ab906001600160a01b0316600161044c565b6080516102b990600161044c565b600780546001600160a01b038481166001600160a01b0319928316179092556008805484841692169190911790556005546102f6911660016104c2565b6103013060016104c2565b600754610318906001600160a01b031660016104c2565b60085461032f906001600160a01b031660016104c2565b61033c61dead60016104c2565b6103586103516005546001600160a01b031690565b600161044c565b61036330600161044c565b60075461037a906001600160a01b0316600161044c565b600854610391906001600160a01b0316600161044c565b61039d33600954610567565b5050610849565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146104985760405162461bcd60e51b815260206004820181905260248201525f516020612a7c5f395f51905f5260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146105095760405162461bcd60e51b815260206004820181905260248201525f516020612a7c5f395f51905f52604482015260640161048f565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166105bd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161048f565b8060025f8282546105ce9190610824565b90915550506001600160a01b0382165f90815260208190526040812080548392906105fa908490610824565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b5f8261066257634e487b7160e01b5f52601260045260245ffd5b500490565b80516001600160a01b038116811461067d575f5ffd5b919050565b5f5f60408385031215610693575f5ffd5b61069c83610667565b91506106aa60208401610667565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806106db57607f821691505b6020821081036106f957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561064357805f5260205f20601f840160051c810160208510156107245750805b601f840160051c820191505b81811015610743575f8155600101610730565b5050505050565b81516001600160401b03811115610763576107636106b3565b6107778161077184546106c7565b846106ff565b6020601f8211600181146107a9575f83156107925750848201515b5f19600385901b1c1916600184901b178455610743565b5f84815260208120601f198516915b828110156107d857878501518255602094850194600190920191016107b8565b50848210156107f557868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610814575f5ffd5b61081d82610667565b9392505050565b8082018082111561084357634e487b7160e01b5f52601160045260245ffd5b92915050565b6080516122066108765f395f818161039501528181611936015281816119ed0152611a2901526122065ff3fe608060405260043610610220575f3560e01c806389291a8f1161011e578063c0246668116100a8578063e2f456051161006d578063e2f456051461063d578063f2fde38b14610652578063f82d36e814610671578063f8b45b0514610690578063ffb54a99146106a5575f5ffd5b8063c02466681461059b578063c8c8ebe4146105ba578063cf9522fd146105cf578063dd62ed3e146105e4578063dd85465214610628575f5ffd5b80639a7a23d6116100ee5780639a7a23d614610500578063a457c2d71461051f578063a9059cbb1461053e578063aacebbe31461055d578063afa4f3b21461057c575f5ffd5b806389291a8f146104a65780638da5cb5b146104ba57806395d89b41146104d757806395fbeaa7146104eb575f5ffd5b80634a925850116101aa57806370a082311161016f57806370a082311461040c578063715018a614610440578063751039fc146104545780637571336a14610468578063809d458d14610487575f5ffd5b80634a9258501461035057806352f7c98814610365578063583e05681461038457806367243482146103cf5780636ddd1713146103ee575f5ffd5b8063311028af116101f0578063311028af146102c1578063313ce567146102d657806334848b9a146102f157806339509351146103125780634a62bb6514610331575f5ffd5b806306fdde031461022b578063095ea7b31461025557806318160ddd1461028457806323b872dd146102a2575f5ffd5b3661022757005b5f5ffd5b348015610236575f5ffd5b5061023f6106be565b60405161024c9190611d66565b60405180910390f35b348015610260575f5ffd5b5061027461026f366004611daf565b61074e565b604051901515815260200161024c565b34801561028f575f5ffd5b506002545b60405190815260200161024c565b3480156102ad575f5ffd5b506102746102bc366004611dd9565b610767565b3480156102cc575f5ffd5b5061029460095481565b3480156102e1575f5ffd5b506040516012815260200161024c565b3480156102fc575f5ffd5b5061031061030b366004611e17565b61078a565b005b34801561031d575f5ffd5b5061027461032c366004611daf565b610856565b34801561033c575f5ffd5b506010546102749062010000900460ff1681565b34801561035b575f5ffd5b5061029460185481565b348015610370575f5ffd5b5061031061037f366004611e40565b610894565b34801561038f575f5ffd5b506103b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b3480156103da575f5ffd5b506103106103e9366004611ea8565b610920565b3480156103f9575f5ffd5b5060105461027490610100900460ff1681565b348015610417575f5ffd5b50610294610426366004611f14565b6001600160a01b03165f9081526020819052604090205490565b34801561044b575f5ffd5b506103106109ad565b34801561045f575f5ffd5b506103106109e2565b348015610473575f5ffd5b50610310610482366004611f36565b610a1a565b348015610492575f5ffd5b506103106104a1366004611f14565b610a6e565b3480156104b1575f5ffd5b50610310610aba565b3480156104c5575f5ffd5b506005546001600160a01b03166103b7565b3480156104e2575f5ffd5b5061023f610c5c565b3480156104f6575f5ffd5b5061029460195481565b34801561050b575f5ffd5b5061031061051a366004611f36565b610c6b565b34801561052a575f5ffd5b50610274610539366004611daf565b610d27565b348015610549575f5ffd5b50610274610558366004611daf565b610db8565b348015610568575f5ffd5b50610310610577366004611f14565b610dc5565b348015610587575f5ffd5b50610310610596366004611f71565b610e11565b3480156105a6575f5ffd5b506103106105b5366004611f36565b610e53565b3480156105c5575f5ffd5b50610294600a5481565b3480156105da575f5ffd5b5061029460135481565b3480156105ef575f5ffd5b506102946105fe366004611f88565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610633575f5ffd5b5061029460125481565b348015610648575f5ffd5b50610294600c5481565b34801561065d575f5ffd5b5061031061066c366004611f14565b610edb565b34801561067c575f5ffd5b5061031061068b366004611f71565b610f76565b34801561069b575f5ffd5b50610294600b5481565b3480156106b0575f5ffd5b506010546102749060ff1681565b6060600380546106cd90611fb4565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990611fb4565b80156107445780601f1061071b57610100808354040283529160200191610744565b820191905f5260205f20905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b5f3361075b818585610faf565b60019150505b92915050565b5f336107748582856110d2565b61077f858585611162565b506001949350505050565b6005546001600160a01b031633146107bd5760405162461bcd60e51b81526004016107b490611fec565b60405180910390fd5b60105460ff16156108105760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016107b4565b60128390556013839055600954610828908390612035565b600a55600954610839908390612035565b600b55600f55505043600d556010805461ffff1916610101179055565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061075b908290869061088f908790612054565b610faf565b6005546001600160a01b031633146108be5760405162461bcd60e51b81526004016107b490611fec565b601982111580156108d0575060198111155b6109155760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74206578636565642035302560501b60448201526064016107b4565b601291909155601355565b821580159061092e57508083145b610936575f5ffd5b335f5b848110156109a55761099d8287878481811061095757610957612067565b905060200201602081019061096c9190611f14565b86868581811061097e5761097e612067565b90506020020135670de0b6b3a7640000610998919061207b565b611162565b600101610939565b505050505050565b6005546001600160a01b031633146109d75760405162461bcd60e51b81526004016107b490611fec565b6109e05f61183d565b565b6005546001600160a01b03163314610a0c5760405162461bcd60e51b81526004016107b490611fec565b6010805462ff000019169055565b6005546001600160a01b03163314610a445760405162461bcd60e51b81526004016107b490611fec565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a985760405162461bcd60e51b81526004016107b490611fec565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316336001600160a01b03161480610aef57506008546001600160a01b0316336001600160a01b0316145b610b2c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016107b4565b475f6064610b3b83603c61207b565b610b459190612035565b90505f6064610b5584602861207b565b610b5f9190612035565b6007546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114610bae576040519150601f19603f3d011682016040523d82523d5f602084013e610bb3565b606091505b50506008546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114610c04576040519150601f19603f3d011682016040523d82523d5f602084013e610c09565b606091505b50509050818015610c175750805b610c555760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016107b4565b5050505050565b6060600480546106cd90611fb4565b6005546001600160a01b03163314610c955760405162461bcd60e51b81526004016107b490611fec565b6006546001600160a01b0390811690831603610d195760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107b4565b610d23828261188e565b5050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919083811015610dab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107b4565b61077f8286868403610faf565b5f3361075b818585611162565b6005546001600160a01b03163314610def5760405162461bcd60e51b81526004016107b490611fec565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e3b5760405162461bcd60e51b81526004016107b490611fec565b610e4d81670de0b6b3a764000061207b565b600c5550565b6005546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016107b490611fec565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f055760405162461bcd60e51b81526004016107b490611fec565b6001600160a01b038116610f6a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b4565b610f738161183d565b50565b6007546001600160a01b0316336001600160a01b031614610f95575f5ffd5b610f73610faa82670de0b6b3a764000061207b565b6118e1565b6001600160a01b0383166110115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107b4565b6001600160a01b0382166110725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107b4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461115c578181101561114f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107b4565b61115c8484848403610faf565b50505050565b6001600160a01b0383166111885760405162461bcd60e51b81526004016107b490612092565b6001600160a01b0382166111ae5760405162461bcd60e51b81526004016107b4906120d7565b805f036111c5576111c083835f611bc8565b505050565b601054439062010000900460ff161561163f57600f54600d546111e89190612054565b81111561121e57602860128190556013556009546112089060c890612035565b600a5560095461121a90606490612035565b600b555b6001600160a01b0384165f9081526016602052604090205460ff1615611259576001600160a01b0383165f9081526017602052604090204390555b6001600160a01b0383165f9081526016602052604090205460ff16156112e2576001600160a01b0384165f9081526014602052604090205460ff166112e2576001600160a01b0384165f9081526017602052604090205480158015906112ca57506018546112c7824361211a565b11155b156112da576019546013556112e0565b60286013555b505b6005546001600160a01b0385811691161480159061130e57506005546001600160a01b03848116911614155b801561132257506001600160a01b03831615155b801561133957506001600160a01b03831661dead14155b801561134f5750600854600160a01b900460ff16155b1561163f5760105460ff166113e0576001600160a01b0384165f9081526014602052604090205460ff168061139b57506001600160a01b0383165f9081526014602052604090205460ff165b6113e05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107b4565b6001600160a01b0384165f9081526016602052604090205460ff16801561141f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561150257600a548211156114945760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107b4565b600b546001600160a01b0384165f908152602081905260409020546114b99084612054565b11156114fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b4565b61163f565b6001600160a01b0383165f9081526016602052604090205460ff16801561154157506001600160a01b0384165f9081526015602052604090205460ff16155b156115b757600a548211156114fd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107b4565b6001600160a01b0383165f9081526015602052604090205460ff1661163f57600b546001600160a01b0384165f908152602081905260409020546115fb9084612054565b111561163f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b4565b305f90815260208190526040902054600c54811080159081906116695750601054610100900460ff165b801561167f5750600854600160a01b900460ff16155b80156116a357506001600160a01b0386165f9081526016602052604090205460ff16155b80156116c757506001600160a01b0386165f9081526014602052604090205460ff16155b80156116eb57506001600160a01b0385165f9081526014602052604090205460ff16155b801561170457505f838152601160205260409020546003115b15611751576008805460ff60a01b1916600160a01b179055611724611d1a565b5f838152601160205260408120805490919061173f9061212d565b909155506008805460ff60a01b191690555b6008546001600160a01b0387165f9081526014602052604090205460ff600160a01b90920482161591168061179d57506001600160a01b0386165f9081526014602052604090205460ff165b156117a557505f5b5f8115611828576001600160a01b0387165f9081526016602052604090205460ff16156117ed576064601354876117dc919061207b565b6117e69190612035565b905061180a565b6064601254876117fd919061207b565b6118079190612035565b90505b801561181b5761181b883083611bc8565b611825818761211a565b95505b611833888888611bc8565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061191457611914612067565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611990573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119b49190612145565b816001815181106119c7576119c7612067565b60200260200101906001600160a01b031690816001600160a01b031681525050611a12307f000000000000000000000000000000000000000000000000000000000000000084610faf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a669085905f90869030904290600401612160565b5f604051808303815f87803b158015611a7d575f5ffd5b505af1158015611a8f573d5f5f3e3d5ffd5b504792505f915060649050611aa583603c61207b565b611aaf9190612035565b90505f6064611abf84602861207b565b611ac99190612035565b6007546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114611b18576040519150601f19603f3d011682016040523d82523d5f602084013e611b1d565b606091505b50506008546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114611b6e576040519150601f19603f3d011682016040523d82523d5f602084013e611b73565b606091505b50509050818015611b815750805b611bbf5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016107b4565b50505050505050565b6001600160a01b038316611bee5760405162461bcd60e51b81526004016107b490612092565b6001600160a01b038216611c145760405162461bcd60e51b81526004016107b4906120d7565b6001600160a01b0383165f9081526020819052604090205481811015611c8b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107b4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611cc1908490612054565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d0d91815260200190565b60405180910390a361115c565b305f9081526020819052604081205490818103611d35575050565b600c54611d4390606461207b565b821115611d5b57600c54611d5890606461207b565b91505b5080610d23816118e1565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610f73575f5ffd5b5f5f60408385031215611dc0575f5ffd5b8235611dcb81611d9b565b946020939093013593505050565b5f5f5f60608486031215611deb575f5ffd5b8335611df681611d9b565b92506020840135611e0681611d9b565b929592945050506040919091013590565b5f5f5f60608486031215611e29575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215611e51575f5ffd5b50508035926020909101359150565b5f5f83601f840112611e70575f5ffd5b50813567ffffffffffffffff811115611e87575f5ffd5b6020830191508360208260051b8501011115611ea1575f5ffd5b9250929050565b5f5f5f5f60408587031215611ebb575f5ffd5b843567ffffffffffffffff811115611ed1575f5ffd5b611edd87828801611e60565b909550935050602085013567ffffffffffffffff811115611efc575f5ffd5b611f0887828801611e60565b95989497509550505050565b5f60208284031215611f24575f5ffd5b8135611f2f81611d9b565b9392505050565b5f5f60408385031215611f47575f5ffd5b8235611f5281611d9b565b915060208301358015158114611f66575f5ffd5b809150509250929050565b5f60208284031215611f81575f5ffd5b5035919050565b5f5f60408385031215611f99575f5ffd5b8235611fa481611d9b565b91506020830135611f6681611d9b565b600181811c90821680611fc857607f821691505b602082108103611fe657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b5f8261204f57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561076157610761612021565b634e487b7160e01b5f52603260045260245ffd5b808202811582820484141761076157610761612021565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561076157610761612021565b5f6001820161213e5761213e612021565b5060010190565b5f60208284031215612155575f5ffd5b8151611f2f81611d9b565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156121b05783516001600160a01b0316835260209384019390920191600101612189565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220d1567829cc71a74613dc83c70b6a55aa21ee2d6b06efa27ca7ff6ccdac5213aa64736f6c634300081c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000676d8fbfc853c5056640c36ec8e9b607fdd2cfee0000000000000000000000000bb2dfe4c27265730a02a9a974cef0f3db023001
Deployed Bytecode
0x608060405260043610610220575f3560e01c806389291a8f1161011e578063c0246668116100a8578063e2f456051161006d578063e2f456051461063d578063f2fde38b14610652578063f82d36e814610671578063f8b45b0514610690578063ffb54a99146106a5575f5ffd5b8063c02466681461059b578063c8c8ebe4146105ba578063cf9522fd146105cf578063dd62ed3e146105e4578063dd85465214610628575f5ffd5b80639a7a23d6116100ee5780639a7a23d614610500578063a457c2d71461051f578063a9059cbb1461053e578063aacebbe31461055d578063afa4f3b21461057c575f5ffd5b806389291a8f146104a65780638da5cb5b146104ba57806395d89b41146104d757806395fbeaa7146104eb575f5ffd5b80634a925850116101aa57806370a082311161016f57806370a082311461040c578063715018a614610440578063751039fc146104545780637571336a14610468578063809d458d14610487575f5ffd5b80634a9258501461035057806352f7c98814610365578063583e05681461038457806367243482146103cf5780636ddd1713146103ee575f5ffd5b8063311028af116101f0578063311028af146102c1578063313ce567146102d657806334848b9a146102f157806339509351146103125780634a62bb6514610331575f5ffd5b806306fdde031461022b578063095ea7b31461025557806318160ddd1461028457806323b872dd146102a2575f5ffd5b3661022757005b5f5ffd5b348015610236575f5ffd5b5061023f6106be565b60405161024c9190611d66565b60405180910390f35b348015610260575f5ffd5b5061027461026f366004611daf565b61074e565b604051901515815260200161024c565b34801561028f575f5ffd5b506002545b60405190815260200161024c565b3480156102ad575f5ffd5b506102746102bc366004611dd9565b610767565b3480156102cc575f5ffd5b5061029460095481565b3480156102e1575f5ffd5b506040516012815260200161024c565b3480156102fc575f5ffd5b5061031061030b366004611e17565b61078a565b005b34801561031d575f5ffd5b5061027461032c366004611daf565b610856565b34801561033c575f5ffd5b506010546102749062010000900460ff1681565b34801561035b575f5ffd5b5061029460185481565b348015610370575f5ffd5b5061031061037f366004611e40565b610894565b34801561038f575f5ffd5b506103b77f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6040516001600160a01b03909116815260200161024c565b3480156103da575f5ffd5b506103106103e9366004611ea8565b610920565b3480156103f9575f5ffd5b5060105461027490610100900460ff1681565b348015610417575f5ffd5b50610294610426366004611f14565b6001600160a01b03165f9081526020819052604090205490565b34801561044b575f5ffd5b506103106109ad565b34801561045f575f5ffd5b506103106109e2565b348015610473575f5ffd5b50610310610482366004611f36565b610a1a565b348015610492575f5ffd5b506103106104a1366004611f14565b610a6e565b3480156104b1575f5ffd5b50610310610aba565b3480156104c5575f5ffd5b506005546001600160a01b03166103b7565b3480156104e2575f5ffd5b5061023f610c5c565b3480156104f6575f5ffd5b5061029460195481565b34801561050b575f5ffd5b5061031061051a366004611f36565b610c6b565b34801561052a575f5ffd5b50610274610539366004611daf565b610d27565b348015610549575f5ffd5b50610274610558366004611daf565b610db8565b348015610568575f5ffd5b50610310610577366004611f14565b610dc5565b348015610587575f5ffd5b50610310610596366004611f71565b610e11565b3480156105a6575f5ffd5b506103106105b5366004611f36565b610e53565b3480156105c5575f5ffd5b50610294600a5481565b3480156105da575f5ffd5b5061029460135481565b3480156105ef575f5ffd5b506102946105fe366004611f88565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610633575f5ffd5b5061029460125481565b348015610648575f5ffd5b50610294600c5481565b34801561065d575f5ffd5b5061031061066c366004611f14565b610edb565b34801561067c575f5ffd5b5061031061068b366004611f71565b610f76565b34801561069b575f5ffd5b50610294600b5481565b3480156106b0575f5ffd5b506010546102749060ff1681565b6060600380546106cd90611fb4565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990611fb4565b80156107445780601f1061071b57610100808354040283529160200191610744565b820191905f5260205f20905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b5f3361075b818585610faf565b60019150505b92915050565b5f336107748582856110d2565b61077f858585611162565b506001949350505050565b6005546001600160a01b031633146107bd5760405162461bcd60e51b81526004016107b490611fec565b60405180910390fd5b60105460ff16156108105760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016107b4565b60128390556013839055600954610828908390612035565b600a55600954610839908390612035565b600b55600f55505043600d556010805461ffff1916610101179055565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061075b908290869061088f908790612054565b610faf565b6005546001600160a01b031633146108be5760405162461bcd60e51b81526004016107b490611fec565b601982111580156108d0575060198111155b6109155760405162461bcd60e51b8152602060048201526016602482015275466565732063616e6e6f74206578636565642035302560501b60448201526064016107b4565b601291909155601355565b821580159061092e57508083145b610936575f5ffd5b335f5b848110156109a55761099d8287878481811061095757610957612067565b905060200201602081019061096c9190611f14565b86868581811061097e5761097e612067565b90506020020135670de0b6b3a7640000610998919061207b565b611162565b600101610939565b505050505050565b6005546001600160a01b031633146109d75760405162461bcd60e51b81526004016107b490611fec565b6109e05f61183d565b565b6005546001600160a01b03163314610a0c5760405162461bcd60e51b81526004016107b490611fec565b6010805462ff000019169055565b6005546001600160a01b03163314610a445760405162461bcd60e51b81526004016107b490611fec565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a985760405162461bcd60e51b81526004016107b490611fec565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b0316336001600160a01b03161480610aef57506008546001600160a01b0316336001600160a01b0316145b610b2c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b60448201526064016107b4565b475f6064610b3b83603c61207b565b610b459190612035565b90505f6064610b5584602861207b565b610b5f9190612035565b6007546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114610bae576040519150601f19603f3d011682016040523d82523d5f602084013e610bb3565b606091505b50506008546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114610c04576040519150601f19603f3d011682016040523d82523d5f602084013e610c09565b606091505b50509050818015610c175750805b610c555760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016107b4565b5050505050565b6060600480546106cd90611fb4565b6005546001600160a01b03163314610c955760405162461bcd60e51b81526004016107b490611fec565b6006546001600160a01b0390811690831603610d195760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107b4565b610d23828261188e565b5050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919083811015610dab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107b4565b61077f8286868403610faf565b5f3361075b818585611162565b6005546001600160a01b03163314610def5760405162461bcd60e51b81526004016107b490611fec565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e3b5760405162461bcd60e51b81526004016107b490611fec565b610e4d81670de0b6b3a764000061207b565b600c5550565b6005546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016107b490611fec565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f055760405162461bcd60e51b81526004016107b490611fec565b6001600160a01b038116610f6a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b4565b610f738161183d565b50565b6007546001600160a01b0316336001600160a01b031614610f95575f5ffd5b610f73610faa82670de0b6b3a764000061207b565b6118e1565b6001600160a01b0383166110115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107b4565b6001600160a01b0382166110725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107b4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461115c578181101561114f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107b4565b61115c8484848403610faf565b50505050565b6001600160a01b0383166111885760405162461bcd60e51b81526004016107b490612092565b6001600160a01b0382166111ae5760405162461bcd60e51b81526004016107b4906120d7565b805f036111c5576111c083835f611bc8565b505050565b601054439062010000900460ff161561163f57600f54600d546111e89190612054565b81111561121e57602860128190556013556009546112089060c890612035565b600a5560095461121a90606490612035565b600b555b6001600160a01b0384165f9081526016602052604090205460ff1615611259576001600160a01b0383165f9081526017602052604090204390555b6001600160a01b0383165f9081526016602052604090205460ff16156112e2576001600160a01b0384165f9081526014602052604090205460ff166112e2576001600160a01b0384165f9081526017602052604090205480158015906112ca57506018546112c7824361211a565b11155b156112da576019546013556112e0565b60286013555b505b6005546001600160a01b0385811691161480159061130e57506005546001600160a01b03848116911614155b801561132257506001600160a01b03831615155b801561133957506001600160a01b03831661dead14155b801561134f5750600854600160a01b900460ff16155b1561163f5760105460ff166113e0576001600160a01b0384165f9081526014602052604090205460ff168061139b57506001600160a01b0383165f9081526014602052604090205460ff165b6113e05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107b4565b6001600160a01b0384165f9081526016602052604090205460ff16801561141f57506001600160a01b0383165f9081526015602052604090205460ff16155b1561150257600a548211156114945760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107b4565b600b546001600160a01b0384165f908152602081905260409020546114b99084612054565b11156114fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b4565b61163f565b6001600160a01b0383165f9081526016602052604090205460ff16801561154157506001600160a01b0384165f9081526015602052604090205460ff16155b156115b757600a548211156114fd5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107b4565b6001600160a01b0383165f9081526015602052604090205460ff1661163f57600b546001600160a01b0384165f908152602081905260409020546115fb9084612054565b111561163f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107b4565b305f90815260208190526040902054600c54811080159081906116695750601054610100900460ff165b801561167f5750600854600160a01b900460ff16155b80156116a357506001600160a01b0386165f9081526016602052604090205460ff16155b80156116c757506001600160a01b0386165f9081526014602052604090205460ff16155b80156116eb57506001600160a01b0385165f9081526014602052604090205460ff16155b801561170457505f838152601160205260409020546003115b15611751576008805460ff60a01b1916600160a01b179055611724611d1a565b5f838152601160205260408120805490919061173f9061212d565b909155506008805460ff60a01b191690555b6008546001600160a01b0387165f9081526014602052604090205460ff600160a01b90920482161591168061179d57506001600160a01b0386165f9081526014602052604090205460ff165b156117a557505f5b5f8115611828576001600160a01b0387165f9081526016602052604090205460ff16156117ed576064601354876117dc919061207b565b6117e69190612035565b905061180a565b6064601254876117fd919061207b565b6118079190612035565b90505b801561181b5761181b883083611bc8565b611825818761211a565b95505b611833888888611bc8565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061191457611914612067565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad246001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611990573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119b49190612145565b816001815181106119c7576119c7612067565b60200260200101906001600160a01b031690816001600160a01b031681525050611a12307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610faf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24169063791ac94790611a669085905f90869030904290600401612160565b5f604051808303815f87803b158015611a7d575f5ffd5b505af1158015611a8f573d5f5f3e3d5ffd5b504792505f915060649050611aa583603c61207b565b611aaf9190612035565b90505f6064611abf84602861207b565b611ac99190612035565b6007546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114611b18576040519150601f19603f3d011682016040523d82523d5f602084013e611b1d565b606091505b50506008546040519192505f916001600160a01b039091169084908381818185875af1925050503d805f8114611b6e576040519150601f19603f3d011682016040523d82523d5f602084013e611b73565b606091505b50509050818015611b815750805b611bbf5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016107b4565b50505050505050565b6001600160a01b038316611bee5760405162461bcd60e51b81526004016107b490612092565b6001600160a01b038216611c145760405162461bcd60e51b81526004016107b4906120d7565b6001600160a01b0383165f9081526020819052604090205481811015611c8b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107b4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290611cc1908490612054565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d0d91815260200190565b60405180910390a361115c565b305f9081526020819052604081205490818103611d35575050565b600c54611d4390606461207b565b821115611d5b57600c54611d5890606461207b565b91505b5080610d23816118e1565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610f73575f5ffd5b5f5f60408385031215611dc0575f5ffd5b8235611dcb81611d9b565b946020939093013593505050565b5f5f5f60608486031215611deb575f5ffd5b8335611df681611d9b565b92506020840135611e0681611d9b565b929592945050506040919091013590565b5f5f5f60608486031215611e29575f5ffd5b505081359360208301359350604090920135919050565b5f5f60408385031215611e51575f5ffd5b50508035926020909101359150565b5f5f83601f840112611e70575f5ffd5b50813567ffffffffffffffff811115611e87575f5ffd5b6020830191508360208260051b8501011115611ea1575f5ffd5b9250929050565b5f5f5f5f60408587031215611ebb575f5ffd5b843567ffffffffffffffff811115611ed1575f5ffd5b611edd87828801611e60565b909550935050602085013567ffffffffffffffff811115611efc575f5ffd5b611f0887828801611e60565b95989497509550505050565b5f60208284031215611f24575f5ffd5b8135611f2f81611d9b565b9392505050565b5f5f60408385031215611f47575f5ffd5b8235611f5281611d9b565b915060208301358015158114611f66575f5ffd5b809150509250929050565b5f60208284031215611f81575f5ffd5b5035919050565b5f5f60408385031215611f99575f5ffd5b8235611fa481611d9b565b91506020830135611f6681611d9b565b600181811c90821680611fc857607f821691505b602082108103611fe657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b5f8261204f57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561076157610761612021565b634e487b7160e01b5f52603260045260245ffd5b808202811582820484141761076157610761612021565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561076157610761612021565b5f6001820161213e5761213e612021565b5060010190565b5f60208284031215612155575f5ffd5b8151611f2f81611d9b565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156121b05783516001600160a01b0316835260209384019390920191600101612189565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220d1567829cc71a74613dc83c70b6a55aa21ee2d6b06efa27ca7ff6ccdac5213aa64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000676d8fbfc853c5056640c36ec8e9b607fdd2cfee0000000000000000000000000bb2dfe4c27265730a02a9a974cef0f3db023001
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x676D8fBfc853c5056640C36ec8e9B607FDD2Cfee
Arg [1] : _treasuryWallet (address): 0x0bB2dFe4C27265730A02a9a974CEf0f3db023001
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000676d8fbfc853c5056640c36ec8e9b607fdd2cfee
Arg [1] : 0000000000000000000000000bb2dfe4c27265730a02a9a974cef0f3db023001
Deployed Bytecode Sourcemap
28707:12202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13281:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15632:201;;;;;;;;;;-1:-1:-1;15632:201:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15632:201:0;945:187:1;14401:108:0;;;;;;;;;;-1:-1:-1;14489:12:0;;14401:108;;;1283:25:1;;;1271:2;1256:18;14401:108:0;1137:177:1;16413:295:0;;;;;;;;;;-1:-1:-1;16413:295:0;;;;;:::i;:::-;;:::i;29226:56::-;;;;;;;;;;;;;;;;14243:93;;;;;;;;;;-1:-1:-1;14243:93:0;;14326:2;1974:36:1;;1962:2;1947:18;14243:93:0;1832:184:1;32113:469:0;;;;;;;;;;-1:-1:-1;32113:469:0;;;;;:::i;:::-;;:::i;:::-;;17117:240;;;;;;;;;;-1:-1:-1;17117:240:0;;;;;:::i;:::-;;:::i;29684:33::-;;;;;;;;;;-1:-1:-1;29684:33:0;;;;;;;;;;;30418:36;;;;;;;;;;;;;;;;39281:230;;;;;;;;;;-1:-1:-1;39281:230:0;;;;;:::i;:::-;;:::i;28762:52::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3033:32:1;;;3015:51;;3003:2;2988:18;28762:52:0;2843:229:1;40131:353:0;;;;;;;;;;-1:-1:-1;40131:353:0;;;;;:::i;:::-;;:::i;29642:31::-;;;;;;;;;;-1:-1:-1;29642:31:0;;;;;;;;;;;14572:127;;;;;;;;;;-1:-1:-1;14572:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;14673:18:0;14646:7;14673:18;;;;;;;;;;;;14572:127;6686:103;;;;;;;;;;;;;:::i;38401:84::-;;;;;;;;;;;;;:::i;32588:167::-;;;;;;;;;;-1:-1:-1;32588:167:0;;;;;:::i;:::-;;:::i;39817:169::-;;;;;;;;;;-1:-1:-1;39817:169:0;;;;;:::i;:::-;;:::i;38493:612::-;;;;;;;;;;;;;:::i;6035:87::-;;;;;;;;;;-1:-1:-1;6108:6:0;;-1:-1:-1;;;;;6108:6:0;6035:87;;13500:104;;;;;;;;;;;;;:::i;30509:31::-;;;;;;;;;;;;;;;;32763:265;;;;;;;;;;-1:-1:-1;32763:265:0;;;;;:::i;:::-;;:::i;17860:438::-;;;;;;;;;;-1:-1:-1;17860:438:0;;;;;:::i;:::-;;:::i;14905:193::-;;;;;;;;;;-1:-1:-1;14905:193:0;;;;;:::i;:::-;;:::i;39578:173::-;;;;;;;;;;-1:-1:-1;39578:173:0;;;;;:::i;:::-;;:::i;39996:127::-;;;;;;;;;;-1:-1:-1;39996:127:0;;;;;:::i;:::-;;:::i;33230:182::-;;;;;;;;;;-1:-1:-1;33230:182:0;;;;;:::i;:::-;;:::i;29293:62::-;;;;;;;;;;;;;;;;29878:26;;;;;;;;;;;;;;;;15161:151;;;;;;;;;;-1:-1:-1;15161:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;15277:18:0;;;15250:7;15277:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15161:151;29788:25;;;;;;;;;;;;;;;;29428:47;;;;;;;;;;;;;;;;6944:201;;;;;;;;;;-1:-1:-1;6944:201:0;;;;;:::i;:::-;;:::i;39115:158::-;;;;;;;;;;-1:-1:-1;39115:158:0;;;;;:::i;:::-;;:::i;29366:51::-;;;;;;;;;;;;;;;;29600:31;;;;;;;;;;-1:-1:-1;29600:31:0;;;;;;;;13281:100;13335:13;13368:5;13361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13281:100;:::o;15632:201::-;15715:4;4833:10;15771:32;4833:10;15787:7;15796:6;15771:8;:32::i;:::-;15821:4;15814:11;;;15632:201;;;;;:::o;16413:295::-;16544:4;4833:10;16602:38;16618:4;4833:10;16633:6;16602:15;:38::i;:::-;16651:27;16661:4;16667:2;16671:6;16651:9;:27::i;:::-;-1:-1:-1;16696:4:0;;16413:295;-1:-1:-1;;;;16413:295:0:o;32113:469::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;;;;;;;;;32233:11:::1;::::0;::::1;;32232:12;32224:47;;;::::0;-1:-1:-1;;;32224:47:0;;6675:2:1;32224:47:0::1;::::0;::::1;6657:21:1::0;6714:2;6694:18;;;6687:30;6753:25;6733:18;;;6726:53;6796:18;;32224:47:0::1;6473:347:1::0;32224:47:0::1;32282:6;:19:::0;;;32312:7:::1;:20:::0;;;32366:18:::1;::::0;:28:::1;::::0;32387:7;;32366:28:::1;:::i;:::-;32343:20;:51:::0;32417:18:::1;::::0;:28:::1;::::0;32438:7;;32417:28:::1;:::i;:::-;32405:9;:40:::0;32456:10:::1;:24:::0;-1:-1:-1;;32504:12:0::1;32491:10;:25:::0;32527:11:::1;:18:::0;;-1:-1:-1;;32556:18:0;;;;;32113:469::o;17117:240::-;4833:10;17205:4;17286:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17286:27:0;;;;;;;;;;17205:4;;4833:10;17261:66;;4833:10;;17286:27;;:40;;17316:10;;17286:40;:::i;:::-;17261:8;:66::i;39281:230::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;39381:2:::1;39370:7;:13;;:31;;;;;39399:2;39387:8;:14;;39370:31;39362:66;;;::::0;-1:-1:-1;;;39362:66:0;;7511:2:1;39362:66:0::1;::::0;::::1;7493:21:1::0;7550:2;7530:18;;;7523:30;-1:-1:-1;;;7569:18:1;;;7562:52;7631:18;;39362:66:0::1;7309:346:1::0;39362:66:0::1;39458:6;:16:::0;;;;39485:7:::1;:18:::0;39281:230::o;40131:353::-;40236:20;;;;;:58;;-1:-1:-1;40260:34:0;;;40236:58;40228:67;;;;;;40323:10;40308:12;40348:129;40365:20;;;40348:129;;;40409:52;40419:4;40425:9;;40435:1;40425:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;40439:7;;40447:1;40439:10;;;;;;;:::i;:::-;;;;;;;40453:6;40439:21;;;;:::i;:::-;40409:9;:52::i;:::-;40387:3;;40348:129;;;;40215:269;40131:353;;;;:::o;6686:103::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;6751:30:::1;6778:1;6751:18;:30::i;:::-;6686:103::o:0;38401:84::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;38455:14:::1;:22:::0;;-1:-1:-1;;38455:22:0::1;::::0;;38401:84::o;32588:167::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32701:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;32701:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32588:167::o;39817:169::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;39904:14:::1;:43:::0;;-1:-1:-1;;;;;;39904:43:0::1;-1:-1:-1::0;;;;;39904:43:0;;;::::1;::::0;;;::::1;::::0;;39817:169::o;38493:612::-;38558:15;;-1:-1:-1;;;;;38558:15:0;4833:10;-1:-1:-1;;;;;38542:31:0;;:65;;;-1:-1:-1;38593:14:0;;-1:-1:-1;;;;;38593:14:0;4833:10;-1:-1:-1;;;;;38577:30:0;;38542:65;38534:92;;;;-1:-1:-1;;;38534:92:0;;8167:2:1;38534:92:0;;;8149:21:1;8206:2;8186:18;;;8179:30;-1:-1:-1;;;8225:18:1;;;8218:44;8279:18;;38534:92:0;7965:338:1;38534:92:0;38659:21;38633:23;38737:3;38714:20;38659:21;38732:2;38714:20;:::i;:::-;:26;;;;:::i;:::-;38689:51;-1:-1:-1;38781:21:0;38828:3;38805:20;:15;38823:2;38805:20;:::i;:::-;:26;;;;:::i;:::-;38903:15;;:47;;38781:50;;-1:-1:-1;38876:21:0;;-1:-1:-1;;;;;38903:15:0;;;;38931:14;;38876:21;38903:47;38876:21;38903:47;38931:14;38903:15;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38984:14:0;;:45;;38875:75;;-1:-1:-1;38958:20:0;;-1:-1:-1;;;;;38984:14:0;;;;39011:13;;38958:20;38984:45;38958:20;38984:45;39011:13;38984:14;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38957:72;;;39046:16;:35;;;;;39066:15;39046:35;39038:63;;;;-1:-1:-1;;;39038:63:0;;8720:2:1;39038:63:0;;;8702:21:1;8759:2;8739:18;;;8732:30;-1:-1:-1;;;8778:18:1;;;8771:45;8833:18;;39038:63:0;8518:339:1;39038:63:0;38527:578;;;;;38493:612::o;13500:104::-;13556:13;13589:7;13582:14;;;;;:::i;32763:265::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;32893:13:::1;::::0;-1:-1:-1;;;;;32893:13:0;;::::1;32885:21:::0;;::::1;::::0;32877:91:::1;;;::::0;-1:-1:-1;;;32877:91:0;;9064:2:1;32877:91:0::1;::::0;::::1;9046:21:1::0;9103:2;9083:18;;;9076:30;9142:34;9122:18;;;9115:62;9213:27;9193:18;;;9186:55;9258:19;;32877:91:0::1;8862:421:1::0;32877:91:0::1;32979:41;33008:4;33014:5;32979:28;:41::i;:::-;32763:265:::0;;:::o;17860:438::-;4833:10;17953:4;18036:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;18036:27:0;;;;;;;;;;17953:4;;4833:10;18082:35;;;;18074:85;;;;-1:-1:-1;;;18074:85:0;;9490:2:1;18074:85:0;;;9472:21:1;9529:2;9509:18;;;9502:30;9568:34;9548:18;;;9541:62;-1:-1:-1;;;9619:18:1;;;9612:35;9664:19;;18074:85:0;9288:401:1;18074:85:0;18195:60;18204:5;18211:7;18239:15;18220:16;:34;18195:8;:60::i;14905:193::-;14984:4;4833:10;15040:28;4833:10;15057:2;15061:6;15040:9;:28::i;39578:173::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;39667:15:::1;:45:::0;;-1:-1:-1;;;;;;39667:45:0::1;-1:-1:-1::0;;;;;39667:45:0;;;::::1;::::0;;;::::1;::::0;;39578:173::o;39996:127::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;40095:20:::1;:7:::0;40106:8:::1;40095:20;:::i;:::-;40074:18;:41:::0;-1:-1:-1;39996:127:0:o;33230:182::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33315:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;33315:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33370:34;;1085:41:1;;;33370:34:0::1;::::0;1058:18:1;33370:34:0::1;;;;;;;33230:182:::0;;:::o;6944:201::-;6108:6;;-1:-1:-1;;;;;6108:6:0;4833:10;6255:23;6247:68;;;;-1:-1:-1;;;6247:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7033:22:0;::::1;7025:73;;;::::0;-1:-1:-1;;;7025:73:0;;9896:2:1;7025:73:0::1;::::0;::::1;9878:21:1::0;9935:2;9915:18;;;9908:30;9974:34;9954:18;;;9947:62;-1:-1:-1;;;10025:18:1;;;10018:36;10071:19;;7025:73:0::1;9694:402:1::0;7025:73:0::1;7109:28;7128:8;7109:18;:28::i;:::-;6944:201:::0;:::o;39115:158::-;39201:15;;-1:-1:-1;;;;;39201:15:0;4833:10;-1:-1:-1;;;;;39185:31:0;;39177:40;;;;;;39228:37;39245:19;:6;39255:8;39245:19;:::i;:::-;39228:16;:37::i;21496:380::-;-1:-1:-1;;;;;21632:19:0;;21624:68;;;;-1:-1:-1;;;21624:68:0;;10303:2:1;21624:68:0;;;10285:21:1;10342:2;10322:18;;;10315:30;10381:34;10361:18;;;10354:62;-1:-1:-1;;;10432:18:1;;;10425:34;10476:19;;21624:68:0;10101:400:1;21624:68:0;-1:-1:-1;;;;;21711:21:0;;21703:68;;;;-1:-1:-1;;;21703:68:0;;10708:2:1;21703:68:0;;;10690:21:1;10747:2;10727:18;;;10720:30;10786:34;10766:18;;;10759:62;-1:-1:-1;;;10837:18:1;;;10830:32;10879:19;;21703:68:0;10506:398:1;21703:68:0;-1:-1:-1;;;;;21784:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21836:32;;1283:25:1;;;21836:32:0;;1256:18:1;21836:32:0;;;;;;;21496:380;;;:::o;22163:453::-;-1:-1:-1;;;;;15277:18:0;;;22298:24;15277:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22365:37:0;;22361:248;;22447:6;22427:16;:26;;22419:68;;;;-1:-1:-1;;;22419:68:0;;11111:2:1;22419:68:0;;;11093:21:1;11150:2;11130:18;;;11123:30;11189:31;11169:18;;;11162:59;11238:18;;22419:68:0;10909:353:1;22419:68:0;22531:51;22540:5;22547:7;22575:6;22556:16;:25;22531:8;:51::i;:::-;22287:329;22163:453;;;:::o;33420:3898::-;-1:-1:-1;;;;;33520:18:0;;33512:68;;;;-1:-1:-1;;;33512:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33599:16:0;;33591:64;;;;-1:-1:-1;;;33591:64:0;;;;;;;:::i;:::-;33672:6;33682:1;33672:11;33668:93;;33700:28;33716:4;33722:2;33726:1;33700:15;:28::i;:::-;33420:3898;;;:::o;33668:93::-;33886:14;;33849:12;;33886:14;;;;;33882:2407;;;33954:10;;33941;;:23;;;;:::i;:::-;33929:8;:36;33926:405;;;34022:2;34013:6;:11;;;34116:7;:12;34178:18;;:24;;34199:3;;34178:24;:::i;:::-;34155:20;:47;34258:18;;:24;;34279:3;;34258:24;:::i;:::-;34246:9;:36;33926:405;-1:-1:-1;;;;;34419:31:0;;;;;;:25;:31;;;;;;;;34415:162;;;-1:-1:-1;;;;;34521:17:0;;;;;;:13;:17;;;;;34541:12;34521:32;;34415:162;-1:-1:-1;;;;;34605:29:0;;;;;;:25;:29;;;;;;;;34601:610;;;-1:-1:-1;;;;;34711:25:0;;;;;;:19;:25;;;;;;;;34706:482;;-1:-1:-1;;;;;34787:19:0;;34769:15;34787:19;;;:13;:19;;;;;;34841:11;;;;;:58;;-1:-1:-1;34884:15:0;;34857:22;34872:7;34857:12;:22;:::i;:::-;34856:43;;34841:58;34837:324;;;34946:11;;34936:7;:21;34837:324;;;35072:2;35062:7;:12;34837:324;34738:450;34706:482;6108:6;;-1:-1:-1;;;;;35237:15:0;;;6108:6;;35237:15;;;;:32;;-1:-1:-1;6108:6:0;;-1:-1:-1;;;;;35256:13:0;;;6108:6;;35256:13;;35237:32;:52;;;;-1:-1:-1;;;;;;35273:16:0;;;;35237:52;:77;;;;-1:-1:-1;;;;;;35293:21:0;;35307:6;35293:21;;35237:77;:90;;;;-1:-1:-1;35319:8:0;;-1:-1:-1;;;35319:8:0;;;;35318:9;35237:90;35233:1043;;;35355:11;;;;35350:148;;-1:-1:-1;;;;;35399:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;35428:23:0;;;;;;:19;:23;;;;;;;;35399:52;35391:87;;;;-1:-1:-1;;;35391:87:0;;12412:2:1;35391:87:0;;;12394:21:1;12451:2;12431:18;;;12424:30;-1:-1:-1;;;12470:18:1;;;12463:52;12532:18;;35391:87:0;12210:346:1;35391:87:0;-1:-1:-1;;;;;35522:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;35558:35:0;;;;;;:31;:35;;;;;;;;35557:36;35522:71;35518:743;;;35654:20;;35644:6;:30;;35636:96;;;;-1:-1:-1;;;35636:96:0;;12763:2:1;35636:96:0;;;12745:21:1;12802:2;12782:18;;;12775:30;12841:34;12821:18;;;12814:62;-1:-1:-1;;;12892:18:1;;;12885:51;12953:19;;35636:96:0;12561:417:1;35636:96:0;35789:9;;-1:-1:-1;;;;;14673:18:0;;14646:7;14673:18;;;;;;;;;;;35763:22;;:6;:22;:::i;:::-;:35;;35755:67;;;;-1:-1:-1;;;35755:67:0;;13185:2:1;35755:67:0;;;13167:21:1;13224:2;13204:18;;;13197:30;-1:-1:-1;;;13243:18:1;;;13236:49;13302:18;;35755:67:0;12983:343:1;35755:67:0;35518:743;;;-1:-1:-1;;;;;35871:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;35905:37:0;;;;;;:31;:37;;;;;;;;35904:38;35871:71;35867:394;;;35985:20;;35975:6;:30;;35967:97;;;;-1:-1:-1;;;35967:97:0;;13533:2:1;35967:97:0;;;13515:21:1;13572:2;13552:18;;;13545:30;13611:34;13591:18;;;13584:62;-1:-1:-1;;;13662:18:1;;;13655:52;13724:19;;35967:97:0;13331:418:1;35867:394:0;-1:-1:-1;;;;;36114:35:0;;;;;;:31;:35;;;;;;;;36109:152;;36208:9;;-1:-1:-1;;;;;14673:18:0;;14646:7;14673:18;;;;;;;;;;;36182:22;;:6;:22;:::i;:::-;:35;;36174:67;;;;-1:-1:-1;;;36174:67:0;;13185:2:1;36174:67:0;;;13167:21:1;13224:2;13204:18;;;13197:30;-1:-1:-1;;;13243:18:1;;;13236:49;13302:18;;36174:67:0;12983:343:1;36174:67:0;36350:4;36301:28;14673:18;;;;;;;;;;;36408;;36384:42;;;;;;;36443:22;;-1:-1:-1;36454:11:0;;;;;;;36443:22;:35;;;;-1:-1:-1;36470:8:0;;-1:-1:-1;;;36470:8:0;;;;36469:9;36443:35;:71;;;;-1:-1:-1;;;;;;36483:31:0;;;;;;:25;:31;;;;;;;;36482:32;36443:71;:101;;;;-1:-1:-1;;;;;;36519:25:0;;;;;;:19;:25;;;;;;;;36518:26;36443:101;:129;;;;-1:-1:-1;;;;;;36549:23:0;;;;;;:19;:23;;;;;;;;36548:24;36443:129;:160;;;;-1:-1:-1;36577:21:0;;;;:11;:21;;;;;;36601:1;-1:-1:-1;36443:160:0;36439:302;;;36620:8;:15;;-1:-1:-1;;;;36620:15:0;-1:-1:-1;;;36620:15:0;;;36650:10;:8;:10::i;:::-;36677:21;;;;:11;:21;;;;;36675:23;;36677:21;;;36675:23;;;:::i;:::-;;;;-1:-1:-1;36713:8:0;:16;;-1:-1:-1;;;;36713:16:0;;;36439:302;36769:8;;-1:-1:-1;;;;;36794:25:0;;36753:12;36794:25;;;36769:8;36794:25;;;;;;36769:8;-1:-1:-1;;;36769:8:0;;;;;36768:9;;36794:25;;:52;;-1:-1:-1;;;;;;36823:23:0;;;;;;:19;:23;;;;;;;;36794:52;36790:100;;;-1:-1:-1;36873:5:0;36790:100;36902:12;36931:336;;;;-1:-1:-1;;;;;36963:29:0;;;;;;:25;:29;;;;;;;;36959:181;;;37039:3;37029:7;;37020:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;37013:29;;36959:181;;;37121:3;37112:6;;37103;:15;;;;:::i;:::-;:21;;;;:::i;:::-;37096:28;;36959:181;37156:8;;37152:83;;37181:42;37197:4;37211;37218;37181:15;:42::i;:::-;37245:14;37255:4;37245:14;;:::i;:::-;;;36931:336;37277:33;37293:4;37299:2;37303:6;37277:15;:33::i;:::-;33499:3819;;;;;33420:3898;;;:::o;7305:191::-;7398:6;;;-1:-1:-1;;;;;7415:17:0;;;-1:-1:-1;;;;;;7415:17:0;;;;;;;7448:40;;7398:6;;;7415:17;7398:6;;7448:40;;7379:16;;7448:40;7368:128;7305:191;:::o;33036:186::-;-1:-1:-1;;;;;33119:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;33119:39:0;;;;;;;;;;33174:40;;33119:39;;:31;33174:40;;;33036:186;;:::o;37324:1070::-;37414:16;;;37428:1;37414:16;;;;;;;;37390:21;;37414:16;;;;;;;;;;-1:-1:-1;37414:16:0;37390:40;;37459:4;37441;37446:1;37441:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;37441:23:0;;;-1:-1:-1;;;;;37441:23:0;;;;;37485:16;-1:-1:-1;;;;;37485:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37475:4;37480:1;37475:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;37475:33:0;;;-1:-1:-1;;;;;37475:33:0;;;;;37521:63;37538:4;37553:16;37572:11;37521:8;:63::i;:::-;37597:197;;-1:-1:-1;;;37597:197:0;;-1:-1:-1;;;;;37597:16:0;:67;;;;:197;;37679:11;;37705:1;;37721:4;;37748;;37768:15;;37597:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37836:21:0;;-1:-1:-1;37807:26:0;;-1:-1:-1;38005:3:0;;-1:-1:-1;37979:23:0;37836:21;38000:2;37979:23;:::i;:::-;:29;;;;:::i;:::-;37954:54;-1:-1:-1;38052:21:0;38102:3;38076:23;:18;38097:2;38076:23;:::i;:::-;:29;;;;:::i;:::-;38180:15;;:47;;38052:53;;-1:-1:-1;38153:21:0;;-1:-1:-1;;;;;38180:15:0;;;;38208:14;;38153:21;38180:47;38153:21;38180:47;38208:14;38180:15;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38265:14:0;;:45;;38152:75;;-1:-1:-1;38239:20:0;;-1:-1:-1;;;;;38265:14:0;;;;38292:13;;38239:20;38265:45;38239:20;38265:45;38292:13;38265:14;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38238:72;;;38331:16;:35;;;;;38351:15;38331:35;38323:63;;;;-1:-1:-1;;;38323:63:0;;8720:2:1;38323:63:0;;;8702:21:1;8759:2;8739:18;;;8732:30;-1:-1:-1;;;8778:18:1;;;8771:45;8833:18;;38323:63:0;8518:339:1;38323:63:0;37379:1015;;;;;;37324:1070;:::o;18777:671::-;-1:-1:-1;;;;;18908:18:0;;18900:68;;;;-1:-1:-1;;;18900:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18987:16:0;;18979:64;;;;-1:-1:-1;;;18979:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19129:15:0;;19107:19;19129:15;;;;;;;;;;;19163:21;;;;19155:72;;;;-1:-1:-1;;;19155:72:0;;15448:2:1;19155:72:0;;;15430:21:1;15487:2;15467:18;;;15460:30;15526:34;15506:18;;;15499:62;-1:-1:-1;;;15577:18:1;;;15570:36;15623:19;;19155:72:0;15246:402:1;19155:72:0;-1:-1:-1;;;;;19263:15:0;;;:9;:15;;;;;;;;;;;19281:20;;;19263:38;;19323:13;;;;;;;;:23;;19295:6;;19263:9;19323:23;;19295:6;;19323:23;:::i;:::-;;;;;;;;19379:2;-1:-1:-1;;;;;19364:26:0;19373:4;-1:-1:-1;;;;;19364:26:0;;19383:6;19364:26;;;;1283:25:1;;1271:2;1256:18;;1137:177;19364:26:0;;;;;;;;19403:37;33420:3898;40492:414;40575:4;40531:23;14673:18;;;;;;;;;;;;40629:20;;;40625:59;;40666:7;;40492:414::o;40625:59::-;40718:18;;:24;;40739:3;40718:24;:::i;:::-;40700:15;:42;40696:117;;;40777:18;;:24;;40798:3;40777:24;:::i;:::-;40759:42;;40696:117;-1:-1:-1;40840:15:0;40866:30;40840:15;40866:16;:30::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1319:508::-;1396:6;1404;1412;1465:2;1453:9;1444:7;1440:23;1436:32;1433:52;;;1481:1;1478;1471:12;1433:52;1520:9;1507:23;1539:31;1564:5;1539:31;:::i;:::-;1589:5;-1:-1:-1;1646:2:1;1631:18;;1618:32;1659:33;1618:32;1659:33;:::i;:::-;1319:508;;1711:7;;-1:-1:-1;;;1791:2:1;1776:18;;;;1763:32;;1319:508::o;2021:466::-;2098:6;2106;2114;2167:2;2155:9;2146:7;2142:23;2138:32;2135:52;;;2183:1;2180;2173:12;2135:52;-1:-1:-1;;2228:23:1;;;2348:2;2333:18;;2320:32;;-1:-1:-1;2451:2:1;2436:18;;;2423:32;;2021:466;-1:-1:-1;2021:466:1:o;2492:346::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;-1:-1:-1;;2682:23:1;;;2802:2;2787:18;;;2774:32;;-1:-1:-1;2492:346:1:o;3077:367::-;3140:8;3150:6;3204:3;3197:4;3189:6;3185:17;3181:27;3171:55;;3222:1;3219;3212:12;3171:55;-1:-1:-1;3245:20:1;;3288:18;3277:30;;3274:50;;;3320:1;3317;3310:12;3274:50;3357:4;3349:6;3345:17;3333:29;;3417:3;3410:4;3400:6;3397:1;3393:14;3385:6;3381:27;3377:38;3374:47;3371:67;;;3434:1;3431;3424:12;3371:67;3077:367;;;;;:::o;3449:768::-;3571:6;3579;3587;3595;3648:2;3636:9;3627:7;3623:23;3619:32;3616:52;;;3664:1;3661;3654:12;3616:52;3704:9;3691:23;3737:18;3729:6;3726:30;3723:50;;;3769:1;3766;3759:12;3723:50;3808:70;3870:7;3861:6;3850:9;3846:22;3808:70;:::i;:::-;3897:8;;-1:-1:-1;3782:96:1;-1:-1:-1;;3985:2:1;3970:18;;3957:32;4014:18;4001:32;;3998:52;;;4046:1;4043;4036:12;3998:52;4085:72;4149:7;4138:8;4127:9;4123:24;4085:72;:::i;:::-;3449:768;;;;-1:-1:-1;4176:8:1;-1:-1:-1;;;;3449:768:1:o;4222:247::-;4281:6;4334:2;4322:9;4313:7;4309:23;4305:32;4302:52;;;4350:1;4347;4340:12;4302:52;4389:9;4376:23;4408:31;4433:5;4408:31;:::i;:::-;4458:5;4222:247;-1:-1:-1;;;4222:247:1:o;4474:416::-;4539:6;4547;4600:2;4588:9;4579:7;4575:23;4571:32;4568:52;;;4616:1;4613;4606:12;4568:52;4655:9;4642:23;4674:31;4699:5;4674:31;:::i;:::-;4724:5;-1:-1:-1;4781:2:1;4766:18;;4753:32;4823:15;;4816:23;4804:36;;4794:64;;4854:1;4851;4844:12;4794:64;4877:7;4867:17;;;4474:416;;;;;:::o;5103:226::-;5162:6;5215:2;5203:9;5194:7;5190:23;5186:32;5183:52;;;5231:1;5228;5221:12;5183:52;-1:-1:-1;5276:23:1;;5103:226;-1:-1:-1;5103:226:1:o;5334:388::-;5402:6;5410;5463:2;5451:9;5442:7;5438:23;5434:32;5431:52;;;5479:1;5476;5469:12;5431:52;5518:9;5505:23;5537:31;5562:5;5537:31;:::i;:::-;5587:5;-1:-1:-1;5644:2:1;5629:18;;5616:32;5657:33;5616:32;5657:33;:::i;5727:380::-;5806:1;5802:12;;;;5849;;;5870:61;;5924:4;5916:6;5912:17;5902:27;;5870:61;5977:2;5969:6;5966:14;5946:18;5943:38;5940:161;;6023:10;6018:3;6014:20;6011:1;6004:31;6058:4;6055:1;6048:15;6086:4;6083:1;6076:15;5940:161;;5727:380;;;:::o;6112:356::-;6314:2;6296:21;;;6333:18;;;6326:30;6392:34;6387:2;6372:18;;6365:62;6459:2;6444:18;;6112:356::o;6825:127::-;6886:10;6881:3;6877:20;6874:1;6867:31;6917:4;6914:1;6907:15;6941:4;6938:1;6931:15;6957:217;6997:1;7023;7013:132;;7067:10;7062:3;7058:20;7055:1;7048:31;7102:4;7099:1;7092:15;7130:4;7127:1;7120:15;7013:132;-1:-1:-1;7159:9:1;;6957:217::o;7179:125::-;7244:9;;;7265:10;;;7262:36;;;7278:18;;:::i;7660:127::-;7721:10;7716:3;7712:20;7709:1;7702:31;7752:4;7749:1;7742:15;7776:4;7773:1;7766:15;7792:168;7865:9;;;7896;;7913:15;;;7907:22;;7893:37;7883:71;;7934:18;;:::i;11267:401::-;11469:2;11451:21;;;11508:2;11488:18;;;11481:30;11547:34;11542:2;11527:18;;11520:62;-1:-1:-1;;;11613:2:1;11598:18;;11591:35;11658:3;11643:19;;11267:401::o;11673:399::-;11875:2;11857:21;;;11914:2;11894:18;;;11887:30;11953:34;11948:2;11933:18;;11926:62;-1:-1:-1;;;12019:2:1;12004:18;;11997:33;12062:3;12047:19;;11673:399::o;12077:128::-;12144:9;;;12165:11;;;12162:37;;;12179:18;;:::i;13754:135::-;13793:3;13814:17;;;13811:43;;13834:18;;:::i;:::-;-1:-1:-1;13881:1:1;13870:13;;13754:135::o;14026:251::-;14096:6;14149:2;14137:9;14128:7;14124:23;14120:32;14117:52;;;14165:1;14162;14155:12;14117:52;14197:9;14191:16;14216:31;14241:5;14216:31;:::i;14282:959::-;14544:4;14592:3;14581:9;14577:19;14623:6;14612:9;14605:25;14666:6;14661:2;14650:9;14646:18;14639:34;14709:3;14704:2;14693:9;14689:18;14682:31;14733:6;14768;14762:13;14799:6;14791;14784:22;14837:3;14826:9;14822:19;14815:26;;14876:2;14868:6;14864:15;14850:29;;14897:1;14907:195;14921:6;14918:1;14915:13;14907:195;;;14986:13;;-1:-1:-1;;;;;14982:39:1;14970:52;;15051:2;15077:15;;;;15042:12;;;;15018:1;14936:9;14907:195;;;-1:-1:-1;;;;;;;15158:32:1;;;;15153:2;15138:18;;15131:60;-1:-1:-1;;15222:3:1;15207:19;15200:35;15119:3;14282:959;-1:-1:-1;;;14282:959:1:o
Swarm Source
ipfs://d1567829cc71a74613dc83c70b6a55aa21ee2d6b06efa27ca7ff6ccdac5213aa
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.