Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
100,000,000 CELLEX
Holders
306 (0.00%)
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$25,335.00
Circulating Supply Market Cap
$25,335.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Cellex
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/*
https://cellex.io
*/
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./interface/IUniswapV2Router02.sol";
import "./interface/IUniswapV2Factory.sol";
contract Cellex is ERC20, Ownable {
using Address for address payable;
IUniswapV2Router02 public uniswapV2Router;
address public uniswapV2Pair;
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) private _isExcludedFromWalletLimit;
address private tradeFeeReceiver1;
address private tradeFeeReceiver2;
address private tradeFeeReceiver3;
uint256 private tradeFeePercent1;
uint256 private tradeFeePercent2;
uint256 private tradeFeePercent3;
bool private inSwapAndLiquify;
bool public swapEnabled;
uint256 public tradeFee;
uint256 public maxSwapThreshold;
uint256 public maxWalletSize;
event ExcludeFromFees(address indexed account, bool isExcluded);
event ExcludeFromWalletLimit(address indexed account, bool isExcluded);
event SwapAndSendFee(uint256 tokensSwapped, uint256 bnbSend);
event TradeFeeReceiver1Changed(address tradeFeeReceiver);
event TradeFeeReceiver2Changed(address tradeFeeReceiver2);
event TradeFeeReceiver3Changed(address tradeFeeReceiver3);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 bnbReceived,
uint256 tokensIntoLiqudity
);
event ToggleSwapping(bool swapEnabled);
event FeesLowered(uint256 _new);
event MaxWalletSizeRaised(uint256 _new);
event MaxSwapThresholdUpdated(uint256 _new);
event TradeFeePercentagesUpdated(
uint256 percent1,
uint256 percent2,
uint256 percent3
);
constructor(
address _router,
address _feeReceiver1,
address _feeReceiver2,
address _feeReceiver3
) payable ERC20("Cellex", "CELLEX") {
//uniswapv2router address, feereceiving wallet, Tokenname, symbol
tradeFee = 90;
tradeFeePercent1 = 40;
tradeFeePercent2 = 40;
tradeFeePercent3 = 20;
tradeFeeReceiver1 = _feeReceiver1;
tradeFeeReceiver2 = _feeReceiver2;
tradeFeeReceiver3 = _feeReceiver3;
uniswapV2Router = IUniswapV2Router02(_router);
//Excluding wallets from fees
_isExcludedFromFees[owner()] = true;
_isExcludedFromFees[address(0xdead)] = true;
_isExcludedFromFees[address(this)] = true;
_isExcludedFromFees[tradeFeeReceiver1] = true;
_isExcludedFromFees[tradeFeeReceiver2] = true;
_isExcludedFromFees[tradeFeeReceiver3] = true;
//Excluding wallets from token hold limit
_isExcludedFromWalletLimit[owner()] = true;
_isExcludedFromWalletLimit[address(0xdead)] = true;
_isExcludedFromWalletLimit[address(this)] = true;
_isExcludedFromWalletLimit[tradeFeeReceiver1] = true;
_isExcludedFromWalletLimit[tradeFeeReceiver2] = true;
_isExcludedFromWalletLimit[tradeFeeReceiver3] = true;
uint256 ownerSupply = 100_000_000 * 10 ** decimals();
_mint(owner(), ownerSupply);
maxWalletSize = 70_000 * 10 ** decimals();
maxSwapThreshold = 70_000 * 10 ** decimals();
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
_approve(address(this), address(uniswapV2Router), type(uint256).max);
IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
_isExcludedFromFees[uniswapV2Pair] = true;
_isExcludedFromWalletLimit[uniswapV2Pair] = true;
swapEnabled = true;
}
receive() external payable {}
function claimStuckTokens(address token) external onlyOwner {
require(
token != address(this),
"Owner cannot claim contract's balance of its own tokens"
);
if (token == address(0x0)) {
payable(msg.sender).sendValue(address(this).balance);
return;
}
IERC20(token).transfer(
msg.sender,
IERC20(token).balanceOf(address(this))
);
}
function excludeFromFees(
address account,
bool excluded
) external onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function excludeFromWalletLimit(
address account,
bool excluded
) external onlyOwner {
_isExcludedFromWalletLimit[account] = excluded;
emit ExcludeFromWalletLimit(account, excluded);
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function isExcludedFromWalletLimit(
address account
) public view returns (bool) {
return _isExcludedFromWalletLimit[account];
}
function changeFeeReceiver1(
address _tradeFeeReceiver
) external onlyOwner {
require(
_tradeFeeReceiver != address(0) &&
_tradeFeeReceiver != address(0xdead),
"Trade Fee receiver cannot be the zero or dead address"
);
tradeFeeReceiver1 = _tradeFeeReceiver;
emit TradeFeeReceiver1Changed(tradeFeeReceiver1);
}
function changeFeeReceiver2(
address _tradeFeeReceiver2
) external onlyOwner {
require(
_tradeFeeReceiver2 != address(0) &&
_tradeFeeReceiver2 != address(0xdead),
"Invalid address"
);
tradeFeeReceiver2 = _tradeFeeReceiver2;
emit TradeFeeReceiver2Changed(tradeFeeReceiver2);
}
function changeFeeReceiver3(
address _tradeFeeReceiver3
) external onlyOwner {
require(
_tradeFeeReceiver3 != address(0) &&
_tradeFeeReceiver3 != address(0xdead),
"Invalid address"
);
tradeFeeReceiver3 = _tradeFeeReceiver3;
emit TradeFeeReceiver3Changed(tradeFeeReceiver3);
}
function setTradeFeePercentages(
uint256 percent1,
uint256 percent2,
uint256 percent3
) external onlyOwner {
require(
percent1 + percent2 + percent3 == 100,
"Percentages must sum to 100"
);
tradeFeePercent1 = percent1;
tradeFeePercent2 = percent2;
tradeFeePercent3 = percent3;
emit TradeFeePercentagesUpdated(percent1, percent2, percent3);
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "Transfer from the zero address");
require(to != address(0), "Transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
uint256 contractTokenBalance = balanceOf(address(this));
uint256 _totalFees;
if (
_isExcludedFromFees[from] &&
_isExcludedFromFees[to] &&
inSwapAndLiquify
) {
_totalFees = 0;
} else if (
from == uniswapV2Pair || to == uniswapV2Pair && from != owner()
) {
_totalFees = tradeFee;
} else {
_totalFees = 0;
}
if (_totalFees > 0) {
uint256 fees = (amount * _totalFees) / 100;
amount = amount - fees;
super._transfer(from, address(this), fees);
}
if (to == uniswapV2Pair) {
if (
contractTokenBalance > maxSwapThreshold &&
!inSwapAndLiquify &&
swapEnabled
) {
inSwapAndLiquify = true;
_swapAndSendTrade(maxSwapThreshold);
inSwapAndLiquify = false;
}
}
if (
!_isExcludedFromWalletLimit[to] &&
!inSwapAndLiquify
) {
uint256 toWalletSize = balanceOf(to);
require(
toWalletSize + amount <= maxWalletSize,
"Maximum wallet size exceeded!"
);
}
super._transfer(from, to, amount);
}
function toggleSwapping(bool _swapEnabled) external onlyOwner {
require(swapEnabled != _swapEnabled, "Currently at the same stage");
swapEnabled = _swapEnabled;
emit ToggleSwapping(swapEnabled);
}
function _swapAndSendTrade(uint256 tokenAmount) private {
uint256 initialBalance = address(this).balance;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
uint256 newBalance = address(this).balance - initialBalance;
uint256 amount1 = (newBalance * tradeFeePercent1) / 100;
uint256 amount2 = (newBalance * tradeFeePercent2) / 100;
uint256 amount3 = (newBalance * tradeFeePercent3) / 100;
payable(tradeFeeReceiver1).sendValue(amount1);
payable(tradeFeeReceiver2).sendValue(amount2);
payable(tradeFeeReceiver3).sendValue(amount3);
emit SwapAndSendFee(tokenAmount, newBalance);
}
function lowerFees(uint256 _newFee) public onlyOwner {
require(
_newFee < tradeFee,
"CELLEXToken: New fee must be lower than old fee!"
);
tradeFee = _newFee;
emit FeesLowered(_newFee);
}
function raiseMaxLimit(uint256 _newLimit) public onlyOwner {
require(
_newLimit > maxWalletSize,
"CELLEXToken: New limit must be higher than older!"
);
maxWalletSize = _newLimit;
emit MaxWalletSizeRaised(_newLimit);
}
function setSwapThreshold(uint256 _newThreshold) public onlyOwner {
maxSwapThreshold = _newThreshold;
emit MaxSwapThresholdUpdated(_newThreshold);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;
interface IUniswapV2Factory {
function createPair(
address tokenA,
address tokenB
) external returns (address pair);
}//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
)
external
payable
returns (uint amountToken, uint amountETH, uint liquidity);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_feeReceiver1","type":"address"},{"internalType":"address","name":"_feeReceiver2","type":"address"},{"internalType":"address","name":"_feeReceiver3","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_new","type":"uint256"}],"name":"FeesLowered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_new","type":"uint256"}],"name":"MaxSwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_new","type":"uint256"}],"name":"MaxWalletSizeRaised","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbSend","type":"uint256"}],"name":"SwapAndSendFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"swapEnabled","type":"bool"}],"name":"ToggleSwapping","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percent1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percent2","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"percent3","type":"uint256"}],"name":"TradeFeePercentagesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tradeFeeReceiver","type":"address"}],"name":"TradeFeeReceiver1Changed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tradeFeeReceiver2","type":"address"}],"name":"TradeFeeReceiver2Changed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tradeFeeReceiver3","type":"address"}],"name":"TradeFeeReceiver3Changed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tradeFeeReceiver","type":"address"}],"name":"changeFeeReceiver1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tradeFeeReceiver2","type":"address"}],"name":"changeFeeReceiver2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tradeFeeReceiver3","type":"address"}],"name":"changeFeeReceiver3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"lowerFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","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":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"raiseMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent1","type":"uint256"},{"internalType":"uint256","name":"percent2","type":"uint256"},{"internalType":"uint256","name":"percent3","type":"uint256"}],"name":"setTradeFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052604051620054c2380380620054c28339818101604052810190620000299190620010bc565b6040518060400160405280600681526020017f43656c6c657800000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43454c4c455800000000000000000000000000000000000000000000000000008152508160039081620000a69190620013a8565b508060049081620000b89190620013a8565b505050620000db620000cf62000c0960201b60201c565b62000c1160201b60201c565b605a6011819055506028600d819055506028600e819055506014600f8190555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860006200021562000cd760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960006200049c62000cd760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006200071f62000d0160201b60201c565b600a6200072d91906200161f565b6305f5e1006200073e919062001670565b9050620007616200075462000cd760201b60201c565b8262000d0a60201b60201c565b6200077162000d0160201b60201c565b600a6200077f91906200161f565b620111706200078f919062001670565b601381905550620007a562000d0160201b60201c565b600a620007b391906200161f565b62011170620007c3919062001670565b601281905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000837573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200085d9190620016bb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620008e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200090d9190620016bb565b6040518363ffffffff1660e01b81526004016200092c929190620016fe565b6020604051808303816000875af11580156200094c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009729190620016bb565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000a0730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000e7760201b60201c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040162000aa89291906200173c565b6020604051808303816000875af115801562000ac8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000aee9190620017a6565b50600160086000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055505050505050620019e3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d739062001839565b60405180910390fd5b62000d90600083836200104860201b60201c565b806002600082825462000da491906200185b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e57919062001896565b60405180910390a362000e73600083836200104d60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ee09062001929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f5b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f5290620019c1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200103b919062001896565b60405180910390a3505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010848262001057565b9050919050565b620010968162001077565b8114620010a257600080fd5b50565b600081519050620010b6816200108b565b92915050565b60008060008060808587031215620010d957620010d862001052565b5b6000620010e987828801620010a5565b9450506020620010fc87828801620010a5565b93505060406200110f87828801620010a5565b92505060606200112287828801620010a5565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011b057607f821691505b602082108103620011c657620011c562001168565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620011f1565b6200123c8683620011f1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062001289620012836200127d8462001254565b6200125e565b62001254565b9050919050565b6000819050919050565b620012a58362001268565b620012bd620012b48262001290565b848454620011fe565b825550505050565b600090565b620012d4620012c5565b620012e18184846200129a565b505050565b5b818110156200130957620012fd600082620012ca565b600181019050620012e7565b5050565b601f82111562001358576200132281620011cc565b6200132d84620011e1565b810160208510156200133d578190505b620013556200134c85620011e1565b830182620012e6565b50505b505050565b600082821c905092915050565b60006200137d600019846008026200135d565b1980831691505092915050565b60006200139883836200136a565b9150826002028217905092915050565b620013b3826200112e565b67ffffffffffffffff811115620013cf57620013ce62001139565b5b620013db825462001197565b620013e88282856200130d565b600060209050601f8311600181146200142057600084156200140b578287015190505b6200141785826200138a565b86555062001487565b601f1984166200143086620011cc565b60005b828110156200145a5784890151825560018201915060208501945060208101905062001433565b868310156200147a578489015162001476601f8916826200136a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200151d57808604811115620014f557620014f46200148f565b5b6001851615620015055780820291505b80810290506200151585620014be565b9450620014d5565b94509492505050565b6000826200153857600190506200160b565b816200154857600090506200160b565b81600181146200156157600281146200156c57620015a2565b60019150506200160b565b60ff8411156200158157620015806200148f565b5b8360020a9150848211156200159b576200159a6200148f565b5b506200160b565b5060208310610133831016604e8410600b8410161715620015dc5782820a905083811115620015d657620015d56200148f565b5b6200160b565b620015eb8484846001620014cb565b925090508184048111156200160557620016046200148f565b5b81810290505b9392505050565b600060ff82169050919050565b60006200162c8262001254565b9150620016398362001612565b9250620016687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001526565b905092915050565b60006200167d8262001254565b91506200168a8362001254565b92508282026200169a8162001254565b91508282048414831517620016b457620016b36200148f565b5b5092915050565b600060208284031215620016d457620016d362001052565b5b6000620016e484828501620010a5565b91505092915050565b620016f88162001077565b82525050565b6000604082019050620017156000830185620016ed565b620017246020830184620016ed565b9392505050565b620017368162001254565b82525050565b6000604082019050620017536000830185620016ed565b6200176260208301846200172b565b9392505050565b60008115159050919050565b620017808162001769565b81146200178c57600080fd5b50565b600081519050620017a08162001775565b92915050565b600060208284031215620017bf57620017be62001052565b5b6000620017cf848285016200178f565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001821601f83620017d8565b91506200182e82620017e9565b602082019050919050565b60006020820190508181036000830152620018548162001812565b9050919050565b6000620018688262001254565b9150620018758362001254565b925082820190508082111562001890576200188f6200148f565b5b92915050565b6000602082019050620018ad60008301846200172b565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001911602483620017d8565b91506200191e82620018b3565b604082019050919050565b60006020820190508181036000830152620019448162001902565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620019a9602283620017d8565b9150620019b6826200194b565b604082019050919050565b60006020820190508181036000830152620019dc816200199a565b9050919050565b613acf80620019f36000396000f3fe6080604052600436106101f25760003560e01c8063715018a61161010d578063b40f9469116100a0578063e16830a81161006f578063e16830a814610732578063e3b24c801461075b578063e501468314610784578063f2fde38b146107ad578063f9d0831a146107d6576101f9565b8063b40f946914610666578063c0246668146106a3578063cc189d4c146106cc578063dd62ed3e146106f5576101f9565b80639d0014b1116100dc5780639d0014b114610598578063a457c2d7146105c1578063a9059cbb146105fe578063acef1a441461063b576101f9565b8063715018a6146105005780638da5cb5b146105175780638f3fa8601461054257806395d89b411461056d576101f9565b806324bcdfbd1161018557806349bd5a5e1161015457806349bd5a5e146104305780634fbee1931461045b5780636ddd17131461049857806370a08231146104c3576101f9565b806324bcdfbd146103745780632548dd3e1461039f578063313ce567146103c857806339509351146103f3576101f9565b806318160ddd116101c157806318160ddd146102ba57806318c39fb3146102e5578063239be29a1461030e57806323b872dd14610337576101f9565b806306fdde03146101fe578063095ea7b3146102295780630f198ee8146102665780631694505e1461028f576101f9565b366101f957005b600080fd5b34801561020a57600080fd5b506102136107ff565b6040516102209190612707565b60405180910390f35b34801561023557600080fd5b50610250600480360381019061024b91906127c2565b610891565b60405161025d919061281d565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612838565b6108b4565b005b34801561029b57600080fd5b506102a4610941565b6040516102b191906128c4565b60405180910390f35b3480156102c657600080fd5b506102cf610967565b6040516102dc91906128ee565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612909565b610971565b005b34801561031a57600080fd5b5061033560048036038101906103309190612962565b610ac0565b005b34801561034357600080fd5b5061035e6004803603810190610359919061298f565b610b80565b60405161036b919061281d565b60405180910390f35b34801561038057600080fd5b50610389610baf565b60405161039691906128ee565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190612909565b610bb5565b005b3480156103d457600080fd5b506103dd610d04565b6040516103ea91906129fe565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906127c2565b610d0d565b604051610427919061281d565b60405180910390f35b34801561043c57600080fd5b50610445610d44565b6040516104529190612a28565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612909565b610d6a565b60405161048f919061281d565b60405180910390f35b3480156104a457600080fd5b506104ad610dc0565b6040516104ba919061281d565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612909565b610dd3565b6040516104f791906128ee565b60405180910390f35b34801561050c57600080fd5b50610515610e1b565b005b34801561052357600080fd5b5061052c610e2f565b6040516105399190612a28565b60405180910390f35b34801561054e57600080fd5b50610557610e59565b60405161056491906128ee565b60405180910390f35b34801561057957600080fd5b50610582610e5f565b60405161058f9190612707565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612838565b610ef1565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906127c2565b610f3a565b6040516105f5919061281d565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906127c2565b610fb1565b604051610632919061281d565b60405180910390f35b34801561064757600080fd5b50610650610fd4565b60405161065d91906128ee565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612909565b610fda565b60405161069a919061281d565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612a43565b611030565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612909565b6110e1565b005b34801561070157600080fd5b5061071c60048036038101906107179190612a83565b611230565b60405161072991906128ee565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190612a43565b6112b7565b005b34801561076757600080fd5b50610782600480360381019061077d9190612838565b611368565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612ac3565b6113f5565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190612909565b6114ab565b005b3480156107e257600080fd5b506107fd60048036038101906107f89190612909565b61152e565b005b60606003805461080e90612b45565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90612b45565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b60008061089c611702565b90506108a981858561170a565b600191505092915050565b6108bc6118d3565b6011548110610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790612be8565b60405180910390fd5b806011819055507f521fe74e1c24ea5dc1327c29145ebc90bae09bc5a6f6bea118b4ad87793327a58160405161093691906128ee565b60405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109796118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156109e4575061dead73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90612c54565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f8310875c54f8e05d482790d067d2ec52a711e0857891164937d7d95d6f837903600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610ab59190612a28565b60405180910390a150565b610ac86118d3565b801515601060019054906101000a900460ff16151503610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490612cc0565b60405180910390fd5b80601060016101000a81548160ff0219169083151502179055507f0b24deddd077e0149099adf20869b94ebb4b0898a1068e9af5e30529f596e532601060019054906101000a900460ff16604051610b75919061281d565b60405180910390a150565b600080610b8b611702565b9050610b98858285611951565b610ba38585856119dd565b60019150509392505050565b60115481565b610bbd6118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610c28575061dead73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90612d52565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fc6dfc70a6be41f23f718f4b860a48c13cdee13dc37af8ae93466c6edab7818d1600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610cf99190612a28565b60405180910390a150565b60006012905090565b600080610d18611702565b9050610d39818585610d2a8589611230565b610d349190612da1565b61170a565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601060019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e236118d3565b610e2d6000611e99565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b606060048054610e6e90612b45565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a90612b45565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b5050505050905090565b610ef96118d3565b806012819055507fb090ae518da13bb076e9fad6694791d1d427db3284f7ac7321fbeafac08c7b2781604051610f2f91906128ee565b60405180910390a150565b600080610f45611702565b90506000610f538286611230565b905083811015610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90612e47565b60405180910390fd5b610fa5828686840361170a565b60019250505092915050565b600080610fbc611702565b9050610fc98185856119dd565b600191505092915050565b60125481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110386118d3565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110d5919061281d565b60405180910390a25050565b6110e96118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611154575061dead73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90612c54565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb0c29cdbbd729bf119f46cecb4cf59b20a65e4c7e3711dba7ec21048ad0e1af2600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516112259190612a28565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112bf6118d3565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f43c98828bda6387bbb8719f1217eea480ede4e6604201e14b04ff8da301a4a328260405161135c919061281d565b60405180910390a25050565b6113706118d3565b60135481116113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90612ed9565b60405180910390fd5b806013819055507f69626ae9392dcbdfaecc4d3af4d6c00e0bb3888f512459d89551c2762e406c41816040516113ea91906128ee565b60405180910390a150565b6113fd6118d3565b606481838561140c9190612da1565b6114169190612da1565b14611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612f45565b60405180910390fd5b82600d8190555081600e8190555080600f819055507f96de94b93d518bd0897ea07894a1a02bcbdf6d913c4c9380bde415f064b783ec83838360405161149e93929190612f65565b60405180910390a1505050565b6114b36118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115199061300e565b60405180910390fd5b61152b81611e99565b50565b6115366118d3565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906130a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361160657611601473373ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b6116ff565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161165c9190612a28565b602060405180830381865afa158015611679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169d91906130d5565b6040518363ffffffff1660e01b81526004016116ba929190613102565b6020604051808303816000875af11580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd9190613140565b505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906131df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613271565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118c691906128ee565b60405180910390a3505050565b6118db611702565b73ffffffffffffffffffffffffffffffffffffffff166118f9610e2f565b73ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611946906132dd565b60405180910390fd5b565b600061195d8484611230565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119d757818110156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613349565b60405180910390fd5b6119d6848484840361170a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906133b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613421565b60405180910390fd5b60008103611ad457611acf83836000612053565b611e94565b6000611adf30610dd3565b90506000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b855750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611b9d5750601060009054906101000a900460ff165b15611bab5760009050611ca8565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611c935750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611c925750611c62610e2f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b5b15611ca2576011549050611ca7565b600090505b5b6000811115611ce857600060648285611cc19190613441565b611ccb91906134b2565b90508084611cd991906134e3565b9350611ce6863083612053565b505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611dbb5760125482118015611d5b5750601060009054906101000a900460ff16155b8015611d735750601060019054906101000a900460ff165b15611dba576001601060006101000a81548160ff021916908315150217905550611d9e6012546122c9565b6000601060006101000a81548160ff0219169083151502179055505b5b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e225750601060009054906101000a900460ff16155b15611e86576000611e3285610dd3565b90506013548482611e439190612da1565b1115611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613563565b60405180910390fd5b505b611e91858585612053565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f99906135cf565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fc890613620565b60006040518083038185875af1925050503d8060008114612005576040519150601f19603f3d011682016040523d82523d6000602084013e61200a565b606091505b505090508061204e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612045906136a7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990613739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612128906137cb565b60405180910390fd5b61213c83838361266d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061385d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122b091906128ee565b60405180910390a36122c3848484612672565b50505050565b60004790506000600267ffffffffffffffff8111156122eb576122ea61387d565b5b6040519080825280602002602001820160405280156123195781602001602082028036833780820191505090505b5090503081600081518110612331576123306138ac565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fc91906138f0565b816001815181106124105761240f6138ac565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016124ae959493929190613a16565b600060405180830381600087803b1580156124c857600080fd5b505af11580156124dc573d6000803e3d6000fd5b50505050600082476124ee91906134e3565b905060006064600d54836125029190613441565b61250c91906134b2565b905060006064600e54846125209190613441565b61252a91906134b2565b905060006064600f548561253e9190613441565b61254891906134b2565b905061259583600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b6125e082600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b61262b81600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b7f54c5e193a68e36b996e0c85b164c5953625d951c488fbad0e67aa32e1c45307b878560405161265c929190613a70565b60405180910390a150505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b1578082015181840152602081019050612696565b60008484015250505050565b6000601f19601f8301169050919050565b60006126d982612677565b6126e38185612682565b93506126f3818560208601612693565b6126fc816126bd565b840191505092915050565b6000602082019050818103600083015261272181846126ce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127598261272e565b9050919050565b6127698161274e565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b6000819050919050565b61279f8161278c565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b600080604083850312156127d9576127d8612729565b5b60006127e785828601612777565b92505060206127f8858286016127ad565b9150509250929050565b60008115159050919050565b61281781612802565b82525050565b6000602082019050612832600083018461280e565b92915050565b60006020828403121561284e5761284d612729565b5b600061285c848285016127ad565b91505092915050565b6000819050919050565b600061288a6128856128808461272e565b612865565b61272e565b9050919050565b600061289c8261286f565b9050919050565b60006128ae82612891565b9050919050565b6128be816128a3565b82525050565b60006020820190506128d960008301846128b5565b92915050565b6128e88161278c565b82525050565b600060208201905061290360008301846128df565b92915050565b60006020828403121561291f5761291e612729565b5b600061292d84828501612777565b91505092915050565b61293f81612802565b811461294a57600080fd5b50565b60008135905061295c81612936565b92915050565b60006020828403121561297857612977612729565b5b60006129868482850161294d565b91505092915050565b6000806000606084860312156129a8576129a7612729565b5b60006129b686828701612777565b93505060206129c786828701612777565b92505060406129d8868287016127ad565b9150509250925092565b600060ff82169050919050565b6129f8816129e2565b82525050565b6000602082019050612a1360008301846129ef565b92915050565b612a228161274e565b82525050565b6000602082019050612a3d6000830184612a19565b92915050565b60008060408385031215612a5a57612a59612729565b5b6000612a6885828601612777565b9250506020612a798582860161294d565b9150509250929050565b60008060408385031215612a9a57612a99612729565b5b6000612aa885828601612777565b9250506020612ab985828601612777565b9150509250929050565b600080600060608486031215612adc57612adb612729565b5b6000612aea868287016127ad565b9350506020612afb868287016127ad565b9250506040612b0c868287016127ad565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5d57607f821691505b602082108103612b7057612b6f612b16565b5b50919050565b7f43454c4c4558546f6b656e3a204e657720666565206d757374206265206c6f7760008201527f6572207468616e206f6c64206665652100000000000000000000000000000000602082015250565b6000612bd2603083612682565b9150612bdd82612b76565b604082019050919050565b60006020820190508181036000830152612c0181612bc5565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000612c3e600f83612682565b9150612c4982612c08565b602082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f43757272656e746c79206174207468652073616d652073746167650000000000600082015250565b6000612caa601b83612682565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b7f5472616465204665652072656365697665722063616e6e6f742062652074686560008201527f207a65726f206f72206465616420616464726573730000000000000000000000602082015250565b6000612d3c603583612682565b9150612d4782612ce0565b604082019050919050565b60006020820190508181036000830152612d6b81612d2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dac8261278c565b9150612db78361278c565b9250828201905080821115612dcf57612dce612d72565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e31602583612682565b9150612e3c82612dd5565b604082019050919050565b60006020820190508181036000830152612e6081612e24565b9050919050565b7f43454c4c4558546f6b656e3a204e6577206c696d6974206d757374206265206860008201527f6967686572207468616e206f6c64657221000000000000000000000000000000602082015250565b6000612ec3603183612682565b9150612ece82612e67565b604082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f50657263656e7461676573206d7573742073756d20746f203130300000000000600082015250565b6000612f2f601b83612682565b9150612f3a82612ef9565b602082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b6000606082019050612f7a60008301866128df565b612f8760208301856128df565b612f9460408301846128df565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ff8602683612682565b915061300382612f9c565b604082019050919050565b6000602082019050818103600083015261302781612feb565b9050919050565b7f4f776e65722063616e6e6f7420636c61696d20636f6e7472616374277320626160008201527f6c616e6365206f6620697473206f776e20746f6b656e73000000000000000000602082015250565b600061308a603783612682565b91506130958261302e565b604082019050919050565b600060208201905081810360008301526130b98161307d565b9050919050565b6000815190506130cf81612796565b92915050565b6000602082840312156130eb576130ea612729565b5b60006130f9848285016130c0565b91505092915050565b60006040820190506131176000830185612a19565b61312460208301846128df565b9392505050565b60008151905061313a81612936565b92915050565b60006020828403121561315657613155612729565b5b60006131648482850161312b565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131c9602483612682565b91506131d48261316d565b604082019050919050565b600060208201905081810360008301526131f8816131bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061325b602283612682565b9150613266826131ff565b604082019050919050565b6000602082019050818103600083015261328a8161324e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132c7602083612682565b91506132d282613291565b602082019050919050565b600060208201905081810360008301526132f6816132ba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613333601d83612682565b915061333e826132fd565b602082019050919050565b6000602082019050818103600083015261336281613326565b9050919050565b7f5472616e736665722066726f6d20746865207a65726f20616464726573730000600082015250565b600061339f601e83612682565b91506133aa82613369565b602082019050919050565b600060208201905081810360008301526133ce81613392565b9050919050565b7f5472616e7366657220746f20746865207a65726f206164647265737300000000600082015250565b600061340b601c83612682565b9150613416826133d5565b602082019050919050565b6000602082019050818103600083015261343a816133fe565b9050919050565b600061344c8261278c565b91506134578361278c565b92508282026134658161278c565b9150828204841483151761347c5761347b612d72565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134bd8261278c565b91506134c88361278c565b9250826134d8576134d7613483565b5b828204905092915050565b60006134ee8261278c565b91506134f98361278c565b925082820390508181111561351157613510612d72565b5b92915050565b7f4d6178696d756d2077616c6c65742073697a6520657863656564656421000000600082015250565b600061354d601d83612682565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006135b9601d83612682565b91506135c482613583565b602082019050919050565b600060208201905081810360008301526135e8816135ac565b9050919050565b600081905092915050565b50565b600061360a6000836135ef565b9150613615826135fa565b600082019050919050565b600061362b826135fd565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613691603a83612682565b915061369c82613635565b604082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613723602583612682565b915061372e826136c7565b604082019050919050565b6000602082019050818103600083015261375281613716565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137b5602383612682565b91506137c082613759565b604082019050919050565b600060208201905081810360008301526137e4816137a8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613847602683612682565b9150613852826137eb565b604082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506138ea81612760565b92915050565b60006020828403121561390657613905612729565b5b6000613914848285016138db565b91505092915050565b6000819050919050565b600061394261393d6139388461391d565b612865565b61278c565b9050919050565b61395281613927565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61398d8161274e565b82525050565b600061399f8383613984565b60208301905092915050565b6000602082019050919050565b60006139c382613958565b6139cd8185613963565b93506139d883613974565b8060005b83811015613a095781516139f08882613993565b97506139fb836139ab565b9250506001810190506139dc565b5085935050505092915050565b600060a082019050613a2b60008301886128df565b613a386020830187613949565b8181036040830152613a4a81866139b8565b9050613a596060830185612a19565b613a6660808301846128df565b9695505050505050565b6000604082019050613a8560008301856128df565b613a9260208301846128df565b939250505056fea2646970667358221220b7068c06862310032a46809a61269a65e7c7281a25f2c5f2c3957f2033d0dcd564736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000d2676c0b71782af6bb495bcc24af05f4eb7cf39f000000000000000000000000dcd25943e70575daefa465794f02e28e83a1249300000000000000000000000097f67d63b385d6b3965246707ddbb438c8a63ac4
Deployed Bytecode
0x6080604052600436106101f25760003560e01c8063715018a61161010d578063b40f9469116100a0578063e16830a81161006f578063e16830a814610732578063e3b24c801461075b578063e501468314610784578063f2fde38b146107ad578063f9d0831a146107d6576101f9565b8063b40f946914610666578063c0246668146106a3578063cc189d4c146106cc578063dd62ed3e146106f5576101f9565b80639d0014b1116100dc5780639d0014b114610598578063a457c2d7146105c1578063a9059cbb146105fe578063acef1a441461063b576101f9565b8063715018a6146105005780638da5cb5b146105175780638f3fa8601461054257806395d89b411461056d576101f9565b806324bcdfbd1161018557806349bd5a5e1161015457806349bd5a5e146104305780634fbee1931461045b5780636ddd17131461049857806370a08231146104c3576101f9565b806324bcdfbd146103745780632548dd3e1461039f578063313ce567146103c857806339509351146103f3576101f9565b806318160ddd116101c157806318160ddd146102ba57806318c39fb3146102e5578063239be29a1461030e57806323b872dd14610337576101f9565b806306fdde03146101fe578063095ea7b3146102295780630f198ee8146102665780631694505e1461028f576101f9565b366101f957005b600080fd5b34801561020a57600080fd5b506102136107ff565b6040516102209190612707565b60405180910390f35b34801561023557600080fd5b50610250600480360381019061024b91906127c2565b610891565b60405161025d919061281d565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612838565b6108b4565b005b34801561029b57600080fd5b506102a4610941565b6040516102b191906128c4565b60405180910390f35b3480156102c657600080fd5b506102cf610967565b6040516102dc91906128ee565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612909565b610971565b005b34801561031a57600080fd5b5061033560048036038101906103309190612962565b610ac0565b005b34801561034357600080fd5b5061035e6004803603810190610359919061298f565b610b80565b60405161036b919061281d565b60405180910390f35b34801561038057600080fd5b50610389610baf565b60405161039691906128ee565b60405180910390f35b3480156103ab57600080fd5b506103c660048036038101906103c19190612909565b610bb5565b005b3480156103d457600080fd5b506103dd610d04565b6040516103ea91906129fe565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906127c2565b610d0d565b604051610427919061281d565b60405180910390f35b34801561043c57600080fd5b50610445610d44565b6040516104529190612a28565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612909565b610d6a565b60405161048f919061281d565b60405180910390f35b3480156104a457600080fd5b506104ad610dc0565b6040516104ba919061281d565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190612909565b610dd3565b6040516104f791906128ee565b60405180910390f35b34801561050c57600080fd5b50610515610e1b565b005b34801561052357600080fd5b5061052c610e2f565b6040516105399190612a28565b60405180910390f35b34801561054e57600080fd5b50610557610e59565b60405161056491906128ee565b60405180910390f35b34801561057957600080fd5b50610582610e5f565b60405161058f9190612707565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612838565b610ef1565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906127c2565b610f3a565b6040516105f5919061281d565b60405180910390f35b34801561060a57600080fd5b50610625600480360381019061062091906127c2565b610fb1565b604051610632919061281d565b60405180910390f35b34801561064757600080fd5b50610650610fd4565b60405161065d91906128ee565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612909565b610fda565b60405161069a919061281d565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612a43565b611030565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612909565b6110e1565b005b34801561070157600080fd5b5061071c60048036038101906107179190612a83565b611230565b60405161072991906128ee565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190612a43565b6112b7565b005b34801561076757600080fd5b50610782600480360381019061077d9190612838565b611368565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612ac3565b6113f5565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190612909565b6114ab565b005b3480156107e257600080fd5b506107fd60048036038101906107f89190612909565b61152e565b005b60606003805461080e90612b45565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90612b45565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b60008061089c611702565b90506108a981858561170a565b600191505092915050565b6108bc6118d3565b6011548110610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790612be8565b60405180910390fd5b806011819055507f521fe74e1c24ea5dc1327c29145ebc90bae09bc5a6f6bea118b4ad87793327a58160405161093691906128ee565b60405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109796118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156109e4575061dead73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90612c54565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f8310875c54f8e05d482790d067d2ec52a711e0857891164937d7d95d6f837903600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610ab59190612a28565b60405180910390a150565b610ac86118d3565b801515601060019054906101000a900460ff16151503610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490612cc0565b60405180910390fd5b80601060016101000a81548160ff0219169083151502179055507f0b24deddd077e0149099adf20869b94ebb4b0898a1068e9af5e30529f596e532601060019054906101000a900460ff16604051610b75919061281d565b60405180910390a150565b600080610b8b611702565b9050610b98858285611951565b610ba38585856119dd565b60019150509392505050565b60115481565b610bbd6118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610c28575061dead73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90612d52565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fc6dfc70a6be41f23f718f4b860a48c13cdee13dc37af8ae93466c6edab7818d1600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051610cf99190612a28565b60405180910390a150565b60006012905090565b600080610d18611702565b9050610d39818585610d2a8589611230565b610d349190612da1565b61170a565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601060019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e236118d3565b610e2d6000611e99565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b606060048054610e6e90612b45565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9a90612b45565b8015610ee75780601f10610ebc57610100808354040283529160200191610ee7565b820191906000526020600020905b815481529060010190602001808311610eca57829003601f168201915b5050505050905090565b610ef96118d3565b806012819055507fb090ae518da13bb076e9fad6694791d1d427db3284f7ac7321fbeafac08c7b2781604051610f2f91906128ee565b60405180910390a150565b600080610f45611702565b90506000610f538286611230565b905083811015610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90612e47565b60405180910390fd5b610fa5828686840361170a565b60019250505092915050565b600080610fbc611702565b9050610fc98185856119dd565b600191505092915050565b60125481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110386118d3565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110d5919061281d565b60405180910390a25050565b6110e96118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611154575061dead73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90612c54565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb0c29cdbbd729bf119f46cecb4cf59b20a65e4c7e3711dba7ec21048ad0e1af2600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516112259190612a28565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112bf6118d3565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f43c98828bda6387bbb8719f1217eea480ede4e6604201e14b04ff8da301a4a328260405161135c919061281d565b60405180910390a25050565b6113706118d3565b60135481116113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90612ed9565b60405180910390fd5b806013819055507f69626ae9392dcbdfaecc4d3af4d6c00e0bb3888f512459d89551c2762e406c41816040516113ea91906128ee565b60405180910390a150565b6113fd6118d3565b606481838561140c9190612da1565b6114169190612da1565b14611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612f45565b60405180910390fd5b82600d8190555081600e8190555080600f819055507f96de94b93d518bd0897ea07894a1a02bcbdf6d913c4c9380bde415f064b783ec83838360405161149e93929190612f65565b60405180910390a1505050565b6114b36118d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115199061300e565b60405180910390fd5b61152b81611e99565b50565b6115366118d3565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b906130a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361160657611601473373ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b6116ff565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161165c9190612a28565b602060405180830381865afa158015611679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169d91906130d5565b6040518363ffffffff1660e01b81526004016116ba929190613102565b6020604051808303816000875af11580156116d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fd9190613140565b505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611779576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611770906131df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df90613271565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118c691906128ee565b60405180910390a3505050565b6118db611702565b73ffffffffffffffffffffffffffffffffffffffff166118f9610e2f565b73ffffffffffffffffffffffffffffffffffffffff161461194f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611946906132dd565b60405180910390fd5b565b600061195d8484611230565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119d757818110156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613349565b60405180910390fd5b6119d6848484840361170a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906133b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613421565b60405180910390fd5b60008103611ad457611acf83836000612053565b611e94565b6000611adf30610dd3565b90506000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b855750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611b9d5750601060009054906101000a900460ff165b15611bab5760009050611ca8565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611c935750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611c925750611c62610e2f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b5b15611ca2576011549050611ca7565b600090505b5b6000811115611ce857600060648285611cc19190613441565b611ccb91906134b2565b90508084611cd991906134e3565b9350611ce6863083612053565b505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611dbb5760125482118015611d5b5750601060009054906101000a900460ff16155b8015611d735750601060019054906101000a900460ff165b15611dba576001601060006101000a81548160ff021916908315150217905550611d9e6012546122c9565b6000601060006101000a81548160ff0219169083151502179055505b5b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e225750601060009054906101000a900460ff16155b15611e86576000611e3285610dd3565b90506013548482611e439190612da1565b1115611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613563565b60405180910390fd5b505b611e91858585612053565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015611fa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f99906135cf565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fc890613620565b60006040518083038185875af1925050503d8060008114612005576040519150601f19603f3d011682016040523d82523d6000602084013e61200a565b606091505b505090508061204e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612045906136a7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990613739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612131576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612128906137cb565b60405180910390fd5b61213c83838361266d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b99061385d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122b091906128ee565b60405180910390a36122c3848484612672565b50505050565b60004790506000600267ffffffffffffffff8111156122eb576122ea61387d565b5b6040519080825280602002602001820160405280156123195781602001602082028036833780820191505090505b5090503081600081518110612331576123306138ac565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123fc91906138f0565b816001815181106124105761240f6138ac565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016124ae959493929190613a16565b600060405180830381600087803b1580156124c857600080fd5b505af11580156124dc573d6000803e3d6000fd5b50505050600082476124ee91906134e3565b905060006064600d54836125029190613441565b61250c91906134b2565b905060006064600e54846125209190613441565b61252a91906134b2565b905060006064600f548561253e9190613441565b61254891906134b2565b905061259583600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b6125e082600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b61262b81600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f5f90919063ffffffff16565b7f54c5e193a68e36b996e0c85b164c5953625d951c488fbad0e67aa32e1c45307b878560405161265c929190613a70565b60405180910390a150505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b1578082015181840152602081019050612696565b60008484015250505050565b6000601f19601f8301169050919050565b60006126d982612677565b6126e38185612682565b93506126f3818560208601612693565b6126fc816126bd565b840191505092915050565b6000602082019050818103600083015261272181846126ce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127598261272e565b9050919050565b6127698161274e565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b6000819050919050565b61279f8161278c565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b600080604083850312156127d9576127d8612729565b5b60006127e785828601612777565b92505060206127f8858286016127ad565b9150509250929050565b60008115159050919050565b61281781612802565b82525050565b6000602082019050612832600083018461280e565b92915050565b60006020828403121561284e5761284d612729565b5b600061285c848285016127ad565b91505092915050565b6000819050919050565b600061288a6128856128808461272e565b612865565b61272e565b9050919050565b600061289c8261286f565b9050919050565b60006128ae82612891565b9050919050565b6128be816128a3565b82525050565b60006020820190506128d960008301846128b5565b92915050565b6128e88161278c565b82525050565b600060208201905061290360008301846128df565b92915050565b60006020828403121561291f5761291e612729565b5b600061292d84828501612777565b91505092915050565b61293f81612802565b811461294a57600080fd5b50565b60008135905061295c81612936565b92915050565b60006020828403121561297857612977612729565b5b60006129868482850161294d565b91505092915050565b6000806000606084860312156129a8576129a7612729565b5b60006129b686828701612777565b93505060206129c786828701612777565b92505060406129d8868287016127ad565b9150509250925092565b600060ff82169050919050565b6129f8816129e2565b82525050565b6000602082019050612a1360008301846129ef565b92915050565b612a228161274e565b82525050565b6000602082019050612a3d6000830184612a19565b92915050565b60008060408385031215612a5a57612a59612729565b5b6000612a6885828601612777565b9250506020612a798582860161294d565b9150509250929050565b60008060408385031215612a9a57612a99612729565b5b6000612aa885828601612777565b9250506020612ab985828601612777565b9150509250929050565b600080600060608486031215612adc57612adb612729565b5b6000612aea868287016127ad565b9350506020612afb868287016127ad565b9250506040612b0c868287016127ad565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5d57607f821691505b602082108103612b7057612b6f612b16565b5b50919050565b7f43454c4c4558546f6b656e3a204e657720666565206d757374206265206c6f7760008201527f6572207468616e206f6c64206665652100000000000000000000000000000000602082015250565b6000612bd2603083612682565b9150612bdd82612b76565b604082019050919050565b60006020820190508181036000830152612c0181612bc5565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000612c3e600f83612682565b9150612c4982612c08565b602082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f43757272656e746c79206174207468652073616d652073746167650000000000600082015250565b6000612caa601b83612682565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b7f5472616465204665652072656365697665722063616e6e6f742062652074686560008201527f207a65726f206f72206465616420616464726573730000000000000000000000602082015250565b6000612d3c603583612682565b9150612d4782612ce0565b604082019050919050565b60006020820190508181036000830152612d6b81612d2f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612dac8261278c565b9150612db78361278c565b9250828201905080821115612dcf57612dce612d72565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612e31602583612682565b9150612e3c82612dd5565b604082019050919050565b60006020820190508181036000830152612e6081612e24565b9050919050565b7f43454c4c4558546f6b656e3a204e6577206c696d6974206d757374206265206860008201527f6967686572207468616e206f6c64657221000000000000000000000000000000602082015250565b6000612ec3603183612682565b9150612ece82612e67565b604082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f50657263656e7461676573206d7573742073756d20746f203130300000000000600082015250565b6000612f2f601b83612682565b9150612f3a82612ef9565b602082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b6000606082019050612f7a60008301866128df565b612f8760208301856128df565b612f9460408301846128df565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ff8602683612682565b915061300382612f9c565b604082019050919050565b6000602082019050818103600083015261302781612feb565b9050919050565b7f4f776e65722063616e6e6f7420636c61696d20636f6e7472616374277320626160008201527f6c616e6365206f6620697473206f776e20746f6b656e73000000000000000000602082015250565b600061308a603783612682565b91506130958261302e565b604082019050919050565b600060208201905081810360008301526130b98161307d565b9050919050565b6000815190506130cf81612796565b92915050565b6000602082840312156130eb576130ea612729565b5b60006130f9848285016130c0565b91505092915050565b60006040820190506131176000830185612a19565b61312460208301846128df565b9392505050565b60008151905061313a81612936565b92915050565b60006020828403121561315657613155612729565b5b60006131648482850161312b565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006131c9602483612682565b91506131d48261316d565b604082019050919050565b600060208201905081810360008301526131f8816131bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061325b602283612682565b9150613266826131ff565b604082019050919050565b6000602082019050818103600083015261328a8161324e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132c7602083612682565b91506132d282613291565b602082019050919050565b600060208201905081810360008301526132f6816132ba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613333601d83612682565b915061333e826132fd565b602082019050919050565b6000602082019050818103600083015261336281613326565b9050919050565b7f5472616e736665722066726f6d20746865207a65726f20616464726573730000600082015250565b600061339f601e83612682565b91506133aa82613369565b602082019050919050565b600060208201905081810360008301526133ce81613392565b9050919050565b7f5472616e7366657220746f20746865207a65726f206164647265737300000000600082015250565b600061340b601c83612682565b9150613416826133d5565b602082019050919050565b6000602082019050818103600083015261343a816133fe565b9050919050565b600061344c8261278c565b91506134578361278c565b92508282026134658161278c565b9150828204841483151761347c5761347b612d72565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134bd8261278c565b91506134c88361278c565b9250826134d8576134d7613483565b5b828204905092915050565b60006134ee8261278c565b91506134f98361278c565b925082820390508181111561351157613510612d72565b5b92915050565b7f4d6178696d756d2077616c6c65742073697a6520657863656564656421000000600082015250565b600061354d601d83612682565b915061355882613517565b602082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006135b9601d83612682565b91506135c482613583565b602082019050919050565b600060208201905081810360008301526135e8816135ac565b9050919050565b600081905092915050565b50565b600061360a6000836135ef565b9150613615826135fa565b600082019050919050565b600061362b826135fd565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613691603a83612682565b915061369c82613635565b604082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613723602583612682565b915061372e826136c7565b604082019050919050565b6000602082019050818103600083015261375281613716565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006137b5602383612682565b91506137c082613759565b604082019050919050565b600060208201905081810360008301526137e4816137a8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613847602683612682565b9150613852826137eb565b604082019050919050565b600060208201905081810360008301526138768161383a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506138ea81612760565b92915050565b60006020828403121561390657613905612729565b5b6000613914848285016138db565b91505092915050565b6000819050919050565b600061394261393d6139388461391d565b612865565b61278c565b9050919050565b61395281613927565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61398d8161274e565b82525050565b600061399f8383613984565b60208301905092915050565b6000602082019050919050565b60006139c382613958565b6139cd8185613963565b93506139d883613974565b8060005b83811015613a095781516139f08882613993565b97506139fb836139ab565b9250506001810190506139dc565b5085935050505092915050565b600060a082019050613a2b60008301886128df565b613a386020830187613949565b8181036040830152613a4a81866139b8565b9050613a596060830185612a19565b613a6660808301846128df565b9695505050505050565b6000604082019050613a8560008301856128df565b613a9260208301846128df565b939250505056fea2646970667358221220b7068c06862310032a46809a61269a65e7c7281a25f2c5f2c3957f2033d0dcd564736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000d2676c0b71782af6bb495bcc24af05f4eb7cf39f000000000000000000000000dcd25943e70575daefa465794f02e28e83a1249300000000000000000000000097f67d63b385d6b3965246707ddbb438c8a63ac4
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _feeReceiver1 (address): 0xD2676C0b71782aF6bB495BCc24aF05f4eb7cF39F
Arg [2] : _feeReceiver2 (address): 0xdcd25943e70575dAefa465794f02e28E83A12493
Arg [3] : _feeReceiver3 (address): 0x97f67d63b385d6B3965246707dDbB438C8a63aC4
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000d2676c0b71782af6bb495bcc24af05f4eb7cf39f
Arg [2] : 000000000000000000000000dcd25943e70575daefa465794f02e28e83a12493
Arg [3] : 00000000000000000000000097f67d63b385d6b3965246707ddbb438c8a63ac4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)