Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
noproject
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-03-07
*/
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/utils/Context.sol@v4.9.3
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
// a decentralized experiment, not driven by ai and delving into token valuation, dismisses art,
// utility, roadmaps, promises, vibes, community, sales, and any project affiliations.
// learn more: https://medium.com/@ethsenders/no-title-b26fbbaa7849
// x: https://x.com/NoProjectAtAll
// tg: https://t.me/noprojectatall
/*************
* ,--. ,--. ,------. ,--. ,--.
* | ,'.| | ,---. | .--. ',--.--. ,---. `--' ,---. ,---.,-' '-.
* | |' ' || .-. || '--' || .--'| .-. | ,--.| .-. :| .--''-. .-'
* | | ` |' '-' '| | --' | | ' '-' ' | |\ --.\ `--. | |
* `--' `--' `---' `--' `--' `---'.-' / `----' `---' `--'
* '---'
*************/
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/contracts/access/Ownable.sol@v4.9.3
// OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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/contracts/token/ERC20/IERC20.sol@v4.9.3
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(
address owner,
address spender
) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.9.3
// 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/contracts/token/ERC20/ERC20.sol@v4.9.3
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* 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}.
*
* 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 default value returned by this function, unless
* it's 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, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(
address spender,
uint256 subtractedValue
) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
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;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_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;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(
currentAllowance >= amount,
"ERC20: insufficient allowance"
);
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev 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 {}
}
// File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol@v1.1.0-beta.0
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
)
external
payable
returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable returns (uint[] memory amounts);
function swapTokensForExactETH(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactTokensForETH(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapETHForExactTokens(
uint amountOut,
address[] calldata path,
address to,
uint deadline
) external payable returns (uint[] memory amounts);
function quote(
uint amountA,
uint reserveA,
uint reserveB
) external pure returns (uint amountB);
function getAmountOut(
uint amountIn,
uint reserveIn,
uint reserveOut
) external pure returns (uint amountOut);
function getAmountIn(
uint amountOut,
uint reserveIn,
uint reserveOut
) external pure returns (uint amountIn);
function getAmountsOut(
uint amountIn,
address[] calldata path
) external view returns (uint[] memory amounts);
function getAmountsIn(
uint amountOut,
address[] calldata path
) external view returns (uint[] memory amounts);
}
// File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol@v1.1.0-beta.0
pragma solidity >=0.6.2;
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
// File @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol@v1.0.0
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint
);
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(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// File @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol@v1.0.0
pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint 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 (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(
address owner,
address spender
) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(
address from,
address to,
uint 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 (uint);
function permit(
address owner,
address spender,
uint value,
uint deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(
address indexed sender,
uint amount0,
uint amount1,
address indexed to
);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
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 (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(
uint amount0Out,
uint amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
// File contracts/NoProject.sol
pragma solidity ^0.8.9;
contract noproject is ERC20, Ownable {
address private WETH;
address public constant uniswapV2Router02 =
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
IUniswapV2Pair public pairContract;
IUniswapV2Router02 public router;
address public pair;
mapping(address => uint256) private buyBlock;
address public feeReceiver = 0x666668A6c4E8aEC685A6E4bF22807C4a2B64dFd9;
// 25% Buy / 50% Sell Anti-Snipe Tax
uint16 public feePercentageBuy = 2500;
uint16 public feePercentageSell = 5000;
uint16 public burnFeePercentage = 0;
uint256 public maxTokenAmountPerWallet = 1000000 * 10 ** decimals();
uint256 public maxTokenAmountPerTransaction = 0 * 10 ** decimals();
uint256 public swapTreshold = 500000000000000000;
bool private inSwap = false;
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor() ERC20(unicode"no project", unicode"NO") {
router = IUniswapV2Router02(uniswapV2Router02);
WETH = router.WETH();
pair = IUniswapV2Factory(router.factory()).createPair(
WETH,
address(this)
);
pairContract = IUniswapV2Pair(pair);
_approve(address(this), uniswapV2Router02, type(uint256).max);
_approve(address(this), pair, type(uint256).max);
_approve(msg.sender, uniswapV2Router02, type(uint256).max);
_mint(msg.sender, (100000000) * 10 ** decimals());
}
receive() external payable {}
modifier isBot(address from, address to) {
require(
block.number > buyBlock[from] || block.number > buyBlock[to],
"Cannot perform more than one transaction in the same block"
);
_;
buyBlock[from] = block.number;
buyBlock[to] = block.number;
}
function checkMaxTransactionAmountExceeded(uint256 amount) private view {
if (msg.sender != owner() || msg.sender != address(this))
require(
amount <= maxTokenAmountPerTransaction,
"Max token per transaction exceeded"
);
}
function checkMaxWalletAmountExceeded(
address to,
uint256 amount
) private view {
if (msg.sender != owner() || to != address(this))
require(
balanceOf(to) + amount <= maxTokenAmountPerWallet,
"Max token per wallet exceeded"
);
}
function calculateTokenAmountInETH(
uint256 amount
) public view returns (uint256) {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = WETH;
try router.getAmountsOut(amount, path) returns (
uint[] memory amountsOut
) {
return amountsOut[1];
} catch {
return 0;
}
}
function swapBalanceToETHAndSend() private lockTheSwap {
uint256 amountIn = balanceOf(address(this));
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = WETH;
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
amountIn,
0,
path,
address(this),
block.timestamp
);
payable(feeReceiver).transfer(address(this).balance);
}
function distributeFees() private {
uint256 amountInETH = calculateTokenAmountInETH(
balanceOf(address(this))
);
(uint112 reserve0, uint112 reserve1, ) = pairContract.getReserves();
uint256 totalETHInPool;
if (pairContract.token0() == WETH) totalETHInPool = uint256(reserve0);
else if (pairContract.token1() == WETH)
totalETHInPool = uint256(reserve1);
if (amountInETH > swapTreshold) swapBalanceToETHAndSend();
}
function _transfer(
address from,
address to,
uint256 amount
) internal override isBot(from, to) {
if (
from == owner() ||
to == owner() ||
from == feeReceiver ||
to == feeReceiver ||
inSwap
) {
super._transfer(from, to, amount);
} else {
uint256 feePercentage = 0;
bool buying = from == pair && to != uniswapV2Router02;
bool selling = from != uniswapV2Router02 && to == pair;
if (msg.sender != pair && !inSwap) distributeFees();
if (buying) {
feePercentage = feePercentageBuy;
}
if (selling) {
feePercentage = feePercentageSell;
}
uint256 feeAmount = (amount * feePercentage) / (10000);
uint256 burnFeeAmount = (amount * burnFeePercentage) / (10000);
uint256 finalAmount = (amount - (feeAmount + burnFeeAmount));
if (maxTokenAmountPerTransaction > 0)
checkMaxTransactionAmountExceeded(amount);
if (buying && maxTokenAmountPerWallet > 0)
checkMaxWalletAmountExceeded(to, finalAmount);
if (burnFeeAmount > 0) _burn(from, burnFeeAmount);
super._transfer(from, address(this), feeAmount);
super._transfer(from, to, finalAmount);
}
}
function manualSwap() public {
require(msg.sender == feeReceiver, "Insufficient Permissions");
swapBalanceToETHAndSend();
}
function removeLimits() public {
require(msg.sender == feeReceiver, "Insufficient Permissions");
maxTokenAmountPerWallet = 0;
maxTokenAmountPerTransaction = 0;
}
function removeTaxes() public {
require(msg.sender == feeReceiver, "Insufficient Permissions");
feePercentageBuy = 0;
feePercentageSell = 0;
burnFeePercentage = 0;
}
function updateThreshold(uint256 _swapTreshold) public {
require(msg.sender == feeReceiver, "Insufficient Permissions");
swapTreshold = _swapTreshold;
}
// Update to real taxes
function launch() public {
require(msg.sender == feeReceiver, "Insufficient Permissions");
feePercentageBuy = 500;
feePercentageSell = 500;
}
function changeFeeReceiver(address _feeReceiver) public {
require(msg.sender == feeReceiver, "Insufficient Permissions");
feeReceiver = _feeReceiver;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeePercentage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateTokenAmountInETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"changeFeeReceiver","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":[],"name":"feePercentageBuy","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentageSell","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTokenAmountPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairContract","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTreshold","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":[{"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":[],"name":"uniswapV2Router02","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTreshold","type":"uint256"}],"name":"updateThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600b80546001600160d01b03191677138809c4666668a6c4e8aec685a6e4bf22807c4a2b64dfd917905562000037601290565b6200004490600a620006a0565b6200005390620f4240620006b7565b600c55620000646012600a620006a0565b62000070905f620006b7565b600d556706f05b59d3b20000600e55600f805460ff1916905534801562000095575f80fd5b506040518060400160405280600a8152602001691b9bc81c1c9bda9958dd60b21b815250604051806040016040528060028152602001614e4f60f01b8152508160039081620000e591906200076e565b506004620000f482826200076e565b505050620001116200010b6200034b60201b60201c565b6200034f565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa15801562000174573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200019a91906200083a565b600680546001600160a01b0319166001600160a01b039283161790556008546040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620001f7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021d91906200083a565b6006546040516364e329cb60e11b81526001600160a01b03918216600482015230602482015291169063c9c65396906044016020604051808303815f875af11580156200026c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200029291906200083a565b600980546001600160a01b03929092166001600160a01b0319928316811790915560078054909216179055620002df30737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620003a0565b600954620002fa9030906001600160a01b03165f19620003a0565b6200031c33737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620003a0565b62000345336200032f6012600a620006a0565b6200033f906305f5e100620006b7565b620004cb565b62000878565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620004085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200046b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003ff565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620005235760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003ff565b8060025f82825462000536919062000862565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620005e557815f1904821115620005c957620005c962000591565b80851615620005d757918102915b93841c9390800290620005aa565b509250929050565b5f82620005fd575060016200069a565b816200060b57505f6200069a565b81600181146200062457600281146200062f576200064f565b60019150506200069a565b60ff84111562000643576200064362000591565b50506001821b6200069a565b5060208310610133831016604e8410600b841016171562000674575081810a6200069a565b620006808383620005a5565b805f190482111562000696576200069662000591565b0290505b92915050565b5f620006b060ff841683620005ed565b9392505050565b80820281158282048414176200069a576200069a62000591565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006fa57607f821691505b6020821081036200071957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200058c57805f5260205f20601f840160051c81016020851015620007465750805b601f840160051c820191505b8181101562000767575f815560010162000752565b5050505050565b81516001600160401b038111156200078a576200078a620006d1565b620007a2816200079b8454620006e5565b846200071f565b602080601f831160018114620007d8575f8415620007c05750858301515b5f19600386901b1c1916600185901b17855562000832565b5f85815260208120601f198616915b828110156200080857888601518255948401946001909101908401620007e7565b50858210156200082657878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602082840312156200084b575f80fd5b81516001600160a01b0381168114620006b0575f80fd5b808201808211156200069a576200069a62000591565b611af280620008865f395ff3fe6080604052600436106101de575f3560e01c80637c08b964116100fd578063ab99904211610092578063dd62ed3e11610062578063dd62ed3e1461055b578063e52fb9ec1461057a578063f2fde38b1461058f578063f887ea40146105ae575f80fd5b8063ab999042146104db578063b3f00674146104fc578063c4ceb3391461051b578063d7d7442f1461053c575f80fd5b8063a457c2d7116100cd578063a457c2d714610457578063a7c6402c14610476578063a8aa1b311461049d578063a9059cbb146104bc575f80fd5b80637c08b964146103e85780638da5cb5b146104075780639277883d1461042457806395d89b4114610443575f80fd5b8063418bce8a1161017357806369e1ea7f1161014357806369e1ea7f1461037857806370a082311461038c578063715018a6146103c0578063751039fc146103d4575f80fd5b8063418bce8a146103035780634d709adf1461031857806351bc3c851461034f578063685fbc6b14610363575f80fd5b806323b872dd116101ae57806323b872dd14610276578063313ce5671461029557806339509351146102b05780633a4ceedd146102cf575f80fd5b806301339c21146101e957806306fdde03146101ff578063095ea7b31461022957806318160ddd14610258575f80fd5b366101e557005b5f80fd5b3480156101f4575f80fd5b506101fd6105cd565b005b34801561020a575f80fd5b5061021361061a565b60405161022091906116aa565b60405180910390f35b348015610234575f80fd5b5061024861024336600461170a565b6106aa565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b50610248610290366004611734565b6106c3565b3480156102a0575f80fd5b5060405160128152602001610220565b3480156102bb575f80fd5b506102486102ca36600461170a565b6106e6565b3480156102da575f80fd5b50600b546102f090600160a01b900461ffff1681565b60405161ffff9091168152602001610220565b34801561030e575f80fd5b50610268600d5481565b348015610323575f80fd5b50600754610337906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b34801561035a575f80fd5b506101fd610707565b34801561036e575f80fd5b50610268600c5481565b348015610383575f80fd5b506101fd61073b565b348015610397575f80fd5b506102686103a6366004611772565b6001600160a01b03165f9081526020819052604090205490565b3480156103cb575f80fd5b506101fd610779565b3480156103df575f80fd5b506101fd61078a565b3480156103f3575f80fd5b506101fd610402366004611772565b6107bf565b348015610412575f80fd5b506005546001600160a01b0316610337565b34801561042f575f80fd5b5061026861043e366004611794565b61080b565b34801561044e575f80fd5b50610213610924565b348015610462575f80fd5b5061024861047136600461170a565b610933565b348015610481575f80fd5b50610337737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104a8575f80fd5b50600954610337906001600160a01b031681565b3480156104c7575f80fd5b506102486104d636600461170a565b6109ad565b3480156104e6575f80fd5b50600b546102f090600160b01b900461ffff1681565b348015610507575f80fd5b50600b54610337906001600160a01b031681565b348015610526575f80fd5b50600b546102f090600160c01b900461ffff1681565b348015610547575f80fd5b506101fd610556366004611794565b6109ba565b348015610566575f80fd5b506102686105753660046117ab565b6109e9565b348015610585575f80fd5b50610268600e5481565b34801561059a575f80fd5b506101fd6105a9366004611772565b610a13565b3480156105b9575f80fd5b50600854610337906001600160a01b031681565b600b546001600160a01b031633146106005760405162461bcd60e51b81526004016105f7906117e2565b60405180910390fd5b600b805463ffffffff60a01b1916627d007d60a21b179055565b60606003805461062990611819565b80601f016020809104026020016040519081016040528092919081815260200182805461065590611819565b80156106a05780601f10610677576101008083540402835291602001916106a0565b820191905f5260205f20905b81548152906001019060200180831161068357829003601f168201915b5050505050905090565b5f336106b7818585610a8c565b60019150505b92915050565b5f336106d0858285610bb0565b6106db858585610c28565b506001949350505050565b5f336106b78185856106f883836109e9565b610702919061185f565b610a8c565b600b546001600160a01b031633146107315760405162461bcd60e51b81526004016105f7906117e2565b610739610f11565b565b600b546001600160a01b031633146107655760405162461bcd60e51b81526004016105f7906117e2565b600b805465ffffffffffff60a01b19169055565b61078161104a565b6107395f6110a4565b600b546001600160a01b031633146107b45760405162461bcd60e51b81526004016105f7906117e2565b5f600c819055600d55565b600b546001600160a01b031633146107e95760405162461bcd60e51b81526004016105f7906117e2565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061084257610842611886565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061087357610873611886565b6001600160a01b03928316602091820292909201015260085460405163d06ca61f60e01b815291169063d06ca61f906108b290869085906004016118dd565b5f60405180830381865afa9250505080156108ee57506040513d5f823e601f3d908101601f191682016040526108eb91908101906118fd565b60015b6108fa57505f92915050565b8060018151811061090d5761090d611886565b602002602001015192505050919050565b50919050565b60606004805461062990611819565b5f338161094082866109e9565b9050838110156109a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f7565b6106db8286868403610a8c565b5f336106b7818585610c28565b600b546001600160a01b031633146109e45760405162461bcd60e51b81526004016105f7906117e2565b600e55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610a1b61104a565b6001600160a01b038116610a805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f7565b610a89816110a4565b50565b6001600160a01b038316610aee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b6001600160a01b038216610b4f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f7565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610bbb84846109e9565b90505f198114610c225781811015610c155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105f7565b610c228484848403610a8c565b50505050565b6001600160a01b0383165f908152600a602052604090205483908390431180610c6757506001600160a01b0381165f908152600a602052604090205443115b610cd95760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b00000000000060648201526084016105f7565b6005546001600160a01b0386811691161480610d0257506005546001600160a01b038581169116145b80610d1a5750600b546001600160a01b038681169116145b80610d325750600b546001600160a01b038581169116145b80610d3f5750600f5460ff165b15610d5457610d4f8585856110f5565b610ee3565b6009545f9081906001600160a01b038881169116148015610d9257506001600160a01b038616737a250d5630b4cf539739df2c5dacb4c659f2488d14155b90505f6001600160a01b038816737a250d5630b4cf539739df2c5dacb4c659f2488d14801590610dcf57506009546001600160a01b038881169116145b6009549091506001600160a01b03163314801590610df05750600f5460ff16155b15610dfd57610dfd611297565b8115610e1457600b54600160a01b900461ffff1692505b8015610e2b57600b54600160b01b900461ffff1692505b5f612710610e3985896119b6565b610e4391906119cd565b600b549091505f9061271090610e6490600160c01b900461ffff168a6119b6565b610e6e91906119cd565b90505f610e7b828461185f565b610e85908a6119ec565b600d5490915015610e9957610e9989611460565b848015610ea757505f600c54115b15610eb657610eb68a826114dc565b8115610ec657610ec68b83611582565b610ed18b30856110f5565b610edc8b8b836110f5565b5050505050505b6001600160a01b039182165f908152600a602052604080822043908190559290931681529190912055505050565b600f805460ff19166001179055305f9081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905030815f81518110610f6157610f61611886565b6001600160a01b039283166020918202929092010152600654825191169082906001908110610f9257610f92611886565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac94790610fd79085905f908690309042906004016119ff565b5f604051808303815f87803b158015610fee575f80fd5b505af1158015611000573d5f803e3d5ffd5b5050600b546040516001600160a01b0390911692504780156108fc029250905f818181858888f1935050505015801561103b573d5f803e3d5ffd5b5050600f805460ff1916905550565b6005546001600160a01b031633146107395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166111595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f7565b6001600160a01b0382166111bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f7565b6001600160a01b0383165f90815260208190526040902054818110156112325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f7565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c22565b305f908152602081905260408120546112af9061080b565b90505f8060075f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611303573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113279190611a55565b5060065460075460408051630dfe168160e01b815290519496509294505f936001600160a01b03928316939290911691630dfe16819160048083019260209291908290030181865afa15801561137f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a39190611aa1565b6001600160a01b0316036113c157506001600160701b03821661144e565b6006546007546040805163d21220a760e01b815290516001600160a01b03938416939092169163d21220a7916004808201926020929091908290030181865afa158015611410573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114349190611aa1565b6001600160a01b03160361144e57506001600160701b0381165b600e54841115610c2257610c22610f11565b6005546001600160a01b03163314158061147a5750333014155b15610a8957600d54811115610a895760405162461bcd60e51b815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016105f7565b6005546001600160a01b0316331415806114ff57506001600160a01b0382163014155b1561157e57600c5481611526846001600160a01b03165f9081526020819052604090205490565b611530919061185f565b111561157e5760405162461bcd60e51b815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c657420657863656564656400000060448201526064016105f7565b5050565b6001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105f7565b6001600160a01b0382165f90815260208190526040902054818110156116555760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105f7565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ba3565b5f602080835283518060208501525f5b818110156116d6578581018301518582016040015282016116ba565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a89575f80fd5b5f806040838503121561171b575f80fd5b8235611726816116f6565b946020939093013593505050565b5f805f60608486031215611746575f80fd5b8335611751816116f6565b92506020840135611761816116f6565b929592945050506040919091013590565b5f60208284031215611782575f80fd5b813561178d816116f6565b9392505050565b5f602082840312156117a4575f80fd5b5035919050565b5f80604083850312156117bc575f80fd5b82356117c7816116f6565b915060208301356117d7816116f6565b809150509250929050565b60208082526018908201527f496e73756666696369656e74205065726d697373696f6e730000000000000000604082015260600190565b600181811c9082168061182d57607f821691505b60208210810361091e57634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156106bd576106bd61184b565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b838110156118d25781516001600160a01b0316875295820195908201906001016118ad565b509495945050505050565b828152604060208201525f6118f5604083018461189a565b949350505050565b5f602080838503121561190e575f80fd5b825167ffffffffffffffff80821115611925575f80fd5b818501915085601f830112611938575f80fd5b81518181111561194a5761194a611872565b8060051b604051601f19603f8301168101818110858211171561196f5761196f611872565b60405291825284820192508381018501918883111561198c575f80fd5b938501935b828510156119aa57845184529385019392850192611991565b98975050505050505050565b80820281158282048414176106bd576106bd61184b565b5f826119e757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106bd576106bd61184b565b85815284602082015260a060408201525f611a1d60a083018661189a565b6001600160a01b0394909416606083015250608001529392505050565b80516001600160701b0381168114611a50575f80fd5b919050565b5f805f60608486031215611a67575f80fd5b611a7084611a3a565b9250611a7e60208501611a3a565b9150604084015163ffffffff81168114611a96575f80fd5b809150509250925092565b5f60208284031215611ab1575f80fd5b815161178d816116f656fea2646970667358221220ab485508641243fa0381b5a34fb64f8bf978c407c56d7f9e62f98f73cdea8f2564736f6c63430008180033
Deployed Bytecode
0x6080604052600436106101de575f3560e01c80637c08b964116100fd578063ab99904211610092578063dd62ed3e11610062578063dd62ed3e1461055b578063e52fb9ec1461057a578063f2fde38b1461058f578063f887ea40146105ae575f80fd5b8063ab999042146104db578063b3f00674146104fc578063c4ceb3391461051b578063d7d7442f1461053c575f80fd5b8063a457c2d7116100cd578063a457c2d714610457578063a7c6402c14610476578063a8aa1b311461049d578063a9059cbb146104bc575f80fd5b80637c08b964146103e85780638da5cb5b146104075780639277883d1461042457806395d89b4114610443575f80fd5b8063418bce8a1161017357806369e1ea7f1161014357806369e1ea7f1461037857806370a082311461038c578063715018a6146103c0578063751039fc146103d4575f80fd5b8063418bce8a146103035780634d709adf1461031857806351bc3c851461034f578063685fbc6b14610363575f80fd5b806323b872dd116101ae57806323b872dd14610276578063313ce5671461029557806339509351146102b05780633a4ceedd146102cf575f80fd5b806301339c21146101e957806306fdde03146101ff578063095ea7b31461022957806318160ddd14610258575f80fd5b366101e557005b5f80fd5b3480156101f4575f80fd5b506101fd6105cd565b005b34801561020a575f80fd5b5061021361061a565b60405161022091906116aa565b60405180910390f35b348015610234575f80fd5b5061024861024336600461170a565b6106aa565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b50610248610290366004611734565b6106c3565b3480156102a0575f80fd5b5060405160128152602001610220565b3480156102bb575f80fd5b506102486102ca36600461170a565b6106e6565b3480156102da575f80fd5b50600b546102f090600160a01b900461ffff1681565b60405161ffff9091168152602001610220565b34801561030e575f80fd5b50610268600d5481565b348015610323575f80fd5b50600754610337906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b34801561035a575f80fd5b506101fd610707565b34801561036e575f80fd5b50610268600c5481565b348015610383575f80fd5b506101fd61073b565b348015610397575f80fd5b506102686103a6366004611772565b6001600160a01b03165f9081526020819052604090205490565b3480156103cb575f80fd5b506101fd610779565b3480156103df575f80fd5b506101fd61078a565b3480156103f3575f80fd5b506101fd610402366004611772565b6107bf565b348015610412575f80fd5b506005546001600160a01b0316610337565b34801561042f575f80fd5b5061026861043e366004611794565b61080b565b34801561044e575f80fd5b50610213610924565b348015610462575f80fd5b5061024861047136600461170a565b610933565b348015610481575f80fd5b50610337737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104a8575f80fd5b50600954610337906001600160a01b031681565b3480156104c7575f80fd5b506102486104d636600461170a565b6109ad565b3480156104e6575f80fd5b50600b546102f090600160b01b900461ffff1681565b348015610507575f80fd5b50600b54610337906001600160a01b031681565b348015610526575f80fd5b50600b546102f090600160c01b900461ffff1681565b348015610547575f80fd5b506101fd610556366004611794565b6109ba565b348015610566575f80fd5b506102686105753660046117ab565b6109e9565b348015610585575f80fd5b50610268600e5481565b34801561059a575f80fd5b506101fd6105a9366004611772565b610a13565b3480156105b9575f80fd5b50600854610337906001600160a01b031681565b600b546001600160a01b031633146106005760405162461bcd60e51b81526004016105f7906117e2565b60405180910390fd5b600b805463ffffffff60a01b1916627d007d60a21b179055565b60606003805461062990611819565b80601f016020809104026020016040519081016040528092919081815260200182805461065590611819565b80156106a05780601f10610677576101008083540402835291602001916106a0565b820191905f5260205f20905b81548152906001019060200180831161068357829003601f168201915b5050505050905090565b5f336106b7818585610a8c565b60019150505b92915050565b5f336106d0858285610bb0565b6106db858585610c28565b506001949350505050565b5f336106b78185856106f883836109e9565b610702919061185f565b610a8c565b600b546001600160a01b031633146107315760405162461bcd60e51b81526004016105f7906117e2565b610739610f11565b565b600b546001600160a01b031633146107655760405162461bcd60e51b81526004016105f7906117e2565b600b805465ffffffffffff60a01b19169055565b61078161104a565b6107395f6110a4565b600b546001600160a01b031633146107b45760405162461bcd60e51b81526004016105f7906117e2565b5f600c819055600d55565b600b546001600160a01b031633146107e95760405162461bcd60e51b81526004016105f7906117e2565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160028082526060820183525f928392919060208301908036833701905050905030815f8151811061084257610842611886565b6001600160a01b03928316602091820292909201015260065482519116908290600190811061087357610873611886565b6001600160a01b03928316602091820292909201015260085460405163d06ca61f60e01b815291169063d06ca61f906108b290869085906004016118dd565b5f60405180830381865afa9250505080156108ee57506040513d5f823e601f3d908101601f191682016040526108eb91908101906118fd565b60015b6108fa57505f92915050565b8060018151811061090d5761090d611886565b602002602001015192505050919050565b50919050565b60606004805461062990611819565b5f338161094082866109e9565b9050838110156109a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f7565b6106db8286868403610a8c565b5f336106b7818585610c28565b600b546001600160a01b031633146109e45760405162461bcd60e51b81526004016105f7906117e2565b600e55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610a1b61104a565b6001600160a01b038116610a805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f7565b610a89816110a4565b50565b6001600160a01b038316610aee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f7565b6001600160a01b038216610b4f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f7565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610bbb84846109e9565b90505f198114610c225781811015610c155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105f7565b610c228484848403610a8c565b50505050565b6001600160a01b0383165f908152600a602052604090205483908390431180610c6757506001600160a01b0381165f908152600a602052604090205443115b610cd95760405162461bcd60e51b815260206004820152603a60248201527f43616e6e6f7420706572666f726d206d6f7265207468616e206f6e652074726160448201527f6e73616374696f6e20696e207468652073616d6520626c6f636b00000000000060648201526084016105f7565b6005546001600160a01b0386811691161480610d0257506005546001600160a01b038581169116145b80610d1a5750600b546001600160a01b038681169116145b80610d325750600b546001600160a01b038581169116145b80610d3f5750600f5460ff165b15610d5457610d4f8585856110f5565b610ee3565b6009545f9081906001600160a01b038881169116148015610d9257506001600160a01b038616737a250d5630b4cf539739df2c5dacb4c659f2488d14155b90505f6001600160a01b038816737a250d5630b4cf539739df2c5dacb4c659f2488d14801590610dcf57506009546001600160a01b038881169116145b6009549091506001600160a01b03163314801590610df05750600f5460ff16155b15610dfd57610dfd611297565b8115610e1457600b54600160a01b900461ffff1692505b8015610e2b57600b54600160b01b900461ffff1692505b5f612710610e3985896119b6565b610e4391906119cd565b600b549091505f9061271090610e6490600160c01b900461ffff168a6119b6565b610e6e91906119cd565b90505f610e7b828461185f565b610e85908a6119ec565b600d5490915015610e9957610e9989611460565b848015610ea757505f600c54115b15610eb657610eb68a826114dc565b8115610ec657610ec68b83611582565b610ed18b30856110f5565b610edc8b8b836110f5565b5050505050505b6001600160a01b039182165f908152600a602052604080822043908190559290931681529190912055505050565b600f805460ff19166001179055305f9081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905030815f81518110610f6157610f61611886565b6001600160a01b039283166020918202929092010152600654825191169082906001908110610f9257610f92611886565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac94790610fd79085905f908690309042906004016119ff565b5f604051808303815f87803b158015610fee575f80fd5b505af1158015611000573d5f803e3d5ffd5b5050600b546040516001600160a01b0390911692504780156108fc029250905f818181858888f1935050505015801561103b573d5f803e3d5ffd5b5050600f805460ff1916905550565b6005546001600160a01b031633146107395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166111595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f7565b6001600160a01b0382166111bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f7565b6001600160a01b0383165f90815260208190526040902054818110156112325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f7565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c22565b305f908152602081905260408120546112af9061080b565b90505f8060075f9054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015611303573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113279190611a55565b5060065460075460408051630dfe168160e01b815290519496509294505f936001600160a01b03928316939290911691630dfe16819160048083019260209291908290030181865afa15801561137f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113a39190611aa1565b6001600160a01b0316036113c157506001600160701b03821661144e565b6006546007546040805163d21220a760e01b815290516001600160a01b03938416939092169163d21220a7916004808201926020929091908290030181865afa158015611410573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114349190611aa1565b6001600160a01b03160361144e57506001600160701b0381165b600e54841115610c2257610c22610f11565b6005546001600160a01b03163314158061147a5750333014155b15610a8957600d54811115610a895760405162461bcd60e51b815260206004820152602260248201527f4d617820746f6b656e20706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016105f7565b6005546001600160a01b0316331415806114ff57506001600160a01b0382163014155b1561157e57600c5481611526846001600160a01b03165f9081526020819052604090205490565b611530919061185f565b111561157e5760405162461bcd60e51b815260206004820152601d60248201527f4d617820746f6b656e207065722077616c6c657420657863656564656400000060448201526064016105f7565b5050565b6001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105f7565b6001600160a01b0382165f90815260208190526040902054818110156116555760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105f7565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610ba3565b5f602080835283518060208501525f5b818110156116d6578581018301518582016040015282016116ba565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a89575f80fd5b5f806040838503121561171b575f80fd5b8235611726816116f6565b946020939093013593505050565b5f805f60608486031215611746575f80fd5b8335611751816116f6565b92506020840135611761816116f6565b929592945050506040919091013590565b5f60208284031215611782575f80fd5b813561178d816116f6565b9392505050565b5f602082840312156117a4575f80fd5b5035919050565b5f80604083850312156117bc575f80fd5b82356117c7816116f6565b915060208301356117d7816116f6565b809150509250929050565b60208082526018908201527f496e73756666696369656e74205065726d697373696f6e730000000000000000604082015260600190565b600181811c9082168061182d57607f821691505b60208210810361091e57634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156106bd576106bd61184b565b634e487b7160e01b5f52604160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f815180845260208085019450602084015f5b838110156118d25781516001600160a01b0316875295820195908201906001016118ad565b509495945050505050565b828152604060208201525f6118f5604083018461189a565b949350505050565b5f602080838503121561190e575f80fd5b825167ffffffffffffffff80821115611925575f80fd5b818501915085601f830112611938575f80fd5b81518181111561194a5761194a611872565b8060051b604051601f19603f8301168101818110858211171561196f5761196f611872565b60405291825284820192508381018501918883111561198c575f80fd5b938501935b828510156119aa57845184529385019392850192611991565b98975050505050505050565b80820281158282048414176106bd576106bd61184b565b5f826119e757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106bd576106bd61184b565b85815284602082015260a060408201525f611a1d60a083018661189a565b6001600160a01b0394909416606083015250608001529392505050565b80516001600160701b0381168114611a50575f80fd5b919050565b5f805f60608486031215611a67575f80fd5b611a7084611a3a565b9250611a7e60208501611a3a565b9150604084015163ffffffff81168114611a96575f80fd5b809150509250925092565b5f60208284031215611ab1575f80fd5b815161178d816116f656fea2646970667358221220ab485508641243fa0381b5a34fb64f8bf978c407c56d7f9e62f98f73cdea8f2564736f6c63430008180033
Deployed Bytecode Sourcemap
31022:6554:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37218:173;;;;;;;;;;;;;:::i;:::-;;10308:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12734:226;;;;;;;;;;-1:-1:-1;12734:226:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12734:226:0;1023:187:1;11437:108:0;;;;;;;;;;-1:-1:-1;11525:12:0;;11437:108;;;1361:25:1;;;1349:2;1334:18;11437:108:0;1215:177:1;13540:295:0;;;;;;;;;;-1:-1:-1;13540:295:0;;;;;:::i;:::-;;:::i;11279:93::-;;;;;;;;;;-1:-1:-1;11279:93:0;;11362:2;2000:36:1;;1988:2;1973:18;11279:93:0;1858:184:1;14244:263:0;;;;;;;;;;-1:-1:-1;14244:263:0;;;;;:::i;:::-;;:::i;31486:37::-;;;;;;;;;;-1:-1:-1;31486:37:0;;;;-1:-1:-1;;;31486:37:0;;;;;;;;;2221:6:1;2209:19;;;2191:38;;2179:2;2164:18;31486:37:0;2047:188:1;31693:66:0;;;;;;;;;;;;;;;;31203:34;;;;;;;;;;-1:-1:-1;31203:34:0;;;;-1:-1:-1;;;;;31203:34:0;;;;;;-1:-1:-1;;;;;2427:32:1;;;2409:51;;2397:2;2382:18;31203:34:0;2240:226:1;36437:146:0;;;;;;;;;;;;;:::i;31619:67::-;;;;;;;;;;;;;;;;36792:206;;;;;;;;;;;;;:::i;11608:143::-;;;;;;;;;;-1:-1:-1;11608:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11725:18:0;11698:7;11725:18;;;;;;;;;;;;11608:143;3629:103;;;;;;;;;;;;;:::i;36591:193::-;;;;;;;;;;;;;:::i;37399:174::-;;;;;;;;;;-1:-1:-1;37399:174:0;;;;;:::i;:::-;;:::i;2988:87::-;;;;;;;;;;-1:-1:-1;3061:6:0;;-1:-1:-1;;;;;3061:6:0;2988:87;;33546:412;;;;;;;;;;-1:-1:-1;33546:412:0;;;;;:::i;:::-;;:::i;10527:104::-;;;;;;;;;;;;;:::i;15010:498::-;;;;;;;;;;-1:-1:-1;15010:498:0;;;;;:::i;:::-;;:::i;31099:95::-;;;;;;;;;;;;31152:42;31099:95;;31283:19;;;;;;;;;;-1:-1:-1;31283:19:0;;;;-1:-1:-1;;;;;31283:19:0;;;11957:218;;;;;;;;;;-1:-1:-1;11957:218:0;;;;;:::i;:::-;;:::i;31530:38::-;;;;;;;;;;-1:-1:-1;31530:38:0;;;;-1:-1:-1;;;31530:38:0;;;;;;31364:71;;;;;;;;;;-1:-1:-1;31364:71:0;;;;-1:-1:-1;;;;;31364:71:0;;;31575:35;;;;;;;;;;-1:-1:-1;31575:35:0;;;;-1:-1:-1;;;31575:35:0;;;;;;37006:175;;;;;;;;;;-1:-1:-1;37006:175:0;;;;;:::i;:::-;;:::i;12238:176::-;;;;;;;;;;-1:-1:-1;12238:176:0;;;;;:::i;:::-;;:::i;31768:48::-;;;;;;;;;;;;;;;;3887:238;;;;;;;;;;-1:-1:-1;3887:238:0;;;;;:::i;:::-;;:::i;31244:32::-;;;;;;;;;;-1:-1:-1;31244:32:0;;;;-1:-1:-1;;;;;31244:32:0;;;37218:173;37276:11;;-1:-1:-1;;;;;37276:11:0;37262:10;:25;37254:62;;;;-1:-1:-1;;;37254:62:0;;;;;;;:::i;:::-;;;;;;;;;37327:16;:22;;-1:-1:-1;;;;37360:23:0;-1:-1:-1;;;37360:23:0;;;37218:173::o;10308:100::-;10362:13;10395:5;10388:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10308:100;:::o;12734:226::-;12842:4;1592:10;12898:32;1592:10;12914:7;12923:6;12898:8;:32::i;:::-;12948:4;12941:11;;;12734:226;;;;;:::o;13540:295::-;13671:4;1592:10;13729:38;13745:4;1592:10;13760:6;13729:15;:38::i;:::-;13778:27;13788:4;13794:2;13798:6;13778:9;:27::i;:::-;-1:-1:-1;13823:4:0;;13540:295;-1:-1:-1;;;;13540:295:0:o;14244:263::-;14357:4;1592:10;14413:64;1592:10;14429:7;14466:10;14438:25;1592:10;14429:7;14438:9;:25::i;:::-;:38;;;;:::i;:::-;14413:8;:64::i;36437:146::-;36499:11;;-1:-1:-1;;;;;36499:11:0;36485:10;:25;36477:62;;;;-1:-1:-1;;;36477:62:0;;;;;;;:::i;:::-;36550:25;:23;:25::i;:::-;36437:146::o;36792:206::-;36855:11;;-1:-1:-1;;;;;36855:11:0;36841:10;:25;36833:62;;;;-1:-1:-1;;;36833:62:0;;;;;;;:::i;:::-;36906:16;:20;;-1:-1:-1;;;;36969:21:0;;;36792:206::o;3629:103::-;2874:13;:11;:13::i;:::-;3694:30:::1;3721:1;3694:18;:30::i;36591:193::-:0;36655:11;;-1:-1:-1;;;;;36655:11:0;36641:10;:25;36633:62;;;;-1:-1:-1;;;36633:62:0;;;;;;;:::i;:::-;36732:1;36706:23;:27;;;36744:28;:32;36591:193::o;37399:174::-;37488:11;;-1:-1:-1;;;;;37488:11:0;37474:10;:25;37466:62;;;;-1:-1:-1;;;37466:62:0;;;;;;;:::i;:::-;37539:11;:26;;-1:-1:-1;;;;;;37539:26:0;-1:-1:-1;;;;;37539:26:0;;;;;;;;;;37399:174::o;33546:412::-;33678:16;;;33692:1;33678:16;;;;;;;;33634:7;;;;33678:16;33692:1;33678:16;;;;;;;;;;-1:-1:-1;33678:16:0;33654:40;;33723:4;33705;33710:1;33705:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33705:23:0;;;:7;;;;;;;;;:23;33749:4;;33739:7;;33749:4;;;33739;;33749;;33739:7;;;;;;:::i;:::-;-1:-1:-1;;;;;33739:14:0;;;:7;;;;;;;;;:14;33768:6;;:34;;-1:-1:-1;;;33768:34:0;;:6;;;:20;;:34;;33789:6;;33797:4;;33768:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33768:34:0;;;;;;;;;;;;:::i;:::-;;;33764:187;;-1:-1:-1;33938:1:0;;33546:412;-1:-1:-1;;33546:412:0:o;33764:187::-;33884:10;33895:1;33884:13;;;;;;;;:::i;:::-;;;;;;;33877:20;;;;33546:412;;;:::o;33764:187::-;33643:315;33546:412;;;:::o;10527:104::-;10583:13;10616:7;10609:14;;;;;:::i;15010:498::-;15128:4;1592:10;15128:4;15211:25;1592:10;15228:7;15211:9;:25::i;:::-;15184:52;;15289:15;15269:16;:35;;15247:122;;;;-1:-1:-1;;;15247:122:0;;7127:2:1;15247:122:0;;;7109:21:1;7166:2;7146:18;;;7139:30;7205:34;7185:18;;;7178:62;-1:-1:-1;;;7256:18:1;;;7249:35;7301:19;;15247:122:0;6925:401:1;15247:122:0;15405:60;15414:5;15421:7;15449:15;15430:16;:34;15405:8;:60::i;11957:218::-;12061:4;1592:10;12117:28;1592:10;12134:2;12138:6;12117:9;:28::i;37006:175::-;37094:11;;-1:-1:-1;;;;;37094:11:0;37080:10;:25;37072:62;;;;-1:-1:-1;;;37072:62:0;;;;;;;:::i;:::-;37145:12;:28;37006:175::o;12238:176::-;-1:-1:-1;;;;;12379:18:0;;;12352:7;12379:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12238:176::o;3887:238::-;2874:13;:11;:13::i;:::-;-1:-1:-1;;;;;3990:22:0;::::1;3968:110;;;::::0;-1:-1:-1;;;3968:110:0;;7533:2:1;3968:110:0::1;::::0;::::1;7515:21:1::0;7572:2;7552:18;;;7545:30;7611:34;7591:18;;;7584:62;-1:-1:-1;;;7662:18:1;;;7655:36;7708:19;;3968:110:0::1;7331:402:1::0;3968:110:0::1;4089:28;4108:8;4089:18;:28::i;:::-;3887:238:::0;:::o;19136:380::-;-1:-1:-1;;;;;19272:19:0;;19264:68;;;;-1:-1:-1;;;19264:68:0;;7940:2:1;19264:68:0;;;7922:21:1;7979:2;7959:18;;;7952:30;8018:34;7998:18;;;7991:62;-1:-1:-1;;;8069:18:1;;;8062:34;8113:19;;19264:68:0;7738:400:1;19264:68:0;-1:-1:-1;;;;;19351:21:0;;19343:68;;;;-1:-1:-1;;;19343:68:0;;8345:2:1;19343:68:0;;;8327:21:1;8384:2;8364:18;;;8357:30;8423:34;8403:18;;;8396:62;-1:-1:-1;;;8474:18:1;;;8467:32;8516:19;;19343:68:0;8143:398:1;19343:68:0;-1:-1:-1;;;;;19424:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19476:32;;1361:25:1;;;19476:32:0;;1334:18:1;19476:32:0;;;;;;;;19136:380;;;:::o;19807:502::-;19942:24;19969:25;19979:5;19986:7;19969:9;:25::i;:::-;19942:52;;-1:-1:-1;;20009:16:0;:37;20005:297;;20109:6;20089:16;:26;;20063:117;;;;-1:-1:-1;;;20063:117:0;;8748:2:1;20063:117:0;;;8730:21:1;8787:2;8767:18;;;8760:30;8826:31;8806:18;;;8799:59;8875:18;;20063:117:0;8546:353:1;20063:117:0;20224:51;20233:5;20240:7;20268:6;20249:16;:25;20224:8;:51::i;:::-;19931:378;19807:502;;;:::o;34974:1455::-;-1:-1:-1;;;;;32671:14:0;;;;;;:8;:14;;;;;;35093:4;;35099:2;;32656:12;:29;;:60;;-1:-1:-1;;;;;;32704:12:0;;;;;;:8;:12;;;;;;32689;:27;32656:60;32634:168;;;;-1:-1:-1;;;32634:168:0;;9106:2:1;32634:168:0;;;9088:21:1;9145:2;9125:18;;;9118:30;9184:34;9164:18;;;9157:62;9255:28;9235:18;;;9228:56;9301:19;;32634:168:0;8904:422:1;32634:168:0;3061:6;;-1:-1:-1;;;;;35132:15:0;;::::1;3061:6:::0;;35132:15:::1;::::0;:45:::1;;-1:-1:-1::0;3061:6:0;;-1:-1:-1;;;;;35164:13:0;;::::1;3061:6:::0;;35164:13:::1;35132:45;:81;;;-1:-1:-1::0;35202:11:0::1;::::0;-1:-1:-1;;;;;35194:19:0;;::::1;35202:11:::0;::::1;35194:19;35132:81;:115;;;-1:-1:-1::0;35236:11:0::1;::::0;-1:-1:-1;;;;;35230:17:0;;::::1;35236:11:::0;::::1;35230:17;35132:115;:138;;;-1:-1:-1::0;35264:6:0::1;::::0;::::1;;35132:138;35114:1308;;;35297:33;35313:4;35319:2;35323:6;35297:15;:33::i;:::-;35114:1308;;;35425:4;::::0;35363:21:::1;::::0;;;-1:-1:-1;;;;;35417:12:0;;::::1;35425:4:::0;::::1;35417:12;:39:::0;::::1;;;-1:-1:-1::0;;;;;;35433:23:0;::::1;31152:42;35433:23;;35417:39;35403:53:::0;-1:-1:-1;35471:12:0::1;-1:-1:-1::0;;;;;35486:25:0;::::1;31152:42;35486:25;::::0;::::1;::::0;:39:::1;;-1:-1:-1::0;35521:4:0::1;::::0;-1:-1:-1;;;;;35515:10:0;;::::1;35521:4:::0;::::1;35515:10;35486:39;35558:4;::::0;35471:54;;-1:-1:-1;;;;;;35558:4:0::1;35544:10;:18;::::0;::::1;::::0;:29:::1;;-1:-1:-1::0;35567:6:0::1;::::0;::::1;;35566:7;35544:29;35540:51;;;35575:16;:14;:16::i;:::-;35610:6;35606:79;;;35653:16;::::0;-1:-1:-1;;;35653:16:0;::::1;;;::::0;-1:-1:-1;35606:79:0::1;35703:7;35699:81;;;35747:17;::::0;-1:-1:-1;;;35747:17:0;::::1;;;::::0;-1:-1:-1;35699:81:0::1;35794:17;35842:5;35815:22;35824:13:::0;35815:6;:22:::1;:::i;:::-;35814:34;;;;:::i;:::-;35897:17;::::0;35794:54;;-1:-1:-1;35863:21:0::1;::::0;35919:5:::1;::::0;35888:26:::1;::::0;-1:-1:-1;;;35897:17:0;::::1;;;35888:6:::0;:26:::1;:::i;:::-;35887:38;;;;:::i;:::-;35863:62:::0;-1:-1:-1;35940:19:0::1;35973:25;35863:62:::0;35973:9;:25:::1;:::i;:::-;35963:36;::::0;:6;:36:::1;:::i;:::-;36019:28;::::0;35940:60;;-1:-1:-1;36019:32:0;36015:96:::1;;36070:41;36104:6;36070:33;:41::i;:::-;36130:6;:37;;;;;36166:1;36140:23;;:27;36130:37;36126:105;;;36186:45;36215:2;36219:11;36186:28;:45::i;:::-;36250:17:::0;;36246:49:::1;;36269:26;36275:4;36281:13;36269:5;:26::i;:::-;36310:47;36326:4;36340;36347:9;36310:15;:47::i;:::-;36372:38;36388:4;36394:2;36398:11;36372:15;:38::i;:::-;35348:1074;;;;;;35114:1308;-1:-1:-1::0;;;;;32825:14:0;;;;;;;:8;:14;;;;;;32842:12;32825:29;;;;32865:12;;;;;;;;;;:27;-1:-1:-1;;;34974:1455:0:o;33966:485::-;31893:6;:13;;-1:-1:-1;;31893:13:0;31902:4;31893:13;;;34069:4:::1;-1:-1:-1::0;11725:18:0;;;;;;;;;;;;34110:16;;34124:1:::1;34110:16:::0;;;;;::::1;::::0;;11725:18;;-1:-1:-1;34110:16:0;;;;::::1;::::0;11725:18;34110:16:::1;::::0;::::1;;::::0;-1:-1:-1;34110:16:0::1;34086:40;;34155:4;34137;34142:1;34137:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34137:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;34181:4:::1;::::0;34171:7;;34181:4;::::1;::::0;34171;;34181;;34171:7;::::1;;;;;:::i;:::-;-1:-1:-1::0;;;;;34171:14:0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;34196:6:::1;::::0;:184:::1;::::0;-1:-1:-1;;;34196:184:0;;:6;::::1;::::0;:57:::1;::::0;:184:::1;::::0;34268:8;;34196:6:::1;::::0;34307:4;;34334::::1;::::0;34354:15:::1;::::0;34196:184:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;34399:11:0::1;::::0;34391:52:::1;::::0;-1:-1:-1;;;;;34399:11:0;;::::1;::::0;-1:-1:-1;34421:21:0::1;34391:52:::0;::::1;;;::::0;-1:-1:-1;34421:21:0;34399:11:::1;34391:52:::0;34399:11;34391:52;34421:21;34399:11;34391:52;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;31929:6:0;:14;;-1:-1:-1;;31929:14:0;;;-1:-1:-1;33966:485:0:o;3153:132::-;3061:6;;-1:-1:-1;;;;;3061:6:0;1592:10;3217:23;3209:68;;;;-1:-1:-1;;;3209:68:0;;10648:2:1;3209:68:0;;;10630:21:1;;;10667:18;;;10660:30;10726:34;10706:18;;;10699:62;10778:18;;3209:68:0;10446:356:1;4285:191:0;4378:6;;;-1:-1:-1;;;;;4395:17:0;;;-1:-1:-1;;;;;;4395:17:0;;;;;;;4428:40;;4378:6;;;4395:17;4378:6;;4428:40;;4359:16;;4428:40;4348:128;4285:191;:::o;15978:877::-;-1:-1:-1;;;;;16109:18:0;;16101:68;;;;-1:-1:-1;;;16101:68:0;;11009:2:1;16101:68:0;;;10991:21:1;11048:2;11028:18;;;11021:30;11087:34;11067:18;;;11060:62;-1:-1:-1;;;11138:18:1;;;11131:35;11183:19;;16101:68:0;10807:401:1;16101:68:0;-1:-1:-1;;;;;16188:16:0;;16180:64;;;;-1:-1:-1;;;16180:64:0;;11415:2:1;16180:64:0;;;11397:21:1;11454:2;11434:18;;;11427:30;11493:34;11473:18;;;11466:62;-1:-1:-1;;;11544:18:1;;;11537:33;11587:19;;16180:64:0;11213:399:1;16180:64:0;-1:-1:-1;;;;;16330:15:0;;16308:19;16330:15;;;;;;;;;;;16378:21;;;;16356:109;;;;-1:-1:-1;;;16356:109:0;;11819:2:1;16356:109:0;;;11801:21:1;11858:2;11838:18;;;11831:30;11897:34;11877:18;;;11870:62;-1:-1:-1;;;11948:18:1;;;11941:36;11994:19;;16356:109:0;11617:402:1;16356:109:0;-1:-1:-1;;;;;16501:15:0;;;:9;:15;;;;;;;;;;;16519:20;;;16501:38;;16719:13;;;;;;;;;;:23;;;;;;16771:26;;1361:25:1;;;16719:13:0;;16771:26;;1334:18:1;16771:26:0;;;;;;;16810:37;18023:675;34459:507;34584:4;34504:19;11725:18;;;;;;;;;;;34526:75;;33546:412;:::i;34526:75::-;34504:97;;34613:16;34631;34653:12;;;;;;;;;-1:-1:-1;;;;;34653:12:0;-1:-1:-1;;;;;34653:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;34752:4:0;;34727:12;;:21;;;-1:-1:-1;;;34727:21:0;;;;34612:67;;-1:-1:-1;34612:67:0;;-1:-1:-1;34690:22:0;;-1:-1:-1;;;;;34752:4:0;;;;34727:12;;;;;:19;;:21;;;;;;;;;;;;;;:12;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34727:29:0;;34723:167;;-1:-1:-1;;;;;;34775:17:0;;34723:167;;;34837:4;;34812:12;;:21;;;-1:-1:-1;;;34812:21:0;;;;-1:-1:-1;;;;;34837:4:0;;;;34812:12;;;;:19;;:21;;;;;;;;;;;;;;;:12;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34812:29:0;;34808:82;;-1:-1:-1;;;;;;34873:17:0;;34808:82;34919:12;;34905:11;:26;34901:57;;;34933:25;:23;:25::i;32908:296::-;3061:6;;-1:-1:-1;;;;;3061:6:0;32995:10;:21;;;:52;;-1:-1:-1;33020:10:0;33042:4;33020:27;;32995:52;32991:205;;;33098:28;;33088:6;:38;;33062:134;;;;-1:-1:-1;;;33062:134:0;;13130:2:1;33062:134:0;;;13112:21:1;13169:2;13149:18;;;13142:30;13208:34;13188:18;;;13181:62;-1:-1:-1;;;13259:18:1;;;13252:32;13301:19;;33062:134:0;12928:398:1;33212:326:0;3061:6;;-1:-1:-1;;;;;3061:6:0;33331:10;:21;;;:44;;-1:-1:-1;;;;;;33356:19:0;;33370:4;33356:19;;33331:44;33327:203;;;33442:23;;33432:6;33416:13;33426:2;-1:-1:-1;;;;;11725:18:0;11698:7;11725:18;;;;;;;;;;;;11608:143;33416:13;:22;;;;:::i;:::-;:49;;33390:140;;;;-1:-1:-1;;;33390:140:0;;13533:2:1;33390:140:0;;;13515:21:1;13572:2;13552:18;;;13545:30;13611:31;13591:18;;;13584:59;13660:18;;33390:140:0;13331:353:1;33390:140:0;33212:326;;:::o;18023:675::-;-1:-1:-1;;;;;18107:21:0;;18099:67;;;;-1:-1:-1;;;18099:67:0;;13891:2:1;18099:67:0;;;13873:21:1;13930:2;13910:18;;;13903:30;13969:34;13949:18;;;13942:62;-1:-1:-1;;;14020:18:1;;;14013:31;14061:19;;18099:67:0;13689:397:1;18099:67:0;-1:-1:-1;;;;;18266:18:0;;18241:22;18266:18;;;;;;;;;;;18303:24;;;;18295:71;;;;-1:-1:-1;;;18295:71:0;;14293:2:1;18295:71:0;;;14275:21:1;14332:2;14312:18;;;14305:30;14371:34;14351:18;;;14344:62;-1:-1:-1;;;14422:18:1;;;14415:32;14464:19;;18295:71:0;14091:398:1;18295:71:0;-1:-1:-1;;;;;18402:18:0;;:9;:18;;;;;;;;;;;18423:23;;;18402:44;;18541:12;:22;;;;;;;18592:37;1361:25:1;;;18402:9:0;;:18;18592:37;;1334:18:1;18592:37:0;1215:177:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2471:247::-;2530:6;2583:2;2571:9;2562:7;2558:23;2554:32;2551:52;;;2599:1;2596;2589:12;2551:52;2638:9;2625:23;2657:31;2682:5;2657:31;:::i;:::-;2707:5;2471:247;-1:-1:-1;;;2471:247:1:o;2931:180::-;2990:6;3043:2;3031:9;3022:7;3018:23;3014:32;3011:52;;;3059:1;3056;3049:12;3011:52;-1:-1:-1;3082:23:1;;2931:180;-1:-1:-1;2931:180:1:o;3116:388::-;3184:6;3192;3245:2;3233:9;3224:7;3220:23;3216:32;3213:52;;;3261:1;3258;3251:12;3213:52;3300:9;3287:23;3319:31;3344:5;3319:31;:::i;:::-;3369:5;-1:-1:-1;3426:2:1;3411:18;;3398:32;3439:33;3398:32;3439:33;:::i;:::-;3491:7;3481:17;;;3116:388;;;;;:::o;3744:348::-;3946:2;3928:21;;;3985:2;3965:18;;;3958:30;4024:26;4019:2;4004:18;;3997:54;4083:2;4068:18;;3744:348::o;4097:380::-;4176:1;4172:12;;;;4219;;;4240:61;;4294:4;4286:6;4282:17;4272:27;;4240:61;4347:2;4339:6;4336:14;4316:18;4313:38;4310:161;;4393:10;4388:3;4384:20;4381:1;4374:31;4428:4;4425:1;4418:15;4456:4;4453:1;4446:15;4482:127;4543:10;4538:3;4534:20;4531:1;4524:31;4574:4;4571:1;4564:15;4598:4;4595:1;4588:15;4614:125;4679:9;;;4700:10;;;4697:36;;;4713:18;;:::i;4744:127::-;4805:10;4800:3;4796:20;4793:1;4786:31;4836:4;4833:1;4826:15;4860:4;4857:1;4850:15;4876:127;4937:10;4932:3;4928:20;4925:1;4918:31;4968:4;4965:1;4958:15;4992:4;4989:1;4982:15;5008:465;5061:3;5099:5;5093:12;5126:6;5121:3;5114:19;5152:4;5181;5176:3;5172:14;5165:21;;5220:4;5213:5;5209:16;5243:1;5253:195;5267:6;5264:1;5261:13;5253:195;;;5332:13;;-1:-1:-1;;;;;5328:39:1;5316:52;;5388:12;;;;5423:15;;;;5364:1;5282:9;5253:195;;;-1:-1:-1;5464:3:1;;5008:465;-1:-1:-1;;;;;5008:465:1:o;5478:332::-;5685:6;5674:9;5667:25;5728:2;5723;5712:9;5708:18;5701:30;5648:4;5748:56;5800:2;5789:9;5785:18;5777:6;5748:56;:::i;:::-;5740:64;5478:332;-1:-1:-1;;;;5478:332:1:o;5815:1105::-;5910:6;5941:2;5984;5972:9;5963:7;5959:23;5955:32;5952:52;;;6000:1;5997;5990:12;5952:52;6033:9;6027:16;6062:18;6103:2;6095:6;6092:14;6089:34;;;6119:1;6116;6109:12;6089:34;6157:6;6146:9;6142:22;6132:32;;6202:7;6195:4;6191:2;6187:13;6183:27;6173:55;;6224:1;6221;6214:12;6173:55;6253:2;6247:9;6275:2;6271;6268:10;6265:36;;;6281:18;;:::i;:::-;6327:2;6324:1;6320:10;6359:2;6353:9;6422:2;6418:7;6413:2;6409;6405:11;6401:25;6393:6;6389:38;6477:6;6465:10;6462:22;6457:2;6445:10;6442:18;6439:46;6436:72;;;6488:18;;:::i;:::-;6524:2;6517:22;6574:18;;;6608:15;;;;-1:-1:-1;6650:11:1;;;6646:20;;;6678:19;;;6675:39;;;6710:1;6707;6700:12;6675:39;6734:11;;;;6754:135;6770:6;6765:3;6762:15;6754:135;;;6836:10;;6824:23;;6787:12;;;;6867;;;;6754:135;;;6908:6;5815:1105;-1:-1:-1;;;;;;;;5815:1105:1:o;9331:168::-;9404:9;;;9435;;9452:15;;;9446:22;;9432:37;9422:71;;9473:18;;:::i;9504:217::-;9544:1;9570;9560:132;;9614:10;9609:3;9605:20;9602:1;9595:31;9649:4;9646:1;9639:15;9677:4;9674:1;9667:15;9560:132;-1:-1:-1;9706:9:1;;9504:217::o;9726:128::-;9793:9;;;9814:11;;;9811:37;;;9828:18;;:::i;9859:582::-;10158:6;10147:9;10140:25;10201:6;10196:2;10185:9;10181:18;10174:34;10244:3;10239:2;10228:9;10224:18;10217:31;10121:4;10265:57;10317:3;10306:9;10302:19;10294:6;10265:57;:::i;:::-;-1:-1:-1;;;;;10358:32:1;;;;10353:2;10338:18;;10331:60;-1:-1:-1;10422:3:1;10407:19;10400:35;10257:65;9859:582;-1:-1:-1;;;9859:582:1:o;12024:188::-;12103:13;;-1:-1:-1;;;;;12145:42:1;;12135:53;;12125:81;;12202:1;12199;12192:12;12125:81;12024:188;;;:::o;12217:450::-;12304:6;12312;12320;12373:2;12361:9;12352:7;12348:23;12344:32;12341:52;;;12389:1;12386;12379:12;12341:52;12412:40;12442:9;12412:40;:::i;:::-;12402:50;;12471:49;12516:2;12505:9;12501:18;12471:49;:::i;:::-;12461:59;;12563:2;12552:9;12548:18;12542:25;12607:10;12600:5;12596:22;12589:5;12586:33;12576:61;;12633:1;12630;12623:12;12576:61;12656:5;12646:15;;;12217:450;;;;;:::o;12672:251::-;12742:6;12795:2;12783:9;12774:7;12770:23;12766:32;12763:52;;;12811:1;12808;12801:12;12763:52;12843:9;12837:16;12862:31;12887:5;12862:31;:::i
Swarm Source
ipfs://ab485508641243fa0381b5a34fb64f8bf978c407c56d7f9e62f98f73cdea8f25
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.