Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
VORTEX
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-01-28
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
}
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
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);
}
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
/**
* @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;
}
}
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(
address sender,
uint256 balance,
uint256 needed
);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(
address spender,
uint256 allowance,
uint256 needed
);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(
address sender,
uint256 balance,
uint256 needed,
uint256 tokenId
);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(
address owner,
address spender
) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(
address spender,
uint256 value
) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(
address from,
address to,
uint256 value
) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(
address owner,
address spender,
uint256 value,
bool emitEvent
) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 value
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(
spender,
currentAllowance,
value
);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IUniswapV2Factory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
}
interface IUniswapV2Router {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
pragma solidity ^0.8.0;
contract VORTEX is Ownable, ERC20 {
IUniswapV2Router public immutable swapRouter;
address public constant ZERO_ADDRESS = address(0);
address public constant BURN_ADDRESS = address(0xdEaD);
address public immutable swapPair;
address public taxWallet;
address public devWallet;
bool public limitsEnabled;
bool public cooldownEnabled;
bool public feesEnabled;
bool private inSwapProcess;
bool public isActivated;
uint256 public activationBlock;
uint256 public activationTime;
uint256 private lastSwapBlock;
uint256 public constant MAX_TOTAL_FEE = 35;
uint256 public maxBuyLimit;
uint256 public maxSellLimit;
uint256 public maxWalletLimit;
uint256 public tokensForSwap;
uint256 public buyTax;
uint256 public sellTax;
uint256 public transferTax;
mapping(address => bool) public blacklistedBots;
mapping(address => bool) public excludedFromFees;
mapping(address => bool) public excludedFromLimits;
mapping(address => bool) public marketPairs;
mapping(address => uint256) private _lastTransferBlock;
event Activation();
event taxWalletUpdated(address newWallet, address oldWallet);
event DevWalletUpdated(address newWallet, address oldWallet);
event LimitsStatusChanged(bool status);
event CooldownStatusChanged(bool status);
event FeesStatusChanged(bool status);
event MaxBuyLimitUpdated(uint256 amount);
event MaxSellLimitUpdated(uint256 amount);
event MaxWalletLimitUpdated(uint256 amount);
event TokensForSwapUpdated(uint256 newValue, uint256 oldValue);
event BuyTaxUpdated(uint256 newValue, uint256 oldValue);
event SellTaxUpdated(uint256 newValue, uint256 oldValue);
event TransferTaxUpdated(uint256 newValue, uint256 oldValue);
event ExcludedFromFees(address account, bool isExcluded);
event ExcludedFromLimits(address account, bool isExcluded);
event BotStatusUpdated(address account, bool isBlacklisted);
event MarketPairStatusUpdated(address pair, bool value);
event StuckTokensWithdrawn(address token, uint256 amount);
error AlreadyActivated();
error InvalidAddress();
error AmountTooSmall();
error AmountTooLarge();
error FeeTooHigh();
error PairAlreadySet();
error NoETHToWithdraw();
error NoTokensToWithdraw();
error ETHWithdrawalFailed();
error BotActivityDetected();
error TransferCooldown();
error ExceedsMaxBuyLimit();
error ExceedsMaxSellLimit();
error ExceedsMaxWalletLimit();
error NotActivated();
modifier lockSwapProcess() {
inSwapProcess = true;
_;
inSwapProcess = false;
}
constructor() Ownable(msg.sender) ERC20("Vortex AI", "VRTX") {
address owner = msg.sender;
_mint(owner, 100_000_000 ether);
uint256 totalSupplyTokens = totalSupply();
taxWallet = 0x37F8Ef2c5F37F9d3ad940913b079ff7e31694404;
devWallet = 0x38CDf853F96ec463fF8B1e6D9b3b8c6694FEFacB;
maxBuyLimit = (totalSupplyTokens * 1) / 100;
maxSellLimit = (totalSupplyTokens * 1) / 100;
maxWalletLimit = (totalSupplyTokens * 1) / 100;
tokensForSwap = (totalSupplyTokens * 5) / 10000;
limitsEnabled = true;
cooldownEnabled = false;
feesEnabled = true;
buyTax = 25;
sellTax = 30;
transferTax = 0;
swapRouter = IUniswapV2Router(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
swapPair = IUniswapV2Factory(swapRouter.factory()).createPair(
address(this),
swapRouter.WETH()
);
_setMarketPair(swapPair, true);
_approve(address(this), address(swapRouter), type(uint256).max);
_excludeFromFees(address(this), true);
_excludeFromFees(BURN_ADDRESS, true);
_excludeFromFees(owner, true);
_excludeFromFees(taxWallet, true);
_excludeFromFees(devWallet, true);
_excludeFromLimits(address(this), true);
_excludeFromLimits(BURN_ADDRESS, true);
_excludeFromLimits(owner, true);
_excludeFromLimits(taxWallet, true);
_excludeFromLimits(devWallet, true);
}
receive() external payable {}
fallback() external payable {}
function _transferOwnership(address newOwner) internal override {
address oldOwner = owner();
if (oldOwner != ZERO_ADDRESS) {
_excludeFromFees(oldOwner, false);
_excludeFromLimits(oldOwner, false);
}
_excludeFromFees(newOwner, true);
_excludeFromLimits(newOwner, true);
super._transferOwnership(newOwner);
}
function activateTrading() external onlyOwner {
require(!isActivated, AlreadyActivated());
isActivated = true;
activationBlock = block.number;
activationTime = block.timestamp;
emit Activation();
}
function updatetaxWallet(address _taxWallet) external onlyOwner {
require(_taxWallet != ZERO_ADDRESS, InvalidAddress());
address oldWallet = taxWallet;
taxWallet = _taxWallet;
emit taxWalletUpdated(taxWallet, oldWallet);
}
function updateDevWallet(address _devWallet) external onlyOwner {
require(_devWallet != ZERO_ADDRESS, InvalidAddress());
address oldWallet = devWallet;
devWallet = _devWallet;
emit DevWalletUpdated(devWallet, oldWallet);
}
function changeLimitsEnabled(bool value) external onlyOwner {
limitsEnabled = value;
emit LimitsStatusChanged(value);
}
function changeCooldownEnabled(bool value) external onlyOwner {
cooldownEnabled = value;
emit CooldownStatusChanged(value);
}
function setFeesEnabled(bool value) external onlyOwner {
feesEnabled = value;
emit FeesStatusChanged(value);
}
function setMaxBuyLimit(uint256 amount) external onlyOwner {
maxBuyLimit = amount;
emit MaxBuyLimitUpdated(maxBuyLimit);
}
function setMaxSellLimit(uint256 amount) external onlyOwner {
maxSellLimit = amount;
emit MaxSellLimitUpdated(maxSellLimit);
}
function setMaxWalletLimit(uint256 amount) external onlyOwner {
maxWalletLimit = amount;
emit MaxWalletLimitUpdated(maxWalletLimit);
}
function setTokensForSwap(uint256 amount) external onlyOwner {
uint256 totalSupplyTokens = totalSupply();
require(amount >= (totalSupplyTokens * 1) / 1000000, AmountTooSmall());
require(amount <= (totalSupplyTokens * 5) / 1000, AmountTooLarge());
uint256 oldValue = tokensForSwap;
tokensForSwap = amount;
emit TokensForSwapUpdated(amount, oldValue);
}
function setTax(uint256 _buyTax, uint256 _sellTax) external onlyOwner {
buyTax = _buyTax;
sellTax = _sellTax;
}
function changeTransferTax(uint256 _transferTax) external onlyOwner {
uint256 oldValue = transferTax;
transferTax = _transferTax;
emit TransferTaxUpdated(_transferTax, oldValue);
}
function excludeFromFees(
address[] calldata accounts,
bool value
) external onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
_excludeFromFees(accounts[i], value);
}
}
function excludeFromLimits(
address[] calldata accounts,
bool value
) external onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
_excludeFromLimits(accounts[i], value);
}
}
function setBlacklistedBots(
address[] calldata accounts,
bool value
) external onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
if (
(!marketPairs[accounts[i]]) &&
(accounts[i] != address(swapRouter)) &&
(accounts[i] != address(this)) &&
(accounts[i] != ZERO_ADDRESS) &&
(!excludedFromFees[accounts[i]] &&
!excludedFromLimits[accounts[i]])
) _updateBotStatus(accounts[i], value);
}
}
function setMarketPair(address pair, bool value) external onlyOwner {
require(!marketPairs[pair], PairAlreadySet());
_setMarketPair(pair, value);
}
function clearStuckTokens(address _token) external onlyOwner {
address owner = msg.sender;
uint256 amount;
if (_token == ZERO_ADDRESS) {
bool success;
amount = address(this).balance;
require(amount > 0, NoETHToWithdraw());
(success, ) = address(owner).call{value: amount}("");
require(success, ETHWithdrawalFailed());
} else {
amount = IERC20(_token).balanceOf(address(this));
require(amount > 0, NoTokensToWithdraw());
IERC20(_token).transfer(msg.sender, amount);
}
emit StuckTokensWithdrawn(_token, amount);
}
function _update(
address from,
address to,
uint256 amount
) internal virtual override {
address sender = msg.sender;
address origin = tx.origin;
require(!blacklistedBots[from], BotActivityDetected());
require(
sender == from || !blacklistedBots[sender],
BotActivityDetected()
);
require(
origin == from || origin == sender || !blacklistedBots[origin],
BotActivityDetected()
);
require(
isActivated || excludedFromLimits[from] || excludedFromLimits[to],
NotActivated()
);
bool applyLimits = limitsEnabled &&
!inSwapProcess &&
!(excludedFromLimits[from] || excludedFromLimits[to]);
if (applyLimits) {
if (
from != owner() &&
to != owner() &&
to != ZERO_ADDRESS &&
to != BURN_ADDRESS
) {
if (cooldownEnabled) {
if (to != address(swapRouter) && to != swapPair) {
require(
_lastTransferBlock[origin] < block.number - 3 &&
_lastTransferBlock[to] < block.number - 3,
TransferCooldown()
);
_lastTransferBlock[origin] = block.number;
_lastTransferBlock[to] = block.number;
}
}
if (marketPairs[from] && !excludedFromLimits[to]) {
require(amount <= maxBuyLimit, ExceedsMaxBuyLimit());
require(
amount + balanceOf(to) <= maxWalletLimit,
ExceedsMaxWalletLimit()
);
} else if (marketPairs[to] && !excludedFromLimits[from]) {
require(amount <= maxSellLimit, ExceedsMaxSellLimit());
} else if (!excludedFromLimits[to]) {
require(
amount + balanceOf(to) <= maxWalletLimit,
ExceedsMaxWalletLimit()
);
}
}
}
bool applyFee = feesEnabled &&
!inSwapProcess &&
!(excludedFromFees[from] || excludedFromFees[to]);
if (applyFee) {
uint256 feeAmount = 0;
if (marketPairs[to] && sellTax > 0) {
feeAmount = (amount * sellTax) / 100;
} else if (marketPairs[from] && buyTax > 0) {
feeAmount = (amount * buyTax) / 100;
} else if (
!marketPairs[to] && !marketPairs[from] && transferTax > 0
) {
feeAmount = (amount * transferTax) / 100;
}
if (feeAmount > 0) {
amount -= feeAmount;
super._update(from, address(this), feeAmount);
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= tokensForSwap;
if (applyFee && !marketPairs[from] && canSwap) {
if (block.number > lastSwapBlock && block.number > activationBlock) {
_swapTokens(contractTokenBalance);
lastSwapBlock = block.number;
}
}
super._update(from, to, amount);
}
function _swapTokens(uint256 tokenAmount) internal virtual lockSwapProcess {
bool success;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = swapRouter.WETH();
uint256 maxSwapAmount = tokensForSwap * 20;
if (tokenAmount > maxSwapAmount) {
tokenAmount = maxSwapAmount;
}
swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
uint256 ethBalance = address(this).balance;
uint256 ethForRevenue = ethBalance / 2;
uint256 ethForDevelopment = ethBalance - ethForRevenue;
(success, ) = address(taxWallet).call{value: ethForRevenue}("");
(success, ) = address(devWallet).call{value: ethForDevelopment}("");
}
function _excludeFromFees(address account, bool value) internal virtual {
excludedFromFees[account] = value;
emit ExcludedFromFees(account, value);
}
function _excludeFromLimits(address account, bool value) internal virtual {
excludedFromLimits[account] = value;
emit ExcludedFromLimits(account, value);
}
function _updateBotStatus(address account, bool value) internal virtual {
blacklistedBots[account] = value;
emit BotStatusUpdated(account, value);
}
function _setMarketPair(address pair, bool value) internal virtual {
marketPairs[pair] = value;
emit MarketPairStatusUpdated(pair, value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyActivated","type":"error"},{"inputs":[],"name":"AmountTooLarge","type":"error"},{"inputs":[],"name":"AmountTooSmall","type":"error"},{"inputs":[],"name":"BotActivityDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"ETHWithdrawalFailed","type":"error"},{"inputs":[],"name":"ExceedsMaxBuyLimit","type":"error"},{"inputs":[],"name":"ExceedsMaxSellLimit","type":"error"},{"inputs":[],"name":"ExceedsMaxWalletLimit","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"NoETHToWithdraw","type":"error"},{"inputs":[],"name":"NoTokensToWithdraw","type":"error"},{"inputs":[],"name":"NotActivated","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"PairAlreadySet","type":"error"},{"inputs":[],"name":"TransferCooldown","type":"error"},{"anonymous":false,"inputs":[],"name":"Activation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BotStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"BuyTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"CooldownStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"FeesStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"LimitsStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"MarketPairStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxBuyLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxSellLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxWalletLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SellTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StuckTokensWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"TokensForSwapUpdated","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":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"TransferTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"taxWalletUpdated","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activationBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activationTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"changeCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"changeLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferTax","type":"uint256"}],"name":"changeTransferTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"clearStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlacklistedBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTokensForSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"transferTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"updatetaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c060405234801561000f575f5ffd5b506040805180820182526009815268566f7274657820414960b81b602080830191909152825180840190935260048352630aca4a8b60e31b9083015290338061007257604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61007b816103be565b5060046100888382611146565b5060056100958282611146565b503391506100b09050816a52b7d2dcc80cd2e4000000610406565b5f6100ba60035490565b600680546001600160a01b03199081167337f8ef2c5f37f9d3ad940913b079ff7e3169440417909155600780549091167338cdf853f96ec463ff8b1e6d9b3b8c6694fefacb17905590506064610111826001611214565b61011b9190611231565b600b55606461012b826001611214565b6101359190611231565b600c556064610145826001611214565b61014f9190611231565b600d55612710610160826005611214565b61016a9190611231565b600e556007805462ffffff60a01b19166201000160a01b1790556019600f55601e6010555f601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101e5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102099190611250565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610256573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027a9190611250565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102e89190611250565b6001600160a01b031660a081905261030190600161043a565b610315306080515f1961049d60201b60201c565b6103203060016104af565b61032d61dead60016104af565b6103388260016104af565b60065461034f906001600160a01b031660016104af565b600754610366906001600160a01b031660016104af565b61037130600161050a565b61037e61dead600161050a565b61038982600161050a565b6006546103a0906001600160a01b0316600161050a565b6007546103b7906001600160a01b0316600161050a565b5050611327565b5f546001600160a01b031680156103e3576103d9815f6104af565b6103e3815f61050a565b6103ee8260016104af565b6103f982600161050a565b61040282610565565b5050565b6001600160a01b03821661042f5760405163ec442f0560e01b81525f6004820152602401610069565b6104025f83836105b4565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527f024f6c8d60a57c94822c46d989fd6935057590269281b07fe8327d7e9bc4242191015b60405180910390a15050565b6104aa8383836001610c5e565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb9101610491565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e068709101610491565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156105f157604051631a30f03760e31b815260040160405180910390fd5b846001600160a01b0316826001600160a01b0316148061062957506001600160a01b0382165f9081526012602052604090205460ff16155b61064657604051631a30f03760e31b815260040160405180910390fd5b846001600160a01b0316816001600160a01b031614806106775750816001600160a01b0316816001600160a01b0316145b8061069a57506001600160a01b0381165f9081526012602052604090205460ff16155b6106b757604051631a30f03760e31b815260040160405180910390fd5b600754600160c01b900460ff16806106e657506001600160a01b0385165f9081526014602052604090205460ff165b8061070857506001600160a01b0384165f9081526014602052604090205460ff165b6107255760405163037c597f60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff16801561074a5750600754600160b81b900460ff16155b801561079057506001600160a01b0386165f9081526014602052604090205460ff168061078e57506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015610a4f575f546001600160a01b038781169116148015906107c257505f546001600160a01b03868116911614155b80156107d657506001600160a01b03851615155b80156107ed57506001600160a01b03851661dead14155b15610a4f57600754600160a81b900460ff16156108d5576080516001600160a01b0316856001600160a01b03161415801561083c575060a0516001600160a01b0316856001600160a01b031614155b156108d55761084c60034361127d565b6001600160a01b0383165f90815260166020526040902054108015610891575061087760034361127d565b6001600160a01b0386165f90815260166020526040902054105b6108ae576040516329a226cf60e11b815260040160405180910390fd5b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff16801561091457506001600160a01b0385165f9081526014602052604090205460ff16155b1561098557600b5484111561093c576040516344df090f60e11b815260040160405180910390fd5b600d546001600160a01b0386165f908152600160205260409020546109619086611290565b111561098057604051633b63e02960e11b815260040160405180910390fd5b610a4f565b6001600160a01b0385165f9081526015602052604090205460ff1680156109c457506001600160a01b0386165f9081526014602052604090205460ff16155b156109ec57600c5484111561098057604051630a8e28e160e41b815260040160405180910390fd5b6001600160a01b0385165f9081526014602052604090205460ff16610a4f57600d546001600160a01b0386165f90815260016020526040902054610a309086611290565b1115610a4f57604051633b63e02960e11b815260040160405180910390fd5b6007545f90600160b01b900460ff168015610a745750600754600160b81b900460ff16155b8015610aba57506001600160a01b0387165f9081526013602052604090205460ff1680610ab857506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015610bdb576001600160a01b0386165f9081526015602052604081205460ff168015610aea57505f601054115b15610b1057606460105487610aff9190611214565b610b099190611231565b9050610bbc565b6001600160a01b0388165f9081526015602052604090205460ff168015610b3857505f600f54115b15610b4d576064600f5487610aff9190611214565b6001600160a01b0387165f9081526015602052604090205460ff16158015610b8d57506001600160a01b0388165f9081526015602052604090205460ff16155b8015610b9a57505f601154115b15610bbc57606460115487610baf9190611214565b610bb99190611231565b90505b8015610bd957610bcc818761127d565b9550610bd9883083610d31565b505b305f90815260016020526040902054600e54811015828015610c1557506001600160a01b0389165f9081526015602052604090205460ff16155b8015610c1e5750805b15610c4857600a5443118015610c35575060085443115b15610c4857610c4382610e57565b43600a555b610c53898989610d31565b505050505050505050565b6001600160a01b038416610c875760405163e602df0560e01b81525f6004820152602401610069565b6001600160a01b038316610cb057604051634a1406b160e11b81525f6004820152602401610069565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610d2b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d2291815260200190565b60405180910390a35b50505050565b6001600160a01b038316610d5b578060035f828254610d509190611290565b90915550610dcb9050565b6001600160a01b0383165f9081526001602052604090205481811015610dad5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610069565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610de757600380548290039055610e05565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4a91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610ea157610ea16112a3565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eff573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f239190611250565b81600181518110610f3657610f366112a3565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e546014610f669190611214565b905080841115610f74578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401610faa9594939291906112b7565b5f604051808303815f87803b158015610fc1575f5ffd5b505af1158015610fd3573d5f5f3e3d5ffd5b504792505f9150610fe79050600283611231565b90505f610ff4828461127d565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f811461103f576040519150601f19603f3d011682016040523d82523d5f602084013e611044565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f8114611091576040519150601f19603f3d011682016040523d82523d5f602084013e611096565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806110d757607f821691505b6020821081036110f557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104aa57805f5260205f20601f840160051c810160208510156111205750805b601f840160051c820191505b8181101561113f575f815560010161112c565b5050505050565b81516001600160401b0381111561115f5761115f6110af565b6111738161116d84546110c3565b846110fb565b6020601f8211600181146111a5575f831561118e5750848201515b5f19600385901b1c1916600184901b17845561113f565b5f84815260208120601f198516915b828110156111d457878501518255602094850194600190920191016111b4565b50848210156111f157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761122b5761122b611200565b92915050565b5f8261124b57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611260575f5ffd5b81516001600160a01b0381168114611276575f5ffd5b9392505050565b8181038181111561122b5761122b611200565b8082018082111561122b5761122b611200565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156113075783516001600160a01b03168352602093840193909201916001016112e0565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05161266261136b5f395f81816104330152611a3c01525f818161084401528181610c18015281816119ff01528181612074015261215a01526126625ff3fe6080604052600436106102f5575f3560e01c8063728d41c911610195578063a985ceef116100ea578063da0103bd1161008e578063dd62ed3e1161006b578063dd62ed3e146108fc578063f2fde38b14610940578063f5fc361c1461095f578063fccc28131461097e57005b8063da0103bd1461089a578063da4493f6146108b9578063dbe66ca0146108ce57005b8063c16dd4a4116100c7578063c16dd4a414610814578063c31c9c0714610833578063cc1776d314610866578063ce657cce1461087b57005b8063a985ceef146107a7578063ad29ffde146107c7578063b4b11b95146107e657005b80638da5cb5b11610151578063a49a910f1161012e578063a49a910f1461072a578063a64e4f8a14610749578063a901dd9214610769578063a9059cbb1461078857005b80638da5cb5b146106db5780638ea5220f146106f757806395d89b411461071657005b8063728d41c914610631578063757765f8146106505780637b812b411461066f5780637f635cc01461069d57806380faa3d2146106b15780638124f7ac146106c657005b8063346cc7be1161024b578063652e2f041161020757806368b69b9b116101e457806368b69b9b146105b55780636aa5b37f146105d457806370a08231146105e9578063715018a61461061d57005b8063652e2f041461056c578063667f65261461058157806366a88d96146105a057005b8063346cc7be146104c65780633582ad23146104e557806336884b6e146105055780634a8c1fb4146105245780634f7041a514610544578063538ba4f91461055957005b80631ecd7d6e116102b257806326991cc81161028f57806326991cc8146104225780632dc0562d1461046d5780632f6f30ea1461048c578063313ce567146104ab57005b80631ecd7d6e146103c057806323b872dd146103d5578063259827e3146103f457005b806306fdde03146102f7578063095ea7b3146103215780630bd05b6914610350578063106a5a8f1461036457806318160ddd146103835780631816467f146103a1575b005b348015610302575f5ffd5b5061030b610993565b604051610318919061229c565b60405180910390f35b34801561032c575f5ffd5b5061034061033b3660046122e5565b610a23565b6040519015158152602001610318565b34801561035b575f5ffd5b506102f5610a3c565b34801561036f575f5ffd5b506102f561037e36600461231c565b610ab4565b34801561038e575f5ffd5b506003545b604051908152602001610318565b3480156103ac575f5ffd5b506102f56103bb36600461239e565b610b04565b3480156103cb575f5ffd5b50610393600e5481565b3480156103e0575f5ffd5b506103406103ef3660046123c0565b610b93565b3480156103ff575f5ffd5b5061034061040e36600461239e565b60126020525f908152604090205460ff1681565b34801561042d575f5ffd5b506104557f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610318565b348015610478575f5ffd5b50600654610455906001600160a01b031681565b348015610497575f5ffd5b506102f56104a636600461231c565b610bb6565b3480156104b6575f5ffd5b5060405160128152602001610318565b3480156104d1575f5ffd5b506102f56104e036600461239e565b610dc3565b3480156104f0575f5ffd5b5060075461034090600160a01b900460ff1681565b348015610510575f5ffd5b506102f561051f3660046123fe565b610fb1565b34801561052f575f5ffd5b5060075461034090600160c01b900460ff1681565b34801561054f575f5ffd5b50610393600f5481565b348015610564575f5ffd5b506104555f81565b348015610577575f5ffd5b50610393600c5481565b34801561058c575f5ffd5b506102f561059b366004612415565b610ff5565b3480156105ab575f5ffd5b50610393600d5481565b3480156105c0575f5ffd5b506102f56105cf366004612435565b611008565b3480156105df575f5ffd5b50610393600b5481565b3480156105f4575f5ffd5b5061039361060336600461239e565b6001600160a01b03165f9081526001602052604090205490565b348015610628575f5ffd5b506102f561105d565b34801561063c575f5ffd5b506102f561064b3660046123fe565b611070565b34801561065b575f5ffd5b506102f561066a3660046123fe565b6110ad565b34801561067a575f5ffd5b5061034061068936600461239e565b60146020525f908152604090205460ff1681565b3480156106a8575f5ffd5b50610393602381565b3480156106bc575f5ffd5b5061039360085481565b3480156106d1575f5ffd5b5061039360115481565b3480156106e6575f5ffd5b505f546001600160a01b0316610455565b348015610702575f5ffd5b50600754610455906001600160a01b031681565b348015610721575f5ffd5b5061030b6110ea565b348015610735575f5ffd5b506102f56107443660046123fe565b6110f9565b348015610754575f5ffd5b5060075461034090600160b01b900460ff1681565b348015610774575f5ffd5b506102f5610783366004612435565b6111bc565b348015610793575f5ffd5b506103406107a23660046122e5565b611211565b3480156107b2575f5ffd5b5060075461034090600160a81b900460ff1681565b3480156107d2575f5ffd5b506102f56107e136600461231c565b61121e565b3480156107f1575f5ffd5b5061034061080036600461239e565b60156020525f908152604090205460ff1681565b34801561081f575f5ffd5b506102f561082e366004612450565b611268565b34801561083e575f5ffd5b506104557f000000000000000000000000000000000000000000000000000000000000000081565b348015610871575f5ffd5b5061039360105481565b348015610886575f5ffd5b506102f5610895366004612435565b6112b7565b3480156108a5575f5ffd5b506102f56108b43660046123fe565b61130c565b3480156108c4575f5ffd5b5061039360095481565b3480156108d9575f5ffd5b506103406108e836600461239e565b60136020525f908152604090205460ff1681565b348015610907575f5ffd5b50610393610916366004612487565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561094b575f5ffd5b506102f561095a36600461239e565b611352565b34801561096a575f5ffd5b506102f561097936600461239e565b611394565b348015610989575f5ffd5b5061045561dead81565b6060600480546109a2906124b3565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce906124b3565b8015610a195780601f106109f057610100808354040283529160200191610a19565b820191905f5260205f20905b8154815290600101906020018083116109fc57829003601f168201915b5050505050905090565b5f33610a3081858561141b565b60019150505b92915050565b610a4461142d565b600754600160c01b900460ff1615610a6f5760405163ef65161f60e01b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f6603428d483ce13b6662b7a6848d769996e12e801bed4b0f1b9e8d10f64d38ba905f90a1565b610abc61142d565b5f5b82811015610afe57610af6848483818110610adb57610adb6124eb565b9050602002016020810190610af0919061239e565b83611459565b600101610abe565b50505050565b610b0c61142d565b6001600160a01b038116610b335760405163e6c4247b60e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87191015b60405180910390a15050565b5f33610ba08582856114b4565b610bab858585611529565b506001949350505050565b610bbe61142d565b5f5b82811015610afe5760155f858584818110610bdd57610bdd6124eb565b9050602002016020810190610bf2919061239e565b6001600160a01b0316815260208101919091526040015f205460ff16158015610c7357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610c5257610c526124eb565b9050602002016020810190610c67919061239e565b6001600160a01b031614155b8015610cae575030848483818110610c8d57610c8d6124eb565b9050602002016020810190610ca2919061239e565b6001600160a01b031614155b8015610ce957505f848483818110610cc857610cc86124eb565b9050602002016020810190610cdd919061239e565b6001600160a01b031614155b8015610d86575060135f858584818110610d0557610d056124eb565b9050602002016020810190610d1a919061239e565b6001600160a01b0316815260208101919091526040015f205460ff16158015610d86575060145f858584818110610d5357610d536124eb565b9050602002016020810190610d68919061239e565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610dbb57610dbb848483818110610da057610da06124eb565b9050602002016020810190610db5919061239e565b83611586565b600101610bc0565b610dcb61142d565b335f6001600160a01b038316610e715750475f81610dfc5760405163cff858f960e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114610e42576040519150601f19603f3d011682016040523d82523d5f602084013e610e47565b606091505b50508091505080610e6b57604051634088176760e11b815260040160405180910390fd5b50610f69565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610eb3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed791906124ff565b90505f8111610ef957604051637dd28aa760e11b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015610f43573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f679190612516565b505b604080516001600160a01b0385168152602081018390527f7aba7eca7d870d5f2f93298379a43957082ef15cdcf64db1f7c731c6b3a2fa4991015b60405180910390a1505050565b610fb961142d565b600c8190556040518181527f1f41d239159181ddefb13e99853e0e4998e0556aa1f2281281c783e309281062906020015b60405180910390a150565b610ffd61142d565b600f91909155601055565b61101061142d565b60078054821515600160a81b0260ff60a81b199091161790556040517f6a53d6c83a7a55d7a07bd490493fceb559161cce588908714e497e54044777d990610fea90831515815260200190565b61106561142d565b61106e5f6115e1565b565b61107861142d565b600d8190556040518181527fe2e6151ed0b472c61401059745339ca42474813911b22d24023385def6377e1c90602001610fea565b6110b561142d565b600b8190556040518181527f85668e92bc538f5c140067d68e3375c65b9e4545d2822ec8d807c6782f747d6290602001610fea565b6060600580546109a2906124b3565b61110161142d565b5f61110b60035490565b9050620f424061111c826001612545565b611126919061255c565b8210156111465760405163617ab12d60e11b815260040160405180910390fd5b6103e8611154826005612545565b61115e919061255c565b82111561117e57604051630625040160e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f65a8c7442ea496b0a28890f1ef48a9819d1f5d747e9a8df155fe862dfd493c959101610fa4565b6111c461142d565b60078054821515600160b01b0260ff60b01b199091161790556040517fa6a3dda702515d3130fef8b72d8e25f9aebd0d02e89d10d63c0c31d80b52f4a090610fea90831515815260200190565b5f33610a30818585611529565b61122661142d565b5f5b82811015610afe57611260848483818110611245576112456124eb565b905060200201602081019061125a919061239e565b83611625565b600101611228565b61127061142d565b6001600160a01b0382165f9081526015602052604090205460ff16156112a957604051630138835f60e11b815260040160405180910390fd5b6112b38282611680565b5050565b6112bf61142d565b60078054821515600160a01b0260ff60a01b199091161790556040517f1da197dc3cab4eceaefd5d0c34df2ed3a08f20a207fb1910c0eceb361e2c965c90610fea90831515815260200190565b61131461142d565b601180549082905560408051838152602081018390527f6a7b998a4adc393cb692c67fcd563e7971e2ea6f3fe7c9b8fb6dd53cf5b627d09101610b87565b61135a61142d565b6001600160a01b03811661138857604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b611391816115e1565b50565b61139c61142d565b6001600160a01b0381166113c35760405163e6c4247b60e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fb3dd4b0ccf73b51db7cb2a59fb88d1082b0fa9389d4ce0e85100fe3b26af78c49101610b87565b61142883838360016116db565b505050565b5f546001600160a01b0316331461106e5760405163118cdaa760e01b815233600482015260240161137f565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e068709101610b87565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610afe578181101561151b57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161137f565b610afe84848484035f6116db565b6001600160a01b03831661155257604051634b637e8f60e11b81525f600482015260240161137f565b6001600160a01b03821661157b5760405163ec442f0560e01b81525f600482015260240161137f565b6114288383836117ad565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527f066e0c23b9ae0bb92a88e9b0985bb7d85fce062730057312b99a9e243fde5ee19101610b87565b5f546001600160a01b03168015611606576115fc815f611625565b611606815f611459565b611611826001611625565b61161c826001611459565b6112b382611e93565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb9101610b87565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527f024f6c8d60a57c94822c46d989fd6935057590269281b07fe8327d7e9bc424219101610b87565b6001600160a01b0384166117045760405163e602df0560e01b81525f600482015260240161137f565b6001600160a01b03831661172d57604051634a1406b160e11b81525f600482015260240161137f565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610afe57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161179f91815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156117ea57604051631a30f03760e31b815260040160405180910390fd5b846001600160a01b0316826001600160a01b0316148061182257506001600160a01b0382165f9081526012602052604090205460ff16155b61183f57604051631a30f03760e31b815260040160405180910390fd5b846001600160a01b0316816001600160a01b031614806118705750816001600160a01b0316816001600160a01b0316145b8061189357506001600160a01b0381165f9081526012602052604090205460ff16155b6118b057604051631a30f03760e31b815260040160405180910390fd5b600754600160c01b900460ff16806118df57506001600160a01b0385165f9081526014602052604090205460ff165b8061190157506001600160a01b0384165f9081526014602052604090205460ff165b61191e5760405163037c597f60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff1680156119435750600754600160b81b900460ff16155b801561198957506001600160a01b0386165f9081526014602052604090205460ff168061198757506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015611c84575f546001600160a01b038781169116148015906119bb57505f546001600160a01b03868116911614155b80156119cf57506001600160a01b03851615155b80156119e657506001600160a01b03851661dead14155b15611c8457600754600160a81b900460ff1615611b0a577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614158015611a7157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611b0a57611a8160034361257b565b6001600160a01b0383165f90815260166020526040902054108015611ac65750611aac60034361257b565b6001600160a01b0386165f90815260166020526040902054105b611ae3576040516329a226cf60e11b815260040160405180910390fd5b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff168015611b4957506001600160a01b0385165f9081526014602052604090205460ff16155b15611bba57600b54841115611b71576040516344df090f60e11b815260040160405180910390fd5b600d546001600160a01b0386165f90815260016020526040902054611b96908661258e565b1115611bb557604051633b63e02960e11b815260040160405180910390fd5b611c84565b6001600160a01b0385165f9081526015602052604090205460ff168015611bf957506001600160a01b0386165f9081526014602052604090205460ff16155b15611c2157600c54841115611bb557604051630a8e28e160e41b815260040160405180910390fd5b6001600160a01b0385165f9081526014602052604090205460ff16611c8457600d546001600160a01b0386165f90815260016020526040902054611c65908661258e565b1115611c8457604051633b63e02960e11b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611ca95750600754600160b81b900460ff16155b8015611cef57506001600160a01b0387165f9081526013602052604090205460ff1680611ced57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015611e10576001600160a01b0386165f9081526015602052604081205460ff168015611d1f57505f601054115b15611d4557606460105487611d349190612545565b611d3e919061255c565b9050611df1565b6001600160a01b0388165f9081526015602052604090205460ff168015611d6d57505f600f54115b15611d82576064600f5487611d349190612545565b6001600160a01b0387165f9081526015602052604090205460ff16158015611dc257506001600160a01b0388165f9081526015602052604090205460ff16155b8015611dcf57505f601154115b15611df157606460115487611de49190612545565b611dee919061255c565b90505b8015611e0e57611e01818761257b565b9550611e0e883083611ee2565b505b305f90815260016020526040902054600e54811015828015611e4a57506001600160a01b0389165f9081526015602052604090205460ff16155b8015611e535750805b15611e7d57600a5443118015611e6a575060085443115b15611e7d57611e7882612008565b43600a555b611e88898989611ee2565b505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316611f0c578060035f828254611f01919061258e565b90915550611f7c9050565b6001600160a01b0383165f9081526001602052604090205481811015611f5e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161137f565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216611f9857600380548290039055611fb6565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ffb91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110612052576120526124eb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120ce573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120f291906125a1565b81600181518110612105576121056124eb565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460146121359190612545565b905080841115612143578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906121979087905f908790309042906004016125bc565b5f604051808303815f87803b1580156121ae575f5ffd5b505af11580156121c0573d5f5f3e3d5ffd5b504792505f91506121d4905060028361255c565b90505f6121e1828461257b565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f811461222c576040519150601f19603f3d011682016040523d82523d5f602084013e612231565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f811461227e576040519150601f19603f3d011682016040523d82523d5f602084013e612283565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611391575f5ffd5b5f5f604083850312156122f6575f5ffd5b8235612301816122d1565b946020939093013593505050565b8015158114611391575f5ffd5b5f5f5f6040848603121561232e575f5ffd5b833567ffffffffffffffff811115612344575f5ffd5b8401601f81018613612354575f5ffd5b803567ffffffffffffffff81111561236a575f5ffd5b8660208260051b840101111561237e575f5ffd5b6020918201945092508401356123938161230f565b809150509250925092565b5f602082840312156123ae575f5ffd5b81356123b9816122d1565b9392505050565b5f5f5f606084860312156123d2575f5ffd5b83356123dd816122d1565b925060208401356123ed816122d1565b929592945050506040919091013590565b5f6020828403121561240e575f5ffd5b5035919050565b5f5f60408385031215612426575f5ffd5b50508035926020909101359150565b5f60208284031215612445575f5ffd5b81356123b98161230f565b5f5f60408385031215612461575f5ffd5b823561246c816122d1565b9150602083013561247c8161230f565b809150509250929050565b5f5f60408385031215612498575f5ffd5b82356124a3816122d1565b9150602083013561247c816122d1565b600181811c908216806124c757607f821691505b6020821081036124e557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561250f575f5ffd5b5051919050565b5f60208284031215612526575f5ffd5b81516123b98161230f565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a3657610a36612531565b5f8261257657634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610a3657610a36612531565b80820180821115610a3657610a36612531565b5f602082840312156125b1575f5ffd5b81516123b9816122d1565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561260c5783516001600160a01b03168352602093840193909201916001016125e5565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220bf08ce791baed7b2895c58ef63ea0cd4d4c6dba9653a82dc2e91c34b0557aeab64736f6c634300081c0033
Deployed Bytecode
0x6080604052600436106102f5575f3560e01c8063728d41c911610195578063a985ceef116100ea578063da0103bd1161008e578063dd62ed3e1161006b578063dd62ed3e146108fc578063f2fde38b14610940578063f5fc361c1461095f578063fccc28131461097e57005b8063da0103bd1461089a578063da4493f6146108b9578063dbe66ca0146108ce57005b8063c16dd4a4116100c7578063c16dd4a414610814578063c31c9c0714610833578063cc1776d314610866578063ce657cce1461087b57005b8063a985ceef146107a7578063ad29ffde146107c7578063b4b11b95146107e657005b80638da5cb5b11610151578063a49a910f1161012e578063a49a910f1461072a578063a64e4f8a14610749578063a901dd9214610769578063a9059cbb1461078857005b80638da5cb5b146106db5780638ea5220f146106f757806395d89b411461071657005b8063728d41c914610631578063757765f8146106505780637b812b411461066f5780637f635cc01461069d57806380faa3d2146106b15780638124f7ac146106c657005b8063346cc7be1161024b578063652e2f041161020757806368b69b9b116101e457806368b69b9b146105b55780636aa5b37f146105d457806370a08231146105e9578063715018a61461061d57005b8063652e2f041461056c578063667f65261461058157806366a88d96146105a057005b8063346cc7be146104c65780633582ad23146104e557806336884b6e146105055780634a8c1fb4146105245780634f7041a514610544578063538ba4f91461055957005b80631ecd7d6e116102b257806326991cc81161028f57806326991cc8146104225780632dc0562d1461046d5780632f6f30ea1461048c578063313ce567146104ab57005b80631ecd7d6e146103c057806323b872dd146103d5578063259827e3146103f457005b806306fdde03146102f7578063095ea7b3146103215780630bd05b6914610350578063106a5a8f1461036457806318160ddd146103835780631816467f146103a1575b005b348015610302575f5ffd5b5061030b610993565b604051610318919061229c565b60405180910390f35b34801561032c575f5ffd5b5061034061033b3660046122e5565b610a23565b6040519015158152602001610318565b34801561035b575f5ffd5b506102f5610a3c565b34801561036f575f5ffd5b506102f561037e36600461231c565b610ab4565b34801561038e575f5ffd5b506003545b604051908152602001610318565b3480156103ac575f5ffd5b506102f56103bb36600461239e565b610b04565b3480156103cb575f5ffd5b50610393600e5481565b3480156103e0575f5ffd5b506103406103ef3660046123c0565b610b93565b3480156103ff575f5ffd5b5061034061040e36600461239e565b60126020525f908152604090205460ff1681565b34801561042d575f5ffd5b506104557f000000000000000000000000ef55d2a23c25522308bce10678877bad1fc141a481565b6040516001600160a01b039091168152602001610318565b348015610478575f5ffd5b50600654610455906001600160a01b031681565b348015610497575f5ffd5b506102f56104a636600461231c565b610bb6565b3480156104b6575f5ffd5b5060405160128152602001610318565b3480156104d1575f5ffd5b506102f56104e036600461239e565b610dc3565b3480156104f0575f5ffd5b5060075461034090600160a01b900460ff1681565b348015610510575f5ffd5b506102f561051f3660046123fe565b610fb1565b34801561052f575f5ffd5b5060075461034090600160c01b900460ff1681565b34801561054f575f5ffd5b50610393600f5481565b348015610564575f5ffd5b506104555f81565b348015610577575f5ffd5b50610393600c5481565b34801561058c575f5ffd5b506102f561059b366004612415565b610ff5565b3480156105ab575f5ffd5b50610393600d5481565b3480156105c0575f5ffd5b506102f56105cf366004612435565b611008565b3480156105df575f5ffd5b50610393600b5481565b3480156105f4575f5ffd5b5061039361060336600461239e565b6001600160a01b03165f9081526001602052604090205490565b348015610628575f5ffd5b506102f561105d565b34801561063c575f5ffd5b506102f561064b3660046123fe565b611070565b34801561065b575f5ffd5b506102f561066a3660046123fe565b6110ad565b34801561067a575f5ffd5b5061034061068936600461239e565b60146020525f908152604090205460ff1681565b3480156106a8575f5ffd5b50610393602381565b3480156106bc575f5ffd5b5061039360085481565b3480156106d1575f5ffd5b5061039360115481565b3480156106e6575f5ffd5b505f546001600160a01b0316610455565b348015610702575f5ffd5b50600754610455906001600160a01b031681565b348015610721575f5ffd5b5061030b6110ea565b348015610735575f5ffd5b506102f56107443660046123fe565b6110f9565b348015610754575f5ffd5b5060075461034090600160b01b900460ff1681565b348015610774575f5ffd5b506102f5610783366004612435565b6111bc565b348015610793575f5ffd5b506103406107a23660046122e5565b611211565b3480156107b2575f5ffd5b5060075461034090600160a81b900460ff1681565b3480156107d2575f5ffd5b506102f56107e136600461231c565b61121e565b3480156107f1575f5ffd5b5061034061080036600461239e565b60156020525f908152604090205460ff1681565b34801561081f575f5ffd5b506102f561082e366004612450565b611268565b34801561083e575f5ffd5b506104557f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610871575f5ffd5b5061039360105481565b348015610886575f5ffd5b506102f5610895366004612435565b6112b7565b3480156108a5575f5ffd5b506102f56108b43660046123fe565b61130c565b3480156108c4575f5ffd5b5061039360095481565b3480156108d9575f5ffd5b506103406108e836600461239e565b60136020525f908152604090205460ff1681565b348015610907575f5ffd5b50610393610916366004612487565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561094b575f5ffd5b506102f561095a36600461239e565b611352565b34801561096a575f5ffd5b506102f561097936600461239e565b611394565b348015610989575f5ffd5b5061045561dead81565b6060600480546109a2906124b3565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce906124b3565b8015610a195780601f106109f057610100808354040283529160200191610a19565b820191905f5260205f20905b8154815290600101906020018083116109fc57829003601f168201915b5050505050905090565b5f33610a3081858561141b565b60019150505b92915050565b610a4461142d565b600754600160c01b900460ff1615610a6f5760405163ef65161f60e01b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f6603428d483ce13b6662b7a6848d769996e12e801bed4b0f1b9e8d10f64d38ba905f90a1565b610abc61142d565b5f5b82811015610afe57610af6848483818110610adb57610adb6124eb565b9050602002016020810190610af0919061239e565b83611459565b600101610abe565b50505050565b610b0c61142d565b6001600160a01b038116610b335760405163e6c4247b60e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87191015b60405180910390a15050565b5f33610ba08582856114b4565b610bab858585611529565b506001949350505050565b610bbe61142d565b5f5b82811015610afe5760155f858584818110610bdd57610bdd6124eb565b9050602002016020810190610bf2919061239e565b6001600160a01b0316815260208101919091526040015f205460ff16158015610c7357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610c5257610c526124eb565b9050602002016020810190610c67919061239e565b6001600160a01b031614155b8015610cae575030848483818110610c8d57610c8d6124eb565b9050602002016020810190610ca2919061239e565b6001600160a01b031614155b8015610ce957505f848483818110610cc857610cc86124eb565b9050602002016020810190610cdd919061239e565b6001600160a01b031614155b8015610d86575060135f858584818110610d0557610d056124eb565b9050602002016020810190610d1a919061239e565b6001600160a01b0316815260208101919091526040015f205460ff16158015610d86575060145f858584818110610d5357610d536124eb565b9050602002016020810190610d68919061239e565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610dbb57610dbb848483818110610da057610da06124eb565b9050602002016020810190610db5919061239e565b83611586565b600101610bc0565b610dcb61142d565b335f6001600160a01b038316610e715750475f81610dfc5760405163cff858f960e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114610e42576040519150601f19603f3d011682016040523d82523d5f602084013e610e47565b606091505b50508091505080610e6b57604051634088176760e11b815260040160405180910390fd5b50610f69565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610eb3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed791906124ff565b90505f8111610ef957604051637dd28aa760e11b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015610f43573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f679190612516565b505b604080516001600160a01b0385168152602081018390527f7aba7eca7d870d5f2f93298379a43957082ef15cdcf64db1f7c731c6b3a2fa4991015b60405180910390a1505050565b610fb961142d565b600c8190556040518181527f1f41d239159181ddefb13e99853e0e4998e0556aa1f2281281c783e309281062906020015b60405180910390a150565b610ffd61142d565b600f91909155601055565b61101061142d565b60078054821515600160a81b0260ff60a81b199091161790556040517f6a53d6c83a7a55d7a07bd490493fceb559161cce588908714e497e54044777d990610fea90831515815260200190565b61106561142d565b61106e5f6115e1565b565b61107861142d565b600d8190556040518181527fe2e6151ed0b472c61401059745339ca42474813911b22d24023385def6377e1c90602001610fea565b6110b561142d565b600b8190556040518181527f85668e92bc538f5c140067d68e3375c65b9e4545d2822ec8d807c6782f747d6290602001610fea565b6060600580546109a2906124b3565b61110161142d565b5f61110b60035490565b9050620f424061111c826001612545565b611126919061255c565b8210156111465760405163617ab12d60e11b815260040160405180910390fd5b6103e8611154826005612545565b61115e919061255c565b82111561117e57604051630625040160e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f65a8c7442ea496b0a28890f1ef48a9819d1f5d747e9a8df155fe862dfd493c959101610fa4565b6111c461142d565b60078054821515600160b01b0260ff60b01b199091161790556040517fa6a3dda702515d3130fef8b72d8e25f9aebd0d02e89d10d63c0c31d80b52f4a090610fea90831515815260200190565b5f33610a30818585611529565b61122661142d565b5f5b82811015610afe57611260848483818110611245576112456124eb565b905060200201602081019061125a919061239e565b83611625565b600101611228565b61127061142d565b6001600160a01b0382165f9081526015602052604090205460ff16156112a957604051630138835f60e11b815260040160405180910390fd5b6112b38282611680565b5050565b6112bf61142d565b60078054821515600160a01b0260ff60a01b199091161790556040517f1da197dc3cab4eceaefd5d0c34df2ed3a08f20a207fb1910c0eceb361e2c965c90610fea90831515815260200190565b61131461142d565b601180549082905560408051838152602081018390527f6a7b998a4adc393cb692c67fcd563e7971e2ea6f3fe7c9b8fb6dd53cf5b627d09101610b87565b61135a61142d565b6001600160a01b03811661138857604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b611391816115e1565b50565b61139c61142d565b6001600160a01b0381166113c35760405163e6c4247b60e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fb3dd4b0ccf73b51db7cb2a59fb88d1082b0fa9389d4ce0e85100fe3b26af78c49101610b87565b61142883838360016116db565b505050565b5f546001600160a01b0316331461106e5760405163118cdaa760e01b815233600482015260240161137f565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f74392251b09500cc108c71712e5e7e0392be9075a74a24f1494551cfa8e068709101610b87565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610afe578181101561151b57604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161137f565b610afe84848484035f6116db565b6001600160a01b03831661155257604051634b637e8f60e11b81525f600482015260240161137f565b6001600160a01b03821661157b5760405163ec442f0560e01b81525f600482015260240161137f565b6114288383836117ad565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527f066e0c23b9ae0bb92a88e9b0985bb7d85fce062730057312b99a9e243fde5ee19101610b87565b5f546001600160a01b03168015611606576115fc815f611625565b611606815f611459565b611611826001611625565b61161c826001611459565b6112b382611e93565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb9101610b87565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527f024f6c8d60a57c94822c46d989fd6935057590269281b07fe8327d7e9bc424219101610b87565b6001600160a01b0384166117045760405163e602df0560e01b81525f600482015260240161137f565b6001600160a01b03831661172d57604051634a1406b160e11b81525f600482015260240161137f565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610afe57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161179f91815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156117ea57604051631a30f03760e31b815260040160405180910390fd5b846001600160a01b0316826001600160a01b0316148061182257506001600160a01b0382165f9081526012602052604090205460ff16155b61183f57604051631a30f03760e31b815260040160405180910390fd5b846001600160a01b0316816001600160a01b031614806118705750816001600160a01b0316816001600160a01b0316145b8061189357506001600160a01b0381165f9081526012602052604090205460ff16155b6118b057604051631a30f03760e31b815260040160405180910390fd5b600754600160c01b900460ff16806118df57506001600160a01b0385165f9081526014602052604090205460ff165b8061190157506001600160a01b0384165f9081526014602052604090205460ff165b61191e5760405163037c597f60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff1680156119435750600754600160b81b900460ff16155b801561198957506001600160a01b0386165f9081526014602052604090205460ff168061198757506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015611c84575f546001600160a01b038781169116148015906119bb57505f546001600160a01b03868116911614155b80156119cf57506001600160a01b03851615155b80156119e657506001600160a01b03851661dead14155b15611c8457600754600160a81b900460ff1615611b0a577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316856001600160a01b031614158015611a7157507f000000000000000000000000ef55d2a23c25522308bce10678877bad1fc141a46001600160a01b0316856001600160a01b031614155b15611b0a57611a8160034361257b565b6001600160a01b0383165f90815260166020526040902054108015611ac65750611aac60034361257b565b6001600160a01b0386165f90815260166020526040902054105b611ae3576040516329a226cf60e11b815260040160405180910390fd5b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff168015611b4957506001600160a01b0385165f9081526014602052604090205460ff16155b15611bba57600b54841115611b71576040516344df090f60e11b815260040160405180910390fd5b600d546001600160a01b0386165f90815260016020526040902054611b96908661258e565b1115611bb557604051633b63e02960e11b815260040160405180910390fd5b611c84565b6001600160a01b0385165f9081526015602052604090205460ff168015611bf957506001600160a01b0386165f9081526014602052604090205460ff16155b15611c2157600c54841115611bb557604051630a8e28e160e41b815260040160405180910390fd5b6001600160a01b0385165f9081526014602052604090205460ff16611c8457600d546001600160a01b0386165f90815260016020526040902054611c65908661258e565b1115611c8457604051633b63e02960e11b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611ca95750600754600160b81b900460ff16155b8015611cef57506001600160a01b0387165f9081526013602052604090205460ff1680611ced57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015611e10576001600160a01b0386165f9081526015602052604081205460ff168015611d1f57505f601054115b15611d4557606460105487611d349190612545565b611d3e919061255c565b9050611df1565b6001600160a01b0388165f9081526015602052604090205460ff168015611d6d57505f600f54115b15611d82576064600f5487611d349190612545565b6001600160a01b0387165f9081526015602052604090205460ff16158015611dc257506001600160a01b0388165f9081526015602052604090205460ff16155b8015611dcf57505f601154115b15611df157606460115487611de49190612545565b611dee919061255c565b90505b8015611e0e57611e01818761257b565b9550611e0e883083611ee2565b505b305f90815260016020526040902054600e54811015828015611e4a57506001600160a01b0389165f9081526015602052604090205460ff16155b8015611e535750805b15611e7d57600a5443118015611e6a575060085443115b15611e7d57611e7882612008565b43600a555b611e88898989611ee2565b505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316611f0c578060035f828254611f01919061258e565b90915550611f7c9050565b6001600160a01b0383165f9081526001602052604090205481811015611f5e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161137f565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216611f9857600380548290039055611fb6565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ffb91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110612052576120526124eb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120ce573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120f291906125a1565b81600181518110612105576121056124eb565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460146121359190612545565b905080841115612143578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906121979087905f908790309042906004016125bc565b5f604051808303815f87803b1580156121ae575f5ffd5b505af11580156121c0573d5f5f3e3d5ffd5b504792505f91506121d4905060028361255c565b90505f6121e1828461257b565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f811461222c576040519150601f19603f3d011682016040523d82523d5f602084013e612231565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f811461227e576040519150601f19603f3d011682016040523d82523d5f602084013e612283565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611391575f5ffd5b5f5f604083850312156122f6575f5ffd5b8235612301816122d1565b946020939093013593505050565b8015158114611391575f5ffd5b5f5f5f6040848603121561232e575f5ffd5b833567ffffffffffffffff811115612344575f5ffd5b8401601f81018613612354575f5ffd5b803567ffffffffffffffff81111561236a575f5ffd5b8660208260051b840101111561237e575f5ffd5b6020918201945092508401356123938161230f565b809150509250925092565b5f602082840312156123ae575f5ffd5b81356123b9816122d1565b9392505050565b5f5f5f606084860312156123d2575f5ffd5b83356123dd816122d1565b925060208401356123ed816122d1565b929592945050506040919091013590565b5f6020828403121561240e575f5ffd5b5035919050565b5f5f60408385031215612426575f5ffd5b50508035926020909101359150565b5f60208284031215612445575f5ffd5b81356123b98161230f565b5f5f60408385031215612461575f5ffd5b823561246c816122d1565b9150602083013561247c8161230f565b809150509250929050565b5f5f60408385031215612498575f5ffd5b82356124a3816122d1565b9150602083013561247c816122d1565b600181811c908216806124c757607f821691505b6020821081036124e557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561250f575f5ffd5b5051919050565b5f60208284031215612526575f5ffd5b81516123b98161230f565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a3657610a36612531565b5f8261257657634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610a3657610a36612531565b80820180821115610a3657610a36612531565b5f602082840312156125b1575f5ffd5b81516123b9816122d1565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561260c5783516001600160a01b03168352602093840193909201916001016125e5565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220bf08ce791baed7b2895c58ef63ea0cd4d4c6dba9653a82dc2e91c34b0557aeab64736f6c634300081c0033
Deployed Bytecode Sourcemap
26197:14401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12955:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15273:215;;;;;;;;;;-1:-1:-1;15273:215:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15273:215:0;945:187:1;30994:247:0;;;;;;;;;;;;;:::i;33738:241::-;;;;;;;;;;-1:-1:-1;33738:241:0;;;;;:::i;:::-;;:::i;14057:99::-;;;;;;;;;;-1:-1:-1;14136:12:0;;14057:99;;;2156:25:1;;;2144:2;2129:18;14057:99:0;2010:177:1;31520:263:0;;;;;;;;;;-1:-1:-1;31520:263:0;;;;;:::i;:::-;;:::i;26944:28::-;;;;;;;;;;;;;;;;16066:283;;;;;;;;;;-1:-1:-1;16066:283:0;;;;;:::i;:::-;;:::i;27071:47::-;;;;;;;;;;-1:-1:-1;27071:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26410:33;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3121:32:1;;;3103:51;;3091:2;3076:18;26410:33:0;2957:203:1;26450:24:0;;;;;;;;;;-1:-1:-1;26450:24:0;;;;-1:-1:-1;;;;;26450:24:0;;;33987:573;;;;;;;;;;-1:-1:-1;33987:573:0;;;;;:::i;:::-;;:::i;13908:84::-;;;;;;;;;;-1:-1:-1;13908:84:0;;13982:2;3307:36:1;;3295:2;3280:18;13908:84:0;3165:184:1;34746:674:0;;;;;;;;;;-1:-1:-1;34746:674:0;;;;;:::i;:::-;;:::i;26514:25::-;;;;;;;;;;-1:-1:-1;26514:25:0;;;;-1:-1:-1;;;26514:25:0;;;;;;32391:149;;;;;;;;;;-1:-1:-1;32391:149:0;;;;;:::i;:::-;;:::i;26643:23::-;;;;;;;;;;-1:-1:-1;26643:23:0;;;;-1:-1:-1;;;26643:23:0;;;;;;26979:21;;;;;;;;;;;;;;;;26291:49;;;;;;;;;;;;26338:1;26291:49;;26872:27;;;;;;;;;;;;;;;;33131:134;;;;;;;;;;-1:-1:-1;33131:134:0;;;;;:::i;:::-;;:::i;26906:29::-;;;;;;;;;;;;;;;;31941:148;;;;;;;;;;-1:-1:-1;31941:148:0;;;;;:::i;:::-;;:::i;26839:26::-;;;;;;;;;;;;;;;;14219:118;;;;;;;;;;-1:-1:-1;14219:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14311:18:0;14284:7;14311:18;;;:9;:18;;;;;;;14219:118;24811:103;;;;;;;;;;;;;:::i;32548:157::-;;;;;;;;;;-1:-1:-1;32548:157:0;;;;;:::i;:::-;;:::i;32238:145::-;;;;;;;;;;-1:-1:-1;32238:145:0;;;;;:::i;:::-;;:::i;27180:50::-;;;;;;;;;;-1:-1:-1;27180:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26788:42;;;;;;;;;;;;26828:2;26788:42;;26675:30;;;;;;;;;;;;;;;;27036:26;;;;;;;;;;;;;;;;24136:87;;;;;;;;;;-1:-1:-1;24182:7:0;24209:6;-1:-1:-1;;;;;24209:6:0;24136:87;;26481:24;;;;;;;;;;-1:-1:-1;26481:24:0;;;;-1:-1:-1;;;;;26481:24:0;;;13165:95;;;;;;;;;;;;;:::i;32713:410::-;;;;;;;;;;-1:-1:-1;32713:410:0;;;;;:::i;:::-;;:::i;26580:23::-;;;;;;;;;;-1:-1:-1;26580:23:0;;;;-1:-1:-1;;;26580:23:0;;;;;;32097:133;;;;;;;;;;-1:-1:-1;32097:133:0;;;;;:::i;:::-;;:::i;14542:182::-;;;;;;;;;;-1:-1:-1;14542:182:0;;;;;:::i;:::-;;:::i;26546:27::-;;;;;;;;;;-1:-1:-1;26546:27:0;;;;-1:-1:-1;;;26546:27:0;;;;;;33493:237;;;;;;;;;;-1:-1:-1;33493:237:0;;;;;:::i;:::-;;:::i;27237:43::-;;;;;;;;;;-1:-1:-1;27237:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34568:170;;;;;;;;;;-1:-1:-1;34568:170:0;;;;;:::i;:::-;;:::i;26238:44::-;;;;;;;;;;;;;;;27007:22;;;;;;;;;;;;;;;;31791:142;;;;;;;;;;-1:-1:-1;31791:142:0;;;;;:::i;:::-;;:::i;33273:212::-;;;;;;;;;;-1:-1:-1;33273:212:0;;;;;:::i;:::-;;:::i;26712:29::-;;;;;;;;;;;;;;;;27125:48;;;;;;;;;;-1:-1:-1;27125:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14787:167;;;;;;;;;;-1:-1:-1;14787:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;14919:18:0;;;14892:7;14919:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14787:167;25069:220;;;;;;;;;;-1:-1:-1;25069:220:0;;;;;:::i;:::-;;:::i;31249:263::-;;;;;;;;;;-1:-1:-1;31249:263:0;;;;;:::i;:::-;;:::i;26347:54::-;;;;;;;;;;;;26394:6;26347:54;;12955:91;13000:13;13033:5;13026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12955:91;:::o;15273:215::-;15371:4;4250:10;15427:31;4250:10;15443:7;15452:5;15427:8;:31::i;:::-;15476:4;15469:11;;;15273:215;;;;;:::o;30994:247::-;24022:13;:11;:13::i;:::-;31060:11:::1;::::0;-1:-1:-1;;;31060:11:0;::::1;;;31059:12;31051:41;;;;-1:-1:-1::0;;;31051:41:0::1;;;;;;;;;;;;31103:11;:18:::0;;-1:-1:-1;;;;31103:18:0::1;-1:-1:-1::0;;;31103:18:0::1;::::0;;31150:12:::1;31132:15;:30:::0;31190:15:::1;31173:14;:32:::0;31221:12:::1;::::0;::::1;::::0;31103:18;;31221:12:::1;30994:247::o:0;33738:241::-;24022:13;:11;:13::i;:::-;33866:9:::1;33861:111;33881:19:::0;;::::1;33861:111;;;33922:38;33941:8;;33950:1;33941:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;33954:5;33922:18;:38::i;:::-;33902:3;;33861:111;;;;33738:241:::0;;;:::o;31520:263::-;24022:13;:11;:13::i;:::-;-1:-1:-1;;;;;31603:26:0;::::1;31595:53;;;;-1:-1:-1::0;;;31595:53:0::1;;;;;;;;;;;;31679:9;::::0;;-1:-1:-1;;;;;31699:22:0;;::::1;-1:-1:-1::0;;;;;;31699:22:0;::::1;::::0;::::1;::::0;;;31737:38:::1;::::0;;5885:51:1;;;31679:9:0;::::1;5967:2:1::0;5952:18;;5945:60;;;31679:9:0;31737:38:::1;::::0;5858:18:1;31737:38:0::1;;;;;;;;31584:199;31520:263:::0;:::o;16066:283::-;16187:4;4250:10;16245:37;16261:4;4250:10;16276:5;16245:15;:37::i;:::-;16293:26;16303:4;16309:2;16313:5;16293:9;:26::i;:::-;-1:-1:-1;16337:4:0;;16066:283;-1:-1:-1;;;;16066:283:0:o;33987:573::-;24022:13;:11;:13::i;:::-;34116:9:::1;34111:442;34131:19:::0;;::::1;34111:442;;;34196:11;:24;34208:8;;34217:1;34208:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34196:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34196:24:0;;::::1;;34195:25;34194:84:::0;::::1;;;;34266:10;-1:-1:-1::0;;;;;34243:34:0::1;:8;;34252:1;34243:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34243:34:0::1;;;34194:84;:135;;;;-1:-1:-1::0;34323:4:0::1;34300:8:::0;;34309:1;34300:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34300:28:0::1;;;34194:135;:185;;;;-1:-1:-1::0;26338:1:0::1;34351:8:::0;;34360:1;34351:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34351:27:0::1;;;34194:185;:295;;;;;34402:16;:29;34419:8;;34428:1;34419:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34402:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34402:29:0;;::::1;;34401:30;:87:::0;::::1;;;;34457:18;:31;34476:8;;34485:1;34476:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34457:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34457:31:0;;::::1;;34456:32;34401:87;34172:369;;;34505:36;34522:8;;34531:1;34522:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34535:5;34505:16;:36::i;:::-;34152:3;;34111:442;;34746:674:::0;24022:13;:11;:13::i;:::-;34834:10:::1;34818:13;-1:-1:-1::0;;;;;34884:22:0;::::1;34880:481;;-1:-1:-1::0;34959:21:0::1;34923:12;35003:10:::0;34995:38:::1;;;;-1:-1:-1::0;;;34995:38:0::1;;;;;;;;;;;;35062;::::0;-1:-1:-1;;;;;35062:19:0;::::1;::::0;35089:6;;35062:38:::1;::::0;;;35089:6;35062:19;:38:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35048:52;;;;;35123:7;35115:39;;;;-1:-1:-1::0;;;35115:39:0::1;;;;;;;;;;;;34908:258;34880:481;;;35196:39;::::0;-1:-1:-1;;;35196:39:0;;35229:4:::1;35196:39;::::0;::::1;3103:51:1::0;-1:-1:-1;;;;;35196:24:0;::::1;::::0;::::1;::::0;3076:18:1;;35196:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35187:48;;35267:1;35258:6;:10;35250:41;;;;-1:-1:-1::0;;;35250:41:0::1;;;;;;;;;;;;35306:43;::::0;-1:-1:-1;;;35306:43:0;;35330:10:::1;35306:43;::::0;::::1;6589:51:1::0;6656:18;;;6649:34;;;-1:-1:-1;;;;;35306:23:0;::::1;::::0;::::1;::::0;6562:18:1;;35306:43:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34880:481;35376:36;::::0;;-1:-1:-1;;;;;6607:32:1;;6589:51;;6671:2;6656:18;;6649:34;;;35376:36:0::1;::::0;6562:18:1;35376:36:0::1;;;;;;;;34807:613;;34746:674:::0;:::o;32391:149::-;24022:13;:11;:13::i;:::-;32462:12:::1;:21:::0;;;32499:33:::1;::::0;2156:25:1;;;32499:33:0::1;::::0;2144:2:1;2129:18;32499:33:0::1;;;;;;;;32391:149:::0;:::o;33131:134::-;24022:13;:11;:13::i;:::-;33212:6:::1;:16:::0;;;;33239:7:::1;:18:::0;33131:134::o;31941:148::-;24022:13;:11;:13::i;:::-;32014:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;32014:23:0::1;-1:-1:-1::0;;;;32014:23:0;;::::1;;::::0;;32053:28:::1;::::0;::::1;::::0;::::1;::::0;32032:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;24811:103:0;24022:13;:11;:13::i;:::-;24876:30:::1;24903:1;24876:18;:30::i;:::-;24811:103::o:0;32548:157::-;24022:13;:11;:13::i;:::-;32621:14:::1;:23:::0;;;32660:37:::1;::::0;2156:25:1;;;32660:37:0::1;::::0;2144:2:1;2129:18;32660:37:0::1;2010:177:1::0;32238:145:0;24022:13;:11;:13::i;:::-;32308:11:::1;:20:::0;;;32344:31:::1;::::0;2156:25:1;;;32344:31:0::1;::::0;2144:2:1;2129:18;32344:31:0::1;2010:177:1::0;13165:95:0;13212:13;13245:7;13238:14;;;;;:::i;32713:410::-;24022:13;:11;:13::i;:::-;32785:25:::1;32813:13;14136:12:::0;;;14057:99;32813:13:::1;32785:41:::0;-1:-1:-1;32881:7:0::1;32856:21;32785:41:::0;32876:1:::1;32856:21;:::i;:::-;32855:33;;;;:::i;:::-;32845:6;:43;;32837:70;;;;-1:-1:-1::0;;;32837:70:0::1;;;;;;;;;;;;32962:4;32937:21;:17:::0;32957:1:::1;32937:21;:::i;:::-;32936:30;;;;:::i;:::-;32926:6;:40;;32918:67;;;;-1:-1:-1::0;;;32918:67:0::1;;;;;;;;;;;;33015:13;::::0;;33039:22;;;;33077:38:::1;::::0;;7645:25:1;;;7701:2;7686:18;;7679:34;;;33077:38:0::1;::::0;7618:18:1;33077:38:0::1;7471:248:1::0;32097:133:0;24022:13;:11;:13::i;:::-;32163:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;32163:19:0::1;-1:-1:-1::0;;;;32163:19:0;;::::1;;::::0;;32198:24:::1;::::0;::::1;::::0;::::1;::::0;32177:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;14542:182:0;14611:4;4250:10;14667:27;4250:10;14684:2;14688:5;14667:9;:27::i;33493:237::-;24022:13;:11;:13::i;:::-;33619:9:::1;33614:109;33634:19:::0;;::::1;33614:109;;;33675:36;33692:8;;33701:1;33692:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;33705:5;33675:16;:36::i;:::-;33655:3;;33614:109;;34568:170:::0;24022:13;:11;:13::i;:::-;-1:-1:-1;;;;;34656:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;;::::1;;34655:18;34647:45;;;;-1:-1:-1::0;;;34647:45:0::1;;;;;;;;;;;;34703:27;34718:4;34724:5;34703:14;:27::i;:::-;34568:170:::0;;:::o;31791:142::-;24022:13;:11;:13::i;:::-;31862::::1;:21:::0;;;::::1;;-1:-1:-1::0;;;31862:21:0::1;-1:-1:-1::0;;;;31862:21:0;;::::1;;::::0;;31899:26:::1;::::0;::::1;::::0;::::1;::::0;31878:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;33273:212:0;24022:13;:11;:13::i;:::-;33371:11:::1;::::0;;33393:26;;;;33435:42:::1;::::0;;7645:25:1;;;7701:2;7686:18;;7679:34;;;33435:42:0::1;::::0;7618:18:1;33435:42:0::1;7471:248:1::0;25069:220:0;24022:13;:11;:13::i;:::-;-1:-1:-1;;;;;25154:22:0;::::1;25150:93;;25200:31;::::0;-1:-1:-1;;;25200:31:0;;25228:1:::1;25200:31;::::0;::::1;3103:51:1::0;3076:18;;25200:31:0::1;;;;;;;;25150:93;25253:28;25272:8;25253:18;:28::i;:::-;25069:220:::0;:::o;31249:263::-;24022:13;:11;:13::i;:::-;-1:-1:-1;;;;;31332:26:0;::::1;31324:53;;;;-1:-1:-1::0;;;31324:53:0::1;;;;;;;;;;;;31408:9;::::0;;-1:-1:-1;;;;;31428:22:0;;::::1;-1:-1:-1::0;;;;;;31428:22:0;::::1;::::0;::::1;::::0;;;31466:38:::1;::::0;;5885:51:1;;;31408:9:0;::::1;5967:2:1::0;5952:18;;5945:60;;;31408:9:0;31466:38:::1;::::0;5858:18:1;31466:38:0::1;5711:300:1::0;20159:130:0;20244:37;20253:5;20260:7;20269:5;20276:4;20244:8;:37::i;:::-;20159:130;;;:::o;24301:166::-;24182:7;24209:6;-1:-1:-1;;;;;24209:6:0;4250:10;24361:23;24357:103;;24408:40;;-1:-1:-1;;;24408:40:0;;4250:10;24408:40;;;3103:51:1;3076:18;;24408:40:0;2957:203:1;40067:178:0;-1:-1:-1;;;;;40152:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;40152:35:0;;;;;;;;;;40203:34;;7892:51:1;;;7959:18;;;7952:50;40203:34:0;;7865:18:1;40203:34:0;7724:284:1;21918:603:0;-1:-1:-1;;;;;14919:18:0;;;22052:24;14919:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22119:37:0;;22115:399;;22196:5;22177:16;:24;22173:214;;;22229:142;;-1:-1:-1;;;22229:142:0;;-1:-1:-1;;;;;8233:32:1;;22229:142:0;;;8215:51:1;8282:18;;;8275:34;;;8325:18;;;8318:34;;;8188:18;;22229:142:0;8013:345:1;22173:214:0;22430:57;22439:5;22446:7;22474:5;22455:16;:24;22481:5;22430:8;:57::i;16734:308::-;-1:-1:-1;;;;;16818:18:0;;16814:88;;16860:30;;-1:-1:-1;;;16860:30:0;;16887:1;16860:30;;;3103:51:1;3076:18;;16860:30:0;2957:203:1;16814:88:0;-1:-1:-1;;;;;16916:16:0;;16912:88;;16956:32;;-1:-1:-1;;;16956:32:0;;16985:1;16956:32;;;3103:51:1;3076:18;;16956:32:0;2957:203:1;16912:88:0;17010:24;17018:4;17024:2;17028:5;17010:7;:24::i;40253:171::-;-1:-1:-1;;;;;40336:24:0;;;;;;:15;:24;;;;;;;;;:32;;-1:-1:-1;;40336:32:0;;;;;;;;;;40384;;7892:51:1;;;7959:18;;;7952:50;40384:32:0;;7865:18:1;40384:32:0;7724:284:1;30594:392:0;30669:16;24209:6;-1:-1:-1;;;;;24209:6:0;30710:24;;30706:140;;30751:33;30768:8;30778:5;30751:16;:33::i;:::-;30799:35;30818:8;30828:5;30799:18;:35::i;:::-;30856:32;30873:8;30883:4;30856:16;:32::i;:::-;30899:34;30918:8;30928:4;30899:18;:34::i;:::-;30944;30969:8;30944:24;:34::i;39887:172::-;-1:-1:-1;;;;;39970:25:0;;;;;;:16;:25;;;;;;;;;:33;;-1:-1:-1;;39970:33:0;;;;;;;;;;40019:32;;7892:51:1;;;7959:18;;;7952:50;40019:32:0;;7865:18:1;40019:32:0;7724:284:1;40432:163:0;-1:-1:-1;;;;;40510:17:0;;;;;;:11;:17;;;;;;;;;:25;;-1:-1:-1;;40510:25:0;;;;;;;;;;40551:36;;7892:51:1;;;7959:18;;;7952:50;40551:36:0;;7865:18:1;40551:36:0;7724:284:1;21140:486:0;-1:-1:-1;;;;;21296:19:0;;21292:91;;21339:32;;-1:-1:-1;;;21339:32:0;;21368:1;21339:32;;;3103:51:1;3076:18;;21339:32:0;2957:203:1;21292:91:0;-1:-1:-1;;;;;21397:21:0;;21393:92;;21442:31;;-1:-1:-1;;;21442:31:0;;21470:1;21442:31;;;3103:51:1;3076:18;;21442:31:0;2957:203:1;21393:92:0;-1:-1:-1;;;;;21495:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21541:78;;;;21592:7;-1:-1:-1;;;;;21576:31:0;21585:5;-1:-1:-1;;;;;21576:31:0;;21601:5;21576:31;;;;2156:25:1;;2144:2;2129:18;;2010:177;21576:31:0;;;;;;;;21140:486;;;;:::o;35428:3531::-;-1:-1:-1;;;;;35644:21:0;;35558:14;35644:21;;;:15;:21;;;;;;35575:10;;35613:9;;35644:21;;35643:22;35635:54;;;;-1:-1:-1;;;35635:54:0;;;;;;;;;;;;35732:4;-1:-1:-1;;;;;35722:14:0;:6;-1:-1:-1;;;;;35722:14:0;;:42;;;-1:-1:-1;;;;;;35741:23:0;;;;;;:15;:23;;;;;;;;35740:24;35722:42;35700:111;;;;-1:-1:-1;;;35700:111:0;;;;;;;;;;;;35854:4;-1:-1:-1;;;;;35844:14:0;:6;-1:-1:-1;;;;;35844:14:0;;:34;;;;35872:6;-1:-1:-1;;;;;35862:16:0;:6;-1:-1:-1;;;;;35862:16:0;;35844:34;:62;;;-1:-1:-1;;;;;;35883:23:0;;;;;;:15;:23;;;;;;;;35882:24;35844:62;35822:131;;;;-1:-1:-1;;;35822:131:0;;;;;;;;;;;;35988:11;;-1:-1:-1;;;35988:11:0;;;;;:39;;-1:-1:-1;;;;;;36003:24:0;;;;;;:18;:24;;;;;;;;35988:39;:65;;;-1:-1:-1;;;;;;36031:22:0;;;;;;:18;:22;;;;;;;;35988:65;35966:127;;;;-1:-1:-1;;;35966:127:0;;;;;;;;;;;;36125:13;;36106:16;;-1:-1:-1;;;36125:13:0;;;;:44;;;;-1:-1:-1;36156:13:0;;-1:-1:-1;;;36156:13:0;;;;36155:14;36125:44;:114;;;;-1:-1:-1;;;;;;36188:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;36216:22:0;;;;;;:18;:22;;;;;;;;36188:50;36186:53;36125:114;36106:133;;36254:11;36250:1487;;;24182:7;24209:6;-1:-1:-1;;;;;36304:15:0;;;24209:6;;36304:15;;;;:49;;-1:-1:-1;24182:7:0;24209:6;-1:-1:-1;;;;;36340:13:0;;;24209:6;;36340:13;;36304:49;:88;;;;-1:-1:-1;;;;;;36374:18:0;;;;36304:88;:127;;;;-1:-1:-1;;;;;;36413:18:0;;26394:6;36413:18;;36304:127;36282:1444;;;36470:15;;-1:-1:-1;;;36470:15:0;;;;36466:532;;;36528:10;-1:-1:-1;;;;;36514:25:0;:2;-1:-1:-1;;;;;36514:25:0;;;:43;;;;;36549:8;-1:-1:-1;;;;;36543:14:0;:2;-1:-1:-1;;;;;36543:14:0;;;36514:43;36510:469;;;36653:16;36668:1;36653:12;:16;:::i;:::-;-1:-1:-1;;;;;36624:26:0;;;;;;:18;:26;;;;;;:45;:123;;;;-1:-1:-1;36731:16:0;36746:1;36731:12;:16;:::i;:::-;-1:-1:-1;;;;;36706:22:0;;;;;;:18;:22;;;;;;:41;36624:123;36586:237;;;;-1:-1:-1;;;36586:237:0;;;;;;;;;;;;-1:-1:-1;;;;;36850:26:0;;;;;;;:18;:26;;;;;;36879:12;36850:41;;;;36918:22;;;;;;;:37;36510:469;-1:-1:-1;;;;;37022:17:0;;;;;;:11;:17;;;;;;;;:44;;;;-1:-1:-1;;;;;;37044:22:0;;;;;;:18;:22;;;;;;;;37043:23;37022:44;37018:693;;;37109:11;;37099:6;:21;;37091:52;;;;-1:-1:-1;;;37091:52:0;;;;;;;;;;;;37226:14;;-1:-1:-1;;;;;14311:18:0;;14284:7;14311:18;;;:9;:18;;;;;;37200:22;;:6;:22;:::i;:::-;:40;;37166:147;;;;-1:-1:-1;;;37166:147:0;;;;;;;;;;;;37018:693;;;-1:-1:-1;;;;;37343:15:0;;;;;;:11;:15;;;;;;;;:44;;;;-1:-1:-1;;;;;;37363:24:0;;;;;;:18;:24;;;;;;;;37362:25;37343:44;37339:372;;;37430:12;;37420:6;:22;;37412:54;;;;-1:-1:-1;;;37412:54:0;;;;;;;;;;;37339:372;-1:-1:-1;;;;;37497:22:0;;;;;;:18;:22;;;;;;;;37492:219;;37604:14;;-1:-1:-1;;;;;14311:18:0;;14284:7;14311:18;;;:9;:18;;;;;;37578:22;;:6;:22;:::i;:::-;:40;;37544:147;;;;-1:-1:-1;;;37544:147:0;;;;;;;;;;;;37765:11;;37749:13;;-1:-1:-1;;;37765:11:0;;;;:42;;;;-1:-1:-1;37794:13:0;;-1:-1:-1;;;37794:13:0;;;;37793:14;37765:42;:108;;;;-1:-1:-1;;;;;;37826:22:0;;;;;;:16;:22;;;;;;;;;:46;;-1:-1:-1;;;;;;37852:20:0;;;;;;:16;:20;;;;;;;;37826:46;37824:49;37765:108;37749:124;;37890:8;37886:625;;;-1:-1:-1;;;;;37955:15:0;;37915:17;37955:15;;;:11;:15;;;;;;;;:30;;;;;37984:1;37974:7;;:11;37955:30;37951:396;;;38039:3;38028:7;;38019:6;:16;;;;:::i;:::-;38018:24;;;;:::i;:::-;38006:36;;37951:396;;;-1:-1:-1;;;;;38068:17:0;;;;;;:11;:17;;;;;;;;:31;;;;;38098:1;38089:6;;:10;38068:31;38064:283;;;38152:3;38142:6;;38133;:15;;;;:::i;38064:283::-;-1:-1:-1;;;;;38200:15:0;;;;;;:11;:15;;;;;;;;38199:16;:38;;;;-1:-1:-1;;;;;;38220:17:0;;;;;;:11;:17;;;;;;;;38219:18;38199:38;:57;;;;;38255:1;38241:11;;:15;38199:57;38177:170;;;38328:3;38313:11;;38304:6;:20;;;;:::i;:::-;38303:28;;;;:::i;:::-;38291:40;;38177:170;38367:13;;38363:137;;38401:19;38411:9;38401:19;;:::i;:::-;;;38439:45;38453:4;38467;38474:9;38439:13;:45::i;:::-;37900:611;37886:625;38572:4;38523:28;14311:18;;;:9;:18;;;;;;38628:13;;38604:37;;;38656:8;:30;;;;-1:-1:-1;;;;;;38669:17:0;;;;;;:11;:17;;;;;;;;38668:18;38656:30;:41;;;;;38690:7;38656:41;38652:256;;;38733:13;;38718:12;:28;:62;;;;;38765:15;;38750:12;:30;38718:62;38714:183;;;38801:33;38813:20;38801:11;:33::i;:::-;38869:12;38853:13;:28;38714:183;38920:31;38934:4;38940:2;38944:6;38920:13;:31::i;:::-;35547:3412;;;;;;35428:3531;;;:::o;25449:191::-;25523:16;25542:6;;-1:-1:-1;;;;;25559:17:0;;;-1:-1:-1;;;;;;25559:17:0;;;;;;25592:40;;25542:6;;;;;;;25592:40;;25523:16;25592:40;25512:128;25449:191;:::o;17366:1135::-;-1:-1:-1;;;;;17456:18:0;;17452:552;;17610:5;17594:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17452:552:0;;-1:-1:-1;17452:552:0;;-1:-1:-1;;;;;17670:15:0;;17648:19;17670:15;;;:9;:15;;;;;;17704:19;;;17700:117;;;17751:50;;-1:-1:-1;;;17751:50:0;;-1:-1:-1;;;;;8233:32:1;;17751:50:0;;;8215:51:1;8282:18;;;8275:34;;;8325:18;;;8318:34;;;8188:18;;17751:50:0;8013:345:1;17700:117:0;-1:-1:-1;;;;;17940:15:0;;;;;;:9;:15;;;;;17958:19;;;;17940:37;;17452:552;-1:-1:-1;;;;;18020:16:0;;18016:435;;18186:12;:21;;;;;;;18016:435;;;-1:-1:-1;;;;;18402:13:0;;;;;;:9;:13;;;;;:22;;;;;;18016:435;18483:2;-1:-1:-1;;;;;18468:25:0;18477:4;-1:-1:-1;;;;;18468:25:0;;18487:5;18468:25;;;;2156::1;;2144:2;2129:18;;2010:177;18468:25:0;;;;;;;;17366:1135;;;:::o;38967:912::-;28876:13;:20;;-1:-1:-1;;;;28876:20:0;-1:-1:-1;;;28876:20:0;;;39100:16:::1;::::0;;39114:1:::1;39100:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;39100:16:0;39114:1;39100:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39100:16:0::1;39076:40;;39145:4;39127;39132:1;39127:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;39127:23:0::1;;;-1:-1:-1::0;;;;;39127:23:0::1;;;::::0;::::1;39171:10;-1:-1:-1::0;;;;;39171:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39161:4;39166:1;39161:7;;;;;;;;:::i;:::-;;;;;;:27;-1:-1:-1::0;;;;;39161:27:0::1;;;-1:-1:-1::0;;;;;39161:27:0::1;;;::::0;::::1;39201:21;39225:13;;39241:2;39225:18;;;;:::i;:::-;39201:42;;39274:13;39260:11;:27;39256:87;;;39318:13;39304:27;;39256:87;39355:191;::::0;-1:-1:-1;;;39355:191:0;;-1:-1:-1;;;;;39355:10:0::1;:61;::::0;::::1;::::0;:191:::1;::::0;39431:11;;39457:1:::1;::::0;39473:4;;39500::::1;::::0;39520:15:::1;::::0;39355:191:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;39580:21:0::1;::::0;-1:-1:-1;39559:18:0::1;::::0;-1:-1:-1;39638:14:0::1;::::0;-1:-1:-1;39651:1:0::1;39580:21:::0;39638:14:::1;:::i;:::-;39614:38:::0;-1:-1:-1;39663:25:0::1;39691:26;39614:38:::0;39691:10;:26:::1;:::i;:::-;39752:9;::::0;39744:49:::1;::::0;39663:54;;-1:-1:-1;;;;;;39752:9:0::1;::::0;39775:13;;39744:49:::1;::::0;;;39775:13;39752:9;39744:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;39826:9:0::1;::::0;39818:53:::1;::::0;39730:63;;-1:-1:-1;;;;;;39826:9:0::1;::::0;39849:17;;39818:53:::1;::::0;;;39849:17;39826:9;39818:53:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;28919:13:0;:21;;-1:-1:-1;;;;28919:21:0;;;-1:-1:-1;;;;;;;;38967:912:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2192:247::-;2251:6;2304:2;2292:9;2283:7;2279:23;2275:32;2272:52;;;2320:1;2317;2310:12;2272:52;2359:9;2346:23;2378:31;2403:5;2378:31;:::i;:::-;2428:5;2192:247;-1:-1:-1;;;2192:247:1:o;2444:508::-;2521:6;2529;2537;2590:2;2578:9;2569:7;2565:23;2561:32;2558:52;;;2606:1;2603;2596:12;2558:52;2645:9;2632:23;2664:31;2689:5;2664:31;:::i;:::-;2714:5;-1:-1:-1;2771:2:1;2756:18;;2743:32;2784:33;2743:32;2784:33;:::i;:::-;2444:508;;2836:7;;-1:-1:-1;;;2916:2:1;2901:18;;;;2888:32;;2444:508::o;3354:226::-;3413:6;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;-1:-1:-1;3527:23:1;;3354:226;-1:-1:-1;3354:226:1:o;3585:346::-;3653:6;3661;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;-1:-1:-1;;3775:23:1;;;3895:2;3880:18;;;3867:32;;-1:-1:-1;3585:346:1:o;3936:241::-;3992:6;4045:2;4033:9;4024:7;4020:23;4016:32;4013:52;;;4061:1;4058;4051:12;4013:52;4100:9;4087:23;4119:28;4141:5;4119:28;:::i;4182:382::-;4247:6;4255;4308:2;4296:9;4287:7;4283:23;4279:32;4276:52;;;4324:1;4321;4314:12;4276:52;4363:9;4350:23;4382:31;4407:5;4382:31;:::i;:::-;4432:5;-1:-1:-1;4489:2:1;4474:18;;4461:32;4502:30;4461:32;4502:30;:::i;:::-;4551:7;4541:17;;;4182:382;;;;;:::o;4801:388::-;4869:6;4877;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4985:9;4972:23;5004:31;5029:5;5004:31;:::i;:::-;5054:5;-1:-1:-1;5111:2:1;5096:18;;5083:32;5124:33;5083:32;5124:33;:::i;5194:380::-;5273:1;5269:12;;;;5316;;;5337:61;;5391:4;5383:6;5379:17;5369:27;;5337:61;5444:2;5436:6;5433:14;5413:18;5410:38;5407:161;;5490:10;5485:3;5481:20;5478:1;5471:31;5525:4;5522:1;5515:15;5553:4;5550:1;5543:15;5407:161;;5194:380;;;:::o;5579:127::-;5640:10;5635:3;5631:20;5628:1;5621:31;5671:4;5668:1;5661:15;5695:4;5692:1;5685:15;6226:184;6296:6;6349:2;6337:9;6328:7;6324:23;6320:32;6317:52;;;6365:1;6362;6355:12;6317:52;-1:-1:-1;6388:16:1;;6226:184;-1:-1:-1;6226:184:1:o;6694:245::-;6761:6;6814:2;6802:9;6793:7;6789:23;6785:32;6782:52;;;6830:1;6827;6820:12;6782:52;6862:9;6856:16;6881:28;6903:5;6881:28;:::i;6944:127::-;7005:10;7000:3;6996:20;6993:1;6986:31;7036:4;7033:1;7026:15;7060:4;7057:1;7050:15;7076:168;7149:9;;;7180;;7197:15;;;7191:22;;7177:37;7167:71;;7218:18;;:::i;7249:217::-;7289:1;7315;7305:132;;7359:10;7354:3;7350:20;7347:1;7340:31;7394:4;7391:1;7384:15;7422:4;7419:1;7412:15;7305:132;-1:-1:-1;7451:9:1;;7249:217::o;8363:128::-;8430:9;;;8451:11;;;8448:37;;;8465:18;;:::i;8496:125::-;8561:9;;;8582:10;;;8579:36;;;8595:18;;:::i;8758:251::-;8828:6;8881:2;8869:9;8860:7;8856:23;8852:32;8849:52;;;8897:1;8894;8887:12;8849:52;8929:9;8923:16;8948:31;8973:5;8948:31;:::i;9014:959::-;9276:4;9324:3;9313:9;9309:19;9355:6;9344:9;9337:25;9398:6;9393:2;9382:9;9378:18;9371:34;9441:3;9436:2;9425:9;9421:18;9414:31;9465:6;9500;9494:13;9531:6;9523;9516:22;9569:3;9558:9;9554:19;9547:26;;9608:2;9600:6;9596:15;9582:29;;9629:1;9639:195;9653:6;9650:1;9647:13;9639:195;;;9718:13;;-1:-1:-1;;;;;9714:39:1;9702:52;;9783:2;9809:15;;;;9774:12;;;;9750:1;9668:9;9639:195;;;-1:-1:-1;;;;;;;9890:32:1;;;;9885:2;9870:18;;9863:60;-1:-1:-1;;9954:3:1;9939:19;9932:35;9851:3;9014:959;-1:-1:-1;;;9014:959:1:o
Swarm Source
ipfs://bf08ce791baed7b2895c58ef63ea0cd4d4c6dba9653a82dc2e91c34b0557aeab
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.