Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 33 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 16366289 | 1152 days ago | IN | 0 ETH | 0.00103697 | ||||
| Approve | 16366288 | 1152 days ago | IN | 0 ETH | 0.00110107 | ||||
| Approve | 16366287 | 1152 days ago | IN | 0 ETH | 0.00108633 | ||||
| Approve | 16366287 | 1152 days ago | IN | 0 ETH | 0.00063569 | ||||
| Transfer | 16366286 | 1152 days ago | IN | 0 ETH | 0.01468462 | ||||
| Approve | 16366283 | 1152 days ago | IN | 0 ETH | 0.00117411 | ||||
| Approve | 16366283 | 1152 days ago | IN | 0 ETH | 0.00132757 | ||||
| Approve | 16366282 | 1152 days ago | IN | 0 ETH | 0.00113185 | ||||
| Approve | 16366277 | 1152 days ago | IN | 0 ETH | 0.00117221 | ||||
| Approve | 16366273 | 1152 days ago | IN | 0 ETH | 0.00115636 | ||||
| Approve | 16366272 | 1152 days ago | IN | 0 ETH | 0.00112608 | ||||
| Approve | 16366271 | 1152 days ago | IN | 0 ETH | 0.00110082 | ||||
| Approve | 16366271 | 1152 days ago | IN | 0 ETH | 0.00117071 | ||||
| Approve | 16366269 | 1152 days ago | IN | 0 ETH | 0.00119973 | ||||
| Approve | 16366269 | 1152 days ago | IN | 0 ETH | 0.00119973 | ||||
| Approve | 16366269 | 1152 days ago | IN | 0 ETH | 0.0013064 | ||||
| Approve | 16366269 | 1152 days ago | IN | 0 ETH | 0.0013064 | ||||
| Approve | 16366268 | 1152 days ago | IN | 0 ETH | 0.00112285 | ||||
| Approve | 16366268 | 1152 days ago | IN | 0 ETH | 0.00112285 | ||||
| Approve | 16366268 | 1152 days ago | IN | 0 ETH | 0.00112285 | ||||
| Approve | 16366268 | 1152 days ago | IN | 0 ETH | 0.00114615 | ||||
| Approve | 16366268 | 1152 days ago | IN | 0 ETH | 0.00114615 | ||||
| Approve | 16366267 | 1152 days ago | IN | 0 ETH | 0.00109345 | ||||
| Approve | 16366266 | 1152 days ago | IN | 0 ETH | 0.00115528 | ||||
| Approve | 16366265 | 1152 days ago | IN | 0 ETH | 0.00102943 |
Latest 6 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16366288 | 1152 days ago | 2.97739456 ETH | ||||
| Transfer | 16366288 | 1152 days ago | 2.97739456 ETH | ||||
| Transfer | 16366284 | 1152 days ago | 0.07262459 ETH | ||||
| Transfer | 16366284 | 1152 days ago | 0.07262459 ETH | ||||
| Transfer | 16366268 | 1152 days ago | 0.06824992 ETH | ||||
| Transfer | 16366268 | 1152 days ago | 0.06824992 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MemeMugs
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-01-09
*/
//https://t.me/MemeMugs
//https://mememugs.art
pragma solidity ^0.8.17;
// SPDX-License-Identifier: Unlicensed
/*
*/
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return payable(msg.sender);
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
recipient = payable(0x000000000000000000000000000000000000dEaD);
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// 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;
}
// 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;
}
// 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);
}
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;
}
contract MemeMugs is Context, IERC20, Ownable {
using Address for address;
using Address for address payable;
IUniswapV2Router02 public uniswapV2Router;
address public uniswapV2Pair;
mapping (address => uint256) private _tOwned;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _isExcludedFromFee;
uint256 private _tTotal = 100000 * 10**9;
uint256 public _maxTxAmount = 100000 * 10**9; //
uint256 private constant SWAP_TOKENS_AT_AMOUNT = 1000 * 10**9; //
string private constant _name = "MemeMugs"; //
string private constant _symbol = unicode"MUGS"; //
uint8 private constant _decimals = 9; //
uint256 public _marketingFee = 2;
uint256 public _liquidityFee = 0;
address public _marketingWallet = 0x567557BA9CEc19518cB651F9988CA66A44B973E4;
bool public setReadyTimes = false;
bool private swapping;
event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);
constructor () {
_tOwned[_msgSender()] = _tTotal;
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
// Create a uniswap pair for this new token
address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = _uniswapV2Pair;
//exclude owner and this contract from fee
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
_isExcludedFromFee[_marketingWallet] = true;
emit Transfer(address(0), _msgSender(), _tTotal);
}
function name() public pure returns (string memory) {
return _name;
}
function symbol() public pure returns (string memory) {
return _symbol;
}
function decimals() public pure returns (uint8) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _tTotal;
}
function balanceOf(address account) public view override returns (uint256) {
return _tOwned[account];
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue);
return true;
}
function excludeFromFee(address account) public onlyOwner {
_isExcludedFromFee[account] = true;
setReadyTimes = true;
}
function includeInFee(address account) public onlyOwner {
_isExcludedFromFee[account] = false;
}
//to recieve ETH from uniswapV2Router when swaping
receive() external payable {}
function _getValues(uint256 amount, address from) private returns (uint256) {
uint256 marketingFee = amount * _marketingFee / 100;
uint256 liquidityFee = amount * _liquidityFee / 100;
_tOwned[address(this)] += marketingFee + liquidityFee;
emit Transfer (from, address(this), marketingFee + liquidityFee);
return (amount - marketingFee - liquidityFee);
}
function isExcludedFromFee(address account) public view returns(bool) {
return _isExcludedFromFee[account];
}
function _approve(address owner, address spender, uint256 amount) private {
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);
}
function _transfer(
address from,
address to,
uint256 amount
) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to] && to != uniswapV2Pair)
require(balanceOf(to) + amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
if (balanceOf(address(this)) >= SWAP_TOKENS_AT_AMOUNT && !swapping && from != uniswapV2Pair && from != owner() && to != owner()) {
swapping = true;
uint256 sellTokens = balanceOf(address(this));
swapAndSendToFee(sellTokens);
swapping = false;
}
_tOwned[address(this)] += amount;
uint256 transferAmount = amount;
//if any account belongs to _isExcludedFromFee account then remove the fee
if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){
transferAmount = _getValues(amount, from);
}
if ((!_isExcludedFromFee[from])||(transferAmount<=_maxTxAmount))
_tOwned[address(this)] -= amount;
_tOwned[to] += transferAmount;
_tOwned[from] -= amount;
emit Transfer(from, to, transferAmount);
}
function swapAndSendToFee (uint256 tokens) private {
uint256 ethToSend = swapTokensForEth(tokens);
if (ethToSend > 0)
payable(_marketingWallet).transfer(ethToSend);
}
function swapAndLiquify() private {
// split the contract balance into halves
uint256 liquidityTokens = balanceOf (address(this)) * _liquidityFee / (_marketingFee + _liquidityFee);
uint256 half = liquidityTokens / 2;
uint256 otherHalf = liquidityTokens - half;
uint256 newBalance = swapTokensForEth(half);
if (newBalance > 0) {
liquidityTokens = 0;
addLiquidity(otherHalf, newBalance);
emit SwapAndLiquify(half, newBalance, otherHalf);
}
}
function swapTokensForEth(uint256 tokenAmount) private returns (uint256) {
uint256 initialBalance = address(this).balance;
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
return (address(this).balance - initialBalance);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
(,uint256 ethFromLiquidity,) = uniswapV2Router.addLiquidityETH {value: ethAmount} (
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
owner(),
block.timestamp
);
if (ethAmount - ethFromLiquidity > 0)
payable(_marketingWallet).sendValue (ethAmount - ethFromLiquidity);
}
}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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReadyTimes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052655af3107a4000600681905560075560026008556000600955600a80546001600160a81b03191673567557ba9cec19518cb651f9988ca66a44b973e41790553480156200005057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060065433600090815260036020908152604080832093909355825163c45a015560e01b81529251737a250d5630b4cf539739df2c5dacb4c659f2488d93849263c45a0155926004808401938290030181865afa158015620000f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011d919062000302565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200016b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000191919062000302565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000205919062000302565b600180546001600160a01b038086166001600160a01b03199283161783556002805491851691909216179055909150600560006200024b6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526005909352818320805485166001908117909155600a54909116835291208054909216179055620002aa3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600654604051620002f291815260200190565b60405180910390a3505062000334565b6000602082840312156200031557600080fd5b81516001600160a01b03811681146200032d57600080fd5b9392505050565b61128a80620003446000396000f3fe60806040526004361061014f5760003560e01c80636bc87c3a116100b6578063962dfc751161006f578063962dfc75146103f1578063a457c2d714610411578063a9059cbb14610431578063dd62ed3e14610451578063ea2f0b3714610497578063f2fde38b146104b757600080fd5b80636bc87c3a1461032f57806370a0823114610345578063715018a61461037b5780637d1db4a5146103905780638da5cb5b146103a657806395d89b41146103c457600080fd5b806323b872dd1161010857806323b872dd14610258578063313ce567146102785780633950935114610294578063437823ec146102b457806349bd5a5e146102d65780635342acb4146102f657600080fd5b8063025eea221461015b57806306fdde0314610191578063095ea7b3146101cb5780631694505e146101eb57806318160ddd1461022357806322976e0d1461024257600080fd5b3661015657005b600080fd5b34801561016757600080fd5b50600a5461017c90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b34801561019d57600080fd5b506040805180820190915260088152674d656d654d75677360c01b60208201525b6040516101889190610fd6565b3480156101d757600080fd5b5061017c6101e636600461103c565b6104d7565b3480156101f757600080fd5b5060015461020b906001600160a01b031681565b6040516001600160a01b039091168152602001610188565b34801561022f57600080fd5b506006545b604051908152602001610188565b34801561024e57600080fd5b5061023460085481565b34801561026457600080fd5b5061017c610273366004611068565b6104ee565b34801561028457600080fd5b5060405160098152602001610188565b3480156102a057600080fd5b5061017c6102af36600461103c565b610540565b3480156102c057600080fd5b506102d46102cf3660046110a9565b610577565b005b3480156102e257600080fd5b5060025461020b906001600160a01b031681565b34801561030257600080fd5b5061017c6103113660046110a9565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561033b57600080fd5b5061023460095481565b34801561035157600080fd5b506102346103603660046110a9565b6001600160a01b031660009081526003602052604090205490565b34801561038757600080fd5b506102d46105e1565b34801561039c57600080fd5b5061023460075481565b3480156103b257600080fd5b506000546001600160a01b031661020b565b3480156103d057600080fd5b506040805180820190915260048152634d55475360e01b60208201526101be565b3480156103fd57600080fd5b50600a5461020b906001600160a01b031681565b34801561041d57600080fd5b5061017c61042c36600461103c565b610655565b34801561043d57600080fd5b5061017c61044c36600461103c565b61068c565b34801561045d57600080fd5b5061023461046c3660046110cd565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156104a357600080fd5b506102d46104b23660046110a9565b610699565b3480156104c357600080fd5b506102d46104d23660046110a9565b6106e4565b60006104e43384846107ce565b5060015b92915050565b60006104fb8484846108f2565b6001600160a01b03841660009081526004602090815260408083203380855292529091205461053691869161053190869061111c565b6107ce565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104e491859061053190869061112f565b6000546001600160a01b031633146105aa5760405162461bcd60e51b81526004016105a190611142565b60405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055600a805460ff60a01b1916600160a01b179055565b6000546001600160a01b0316331461060b5760405162461bcd60e51b81526004016105a190611142565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104e491859061053190869061111c565b60006104e43384846108f2565b6000546001600160a01b031633146106c35760405162461bcd60e51b81526004016105a190611142565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b0316331461070e5760405162461bcd60e51b81526004016105a190611142565b6001600160a01b0381166107735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a1565b6001600160a01b0382166108915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a1565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a1565b6001600160a01b0382166109b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a1565b60008111610a1a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105a1565b6001600160a01b03831660009081526005602052604090205460ff16158015610a5c57506001600160a01b03821660009081526005602052604090205460ff16155b8015610a7657506002546001600160a01b03838116911614155b15610b075760075481610a9e846001600160a01b031660009081526003602052604090205490565b610aa8919061112f565b1115610b075760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016105a1565b3060009081526003602052604090205464e8d4a5100011158015610b355750600a54600160a81b900460ff16155b8015610b4f57506002546001600160a01b03848116911614155b8015610b6957506000546001600160a01b03848116911614155b8015610b8357506000546001600160a01b03838116911614155b15610bc557600a805460ff60a81b1916600160a81b179055306000908152600360205260408120549050610bb681610d42565b50600a805460ff60a81b191690555b3060009081526003602052604081208054839290610be490849061112f565b90915550506001600160a01b038316600090815260056020526040902054819060ff16158015610c2d57506001600160a01b03831660009081526005602052604090205460ff16155b15610c3f57610c3c8285610d95565b90505b6001600160a01b03841660009081526005602052604090205460ff161580610c6957506007548111155b15610c93573060009081526003602052604081208054849290610c8d90849061111c565b90915550505b6001600160a01b03831660009081526003602052604081208054839290610cbb90849061112f565b90915550506001600160a01b03841660009081526003602052604081208054849290610ce890849061111c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3491815260200190565b60405180910390a350505050565b6000610d4d82610e66565b90508015610d9157600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d8f573d6000803e3d6000fd5b505b5050565b600080606460085485610da89190611177565b610db2919061118e565b90506000606460095486610dc69190611177565b610dd0919061118e565b9050610ddc818361112f565b3060009081526003602052604081208054909190610dfb90849061112f565b909155503090506001600160a01b0385167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e37848661112f565b60405190815260200160405180910390a380610e53838761111c565b610e5d919061111c565b95945050505050565b6040805160028082526060820183526000924792849290916020830190803683370190505090503081600081518110610ea157610ea16111b0565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610efa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1e91906111c6565b81600181518110610f3157610f316111b0565b6001600160a01b039283166020918202929092010152600154610f5791309116866107ce565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f909087906000908690309042906004016111e3565b600060405180830381600087803b158015610faa57600080fd5b505af1158015610fbe573d6000803e3d6000fd5b505050508147610fce919061111c565b949350505050565b600060208083528351808285015260005b8181101561100357858101830151858201604001528201610fe7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461103957600080fd5b50565b6000806040838503121561104f57600080fd5b823561105a81611024565b946020939093013593505050565b60008060006060848603121561107d57600080fd5b833561108881611024565b9250602084013561109881611024565b929592945050506040919091013590565b6000602082840312156110bb57600080fd5b81356110c681611024565b9392505050565b600080604083850312156110e057600080fd5b82356110eb81611024565b915060208301356110fb81611024565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104e8576104e8611106565b808201808211156104e8576104e8611106565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176104e8576104e8611106565b6000826111ab57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111d857600080fd5b81516110c681611024565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112335784516001600160a01b03168352938301939183019160010161120e565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122064d3921d17684f943f0020604f44c4d2ccbcd09d4e3613dac0f7155a4bafff8f64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80636bc87c3a116100b6578063962dfc751161006f578063962dfc75146103f1578063a457c2d714610411578063a9059cbb14610431578063dd62ed3e14610451578063ea2f0b3714610497578063f2fde38b146104b757600080fd5b80636bc87c3a1461032f57806370a0823114610345578063715018a61461037b5780637d1db4a5146103905780638da5cb5b146103a657806395d89b41146103c457600080fd5b806323b872dd1161010857806323b872dd14610258578063313ce567146102785780633950935114610294578063437823ec146102b457806349bd5a5e146102d65780635342acb4146102f657600080fd5b8063025eea221461015b57806306fdde0314610191578063095ea7b3146101cb5780631694505e146101eb57806318160ddd1461022357806322976e0d1461024257600080fd5b3661015657005b600080fd5b34801561016757600080fd5b50600a5461017c90600160a01b900460ff1681565b60405190151581526020015b60405180910390f35b34801561019d57600080fd5b506040805180820190915260088152674d656d654d75677360c01b60208201525b6040516101889190610fd6565b3480156101d757600080fd5b5061017c6101e636600461103c565b6104d7565b3480156101f757600080fd5b5060015461020b906001600160a01b031681565b6040516001600160a01b039091168152602001610188565b34801561022f57600080fd5b506006545b604051908152602001610188565b34801561024e57600080fd5b5061023460085481565b34801561026457600080fd5b5061017c610273366004611068565b6104ee565b34801561028457600080fd5b5060405160098152602001610188565b3480156102a057600080fd5b5061017c6102af36600461103c565b610540565b3480156102c057600080fd5b506102d46102cf3660046110a9565b610577565b005b3480156102e257600080fd5b5060025461020b906001600160a01b031681565b34801561030257600080fd5b5061017c6103113660046110a9565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561033b57600080fd5b5061023460095481565b34801561035157600080fd5b506102346103603660046110a9565b6001600160a01b031660009081526003602052604090205490565b34801561038757600080fd5b506102d46105e1565b34801561039c57600080fd5b5061023460075481565b3480156103b257600080fd5b506000546001600160a01b031661020b565b3480156103d057600080fd5b506040805180820190915260048152634d55475360e01b60208201526101be565b3480156103fd57600080fd5b50600a5461020b906001600160a01b031681565b34801561041d57600080fd5b5061017c61042c36600461103c565b610655565b34801561043d57600080fd5b5061017c61044c36600461103c565b61068c565b34801561045d57600080fd5b5061023461046c3660046110cd565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156104a357600080fd5b506102d46104b23660046110a9565b610699565b3480156104c357600080fd5b506102d46104d23660046110a9565b6106e4565b60006104e43384846107ce565b5060015b92915050565b60006104fb8484846108f2565b6001600160a01b03841660009081526004602090815260408083203380855292529091205461053691869161053190869061111c565b6107ce565b5060019392505050565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104e491859061053190869061112f565b6000546001600160a01b031633146105aa5760405162461bcd60e51b81526004016105a190611142565b60405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055600a805460ff60a01b1916600160a01b179055565b6000546001600160a01b0316331461060b5760405162461bcd60e51b81526004016105a190611142565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916104e491859061053190869061111c565b60006104e43384846108f2565b6000546001600160a01b031633146106c35760405162461bcd60e51b81526004016105a190611142565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b0316331461070e5760405162461bcd60e51b81526004016105a190611142565b6001600160a01b0381166107735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a1565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108305760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a1565b6001600160a01b0382166108915760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a1565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109565760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a1565b6001600160a01b0382166109b85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a1565b60008111610a1a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105a1565b6001600160a01b03831660009081526005602052604090205460ff16158015610a5c57506001600160a01b03821660009081526005602052604090205460ff16155b8015610a7657506002546001600160a01b03838116911614155b15610b075760075481610a9e846001600160a01b031660009081526003602052604090205490565b610aa8919061112f565b1115610b075760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016105a1565b3060009081526003602052604090205464e8d4a5100011158015610b355750600a54600160a81b900460ff16155b8015610b4f57506002546001600160a01b03848116911614155b8015610b6957506000546001600160a01b03848116911614155b8015610b8357506000546001600160a01b03838116911614155b15610bc557600a805460ff60a81b1916600160a81b179055306000908152600360205260408120549050610bb681610d42565b50600a805460ff60a81b191690555b3060009081526003602052604081208054839290610be490849061112f565b90915550506001600160a01b038316600090815260056020526040902054819060ff16158015610c2d57506001600160a01b03831660009081526005602052604090205460ff16155b15610c3f57610c3c8285610d95565b90505b6001600160a01b03841660009081526005602052604090205460ff161580610c6957506007548111155b15610c93573060009081526003602052604081208054849290610c8d90849061111c565b90915550505b6001600160a01b03831660009081526003602052604081208054839290610cbb90849061112f565b90915550506001600160a01b03841660009081526003602052604081208054849290610ce890849061111c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d3491815260200190565b60405180910390a350505050565b6000610d4d82610e66565b90508015610d9157600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610d8f573d6000803e3d6000fd5b505b5050565b600080606460085485610da89190611177565b610db2919061118e565b90506000606460095486610dc69190611177565b610dd0919061118e565b9050610ddc818361112f565b3060009081526003602052604081208054909190610dfb90849061112f565b909155503090506001600160a01b0385167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e37848661112f565b60405190815260200160405180910390a380610e53838761111c565b610e5d919061111c565b95945050505050565b6040805160028082526060820183526000924792849290916020830190803683370190505090503081600081518110610ea157610ea16111b0565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610efa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1e91906111c6565b81600181518110610f3157610f316111b0565b6001600160a01b039283166020918202929092010152600154610f5791309116866107ce565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f909087906000908690309042906004016111e3565b600060405180830381600087803b158015610faa57600080fd5b505af1158015610fbe573d6000803e3d6000fd5b505050508147610fce919061111c565b949350505050565b600060208083528351808285015260005b8181101561100357858101830151858201604001528201610fe7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461103957600080fd5b50565b6000806040838503121561104f57600080fd5b823561105a81611024565b946020939093013593505050565b60008060006060848603121561107d57600080fd5b833561108881611024565b9250602084013561109881611024565b929592945050506040919091013590565b6000602082840312156110bb57600080fd5b81356110c681611024565b9392505050565b600080604083850312156110e057600080fd5b82356110eb81611024565b915060208301356110fb81611024565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104e8576104e8611106565b808201808211156104e8576104e8611106565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b80820281158282048414176104e8576104e8611106565b6000826111ab57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156111d857600080fd5b81516110c681611024565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156112335784516001600160a01b03168352938301939183019160010161120e565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122064d3921d17684f943f0020604f44c4d2ccbcd09d4e3613dac0f7155a4bafff8f64736f6c63430008110033
Deployed Bytecode Sourcemap
24891:8435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25787:33;;;;;;;;;;-1:-1:-1;25787:33:0;;;;-1:-1:-1;;;25787:33:0;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;25787:33:0;;;;;;;;26689:83;;;;;;;;;;-1:-1:-1;26759:5:0;;;;;;;;;;;;-1:-1:-1;;;26759:5:0;;;;26689:83;;;;;;;:::i;27520:161::-;;;;;;;;;;-1:-1:-1;27520:161:0;;;;;:::i;:::-;;:::i;25018:41::-;;;;;;;;;;-1:-1:-1;25018:41:0;;;;-1:-1:-1;;;;;25018:41:0;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;25018:41:0;1215:230:1;26966:95:0;;;;;;;;;;-1:-1:-1;27046:7:0;;26966:95;;;1596:25:1;;;1584:2;1569:18;26966:95:0;1450:177:1;25625:32:0;;;;;;;;;;;;;;;;27689:266;;;;;;;;;;-1:-1:-1;27689:266:0;;;;;:::i;:::-;;:::i;26875:83::-;;;;;;;;;;-1:-1:-1;26875:83:0;;25612:1;2235:36:1;;2223:2;2208:18;26875:83:0;2093:184:1;27963:215:0;;;;;;;;;;-1:-1:-1;27963:215:0;;;;;:::i;:::-;;:::i;28419:142::-;;;;;;;;;;-1:-1:-1;28419:142:0;;;;;:::i;:::-;;:::i;:::-;;25066:28;;;;;;;;;;-1:-1:-1;25066:28:0;;;;-1:-1:-1;;;;;25066:28:0;;;29198:123;;;;;;;;;;-1:-1:-1;29198:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;29286:27:0;29262:4;29286:27;;;:18;:27;;;;;;;;;29198:123;25664:32;;;;;;;;;;;;;;;;27069:117;;;;;;;;;;-1:-1:-1;27069:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;27162:16:0;27135:7;27162:16;;;:7;:16;;;;;;;27069:117;16269:148;;;;;;;;;;;;;:::i;25343:44::-;;;;;;;;;;;;;;;;15626:79;;;;;;;;;;-1:-1:-1;15664:7:0;15691:6;-1:-1:-1;;;;;15691:6:0;15626:79;;26780:87;;;;;;;;;;-1:-1:-1;26852:7:0;;;;;;;;;;;;-1:-1:-1;;;26852:7:0;;;;26780:87;;25703:77;;;;;;;;;;-1:-1:-1;25703:77:0;;;;-1:-1:-1;;;;;25703:77:0;;;28186:225;;;;;;;;;;-1:-1:-1;28186:225:0;;;;;:::i;:::-;;:::i;27194:167::-;;;;;;;;;;-1:-1:-1;27194:167:0;;;;;:::i;:::-;;:::i;27369:143::-;;;;;;;;;;-1:-1:-1;27369:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;27477:18:0;;;27450:7;27477:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27369:143;28569:110;;;;;;;;;;-1:-1:-1;28569:110:0;;;;;:::i;:::-;;:::i;16572:244::-;;;;;;;;;;-1:-1:-1;16572:244:0;;;;;:::i;:::-;;:::i;27520:161::-;27595:4;27612:39;8127:10;27635:7;27644:6;27612:8;:39::i;:::-;-1:-1:-1;27669:4:0;27520:161;;;;;:::o;27689:266::-;27787:4;27804:36;27814:6;27822:9;27833:6;27804:9;:36::i;:::-;-1:-1:-1;;;;;27882:19:0;;;;;;:11;:19;;;;;;;;8127:10;27882:33;;;;;;;;;27851:74;;27860:6;;27882:42;;27918:6;;27882:42;:::i;:::-;27851:8;:74::i;:::-;-1:-1:-1;27943:4:0;27689:266;;;;;:::o;27963:215::-;8127:10;28051:4;28100:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28100:34:0;;;;;;;;;;28051:4;;28068:80;;28091:7;;28100:47;;28137:10;;28100:47;:::i;28419:142::-;15838:6;;-1:-1:-1;;;;;15838:6:0;8127:10;15838:22;15830:67;;;;-1:-1:-1;;;15830:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;28488:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;28488:34:0::1;28518:4;28488:34;::::0;;28533:13:::1;:20:::0;;-1:-1:-1;;;;28533:20:0::1;-1:-1:-1::0;;;28533:20:0::1;::::0;;28419:142::o;16269:148::-;15838:6;;-1:-1:-1;;;;;15838:6:0;8127:10;15838:22;15830:67;;;;-1:-1:-1;;;15830:67:0;;;;;;;:::i;:::-;16376:1:::1;16360:6:::0;;16339:40:::1;::::0;-1:-1:-1;;;;;16360:6:0;;::::1;::::0;16339:40:::1;::::0;16376:1;;16339:40:::1;16407:1;16390:19:::0;;-1:-1:-1;;;;;;16390:19:0::1;::::0;;16269:148::o;28186:225::-;8127:10;28279:4;28328:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28328:34:0;;;;;;;;;;28279:4;;28296:85;;28319:7;;28328:52;;28365:15;;28328:52;:::i;27194:167::-;27272:4;27289:42;8127:10;27313:9;27324:6;27289:9;:42::i;28569:110::-;15838:6;;-1:-1:-1;;;;;15838:6:0;8127:10;15838:22;15830:67;;;;-1:-1:-1;;;15830:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28636:27:0::1;28666:5;28636:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;28636:35:0::1;::::0;;28569:110::o;16572:244::-;15838:6;;-1:-1:-1;;;;;15838:6:0;8127:10;15838:22;15830:67;;;;-1:-1:-1;;;15830:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16661:22:0;::::1;16653:73;;;::::0;-1:-1:-1;;;16653:73:0;;4093:2:1;16653:73:0::1;::::0;::::1;4075:21:1::0;4132:2;4112:18;;;4105:30;4171:34;4151:18;;;4144:62;-1:-1:-1;;;4222:18:1;;;4215:36;4268:19;;16653:73:0::1;3891:402:1::0;16653:73:0::1;16763:6;::::0;;16742:38:::1;::::0;-1:-1:-1;;;;;16742:38:0;;::::1;::::0;16763:6;::::1;::::0;16742:38:::1;::::0;::::1;16791:6;:17:::0;;-1:-1:-1;;;;;;16791:17:0::1;-1:-1:-1::0;;;;;16791:17:0;;;::::1;::::0;;;::::1;::::0;;16572:244::o;29336:337::-;-1:-1:-1;;;;;29429:19:0;;29421:68;;;;-1:-1:-1;;;29421:68:0;;4500:2:1;29421:68:0;;;4482:21:1;4539:2;4519:18;;;4512:30;4578:34;4558:18;;;4551:62;-1:-1:-1;;;4629:18:1;;;4622:34;4673:19;;29421:68:0;4298:400:1;29421:68:0;-1:-1:-1;;;;;29508:21:0;;29500:68;;;;-1:-1:-1;;;29500:68:0;;4905:2:1;29500:68:0;;;4887:21:1;4944:2;4924:18;;;4917:30;4983:34;4963:18;;;4956:62;-1:-1:-1;;;5034:18:1;;;5027:32;5076:19;;29500:68:0;4703:398:1;29500:68:0;-1:-1:-1;;;;;29581:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29633:32;;1596:25:1;;;29633:32:0;;1569:18:1;29633:32:0;;;;;;;29336:337;;;:::o;29681:1458::-;-1:-1:-1;;;;;29803:18:0;;29795:68;;;;-1:-1:-1;;;29795:68:0;;5308:2:1;29795:68:0;;;5290:21:1;5347:2;5327:18;;;5320:30;5386:34;5366:18;;;5359:62;-1:-1:-1;;;5437:18:1;;;5430:35;5482:19;;29795:68:0;5106:401:1;29795:68:0;-1:-1:-1;;;;;29882:16:0;;29874:64;;;;-1:-1:-1;;;29874:64:0;;5714:2:1;29874:64:0;;;5696:21:1;5753:2;5733:18;;;5726:30;5792:34;5772:18;;;5765:62;-1:-1:-1;;;5843:18:1;;;5836:33;5886:19;;29874:64:0;5512:399:1;29874:64:0;29966:1;29957:6;:10;29949:64;;;;-1:-1:-1;;;29949:64:0;;6118:2:1;29949:64:0;;;6100:21:1;6157:2;6137:18;;;6130:30;6196:34;6176:18;;;6169:62;-1:-1:-1;;;6247:18:1;;;6240:39;6296:19;;29949:64:0;5916:405:1;29949:64:0;-1:-1:-1;;;;;30035:24:0;;;;;;:18;:24;;;;;;;;30034:25;:53;;;;-1:-1:-1;;;;;;30065:22:0;;;;;;:18;:22;;;;;;;;30064:23;30034:53;:77;;;;-1:-1:-1;30098:13:0;;-1:-1:-1;;;;;30092:19:0;;;30098:13;;30092:19;;30034:77;30031:186;;;30160:12;;30150:6;30134:13;30144:2;-1:-1:-1;;;;;27162:16:0;27135:7;27162:16;;;:7;:16;;;;;;;27069:117;30134:13;:22;;;;:::i;:::-;:38;;30126:91;;;;-1:-1:-1;;;30126:91:0;;6528:2:1;30126:91:0;;;6510:21:1;6567:2;6547:18;;;6540:30;6606:34;6586:18;;;6579:62;-1:-1:-1;;;6657:18:1;;;6650:38;6705:19;;30126:91:0;6326:404:1;30126:91:0;30270:4;27135:7;27162:16;;;:7;:16;;;;;;25446:12;-1:-1:-1;30252:49:0;:62;;;;-1:-1:-1;30306:8:0;;-1:-1:-1;;;30306:8:0;;;;30305:9;30252:62;:87;;;;-1:-1:-1;30326:13:0;;-1:-1:-1;;;;;30318:21:0;;;30326:13;;30318:21;;30252:87;:106;;;;-1:-1:-1;15664:7:0;15691:6;-1:-1:-1;;;;;30343:15:0;;;15691:6;;30343:15;;30252:106;:123;;;;-1:-1:-1;15664:7:0;15691:6;-1:-1:-1;;;;;30362:13:0;;;15691:6;;30362:13;;30252:123;30248:305;;;30392:8;:15;;-1:-1:-1;;;;30392:15:0;-1:-1:-1;;;30392:15:0;;;30461:4;-1:-1:-1;27162:16:0;;;:7;:16;;;;;;30422:45;;30482:28;30499:10;30482:16;:28::i;:::-;-1:-1:-1;30525:8:0;:16;;-1:-1:-1;;;;30525:16:0;;;30248:305;30579:4;30563:22;;;;:7;:22;;;;;:32;;30589:6;;30563:22;:32;;30589:6;;30563:32;:::i;:::-;;;;-1:-1:-1;;;;;;;30739:24:0;;30607:22;30739:24;;;:18;:24;;;;;;30632:6;;30739:24;;30738:25;:52;;;;-1:-1:-1;;;;;;30768:22:0;;;;;;:18;:22;;;;;;;;30767:23;30738:52;30735:124;;;30823:24;30834:6;30842:4;30823:10;:24::i;:::-;30806:41;;30735:124;-1:-1:-1;;;;;30884:24:0;;;;;;:18;:24;;;;;;;;30883:25;;30882:59;;;30928:12;;30912:14;:28;;30882:59;30878:106;;;30968:4;30952:22;;;;:7;:22;;;;;:32;;30978:6;;30952:22;:32;;30978:6;;30952:32;:::i;:::-;;;;-1:-1:-1;;30878:106:0;-1:-1:-1;;;;;30996:11:0;;;;;;:7;:11;;;;;:29;;31011:14;;30996:11;:29;;31011:14;;30996:29;:::i;:::-;;;;-1:-1:-1;;;;;;;31036:13:0;;;;;;:7;:13;;;;;:23;;31053:6;;31036:13;:23;;31053:6;;31036:23;:::i;:::-;;;;;;;;31090:2;-1:-1:-1;;;;;31075:34:0;31084:4;-1:-1:-1;;;;;31075:34:0;;31094:14;31075:34;;;;1596:25:1;;1584:2;1569:18;;1450:177;31075:34:0;;;;;;;;29784:1355;29681:1458;;;:::o;31149:204::-;31211:17;31231:24;31248:6;31231:16;:24::i;:::-;31211:44;-1:-1:-1;31272:13:0;;31268:77;;31308:16;;31300:45;;-1:-1:-1;;;;;31308:16:0;;;;31300:45;;;;;31335:9;;31308:16;31300:45;31308:16;31300:45;31335:9;31308:16;31300:45;;;;;;;;;;;;;;;;;;;;;31268:77;31200:153;31149:204;:::o;28785:403::-;28852:7;28872:20;28920:3;28904:13;;28895:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28872:51;;28934:20;28982:3;28966:13;;28957:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28934:51;-1:-1:-1;29022:27:0;28934:51;29022:12;:27;:::i;:::-;29012:4;28996:22;;;;:7;:22;;;;;:53;;:22;;;:53;;;;;:::i;:::-;;;;-1:-1:-1;29089:4:0;;-1:-1:-1;;;;;;29065:59:0;;;29096:27;29111:12;29096;:27;:::i;:::-;29065:59;;1596:25:1;;;1584:2;1569:18;29065:59:0;;;;;;;29167:12;29143:21;29152:12;29143:6;:21;:::i;:::-;:36;;;;:::i;:::-;29135:45;28785:403;-1:-1:-1;;;;;28785:403:0:o;31917:722::-;32142:16;;;32156:1;32142:16;;;;;;;;31981:7;;32026:21;;31981:7;;32142:16;;;;;;;;;;;;-1:-1:-1;32142:16:0;32118:40;;32187:4;32169;32174:1;32169:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32169:23:0;;;:7;;;;;;;;;;:23;;;;32213:15;;:22;;;-1:-1:-1;;;32213:22:0;;;;:15;;;;;:20;;:22;;;;;32169:7;;32213:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32203:4;32208:1;32203:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32203:32:0;;;:7;;;;;;;;;:32;32280:15;;32248:62;;32265:4;;32280:15;32298:11;32248:8;:62::i;:::-;32349:15;;:224;;-1:-1:-1;;;32349:224:0;;-1:-1:-1;;;;;32349:15:0;;;;:66;;:224;;32430:11;;32349:15;;32500:4;;32527;;32547:15;;32349:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32616:14;32592:21;:38;;;;:::i;:::-;32584:47;31917:722;-1:-1:-1;;;;31917:722:0:o;206:548:1:-;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:131::-;-1:-1:-1;;;;;834:31:1;;824:42;;814:70;;880:1;877;870:12;814:70;759:131;:::o;895:315::-;963:6;971;1024:2;1012:9;1003:7;999:23;995:32;992:52;;;1040:1;1037;1030:12;992:52;1079:9;1066:23;1098:31;1123:5;1098:31;:::i;:::-;1148:5;1200:2;1185:18;;;;1172:32;;-1:-1:-1;;;895:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2282:247::-;2341:6;2394:2;2382:9;2373:7;2369:23;2365:32;2362:52;;;2410:1;2407;2400:12;2362:52;2449:9;2436:23;2468:31;2493:5;2468:31;:::i;:::-;2518:5;2282:247;-1:-1:-1;;;2282:247:1:o;2742:388::-;2810:6;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2926:9;2913:23;2945:31;2970:5;2945:31;:::i;:::-;2995:5;-1:-1:-1;3052:2:1;3037:18;;3024:32;3065:33;3024:32;3065:33;:::i;:::-;3117:7;3107:17;;;2742:388;;;;;:::o;3135:127::-;3196:10;3191:3;3187:20;3184:1;3177:31;3227:4;3224:1;3217:15;3251:4;3248:1;3241:15;3267:128;3334:9;;;3355:11;;;3352:37;;;3369:18;;:::i;3400:125::-;3465:9;;;3486:10;;;3483:36;;;3499:18;;:::i;3530:356::-;3732:2;3714:21;;;3751:18;;;3744:30;3810:34;3805:2;3790:18;;3783:62;3877:2;3862:18;;3530:356::o;6735:168::-;6808:9;;;6839;;6856:15;;;6850:22;;6836:37;6826:71;;6877:18;;:::i;6908:217::-;6948:1;6974;6964:132;;7018:10;7013:3;7009:20;7006:1;6999:31;7053:4;7050:1;7043:15;7081:4;7078:1;7071:15;6964:132;-1:-1:-1;7110:9:1;;6908:217::o;7262:127::-;7323:10;7318:3;7314:20;7311:1;7304:31;7354:4;7351:1;7344:15;7378:4;7375:1;7368:15;7394:251;7464:6;7517:2;7505:9;7496:7;7492:23;7488:32;7485:52;;;7533:1;7530;7523:12;7485:52;7565:9;7559:16;7584:31;7609:5;7584:31;:::i;7650:980::-;7912:4;7960:3;7949:9;7945:19;7991:6;7980:9;7973:25;8017:2;8055:6;8050:2;8039:9;8035:18;8028:34;8098:3;8093:2;8082:9;8078:18;8071:31;8122:6;8157;8151:13;8188:6;8180;8173:22;8226:3;8215:9;8211:19;8204:26;;8265:2;8257:6;8253:15;8239:29;;8286:1;8296:195;8310:6;8307:1;8304:13;8296:195;;;8375:13;;-1:-1:-1;;;;;8371:39:1;8359:52;;8466:15;;;;8431:12;;;;8407:1;8325:9;8296:195;;;-1:-1:-1;;;;;;;8547:32:1;;;;8542:2;8527:18;;8520:60;-1:-1:-1;;;8611:3:1;8596:19;8589:35;8508:3;7650:980;-1:-1:-1;;;7650:980:1:o
Swarm Source
ipfs://64d3921d17684f943f0020604f44c4d2ccbcd09d4e3613dac0f7155a4bafff8f
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.