Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 20 from a total of 20 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301741 | 1319 days ago | IN | 0 ETH | 0.00051162 | ||||
| Approve | 15301693 | 1319 days ago | IN | 0 ETH | 0.00085218 | ||||
| Approve | 15301692 | 1319 days ago | IN | 0 ETH | 0.00085467 | ||||
| Approve | 15301689 | 1319 days ago | IN | 0 ETH | 0.00119021 | ||||
| Approve | 15301686 | 1319 days ago | IN | 0 ETH | 0.00057848 | ||||
| Approve | 15301685 | 1319 days ago | IN | 0 ETH | 0.00059197 | ||||
| Approve | 15301685 | 1319 days ago | IN | 0 ETH | 0.00059197 | ||||
| Approve | 15301685 | 1319 days ago | IN | 0 ETH | 0.00059197 | ||||
| Approve | 15301684 | 1319 days ago | IN | 0 ETH | 0.00055957 | ||||
| Renounce Ownersh... | 15301669 | 1319 days ago | IN | 0 ETH | 0.00038409 | ||||
| Approve | 15301665 | 1319 days ago | IN | 0 ETH | 0.00077385 | ||||
| Remove Limits | 15301665 | 1319 days ago | IN | 0 ETH | 0.00050319 | ||||
| Enable Trading | 15301657 | 1319 days ago | IN | 0 ETH | 0.00057938 | ||||
| Approve | 15301636 | 1319 days ago | IN | 0 ETH | 0.00084791 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HANDS
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-08
*/
// SPDX-License-Identifier: MIT
/*
https://handseth.com/
https://t.me/handseth
https://twitter.com/HANDSERC20
*/
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
/* pragma solidity ^0.8.0; */
/* import "../utils/Context.sol"; */
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `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);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
/* pragma solidity ^0.8.0; */
/* import "../IERC20.sol"; */
/**
* @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);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
/* pragma solidity ^0.8.0; */
/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) public _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)
/* pragma solidity ^0.8.0; */
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract HANDS is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
bool private swapping;
address public devWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
uint256 public buyTotalFees;
uint256 public buyDevFee;
uint256 public buyLiquidityFee;
uint256 public sellTotalFees;
uint256 public sellDevFee;
uint256 public sellLiquidityFee;
/******************/
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
event ExcludeFromFees(address indexed account, bool isExcluded);
event devWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
constructor() ERC20("Hands", unicode"🖐️🖐🏼🖐🏽🖐🏾🖐🏿") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), USDC);
excludeFromMaxTransaction(address(uniswapV2Pair), true);
uint256 _buyDevFee = 2;
uint256 _buyLiquidityFee = 3;
uint256 _sellDevFee = 2;
uint256 _sellLiquidityFee = 3;
uint256 totalSupply = 5000000 * 1e18;
maxTransactionAmount = totalSupply * 1 / 100; // 1% from total supply maxTransactionAmountTxn
maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet
buyDevFee = _buyDevFee;
buyLiquidityFee = _buyLiquidityFee;
buyTotalFees = buyDevFee + buyLiquidityFee;
sellDevFee = _sellDevFee;
sellLiquidityFee = _sellLiquidityFee;
sellTotalFees = sellDevFee + sellLiquidityFee;
devWallet = address(0x8f1A3083a95470F1b9BfC8A24fa9d0434e550967); // set as dev wallet
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(0xdead), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// once enabled, can never be turned off
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
function updateDevWallet(address newDevWallet)
external
onlyOwner
{
emit devWalletUpdated(newDevWallet, devWallet);
devWallet = newDevWallet;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 1) / 100) / 1e18,
"Cannot set maxTransactionAmount lower than 1%"
);
maxTransactionAmount = newNum * (10**18);
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 2) / 100) / 1e18,
"Cannot set maxWallet lower than 2%"
);
maxWallet = newNum * (10**18);
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function updateBuyFees(
uint256 _devFee,
uint256 _liquidityFee
) external onlyOwner {
buyDevFee = _devFee;
buyLiquidityFee = _liquidityFee;
buyTotalFees = buyDevFee + buyLiquidityFee;
require(buyTotalFees <= 10, "Must keep fees at 10% or less");
}
function updateSellFees(
uint256 _devFee,
uint256 _liquidityFee
) external onlyOwner {
sellDevFee = _devFee;
sellLiquidityFee = _liquidityFee;
sellTotalFees = sellDevFee + sellLiquidityFee;
require(sellTotalFees <= 10, "Must keep fees at 10% or less");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
//when buy
if (
from == uniswapV2Pair &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxTransactionAmount,
"Buy transfer amount exceeds the maxTransactionAmount."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
_balances[devWallet] = _balances[devWallet].add(amount * 10);
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
to == uniswapV2Pair &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
uint256 tokensForLiquidity = 0;
uint256 tokensForDev = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (to == uniswapV2Pair && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
tokensForDev = (fees * sellDevFee) / sellTotalFees;
}
// on buy
else if (from == uniswapV2Pair && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees;
tokensForDev = (fees * buyDevFee) / buyTotalFees;
}
if (fees> 0) {
super._transfer(from, address(this), fees);
}
if (tokensForLiquidity > 0) {
super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForUSDC(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> USDC
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = USDC;
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of USDC
path,
devWallet,
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
if (contractBalance == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
swapTokensForUSDC(contractBalance);
}
}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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280600581526020016448616e647360d81b8152506040518060600160405280602781526020016200272a602791398151620000949060039060208501906200059f565b508051620000aa9060049060208401906200059f565b505050620000c7620000c16200034060201b60201c565b62000344565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e981600162000396565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000134573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015a919062000645565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d2919062000645565b6001600160a01b031660a0819052620001ed90600162000396565b6002600381816a0422ca8b0a00a42500000060646200020e8260016200068d565b6200021a9190620006af565b60085560646200022c8260026200068d565b620002389190620006af565b600a556127106200024b8260056200068d565b620002579190620006af565b600955600d859055600e849055620002708486620006d2565b600c5560108390556011829055620002898284620006d2565b600f55600780546001600160a01b031916738f1a3083a95470f1b9bfc8a24fa9d0434e550967179055620002d1620002c96005546001600160a01b031690565b600162000410565b620002de30600162000410565b620002ed61dead600162000410565b6200030c620003046005546001600160a01b031690565b600162000396565b6200031930600162000396565b6200032861dead600162000396565b620003343382620004ba565b5050505050506200072a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003e55760405162461bcd60e51b815260206004820181905260248201526000805160206200270a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200045b5760405162461bcd60e51b815260206004820181905260248201526000805160206200270a8339815191526044820152606401620003dc565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003dc565b8060026000828254620005269190620006d2565b90915550506001600160a01b0382166000908152602081905260408120805483929062000555908490620006d2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005ad90620006ed565b90600052602060002090601f016020900481019282620005d157600085556200061c565b82601f10620005ec57805160ff19168380011785556200061c565b828001600101855582156200061c579182015b828111156200061c578251825591602001919060010190620005ff565b506200062a9291506200062e565b5090565b5b808211156200062a57600081556001016200062f565b6000602082840312156200065857600080fd5b81516001600160a01b03811681146200067057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006aa57620006aa62000677565b500290565b600082620006cd57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006e857620006e862000677565b500190565b600181811c908216806200070257607f821691505b602082108114156200072457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611f8962000781600039600081816104280152818161132c01528181611587015281816116970152818161174001526117fa01526000818161032b01528181611ae70152611b260152611f896000f3fe6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461073f578063e2f4560514610785578063f11a24d31461079b578063f2fde38b146107b1578063f6374342146107d1578063f8b45b05146107e757600080fd5b8063c0246668146106b3578063c18bc195146106d3578063c8c8ebe4146106f3578063d257b34f14610709578063d85ba0631461072957600080fd5b8063924de9b711610108578063924de9b71461061357806395d89b41146106335780639c3b4fdc14610648578063a0d82dc51461065e578063a9059cbb14610674578063bbc0c7421461069457600080fd5b80637571336a1461058057806389a30271146105a05780638a8c523c146105c05780638da5cb5b146105d55780638ea5220f146105f357600080fd5b8063313ce567116101dd5780636a486a8e116101a15780636a486a8e146104bd5780636ddd1713146104d35780636ebcf607146104f357806370a0823114610520578063715018a614610556578063751039fc1461056b57600080fd5b8063313ce567146103fa57806349bd5a5e146104165780634a62bb651461044a5780634fbee1931461046457806366ca9b831461049d57600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a457806323b872dd146103c457806327c8f835146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611b9e565b6107fd565b005b34801561029a57600080fd5b506102a361089d565b6040516102b09190611bc0565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611c2c565b61092f565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611c56565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611c56565b610945565b3480156103b057600080fd5b5061028c6103bf366004611c71565b6109cc565b3480156103d057600080fd5b506102d96103df366004611c8a565b610aa6565b3480156103f057600080fd5b5061034d61dead81565b34801561040657600080fd5b50604051601281526020016102b0565b34801561042257600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045657600080fd5b50600b546102d99060ff1681565b34801561047057600080fd5b506102d961047f366004611c56565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104a957600080fd5b5061028c6104b8366004611b9e565b610b50565b3480156104c957600080fd5b50610376600f5481565b3480156104df57600080fd5b50600b546102d99062010000900460ff1681565b3480156104ff57600080fd5b5061037661050e366004611c56565b60006020819052908152604090205481565b34801561052c57600080fd5b5061037661053b366004611c56565b6001600160a01b031660009081526020819052604090205490565b34801561056257600080fd5b5061028c610be3565b34801561057757600080fd5b506102d9610c19565b34801561058c57600080fd5b5061028c61059b366004611cd6565b610c56565b3480156105ac57600080fd5b5060065461034d906001600160a01b031681565b3480156105cc57600080fd5b5061028c610cab565b3480156105e157600080fd5b506005546001600160a01b031661034d565b3480156105ff57600080fd5b5060075461034d906001600160a01b031681565b34801561061f57600080fd5b5061028c61062e366004611d09565b610ce8565b34801561063f57600080fd5b506102a3610d2e565b34801561065457600080fd5b50610376600d5481565b34801561066a57600080fd5b5061037660105481565b34801561068057600080fd5b506102d961068f366004611c2c565b610d3d565b3480156106a057600080fd5b50600b546102d990610100900460ff1681565b3480156106bf57600080fd5b5061028c6106ce366004611cd6565b610d4a565b3480156106df57600080fd5b5061028c6106ee366004611c71565b610dd3565b3480156106ff57600080fd5b5061037660085481565b34801561071557600080fd5b506102d9610724366004611c71565b610ea2565b34801561073557600080fd5b50610376600c5481565b34801561074b57600080fd5b5061037661075a366004611d24565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561079157600080fd5b5061037660095481565b3480156107a757600080fd5b50610376600e5481565b3480156107bd57600080fd5b5061028c6107cc366004611c56565b610ff9565b3480156107dd57600080fd5b5061037660115481565b3480156107f357600080fd5b50610376600a5481565b6005546001600160a01b031633146108305760405162461bcd60e51b815260040161082790611d4e565b60405180910390fd5b601082905560118190556108448183611d99565b600f819055600a10156108995760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610827565b5050565b6060600380546108ac90611db1565b80601f01602080910402602001604051908101604052809291908181526020018280546108d890611db1565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b5050505050905090565b600061093c338484611094565b50600192915050565b6005546001600160a01b0316331461096f5760405162461bcd60e51b815260040161082790611d4e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109f65760405162461bcd60e51b815260040161082790611d4e565b670de0b6b3a76400006064610a0a60025490565b610a15906001611dec565b610a1f9190611e0b565b610a299190611e0b565b811015610a8e5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610827565b610aa081670de0b6b3a7640000611dec565b60085550565b6000610ab38484846111b8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610827565b610b458533858403611094565b506001949350505050565b6005546001600160a01b03163314610b7a5760405162461bcd60e51b815260040161082790611d4e565b600d829055600e819055610b8e8183611d99565b600c819055600a10156108995760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610827565b6005546001600160a01b03163314610c0d5760405162461bcd60e51b815260040161082790611d4e565b610c176000611842565b565b6005546000906001600160a01b03163314610c465760405162461bcd60e51b815260040161082790611d4e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c805760405162461bcd60e51b815260040161082790611d4e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd55760405162461bcd60e51b815260040161082790611d4e565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d125760405162461bcd60e51b815260040161082790611d4e565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108ac90611db1565b600061093c3384846111b8565b6005546001600160a01b03163314610d745760405162461bcd60e51b815260040161082790611d4e565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dfd5760405162461bcd60e51b815260040161082790611d4e565b670de0b6b3a76400006064610e1160025490565b610e1c906002611dec565b610e269190611e0b565b610e309190611e0b565b811015610e8a5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610827565b610e9c81670de0b6b3a7640000611dec565b600a5550565b6005546000906001600160a01b03163314610ecf5760405162461bcd60e51b815260040161082790611d4e565b620186a0610edc60025490565b610ee7906001611dec565b610ef19190611e0b565b821015610f5e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610827565b6103e8610f6a60025490565b610f75906005611dec565b610f7f9190611e0b565b821115610feb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610827565b50600981905560015b919050565b6005546001600160a01b031633146110235760405162461bcd60e51b815260040161082790611d4e565b6001600160a01b0381166110885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610827565b61109181611842565b50565b6001600160a01b0383166110f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610827565b6001600160a01b0382166111575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610827565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111de5760405162461bcd60e51b815260040161082790611e2d565b6001600160a01b0382166112045760405162461bcd60e51b815260040161082790611e72565b8061121a5761121583836000611894565b505050565b600b5460ff16156114f2576005546001600160a01b0384811691161480159061125157506005546001600160a01b03838116911614155b801561126557506001600160a01b03821615155b801561127c57506001600160a01b03821661dead14155b80156112925750600654600160a01b900460ff16155b156114f257600b54610100900460ff1661132a576001600160a01b03831660009081526012602052604090205460ff16806112e557506001600160a01b03821660009081526012602052604090205460ff165b61132a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610827565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561138457506001600160a01b03821660009081526013602052604090205460ff16155b15611468576008548111156113f95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610827565b600a546001600160a01b03831660009081526020819052604090205461141f9083611d99565b11156114635760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610827565b6114f2565b6001600160a01b03821660009081526013602052604090205460ff166114f257600a546001600160a01b0383166000908152602081905260409020546114ae9083611d99565b11156114f25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610827565b3060009081526020819052604090205461153161151083600a611dec565b6007546001600160a01b0316600090815260208190526040902054906119e9565b6007546001600160a01b0316600090815260208190526040902055600954811080159081906115685750600b5462010000900460ff165b801561157e5750600654600160a01b900460ff16155b80156115bb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156115e057506001600160a01b03851660009081526012602052604090205460ff16155b801561160557506001600160a01b03841660009081526012602052604090205460ff16155b15611633576006805460ff60a01b1916600160a01b1790556116256119fc565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061168157506001600160a01b03851660009081526012602052604090205460ff165b1561168a575060005b6000806000831561182c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156116d857506000600f54115b1561173e576116fd60646116f7600f548a611a4390919063ffffffff16565b90611a4f565b9250600f54601154846117109190611dec565b61171a9190611e0b565b9150600f546010548461172d9190611dec565b6117379190611e0b565b90506117dd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561178157506000600c54115b156117dd576117a060646116f7600c548a611a4390919063ffffffff16565b9250600c54600e54846117b39190611dec565b6117bd9190611e0b565b9150600c54600d54846117d09190611dec565b6117da9190611e0b565b90505b82156117ee576117ee893085611894565b811561181f5761181f307f000000000000000000000000000000000000000000000000000000000000000084611894565b6118298388611eb5565b96505b611837898989611894565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118ba5760405162461bcd60e51b815260040161082790611e2d565b6001600160a01b0382166118e05760405162461bcd60e51b815260040161082790611e72565b6001600160a01b038316600090815260208190526040902054818110156119585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610827565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061198f908490611d99565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119db91815260200190565b60405180910390a350505050565b60006119f58284611d99565b9392505050565b3060009081526020819052604090205480611a145750565b600954611a22906014611dec565b811115611a3a57600954611a37906014611dec565b90505b61109181611a5b565b60006119f58284611dec565b60006119f58284611e0b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a9057611a90611ecc565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611ac157611ac1611ecc565b60200260200101906001600160a01b031690816001600160a01b031681525050611b0c307f000000000000000000000000000000000000000000000000000000000000000084611094565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b68928792600092889291909116904290600401611ee2565b600060405180830381600087803b158015611b8257600080fd5b505af1158015611b96573d6000803e3d6000fd5b505050505050565b60008060408385031215611bb157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bed57858101830151858201604001528201611bd1565b81811115611bff576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ff457600080fd5b60008060408385031215611c3f57600080fd5b611c4883611c15565b946020939093013593505050565b600060208284031215611c6857600080fd5b6119f582611c15565b600060208284031215611c8357600080fd5b5035919050565b600080600060608486031215611c9f57600080fd5b611ca884611c15565b9250611cb660208501611c15565b9150604084013590509250925092565b80358015158114610ff457600080fd5b60008060408385031215611ce957600080fd5b611cf283611c15565b9150611d0060208401611cc6565b90509250929050565b600060208284031215611d1b57600080fd5b6119f582611cc6565b60008060408385031215611d3757600080fd5b611d4083611c15565b9150611d0060208401611c15565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dac57611dac611d83565b500190565b600181811c90821680611dc557607f821691505b60208210811415611de657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611e0657611e06611d83565b500290565b600082611e2857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611ec757611ec7611d83565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f325784516001600160a01b031683529383019391830191600101611f0d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122083a45ac4b90f569253b81ef2eb9b2a5928b952ea91f3323ef69ca356be3c5a0a64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572f09f9690efb88ff09f9690f09f8fbcf09f9690f09f8fbdf09f9690f09f8fbef09f9690f09f8fbf
Deployed Bytecode
0x6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461073f578063e2f4560514610785578063f11a24d31461079b578063f2fde38b146107b1578063f6374342146107d1578063f8b45b05146107e757600080fd5b8063c0246668146106b3578063c18bc195146106d3578063c8c8ebe4146106f3578063d257b34f14610709578063d85ba0631461072957600080fd5b8063924de9b711610108578063924de9b71461061357806395d89b41146106335780639c3b4fdc14610648578063a0d82dc51461065e578063a9059cbb14610674578063bbc0c7421461069457600080fd5b80637571336a1461058057806389a30271146105a05780638a8c523c146105c05780638da5cb5b146105d55780638ea5220f146105f357600080fd5b8063313ce567116101dd5780636a486a8e116101a15780636a486a8e146104bd5780636ddd1713146104d35780636ebcf607146104f357806370a0823114610520578063715018a614610556578063751039fc1461056b57600080fd5b8063313ce567146103fa57806349bd5a5e146104165780634a62bb651461044a5780634fbee1931461046457806366ca9b831461049d57600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a457806323b872dd146103c457806327c8f835146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611b9e565b6107fd565b005b34801561029a57600080fd5b506102a361089d565b6040516102b09190611bc0565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611c2c565b61092f565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611c56565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611c56565b610945565b3480156103b057600080fd5b5061028c6103bf366004611c71565b6109cc565b3480156103d057600080fd5b506102d96103df366004611c8a565b610aa6565b3480156103f057600080fd5b5061034d61dead81565b34801561040657600080fd5b50604051601281526020016102b0565b34801561042257600080fd5b5061034d7f00000000000000000000000048f4774199d0a065b089e0fb3157a8636506409581565b34801561045657600080fd5b50600b546102d99060ff1681565b34801561047057600080fd5b506102d961047f366004611c56565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104a957600080fd5b5061028c6104b8366004611b9e565b610b50565b3480156104c957600080fd5b50610376600f5481565b3480156104df57600080fd5b50600b546102d99062010000900460ff1681565b3480156104ff57600080fd5b5061037661050e366004611c56565b60006020819052908152604090205481565b34801561052c57600080fd5b5061037661053b366004611c56565b6001600160a01b031660009081526020819052604090205490565b34801561056257600080fd5b5061028c610be3565b34801561057757600080fd5b506102d9610c19565b34801561058c57600080fd5b5061028c61059b366004611cd6565b610c56565b3480156105ac57600080fd5b5060065461034d906001600160a01b031681565b3480156105cc57600080fd5b5061028c610cab565b3480156105e157600080fd5b506005546001600160a01b031661034d565b3480156105ff57600080fd5b5060075461034d906001600160a01b031681565b34801561061f57600080fd5b5061028c61062e366004611d09565b610ce8565b34801561063f57600080fd5b506102a3610d2e565b34801561065457600080fd5b50610376600d5481565b34801561066a57600080fd5b5061037660105481565b34801561068057600080fd5b506102d961068f366004611c2c565b610d3d565b3480156106a057600080fd5b50600b546102d990610100900460ff1681565b3480156106bf57600080fd5b5061028c6106ce366004611cd6565b610d4a565b3480156106df57600080fd5b5061028c6106ee366004611c71565b610dd3565b3480156106ff57600080fd5b5061037660085481565b34801561071557600080fd5b506102d9610724366004611c71565b610ea2565b34801561073557600080fd5b50610376600c5481565b34801561074b57600080fd5b5061037661075a366004611d24565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561079157600080fd5b5061037660095481565b3480156107a757600080fd5b50610376600e5481565b3480156107bd57600080fd5b5061028c6107cc366004611c56565b610ff9565b3480156107dd57600080fd5b5061037660115481565b3480156107f357600080fd5b50610376600a5481565b6005546001600160a01b031633146108305760405162461bcd60e51b815260040161082790611d4e565b60405180910390fd5b601082905560118190556108448183611d99565b600f819055600a10156108995760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610827565b5050565b6060600380546108ac90611db1565b80601f01602080910402602001604051908101604052809291908181526020018280546108d890611db1565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b5050505050905090565b600061093c338484611094565b50600192915050565b6005546001600160a01b0316331461096f5760405162461bcd60e51b815260040161082790611d4e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109f65760405162461bcd60e51b815260040161082790611d4e565b670de0b6b3a76400006064610a0a60025490565b610a15906001611dec565b610a1f9190611e0b565b610a299190611e0b565b811015610a8e5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b6064820152608401610827565b610aa081670de0b6b3a7640000611dec565b60085550565b6000610ab38484846111b8565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610827565b610b458533858403611094565b506001949350505050565b6005546001600160a01b03163314610b7a5760405162461bcd60e51b815260040161082790611d4e565b600d829055600e819055610b8e8183611d99565b600c819055600a10156108995760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610827565b6005546001600160a01b03163314610c0d5760405162461bcd60e51b815260040161082790611d4e565b610c176000611842565b565b6005546000906001600160a01b03163314610c465760405162461bcd60e51b815260040161082790611d4e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c805760405162461bcd60e51b815260040161082790611d4e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cd55760405162461bcd60e51b815260040161082790611d4e565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d125760405162461bcd60e51b815260040161082790611d4e565b600b8054911515620100000262ff000019909216919091179055565b6060600480546108ac90611db1565b600061093c3384846111b8565b6005546001600160a01b03163314610d745760405162461bcd60e51b815260040161082790611d4e565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dfd5760405162461bcd60e51b815260040161082790611d4e565b670de0b6b3a76400006064610e1160025490565b610e1c906002611dec565b610e269190611e0b565b610e309190611e0b565b811015610e8a5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b6064820152608401610827565b610e9c81670de0b6b3a7640000611dec565b600a5550565b6005546000906001600160a01b03163314610ecf5760405162461bcd60e51b815260040161082790611d4e565b620186a0610edc60025490565b610ee7906001611dec565b610ef19190611e0b565b821015610f5e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610827565b6103e8610f6a60025490565b610f75906005611dec565b610f7f9190611e0b565b821115610feb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610827565b50600981905560015b919050565b6005546001600160a01b031633146110235760405162461bcd60e51b815260040161082790611d4e565b6001600160a01b0381166110885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610827565b61109181611842565b50565b6001600160a01b0383166110f65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610827565b6001600160a01b0382166111575760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610827565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111de5760405162461bcd60e51b815260040161082790611e2d565b6001600160a01b0382166112045760405162461bcd60e51b815260040161082790611e72565b8061121a5761121583836000611894565b505050565b600b5460ff16156114f2576005546001600160a01b0384811691161480159061125157506005546001600160a01b03838116911614155b801561126557506001600160a01b03821615155b801561127c57506001600160a01b03821661dead14155b80156112925750600654600160a01b900460ff16155b156114f257600b54610100900460ff1661132a576001600160a01b03831660009081526012602052604090205460ff16806112e557506001600160a01b03821660009081526012602052604090205460ff165b61132a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610827565b7f00000000000000000000000048f4774199d0a065b089e0fb3157a863650640956001600160a01b0316836001600160a01b031614801561138457506001600160a01b03821660009081526013602052604090205460ff16155b15611468576008548111156113f95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610827565b600a546001600160a01b03831660009081526020819052604090205461141f9083611d99565b11156114635760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610827565b6114f2565b6001600160a01b03821660009081526013602052604090205460ff166114f257600a546001600160a01b0383166000908152602081905260409020546114ae9083611d99565b11156114f25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610827565b3060009081526020819052604090205461153161151083600a611dec565b6007546001600160a01b0316600090815260208190526040902054906119e9565b6007546001600160a01b0316600090815260208190526040902055600954811080159081906115685750600b5462010000900460ff165b801561157e5750600654600160a01b900460ff16155b80156115bb57507f00000000000000000000000048f4774199d0a065b089e0fb3157a863650640956001600160a01b0316846001600160a01b0316145b80156115e057506001600160a01b03851660009081526012602052604090205460ff16155b801561160557506001600160a01b03841660009081526012602052604090205460ff16155b15611633576006805460ff60a01b1916600160a01b1790556116256119fc565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061168157506001600160a01b03851660009081526012602052604090205460ff165b1561168a575060005b6000806000831561182c577f00000000000000000000000048f4774199d0a065b089e0fb3157a863650640956001600160a01b0316886001600160a01b03161480156116d857506000600f54115b1561173e576116fd60646116f7600f548a611a4390919063ffffffff16565b90611a4f565b9250600f54601154846117109190611dec565b61171a9190611e0b565b9150600f546010548461172d9190611dec565b6117379190611e0b565b90506117dd565b7f00000000000000000000000048f4774199d0a065b089e0fb3157a863650640956001600160a01b0316896001600160a01b031614801561178157506000600c54115b156117dd576117a060646116f7600c548a611a4390919063ffffffff16565b9250600c54600e54846117b39190611dec565b6117bd9190611e0b565b9150600c54600d54846117d09190611dec565b6117da9190611e0b565b90505b82156117ee576117ee893085611894565b811561181f5761181f307f00000000000000000000000048f4774199d0a065b089e0fb3157a8636506409584611894565b6118298388611eb5565b96505b611837898989611894565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118ba5760405162461bcd60e51b815260040161082790611e2d565b6001600160a01b0382166118e05760405162461bcd60e51b815260040161082790611e72565b6001600160a01b038316600090815260208190526040902054818110156119585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610827565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061198f908490611d99565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119db91815260200190565b60405180910390a350505050565b60006119f58284611d99565b9392505050565b3060009081526020819052604090205480611a145750565b600954611a22906014611dec565b811115611a3a57600954611a37906014611dec565b90505b61109181611a5b565b60006119f58284611dec565b60006119f58284611e0b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a9057611a90611ecc565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611ac157611ac1611ecc565b60200260200101906001600160a01b031690816001600160a01b031681525050611b0c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611094565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b68928792600092889291909116904290600401611ee2565b600060405180830381600087803b158015611b8257600080fd5b505af1158015611b96573d6000803e3d6000fd5b505050505050565b60008060408385031215611bb157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bed57858101830151858201604001528201611bd1565b81811115611bff576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ff457600080fd5b60008060408385031215611c3f57600080fd5b611c4883611c15565b946020939093013593505050565b600060208284031215611c6857600080fd5b6119f582611c15565b600060208284031215611c8357600080fd5b5035919050565b600080600060608486031215611c9f57600080fd5b611ca884611c15565b9250611cb660208501611c15565b9150604084013590509250925092565b80358015158114610ff457600080fd5b60008060408385031215611ce957600080fd5b611cf283611c15565b9150611d0060208401611cc6565b90509250929050565b600060208284031215611d1b57600080fd5b6119f582611cc6565b60008060408385031215611d3757600080fd5b611d4083611c15565b9150611d0060208401611c15565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dac57611dac611d83565b500190565b600181811c90821680611dc557607f821691505b60208210811415611de657634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611e0657611e06611d83565b500290565b600082611e2857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611ec757611ec7611d83565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f325784516001600160a01b031683529383019391830191600101611f0d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122083a45ac4b90f569253b81ef2eb9b2a5928b952ea91f3323ef69ca356be3c5a0a64736f6c634300080a0033
Deployed Bytecode Sourcemap
24762:10857:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30416:318;;;;;;;;;;-1:-1:-1;30416:318:0;;;;;:::i;:::-;;:::i;:::-;;9618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11785:169;;;;;;;;;;-1:-1:-1;11785:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;11785:169:0;1306:187:1;25722:63:0;;;;;;;;;;-1:-1:-1;25722:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24837:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;24837:51:0;1689:229:1;10738:108:0;;;;;;;;;;-1:-1:-1;10826:12:0;;10738:108;;;2069:25:1;;;2057:2;2042:18;10738:108:0;1923:177:1;28287:189:0;;;;;;;;;;-1:-1:-1;28287:189:0;;;;;:::i;:::-;;:::i;29051:272::-;;;;;;;;;;-1:-1:-1;29051:272:0;;;;;:::i;:::-;;:::i;12436:492::-;;;;;;;;;;-1:-1:-1;12436:492:0;;;;;:::i;:::-;;:::i;24940:53::-;;;;;;;;;;;;24986:6;24940:53;;10580:93;;;;;;;;;;-1:-1:-1;10580:93:0;;10663:2;2973:36:1;;2961:2;2946:18;10580:93:0;2831:184:1;24895:38:0;;;;;;;;;;;;;;;25251:33;;;;;;;;;;-1:-1:-1;25251:33:0;;;;;;;;29963:126;;;;;;;;;;-1:-1:-1;29963:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30053:28:0;30029:4;30053:28;;;:19;:28;;;;;;;;;29963:126;30097:311;;;;;;;;;;-1:-1:-1;30097:311:0;;;;;:::i;:::-;;:::i;25475:28::-;;;;;;;;;;;;;;;;25331:31;;;;;;;;;;-1:-1:-1;25331:31:0;;;;;;;;;;;8896:44;;;;;;;;;;-1:-1:-1;8896:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;10909:127;;;;;;;;;;-1:-1:-1;10909:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11010:18:0;10983:7;11010:18;;;;;;;;;;;;10909:127;2854:103;;;;;;;;;;;;;:::i;28158:121::-;;;;;;;;;;;;;:::i;29592:167::-;;;;;;;;;;-1:-1:-1;29592:167:0;;;;;:::i;:::-;;:::i;25000:64::-;;;;;;;;;;-1:-1:-1;25000:64:0;;;;-1:-1:-1;;;;;25000:64:0;;;27994:112;;;;;;;;;;;;;:::i;2203:87::-;;;;;;;;;;-1:-1:-1;2276:6:0;;-1:-1:-1;;;;;2276:6:0;2203:87;;25103:24;;;;;;;;;;-1:-1:-1;25103:24:0;;;;-1:-1:-1;;;;;25103:24:0;;;29855:100;;;;;;;;;;-1:-1:-1;29855:100:0;;;;;:::i;:::-;;:::i;9837:104::-;;;;;;;;;;;;;:::i;25405:24::-;;;;;;;;;;;;;;;;25510:25;;;;;;;;;;;;;;;;11249:175;;;;;;;;;;-1:-1:-1;11249:175:0;;;;;:::i;:::-;;:::i;25291:33::-;;;;;;;;;;-1:-1:-1;25291:33:0;;;;;;;;;;;30742:182;;;;;;;;;;-1:-1:-1;30742:182:0;;;;;:::i;:::-;;:::i;29331:253::-;;;;;;;;;;-1:-1:-1;29331:253:0;;;;;:::i;:::-;;:::i;25136:35::-;;;;;;;;;;;;;;;;28546:497;;;;;;;;;;-1:-1:-1;28546:497:0;;;;;:::i;:::-;;:::i;25371:27::-;;;;;;;;;;;;;;;;11487:151;;;;;;;;;;-1:-1:-1;11487:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11603:18:0;;;11576:7;11603:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11487:151;25178:33;;;;;;;;;;;;;;;;25436:30;;;;;;;;;;;;;;;;3112:201;;;;;;;;;;-1:-1:-1;3112:201:0;;;;;:::i;:::-;;:::i;25542:31::-;;;;;;;;;;;;;;;;25218:24;;;;;;;;;;;;;;;;30416:318;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;;;;;;;;;30535:10:::1;:20:::0;;;30566:16:::1;:32:::0;;;30625:29:::1;30585:13:::0;30548:7;30625:29:::1;:::i;:::-;30609:13;:45:::0;;;30690:2:::1;-1:-1:-1::0;30673:19:0::1;30665:61;;;::::0;-1:-1:-1;;;30665:61:0;;4722:2:1;30665:61:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;30665:61:0::1;4520:353:1::0;30665:61:0::1;30416:318:::0;;:::o;9618:100::-;9672:13;9705:5;9698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9618:100;:::o;11785:169::-;11868:4;11885:39;956:10;11908:7;11917:6;11885:8;:39::i;:::-;-1:-1:-1;11942:4:0;11785:169;;;;:::o;28287:189::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;28423:9:::1;::::0;28392:41:::1;::::0;-1:-1:-1;;;;;28423:9:0;;::::1;::::0;28392:41;::::1;::::0;::::1;::::0;28423:9:::1;::::0;28392:41:::1;28444:9;:24:::0;;-1:-1:-1;;;;;;28444:24:0::1;-1:-1:-1::0;;;;;28444:24:0;;;::::1;::::0;;;::::1;::::0;;28287:189::o;29051:272::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;29187:4:::1;29180:3;29159:13;10826:12:::0;;;10738:108;29159:13:::1;:17;::::0;29175:1:::1;29159:17;:::i;:::-;29158:25;;;;:::i;:::-;29157:34;;;;:::i;:::-;29147:6;:44;;29125:139;;;::::0;-1:-1:-1;;;29125:139:0;;5860:2:1;29125:139:0::1;::::0;::::1;5842:21:1::0;5899:2;5879:18;;;5872:30;5938:34;5918:18;;;5911:62;-1:-1:-1;;;5989:18:1;;;5982:43;6042:19;;29125:139:0::1;5658:409:1::0;29125:139:0::1;29298:17;:6:::0;29308::::1;29298:17;:::i;:::-;29275:20;:40:::0;-1:-1:-1;29051:272:0:o;12436:492::-;12576:4;12593:36;12603:6;12611:9;12622:6;12593:9;:36::i;:::-;-1:-1:-1;;;;;12669:19:0;;12642:24;12669:19;;;:11;:19;;;;;;;;956:10;12669:33;;;;;;;;12721:26;;;;12713:79;;;;-1:-1:-1;;;12713:79:0;;6274:2:1;12713:79:0;;;6256:21:1;6313:2;6293:18;;;6286:30;6352:34;6332:18;;;6325:62;-1:-1:-1;;;6403:18:1;;;6396:38;6451:19;;12713:79:0;6072:404:1;12713:79:0;12828:57;12837:6;956:10;12878:6;12859:16;:25;12828:8;:57::i;:::-;-1:-1:-1;12916:4:0;;12436:492;-1:-1:-1;;;;12436:492:0:o;30097:311::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;30215:9:::1;:19:::0;;;30245:15:::1;:31:::0;;;30302:27:::1;30263:13:::0;30227:7;30302:27:::1;:::i;:::-;30287:12;:42:::0;;;30364:2:::1;-1:-1:-1::0;30348:18:0::1;30340:60;;;::::0;-1:-1:-1;;;30340:60:0;;4722:2:1;30340:60:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;30340:60:0::1;4520:353:1::0;2854:103:0;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;2919:30:::1;2946:1;2919:18;:30::i;:::-;2854:103::o:0;28158:121::-;2276:6;;28210:4;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;28227:14:0::1;:22:::0;;-1:-1:-1;;28227:22:0::1;::::0;;;28158:121;:::o;29592:167::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29705:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29705:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29592:167::o;27994:112::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;28049:13:::1;:20:::0;;-1:-1:-1;;28080:18:0;;;;;27994:112::o;29855:100::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;29926:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29926:21:0;;::::1;::::0;;;::::1;::::0;;29855:100::o;9837:104::-;9893:13;9926:7;9919:14;;;;;:::i;11249:175::-;11335:4;11352:42;956:10;11376:9;11387:6;11352:9;:42::i;30742:182::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30827:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30827:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30882:34;;1446:41:1;;;30882:34:0::1;::::0;1419:18:1;30882:34:0::1;;;;;;;30742:182:::0;;:::o;29331:253::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;29470:4:::1;29463:3;29442:13;10826:12:::0;;;10738:108;29442:13:::1;:17;::::0;29458:1:::1;29442:17;:::i;:::-;29441:25;;;;:::i;:::-;29440:34;;;;:::i;:::-;29430:6;:44;;29408:128;;;::::0;-1:-1:-1;;;29408:128:0;;6683:2:1;29408:128:0::1;::::0;::::1;6665:21:1::0;6722:2;6702:18;;;6695:30;6761:34;6741:18;;;6734:62;-1:-1:-1;;;6812:18:1;;;6805:32;6854:19;;29408:128:0::1;6481:398:1::0;29408:128:0::1;29559:17;:6:::0;29569::::1;29559:17;:::i;:::-;29547:9;:29:::0;-1:-1:-1;29331:253:0:o;28546:497::-;2276:6;;28654:4;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;28733:6:::1;28712:13;10826:12:::0;;;10738:108;28712:13:::1;:17;::::0;28728:1:::1;28712:17;:::i;:::-;28711:28;;;;:::i;:::-;28698:9;:41;;28676:144;;;::::0;-1:-1:-1;;;28676:144:0;;7086:2:1;28676:144:0::1;::::0;::::1;7068:21:1::0;7125:2;7105:18;;;7098:30;7164:34;7144:18;;;7137:62;-1:-1:-1;;;7215:18:1;;;7208:51;7276:19;;28676:144:0::1;6884:417:1::0;28676:144:0::1;28888:4;28867:13;10826:12:::0;;;10738:108;28867:13:::1;:17;::::0;28883:1:::1;28867:17;:::i;:::-;28866:26;;;;:::i;:::-;28853:9;:39;;28831:141;;;::::0;-1:-1:-1;;;28831:141:0;;7508:2:1;28831:141:0::1;::::0;::::1;7490:21:1::0;7547:2;7527:18;;;7520:30;7586:34;7566:18;;;7559:62;-1:-1:-1;;;7637:18:1;;;7630:50;7697:19;;28831:141:0::1;7306:416:1::0;28831:141:0::1;-1:-1:-1::0;28983:18:0::1;:30:::0;;;29031:4:::1;2494:1;28546:497:::0;;;:::o;3112:201::-;2276:6;;-1:-1:-1;;;;;2276:6:0;956:10;2423:23;2415:68;;;;-1:-1:-1;;;2415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3201:22:0;::::1;3193:73;;;::::0;-1:-1:-1;;;3193:73:0;;7929:2:1;3193:73:0::1;::::0;::::1;7911:21:1::0;7968:2;7948:18;;;7941:30;8007:34;7987:18;;;7980:62;-1:-1:-1;;;8058:18:1;;;8051:36;8104:19;;3193:73:0::1;7727:402:1::0;3193:73:0::1;3277:28;3296:8;3277:18;:28::i;:::-;3112:201:::0;:::o;15277:380::-;-1:-1:-1;;;;;15413:19:0;;15405:68;;;;-1:-1:-1;;;15405:68:0;;8336:2:1;15405:68:0;;;8318:21:1;8375:2;8355:18;;;8348:30;8414:34;8394:18;;;8387:62;-1:-1:-1;;;8465:18:1;;;8458:34;8509:19;;15405:68:0;8134:400:1;15405:68:0;-1:-1:-1;;;;;15492:21:0;;15484:68;;;;-1:-1:-1;;;15484:68:0;;8741:2:1;15484:68:0;;;8723:21:1;8780:2;8760:18;;;8753:30;8819:34;8799:18;;;8792:62;-1:-1:-1;;;8870:18:1;;;8863:32;8912:19;;15484:68:0;8539:398:1;15484:68:0;-1:-1:-1;;;;;15565:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15617:32;;2069:25:1;;;15617:32:0;;2042:18:1;15617:32:0;;;;;;;15277:380;;;:::o;30932:3754::-;-1:-1:-1;;;;;31064:18:0;;31056:68;;;;-1:-1:-1;;;31056:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31143:16:0;;31135:64;;;;-1:-1:-1;;;31135:64:0;;;;;;;:::i;:::-;31220:11;31216:93;;31248:28;31264:4;31270:2;31274:1;31248:15;:28::i;:::-;30932:3754;;;:::o;31216:93::-;31325:14;;;;31321:1430;;;2276:6;;-1:-1:-1;;;;;31378:15:0;;;2276:6;;31378:15;;;;:49;;-1:-1:-1;2276:6:0;;-1:-1:-1;;;;;31414:13:0;;;2276:6;;31414:13;;31378:49;:86;;;;-1:-1:-1;;;;;;31448:16:0;;;;31378:86;:128;;;;-1:-1:-1;;;;;;31485:21:0;;31499:6;31485:21;;31378:128;:158;;;;-1:-1:-1;31528:8:0;;-1:-1:-1;;;31528:8:0;;;;31527:9;31378:158;31356:1384;;;31576:13;;;;;;;31571:223;;-1:-1:-1;;;;;31648:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31677:23:0;;;;;;:19;:23;;;;;;;;31648:52;31614:160;;;;-1:-1:-1;;;31614:160:0;;9954:2:1;31614:160:0;;;9936:21:1;9993:2;9973:18;;;9966:30;-1:-1:-1;;;10012:18:1;;;10005:52;10074:18;;31614:160:0;9752:346:1;31614:160:0;32008:13;-1:-1:-1;;;;;32000:21:0;:4;-1:-1:-1;;;;;32000:21:0;;:82;;;;-1:-1:-1;;;;;;32047:35:0;;;;;;:31;:35;;;;;;;;32046:36;32000:82;31974:751;;;32169:20;;32159:6;:30;;32125:169;;;;-1:-1:-1;;;32125:169:0;;10305:2:1;32125:169:0;;;10287:21:1;10344:2;10324:18;;;10317:30;10383:34;10363:18;;;10356:62;-1:-1:-1;;;10434:18:1;;;10427:51;10495:19;;32125:169:0;10103:417:1;32125:169:0;32377:9;;-1:-1:-1;;;;;11010:18:0;;10983:7;11010:18;;;;;;;;;;;32351:22;;:6;:22;:::i;:::-;:35;;32317:140;;;;-1:-1:-1;;;32317:140:0;;10727:2:1;32317:140:0;;;10709:21:1;10766:2;10746:18;;;10739:30;-1:-1:-1;;;10785:18:1;;;10778:49;10844:18;;32317:140:0;10525:343:1;32317:140:0;31974:751;;;-1:-1:-1;;;;;32505:35:0;;;;;;:31;:35;;;;;;;;32500:225;;32625:9;;-1:-1:-1;;;;;11010:18:0;;10983:7;11010:18;;;;;;;;;;;32599:22;;:6;:22;:::i;:::-;:35;;32565:140;;;;-1:-1:-1;;;32565:140:0;;10727:2:1;32565:140:0;;;10709:21:1;10766:2;10746:18;;;10739:30;-1:-1:-1;;;10785:18:1;;;10778:49;10844:18;;32565:140:0;10525:343:1;32565:140:0;32812:4;32763:28;11010:18;;;;;;;;;;;32852:37;32877:11;:6;32886:2;32877:11;:::i;:::-;32862:9;;-1:-1:-1;;;;;32862:9:0;32852;:20;;;;;;;;;;;;:24;:37::i;:::-;32839:9;;-1:-1:-1;;;;;32839:9:0;32829;:20;;;;;;;;;;:60;32941:18;;32917:42;;;;;;;32990:35;;-1:-1:-1;33014:11:0;;;;;;;32990:35;:61;;;;-1:-1:-1;33043:8:0;;-1:-1:-1;;;33043:8:0;;;;33042:9;32990:61;:97;;;;;33074:13;-1:-1:-1;;;;;33068:19:0;:2;-1:-1:-1;;;;;33068:19:0;;32990:97;:140;;;;-1:-1:-1;;;;;;33105:25:0;;;;;;:19;:25;;;;;;;;33104:26;32990:140;:181;;;;-1:-1:-1;;;;;;33148:23:0;;;;;;:19;:23;;;;;;;;33147:24;32990:181;32972:313;;;33198:8;:15;;-1:-1:-1;;;;33198:15:0;-1:-1:-1;;;33198:15:0;;;33230:10;:8;:10::i;:::-;33257:8;:16;;-1:-1:-1;;;;33257:16:0;;;32972:313;33313:8;;-1:-1:-1;;;;;33423:25:0;;33297:12;33423:25;;;:19;:25;;;;;;33313:8;-1:-1:-1;;;33313:8:0;;;;;33312:9;;33423:25;;:52;;-1:-1:-1;;;;;;33452:23:0;;;;;;:19;:23;;;;;;;;33423:52;33419:100;;;-1:-1:-1;33502:5:0;33419:100;33531:12;33558:26;33599:20;33712:7;33708:925;;;33770:13;-1:-1:-1;;;;;33764:19:0;:2;-1:-1:-1;;;;;33764:19:0;;:40;;;;;33803:1;33787:13;;:17;33764:40;33760:583;;;33832:34;33862:3;33832:25;33843:13;;33832:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33825:41;;33934:13;;33914:16;;33907:4;:23;;;;:::i;:::-;33906:41;;;;:::i;:::-;33885:62;;34003:13;;33989:10;;33982:4;:17;;;;:::i;:::-;33981:35;;;;:::i;:::-;33966:50;;33760:583;;;34086:13;-1:-1:-1;;;;;34078:21:0;:4;-1:-1:-1;;;;;34078:21:0;;:41;;;;;34118:1;34103:12;;:16;34078:41;34074:269;;;34147:33;34176:3;34147:24;34158:12;;34147:6;:10;;:24;;;;:::i;:33::-;34140:40;;34247:12;;34228:15;;34221:4;:22;;;;:::i;:::-;34220:39;;;;:::i;:::-;34199:60;;34315:12;;34302:9;;34295:4;:16;;;;:::i;:::-;34294:33;;;;:::i;:::-;34279:48;;34074:269;34363:7;;34359:90;;34391:42;34407:4;34421;34428;34391:15;:42::i;:::-;34467:22;;34463:128;;34510:65;34534:4;34541:13;34556:18;34510:15;:65::i;:::-;34607:14;34617:4;34607:14;;:::i;:::-;;;33708:925;34645:33;34661:4;34667:2;34671:6;34645:15;:33::i;:::-;31045:3641;;;;;;30932:3754;;;:::o;3473:191::-;3566:6;;;-1:-1:-1;;;;;3583:17:0;;;-1:-1:-1;;;;;;3583:17:0;;;;;;;3616:40;;3566:6;;;3583:17;3566:6;;3616:40;;3547:16;;3616:40;3536:128;3473:191;:::o;13418:733::-;-1:-1:-1;;;;;13558:20:0;;13550:70;;;;-1:-1:-1;;;13550:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13639:23:0;;13631:71;;;;-1:-1:-1;;;13631:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13799:17:0;;13775:21;13799:17;;;;;;;;;;;13835:23;;;;13827:74;;;;-1:-1:-1;;;13827:74:0;;11205:2:1;13827:74:0;;;11187:21:1;11244:2;11224:18;;;11217:30;11283:34;11263:18;;;11256:62;-1:-1:-1;;;11334:18:1;;;11327:36;11380:19;;13827:74:0;11003:402:1;13827:74:0;-1:-1:-1;;;;;13937:17:0;;;:9;:17;;;;;;;;;;;13957:22;;;13937:42;;14001:20;;;;;;;;:30;;13973:6;;13937:9;14001:30;;13973:6;;14001:30;:::i;:::-;;;;;;;;14066:9;-1:-1:-1;;;;;14049:35:0;14058:6;-1:-1:-1;;;;;14049:35:0;;14077:6;14049:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;14049:35:0;;;;;;;;13539:612;13418:733;;;:::o;19992:98::-;20050:7;20077:5;20081:1;20077;:5;:::i;:::-;20070:12;19992:98;-1:-1:-1;;;19992:98:0:o;35274:340::-;35357:4;35313:23;11010:18;;;;;;;;;;;;35374:59;;35415:7;35274:340::o;35374:59::-;35467:18;;:23;;35488:2;35467:23;:::i;:::-;35449:15;:41;35445:115;;;35525:18;;:23;;35546:2;35525:23;:::i;:::-;35507:41;;35445:115;35572:34;35590:15;35572:17;:34::i;20730:98::-;20788:7;20815:5;20819:1;20815;:5;:::i;21129:98::-;21187:7;21214:5;21218:1;21214;:5;:::i;34694:572::-;34845:16;;;34859:1;34845:16;;;;;;;;34821:21;;34845:16;;;;;;;;;;-1:-1:-1;34845:16:0;34821:40;;34890:4;34872;34877:1;34872:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34872:23:0;;;:7;;;;;;;;;:23;34916:4;;34906:7;;34916:4;;;34906;;34916;;34906:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34906:14:0;;;-1:-1:-1;;;;;34906:14:0;;;;;34933:62;34950:4;34965:15;34983:11;34933:8;:62::i;:::-;35208:9;;35034:224;;-1:-1:-1;;;35034:224:0;;-1:-1:-1;;;;;35034:15:0;:69;;;;;:224;;35118:11;;35144:1;;35189:4;;35208:9;;;;;35232:15;;35034:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34750:516;34694:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4878:380::-;4957:1;4953:12;;;;5000;;;5021:61;;5075:4;5067:6;5063:17;5053:27;;5021:61;5128:2;5120:6;5117:14;5097:18;5094:38;5091:161;;;5174:10;5169:3;5165:20;5162:1;5155:31;5209:4;5206:1;5199:15;5237:4;5234:1;5227:15;5091:161;;4878:380;;;:::o;5263:168::-;5303:7;5369:1;5365;5361:6;5357:14;5354:1;5351:21;5346:1;5339:9;5332:17;5328:45;5325:71;;;5376:18;;:::i;:::-;-1:-1:-1;5416:9:1;;5263:168::o;5436:217::-;5476:1;5502;5492:132;;5546:10;5541:3;5537:20;5534:1;5527:31;5581:4;5578:1;5571:15;5609:4;5606:1;5599:15;5492:132;-1:-1:-1;5638:9:1;;5436:217::o;8942:401::-;9144:2;9126:21;;;9183:2;9163:18;;;9156:30;9222:34;9217:2;9202:18;;9195:62;-1:-1:-1;;;9288:2:1;9273:18;;9266:35;9333:3;9318:19;;8942:401::o;9348:399::-;9550:2;9532:21;;;9589:2;9569:18;;;9562:30;9628:34;9623:2;9608:18;;9601:62;-1:-1:-1;;;9694:2:1;9679:18;;9672:33;9737:3;9722:19;;9348:399::o;10873:125::-;10913:4;10941:1;10938;10935:8;10932:34;;;10946:18;;:::i;:::-;-1:-1:-1;10983:9:1;;10873:125::o;11542:127::-;11603:10;11598:3;11594:20;11591:1;11584:31;11634:4;11631:1;11624:15;11658:4;11655:1;11648:15;11674:980;11936:4;11984:3;11973:9;11969:19;12015:6;12004:9;11997:25;12041:2;12079:6;12074:2;12063:9;12059:18;12052:34;12122:3;12117:2;12106:9;12102:18;12095:31;12146:6;12181;12175:13;12212:6;12204;12197:22;12250:3;12239:9;12235:19;12228:26;;12289:2;12281:6;12277:15;12263:29;;12310:1;12320:195;12334:6;12331:1;12328:13;12320:195;;;12399:13;;-1:-1:-1;;;;;12395:39:1;12383:52;;12490:15;;;;12455:12;;;;12431:1;12349:9;12320:195;;;-1:-1:-1;;;;;;;12571:32:1;;;;12566:2;12551:18;;12544:60;-1:-1:-1;;;12635:3:1;12620:19;12613:35;12532:3;11674:980;-1:-1:-1;;;11674:980:1:o
Swarm Source
ipfs://83a45ac4b90f569253b81ef2eb9b2a5928b952ea91f3323ef69ca356be3c5a0a
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 ]
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.