ERC-20
Overview
Max Total Supply
420,000,000,000 ELPEPE
Holders
65
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.465978845783979878 ELPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
pepedemayo
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // ⠄⠄⠄⠄⠄⠄⠄⢀⣀⡠⣒⣶⣖⣲⡤⣀⠄⣠⣴⣶⣶⣶⣖⡤⡄⠄⠄⠄⠄⠄ // ⠄⠄⣀⢄⣐⡦⢤⣴⣓⠢⣬⣿⣿⠿⣋⣑⣂⣀⠠⢤⣬⣽⡛⢿⣷⣽⢤⡀⠄⠄ // ⢀⠰⡁⠴⠲⠶⣶⣶⣾⣅⡐⠭⠑⠄⠭⣿⣿⣿⣍⣒⠍⡻⢿⣶⣾⣿⣷⣷⣀⠄ // ⢈⢰⠁⢰⠆⠂⢹⣿⣿⣿⠁⠎⢠⣄⣤⠘⣿⣿⣿⣿⣷⣌⣉⢻⣿⣿⣿⣿⡞⠄ // ⠘⠠⠓⠦⠤⠾⠿⠿⢛⣣⣤⠣⡌⠁⢂⣰⣿⣿⣿⡿⢛⣣⣴⣿⣿⣿⣿⣿⣿⡀ // ⠄⠄⠢⢅⣒⣒⣀⣩⣿⣿⣿⣓⠮⠍⠉⠉⠉⠩⠵⠶⣛⣱⣾⣿⣿⣿⣿⣿⣿⡇ // ⠄⢸⢘⣻⣿⣿⣿⣿⣛⣛⣛⠛⠿⢶⣶⣶⣶⣶⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇ // ⠄⠈⢬⡻⡉⠄⠄⠈⠉⠙⠛⠛⠛⠿⢿⣶⣦⣭⣝⠻⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇ // ⠄⠄⠄⣧⣿⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠈⠉⠙⢿⡇⣿⣿⣿⣿⣿⣿⣿⣿⡟⠃ // ⠄⠄⠄⣿⣿⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⣤⡼⢡⣿⣿⣿⣿⣿⣿⣿⣿⢳⠄ // ⠄⠄⠄⣿⡿⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⣠⡿⢟⣱⣿⣿⣿⣿⣿⣿⣿⣿⠷⠃⠄ // ⠄⠄⠄⣿⣿⣄⣀⣀⠄⠄⢀⣀⣠⣶⢟⣹⣶⣿⣿⣿⣿⣿⣿⣿⡿⢟⠕⠁⠄⠄ // ⠄⠄⠄⠡⣍⣛⣛⣛⣻⣿⣿⣯⣭⣴⣿⣿⣿⣿⣿⣿⣿⡿⢟⡻⠕⠉⠄⠄⠄⠄ // ⠄⠄⠄⠄⠄⠉⠒⠯⠽⠟⠛⠛⠛⠛⠛⠻⠿⠭⠽⠒⠉⠁⠄⠄⠄⠄⠄⠄⠄⠄ //Hola Muchachos! //Twitter: https://twitter.com/pepedemayo //Website: https://pepedemayo.vip/ //Telegram: https://t.me/pepedemayoentry pragma solidity 0.8.18; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns(address pair); } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns(uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns(uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns(bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns(uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns(bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns(bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } abstract contract Context { function _msgSender() internal view virtual returns(address) { return msg.sender; } } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns(string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns(string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns(uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns(uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns(uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns(bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns(uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns(bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns(bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased cannot be below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns(uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns(uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns(uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns(uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns(address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns(int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns(int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns(int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns(int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns(int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns(uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns(int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns(address); function WETH() external pure returns(address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns(uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns(uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns(uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns(uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns(uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns(uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns(uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns(uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns(uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns(uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns(uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns(uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns(uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns(uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns(uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns(uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns(uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns(uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns(uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract pepedemayo is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable router; address public immutable uniswapV2Pair; // addresses address public devWallet; address private marketingWallet; // limits uint256 private maxBuyAmount; uint256 private maxSellAmount; uint256 private maxWalletAmount; uint256 private thresholdSwapAmount; // status flags bool private isTrading = false; bool public swapEnabled = false; bool public isSwapping; struct Fees { uint8 buyTotalFees; uint8 buyMarketingFee; uint8 buyDevFee; uint8 buyLiquidityFee; uint8 sellTotalFees; uint8 sellMarketingFee; uint8 sellDevFee; uint8 sellLiquidityFee; } Fees public _fees = Fees({ buyTotalFees: 0, buyMarketingFee: 0, buyDevFee:0, buyLiquidityFee: 0, sellTotalFees: 0, sellMarketingFee: 0, sellDevFee:0, sellLiquidityFee: 0 }); uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 private taxTill; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxWalletAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public marketPair; mapping(address => bool) public _isBlacklisted; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived ); constructor() ERC20("Pepe De Mayo", "ELPEPE") { router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedMaxWalletAmount[owner()] = true; _isExcludedMaxWalletAmount[address(this)] = true; _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true; marketPair[address(uniswapV2Pair)] = true; approve(address(router), type(uint256).max); uint256 totalSupply = 42e10 * 1e18; maxWalletAmount = totalSupply * 1 / 100; // 1% maxWallet thresholdSwapAmount = totalSupply * 1 / 10000; // 0.01% swap wallet _fees.buyMarketingFee = 18; _fees.buyLiquidityFee = 0; _fees.buyDevFee = 6; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee; _fees.sellMarketingFee = 18; _fees.sellLiquidityFee = 0; _fees.sellDevFee = 6; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee; marketingWallet = address(0xE7eC597584233a3b2590Fd6446ab8Ae3582d1343); devWallet = address(0x4921F83477faEeE446Ee8beEa70ede83Ed52027E); // exclude from paying fees or having max transaction amount /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function swapTrading() external onlyOwner { isTrading = true; swapEnabled = true; taxTill = block.number + 2; } // change the minimum amount of tokens to sell from fees function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns(bool){ thresholdSwapAmount = newAmount; return true; } function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner { require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 100), "Cannot set maxWallet lower than 1%"); maxWalletAmount = (totalSupply() * newPercentage) / 1000; } // only use to disable contract sales if absolutely necessary (emergency use only) function toggleSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function blacklistAddress(address account, bool value) external onlyOwner{ _isBlacklisted[account] = value; } function updateFees(uint8 _marketingFeeBuy, uint8 _liquidityFeeBuy,uint8 _devFeeBuy,uint8 _marketingFeeSell, uint8 _liquidityFeeSell,uint8 _devFeeSell) external onlyOwner{ _fees.buyMarketingFee = _marketingFeeBuy; _fees.buyLiquidityFee = _liquidityFeeBuy; _fees.buyDevFee = _devFeeBuy; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevFee; _fees.sellMarketingFee = _marketingFeeSell; _fees.sellLiquidityFee = _liquidityFeeSell; _fees.sellDevFee = _devFeeSell; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevFee; require(_fees.buyTotalFees <= 30, "Must keep fees at 30% or less"); require(_fees.sellTotalFees <= 30, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function excludeFromWalletLimit(address account, bool excluded) public onlyOwner { _isExcludedMaxWalletAmount[account] = excluded; } function setMarketPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "Must keep uniswapV2Pair"); marketPair[pair] = value; } function setWallets(address _marketingWallet,address _devWallet) external onlyOwner{ marketingWallet = _marketingWallet; devWallet = _devWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address sender, address recipient, uint256 amount ) internal override { if (amount == 0) { super._transfer(sender, recipient, 0); return; } if ( sender != owner() && recipient != owner() && !isSwapping ) { if (!isTrading) { require(_isExcludedFromFees[sender] || _isExcludedFromFees[recipient], "Trading is not active."); } if (!_isExcludedMaxWalletAmount[recipient]) { require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded"); } require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "Blacklisted address"); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= thresholdSwapAmount; if ( canSwap && swapEnabled && !isSwapping && marketPair[recipient] && !_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient] ) { isSwapping = true; swapBack(); isSwapping = false; } bool takeFee = !isSwapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) { takeFee = false; } // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { uint256 fees = 0; if(block.number < taxTill) { fees = amount.mul(99).div(100); tokensForMarketing += (fees * 94) / 99; tokensForDev += (fees * 5) / 99; } else if (marketPair[recipient] && _fees.sellTotalFees > 0) { fees = amount.mul(_fees.sellTotalFees).div(100); tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees; tokensForMarketing += fees * _fees.sellMarketingFee / _fees.sellTotalFees; tokensForDev += fees * _fees.sellDevFee / _fees.sellTotalFees; } // on buy else if (marketPair[sender] && _fees.buyTotalFees > 0) { fees = amount.mul(_fees.buyTotalFees).div(100); tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees; tokensForMarketing += fees * _fees.buyMarketingFee / _fees.buyTotalFees; tokensForDev += fees * _fees.buyDevFee / _fees.buyTotalFees; } if (fees > 0) { super._transfer(sender, address(this), fees); } amount -= fees; } super._transfer(sender, recipient, amount); } function swapTokensForEth(uint256 tAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tAmount); // make the swap router.swapExactTokensForETHSupportingFeeOnTransferTokens( tAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(router), tAmount); // add the liquidity router.addLiquidityETH{ value: ethAmount } (address(this), tAmount, 0, 0 , address(this), block.timestamp); } function swapBack() private { uint256 contractTokenBalance = balanceOf(address(this)); uint256 toSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractTokenBalance == 0 || toSwap == 0) { return; } if (contractTokenBalance > thresholdSwapAmount * 20) { contractTokenBalance = thresholdSwapAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractTokenBalance * tokensForLiquidity / toSwap / 2; uint256 amountToSwapForETH = contractTokenBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 newBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = newBalance.mul(tokensForMarketing).div(toSwap); uint256 ethForDev = newBalance.mul(tokensForDev).div(toSwap); uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDev); tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity); } (success,) = address(devWallet).call{ value: (address(this).balance - ethForMarketing) } (""); (success,) = address(marketingWallet).call{ value: address(this).balance } (""); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint8","name":"buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"buyMarketingFee","type":"uint8"},{"internalType":"uint8","name":"buyDevFee","type":"uint8"},{"internalType":"uint8","name":"buyLiquidityFee","type":"uint8"},{"internalType":"uint8","name":"sellTotalFees","type":"uint8"},{"internalType":"uint8","name":"sellMarketingFee","type":"uint8"},{"internalType":"uint8","name":"sellDevFee","type":"uint8"},{"internalType":"uint8","name":"sellLiquidityFee","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_marketingFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_devFeeBuy","type":"uint8"},{"internalType":"uint8","name":"_marketingFeeSell","type":"uint8"},{"internalType":"uint8","name":"_liquidityFeeSell","type":"uint8"},{"internalType":"uint8","name":"_devFeeSell","type":"uint8"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateThresholdSwapAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550604051806101000160405280600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff16815250600d60008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160000160016101000a81548160ff021916908360ff16021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055505050348015620001ad57600080fd5b506040518060400160405280600c81526020017f50657065204465204d61796f00000000000000000000000000000000000000008152506040518060400160405280600681526020017f454c50455045000000000000000000000000000000000000000000000000000081525081600390816200022b919062000fb2565b5080600490816200023d919062000fb2565b505050600062000252620009ee60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000387573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ad919062001103565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000417573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043d919062001103565b6040518363ffffffff1660e01b81526004016200045c92919062001146565b6020604051808303816000875af11580156200047c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a2919062001103565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160126000620004eb620009f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000620005aa620009f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016013600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200073b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a2060201b60201c565b5060006c054d17db76321263eca0000000905060646001826200075f9190620011a2565b6200076b91906200121c565b600a81905550612710600182620007839190620011a2565b6200078f91906200121c565b600b819055506012600d60000160016101000a81548160ff021916908360ff1602179055506000600d60000160036101000a81548160ff021916908360ff1602179055506006600d60000160026101000a81548160ff021916908360ff160217905550600d60000160029054906101000a900460ff16600d60000160039054906101000a900460ff16600d60000160019054906101000a900460ff1662000837919062001261565b62000843919062001261565b600d60000160006101000a81548160ff021916908360ff1602179055506012600d60000160056101000a81548160ff021916908360ff1602179055506000600d60000160076101000a81548160ff021916908360ff1602179055506006600d60000160066101000a81548160ff021916908360ff160217905550600d60000160069054906101000a900460ff16600d60000160079054906101000a900460ff16600d60000160059054906101000a900460ff1662000902919062001261565b6200090e919062001261565b600d60000160046101000a81548160ff021916908360ff16021790555073e7ec597584233a3b2590fd6446ab8ae3582d1343600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734921f83477faeee446ee8beea70ede83ed52027e600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620009e7338262000a4e60201b60201c565b50620013fb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600062000a4462000a36620009ee60201b60201c565b848462000be860201b60201c565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ac0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab790620012fe565b60405180910390fd5b62000adc8160025462000cd560201b62001ea31790919060201c565b60028190555062000b3a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000cd560201b62001ea31790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bdc919062001331565b60405180910390a35050565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000cc8919062001331565b60405180910390a3505050565b600080828462000ce691906200134e565b90508381101562000d2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d2590620013d9565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000dba57607f821691505b60208210810362000dd05762000dcf62000d72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000dfb565b62000e46868362000dfb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e9362000e8d62000e878462000e5e565b62000e68565b62000e5e565b9050919050565b6000819050919050565b62000eaf8362000e72565b62000ec762000ebe8262000e9a565b84845462000e08565b825550505050565b600090565b62000ede62000ecf565b62000eeb81848462000ea4565b505050565b5b8181101562000f135762000f0760008262000ed4565b60018101905062000ef1565b5050565b601f82111562000f625762000f2c8162000dd6565b62000f378462000deb565b8101602085101562000f47578190505b62000f5f62000f568562000deb565b83018262000ef0565b50505b505050565b600082821c905092915050565b600062000f876000198460080262000f67565b1980831691505092915050565b600062000fa2838362000f74565b9150826002028217905092915050565b62000fbd8262000d38565b67ffffffffffffffff81111562000fd95762000fd862000d43565b5b62000fe5825462000da1565b62000ff282828562000f17565b600060209050601f8311600181146200102a576000841562001015578287015190505b62001021858262000f94565b86555062001091565b601f1984166200103a8662000dd6565b60005b8281101562001064578489015182556001820191506020850194506020810190506200103d565b8683101562001084578489015162001080601f89168262000f74565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010cb826200109e565b9050919050565b620010dd81620010be565b8114620010e957600080fd5b50565b600081519050620010fd81620010d2565b92915050565b6000602082840312156200111c576200111b62001099565b5b60006200112c84828501620010ec565b91505092915050565b6200114081620010be565b82525050565b60006040820190506200115d600083018562001135565b6200116c602083018462001135565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011af8262000e5e565b9150620011bc8362000e5e565b9250828202620011cc8162000e5e565b91508282048414831517620011e657620011e562001173565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012298262000e5e565b9150620012368362000e5e565b925082620012495762001248620011ed565b5b828204905092915050565b600060ff82169050919050565b60006200126e8262001254565b91506200127b8362001254565b9250828201905060ff81111562001297576200129662001173565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012e6601f836200129d565b9150620012f382620012ae565b602082019050919050565b600060208201905081810360008301526200131981620012d7565b9050919050565b6200132b8162000e5e565b82525050565b600060208201905062001348600083018462001320565b92915050565b60006200135b8262000e5e565b9150620013688362000e5e565b925082820190508082111562001383576200138262001173565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620013c1601b836200129d565b9150620013ce8262001389565b602082019050919050565b60006020820190508181036000830152620013f481620013b2565b9050919050565b60805160a05161431e6200144b600039600081816110020152611749015260008181611e8101528181613074015281816131550152818161317c01528181613218015261323f015261431e6000f3fe60806040526004361061021e5760003560e01c80638da5cb5b11610123578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e1461080f578063e16830a81461084c578063f2fde38b14610875578063f5b3c3bf1461089e578063f887ea40146108db57610225565b8063c024666814610739578063c16dd4a414610762578063c18bc1951461078b578063d212a69a146107b4578063d3f6a157146107e657610225565b80639fccce32116100f25780639fccce3214610652578063a457c2d71461067d578063a9059cbb146106ba578063b8863115146106f7578063b9e418e71461072257610225565b80638da5cb5b146105945780638ea5220f146105bf57806395d89b41146105ea57806396880b171461061557610225565b80633265e846116101a65780634fbee193116101755780634fbee1931461049b578063555467a1146104d85780636ddd17131461051557806370a0823114610540578063715018a61461057d57610225565b80633265e846146103e1578063395093511461040a578063455a43961461044757806349bd5a5e1461047057610225565b80631c6e8a75116101ed5780631c6e8a75146102e85780631cdd3be3146103115780631f3fed8f1461034e57806323b872dd14610379578063313ce567146103b657610225565b806306fdde031461022a578063095ea7b31461025557806318160ddd146102925780631a8145bb146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f610906565b60405161024c91906133df565b60405180910390f35b34801561026157600080fd5b5061027c6004803603810190610277919061349a565b610998565b60405161028991906134f5565b60405180910390f35b34801561029e57600080fd5b506102a76109b6565b6040516102b4919061351f565b60405180910390f35b3480156102c957600080fd5b506102d26109c0565b6040516102df919061351f565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190613566565b6109c6565b005b34801561031d57600080fd5b5061033860048036038101906103339190613593565b610a7a565b60405161034591906134f5565b60405180910390f35b34801561035a57600080fd5b50610363610a9a565b604051610370919061351f565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906135c0565b610aa0565b6040516103ad91906134f5565b60405180910390f35b3480156103c257600080fd5b506103cb610b79565b6040516103d8919061362f565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613676565b610b82565b005b34801561041657600080fd5b50610431600480360381019061042c919061349a565b610e5b565b60405161043e91906134f5565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613703565b610f0e565b005b34801561047c57600080fd5b50610485611000565b6040516104929190613752565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613593565b611024565b6040516104cf91906134f5565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa919061376d565b61107a565b60405161050c91906134f5565b60405180910390f35b34801561052157600080fd5b5061052a611123565b60405161053791906134f5565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190613593565b611136565b604051610574919061351f565b60405180910390f35b34801561058957600080fd5b5061059261117e565b005b3480156105a057600080fd5b506105a96112d6565b6040516105b69190613752565b60405180910390f35b3480156105cb57600080fd5b506105d4611300565b6040516105e19190613752565b60405180910390f35b3480156105f657600080fd5b506105ff611326565b60405161060c91906133df565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613593565b6113b8565b60405161064991906134f5565b60405180910390f35b34801561065e57600080fd5b506106676113d8565b604051610674919061351f565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061349a565b6113de565b6040516106b191906134f5565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc919061349a565b6114ab565b6040516106ee91906134f5565b60405180910390f35b34801561070357600080fd5b5061070c6114c9565b60405161071991906134f5565b60405180910390f35b34801561072e57600080fd5b506107376114dc565b005b34801561074557600080fd5b50610760600480360381019061075b9190613703565b6115be565b005b34801561076e57600080fd5b5061078960048036038101906107849190613703565b6116b0565b005b34801561079757600080fd5b506107b260048036038101906107ad919061376d565b611830565b005b3480156107c057600080fd5b506107c9611965565b6040516107dd98979695949392919061379a565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613818565b611a03565b005b34801561081b57600080fd5b5061083660048036038101906108319190613818565b611b20565b604051610843919061351f565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613703565b611ba7565b005b34801561088157600080fd5b5061089c60048036038101906108979190613593565b611c99565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613593565b611e5f565b6040516108d291906134f5565b60405180910390f35b3480156108e757600080fd5b506108f0611e7f565b6040516108fd91906138b7565b60405180910390f35b60606003805461091590613901565b80601f016020809104026020016040519081016040528092919081815260200182805461094190613901565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b60006109ac6109a5611f01565b8484611f09565b6001905092915050565b6000600254905090565b600f5481565b6109ce611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a549061397e565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b600e5481565b6000610aad848484611ff4565b610b6e84610ab9611f01565b610b69856040518060600160405280602881526020016142c160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b1f611f01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cb9092919063ffffffff16565b611f09565b600190509392505050565b60006012905090565b610b8a611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c109061397e565b60405180910390fd5b85600d60000160016101000a81548160ff021916908360ff16021790555084600d60000160036101000a81548160ff021916908360ff16021790555083600d60000160026101000a81548160ff021916908360ff160217905550600d60000160029054906101000a900460ff16600d60000160039054906101000a900460ff16600d60000160019054906101000a900460ff16610cb691906139cd565b610cc091906139cd565b600d60000160006101000a81548160ff021916908360ff16021790555082600d60000160056101000a81548160ff021916908360ff16021790555081600d60000160076101000a81548160ff021916908360ff16021790555080600d60000160066101000a81548160ff021916908360ff160217905550600d60000160069054906101000a900460ff16600d60000160079054906101000a900460ff16600d60000160059054906101000a900460ff16610d7a91906139cd565b610d8491906139cd565b600d60000160046101000a81548160ff021916908360ff160217905550601e600d60000160009054906101000a900460ff1660ff161115610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613a4e565b60405180910390fd5b601e600d60000160049054906101000a900460ff1660ff161115610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613a4e565b60405180910390fd5b505050505050565b6000610f04610e68611f01565b84610eff8560016000610e79611f01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea390919063ffffffff16565b611f09565b6001905092915050565b610f16611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c9061397e565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611084611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061397e565b60405180910390fd5b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611186611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061397e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461133590613901565b80601f016020809104026020016040519081016040528092919081815260200182805461136190613901565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b5050505050905090565b60136020528060005260406000206000915054906101000a900460ff1681565b60105481565b60006114a16113eb611f01565b8461149c856040518060600160405280602581526020016142766025913960016000611415611f01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cb9092919063ffffffff16565b611f09565b6001905092915050565b60006114bf6114b8611f01565b8484611ff4565b6001905092915050565b600c60029054906101000a900460ff1681565b6114e4611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061397e565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506002436115b69190613a6e565b601181905550565b6115c6611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061397e565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116b8611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061397e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90613aee565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611838611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be9061397e565b60405180910390fd5b60646118d16109b6565b6118db9190613b3d565b6103e8826118e76109b6565b6118f19190613b6e565b6118fb9190613b3d565b101561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613c22565b60405180910390fd5b6103e8816119486109b6565b6119529190613b6e565b61195c9190613b3d565b600a8190555050565b600d8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16908060000160039054906101000a900460ff16908060000160049054906101000a900460ff16908060000160059054906101000a900460ff16908060000160069054906101000a900460ff16908060000160079054906101000a900460ff16905088565b611a0b611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a919061397e565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611baf611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c359061397e565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611ca1611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061397e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690613cb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000808284611eb29190613a6e565b905083811015611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90613d20565b60405180910390fd5b8091505092915050565b600033905090565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fe7919061351f565b60405180910390a3505050565b6000810361200d5761200883836000612a2f565b6129c6565b6120156112d6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208357506120536112d6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561209c5750600c60029054906101000a900460ff16155b1561232457600c60009054906101000a900460ff1661219657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121565750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90613d8c565b60405180910390fd5b5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661224057600a546121f383611136565b826121fe9190613a6e565b111561223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690613df8565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122e45750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613e64565b60405180910390fd5b5b600061232f30611136565b90506000600b5482101590508080156123545750600c60019054906101000a900460ff165b801561236d5750600c60029054906101000a900460ff16155b80156123c25750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156124185750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561246e5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124b2576001600c60026101000a81548160ff021916908315150217905550612496612bd9565b6000600c60026101000a81548160ff0219169083151502179055505b6000600c60029054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125685750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561257257600090505b80156129b7576000601154431015612614576125ab606461259d606388612ec790919063ffffffff16565b612f4190919063ffffffff16565b90506063605e826125bc9190613b6e565b6125c69190613b3d565b600e60008282546125d79190613a6e565b9250508190555060636005826125ed9190613b6e565b6125f79190613b3d565b601060008282546126089190613a6e565b92505081905550612992565b601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561268257506000600d60000160049054906101000a900460ff1660ff16115b156127d4576126c260646126b4600d60000160049054906101000a900460ff1660ff1688612ec790919063ffffffff16565b612f4190919063ffffffff16565b9050600d60000160049054906101000a900460ff1660ff16600d60000160079054906101000a900460ff1660ff16826126fb9190613b6e565b6127059190613b3d565b600f60008282546127169190613a6e565b92505081905550600d60000160049054906101000a900460ff1660ff16600d60000160059054906101000a900460ff1660ff16826127549190613b6e565b61275e9190613b3d565b600e600082825461276f9190613a6e565b92505081905550600d60000160049054906101000a900460ff1660ff16600d60000160069054906101000a900460ff1660ff16826127ad9190613b6e565b6127b79190613b3d565b601060008282546127c89190613a6e565b92505081905550612991565b601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561284257506000600d60000160009054906101000a900460ff1660ff16115b15612990576128826064612874600d60000160009054906101000a900460ff1660ff1688612ec790919063ffffffff16565b612f4190919063ffffffff16565b9050600d60000160009054906101000a900460ff1660ff16600d60000160039054906101000a900460ff1660ff16826128bb9190613b6e565b6128c59190613b3d565b600f60008282546128d69190613a6e565b92505081905550600d60000160009054906101000a900460ff1660ff16600d60000160019054906101000a900460ff1660ff16826129149190613b6e565b61291e9190613b3d565b600e600082825461292f9190613a6e565b92505081905550600d60000160009054906101000a900460ff1660ff16600d60000160029054906101000a900460ff1660ff168261296d9190613b6e565b6129779190613b3d565b601060008282546129889190613a6e565b925050819055505b5b5b60008111156129a7576129a6873083612a2f565b5b80856129b39190613e84565b9450505b6129c2868686612a2f565b5050505b505050565b6000838311158290612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a91906133df565b60405180910390fd5b5060008385612a229190613e84565b9050809150509392505050565b612a9a8160405180606001604052806026815260200161429b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b2d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612bcc919061351f565b60405180910390a3505050565b6000612be430611136565b90506000601054600e54600f54612bfb9190613a6e565b612c059190613a6e565b9050600080831480612c175750600082145b15612c2457505050612ec5565b6014600b54612c339190613b6e565b831115612c4c576014600b54612c499190613b6e565b92505b6000600283600f5486612c5f9190613b6e565b612c699190613b3d565b612c739190613b3d565b90506000612c8a8286612f8b90919063ffffffff16565b90506000479050612c9a82612fd5565b6000612caf8247612f8b90919063ffffffff16565b90506000612cda87612ccc600e5485612ec790919063ffffffff16565b612f4190919063ffffffff16565b90506000612d0588612cf760105486612ec790919063ffffffff16565b612f4190919063ffffffff16565b905060008183612d159190613a6e565b84612d209190613e84565b90506000600f819055506000600e819055506000601081905550600087118015612d4a5750600081115b15612d9357612d598782613212565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612d8a929190613eb8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612dd89190613e84565b604051612de490613f12565b60006040518083038185875af1925050503d8060008114612e21576040519150601f19603f3d011682016040523d82523d6000602084013e612e26565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612e7290613f12565b60006040518083038185875af1925050503d8060008114612eaf576040519150601f19603f3d011682016040523d82523d6000602084013e612eb4565b606091505b505080985050505050505050505050505b565b6000808303612ed95760009050612f3b565b60008284612ee79190613b6e565b9050828482612ef69190613b3d565b14612f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d90613f99565b60405180910390fd5b809150505b92915050565b6000612f8383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506132ec565b905092915050565b6000612fcd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129cb565b905092915050565b6000600267ffffffffffffffff811115612ff257612ff1613fb9565b5b6040519080825280602002602001820160405280156130205781602001602082028036833780820191505090505b509050308160008151811061303857613037613fe8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613101919061402c565b8160018151811061311557613114613fe8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061317a307f000000000000000000000000000000000000000000000000000000000000000084611f09565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016131dc959493929190614152565b600060405180830381600087803b1580156131f657600080fd5b505af115801561320a573d6000803e3d6000fd5b505050505050565b61323d307f000000000000000000000000000000000000000000000000000000000000000084611f09565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016132a2969594939291906141ac565b60606040518083038185885af11580156132c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132e59190614222565b5050505050565b60008083118290613333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332a91906133df565b60405180910390fd5b50600083856133429190613b3d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561338957808201518184015260208101905061336e565b60008484015250505050565b6000601f19601f8301169050919050565b60006133b18261334f565b6133bb818561335a565b93506133cb81856020860161336b565b6133d481613395565b840191505092915050565b600060208201905081810360008301526133f981846133a6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343182613406565b9050919050565b61344181613426565b811461344c57600080fd5b50565b60008135905061345e81613438565b92915050565b6000819050919050565b61347781613464565b811461348257600080fd5b50565b6000813590506134948161346e565b92915050565b600080604083850312156134b1576134b0613401565b5b60006134bf8582860161344f565b92505060206134d085828601613485565b9150509250929050565b60008115159050919050565b6134ef816134da565b82525050565b600060208201905061350a60008301846134e6565b92915050565b61351981613464565b82525050565b60006020820190506135346000830184613510565b92915050565b613543816134da565b811461354e57600080fd5b50565b6000813590506135608161353a565b92915050565b60006020828403121561357c5761357b613401565b5b600061358a84828501613551565b91505092915050565b6000602082840312156135a9576135a8613401565b5b60006135b78482850161344f565b91505092915050565b6000806000606084860312156135d9576135d8613401565b5b60006135e78682870161344f565b93505060206135f88682870161344f565b925050604061360986828701613485565b9150509250925092565b600060ff82169050919050565b61362981613613565b82525050565b60006020820190506136446000830184613620565b92915050565b61365381613613565b811461365e57600080fd5b50565b6000813590506136708161364a565b92915050565b60008060008060008060c0878903121561369357613692613401565b5b60006136a189828a01613661565b96505060206136b289828a01613661565b95505060406136c389828a01613661565b94505060606136d489828a01613661565b93505060806136e589828a01613661565b92505060a06136f689828a01613661565b9150509295509295509295565b6000806040838503121561371a57613719613401565b5b60006137288582860161344f565b925050602061373985828601613551565b9150509250929050565b61374c81613426565b82525050565b60006020820190506137676000830184613743565b92915050565b60006020828403121561378357613782613401565b5b600061379184828501613485565b91505092915050565b6000610100820190506137b0600083018b613620565b6137bd602083018a613620565b6137ca6040830189613620565b6137d76060830188613620565b6137e46080830187613620565b6137f160a0830186613620565b6137fe60c0830185613620565b61380b60e0830184613620565b9998505050505050505050565b6000806040838503121561382f5761382e613401565b5b600061383d8582860161344f565b925050602061384e8582860161344f565b9150509250929050565b6000819050919050565b600061387d61387861387384613406565b613858565b613406565b9050919050565b600061388f82613862565b9050919050565b60006138a182613884565b9050919050565b6138b181613896565b82525050565b60006020820190506138cc60008301846138a8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061391957607f821691505b60208210810361392c5761392b6138d2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061396860208361335a565b915061397382613932565b602082019050919050565b600060208201905081810360008301526139978161395b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139d882613613565b91506139e383613613565b9250828201905060ff8111156139fc576139fb61399e565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613a38601d8361335a565b9150613a4382613a02565b602082019050919050565b60006020820190508181036000830152613a6781613a2b565b9050919050565b6000613a7982613464565b9150613a8483613464565b9250828201905080821115613a9c57613a9b61399e565b5b92915050565b7f4d757374206b65657020756e6973776170563250616972000000000000000000600082015250565b6000613ad860178361335a565b9150613ae382613aa2565b602082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4882613464565b9150613b5383613464565b925082613b6357613b62613b0e565b5b828204905092915050565b6000613b7982613464565b9150613b8483613464565b9250828202613b9281613464565b91508282048414831517613ba957613ba861399e565b5b5092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c0c60228361335a565b9150613c1782613bb0565b604082019050919050565b60006020820190508181036000830152613c3b81613bff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c9e60268361335a565b9150613ca982613c42565b604082019050919050565b60006020820190508181036000830152613ccd81613c91565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613d0a601b8361335a565b9150613d1582613cd4565b602082019050919050565b60006020820190508181036000830152613d3981613cfd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d7660168361335a565b9150613d8182613d40565b602082019050919050565b60006020820190508181036000830152613da581613d69565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613de260138361335a565b9150613ded82613dac565b602082019050919050565b60006020820190508181036000830152613e1181613dd5565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000613e4e60138361335a565b9150613e5982613e18565b602082019050919050565b60006020820190508181036000830152613e7d81613e41565b9050919050565b6000613e8f82613464565b9150613e9a83613464565b9250828203905081811115613eb257613eb161399e565b5b92915050565b6000604082019050613ecd6000830185613510565b613eda6020830184613510565b9392505050565b600081905092915050565b50565b6000613efc600083613ee1565b9150613f0782613eec565b600082019050919050565b6000613f1d82613eef565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f8360218361335a565b9150613f8e82613f27565b604082019050919050565b60006020820190508181036000830152613fb281613f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061402681613438565b92915050565b60006020828403121561404257614041613401565b5b600061405084828501614017565b91505092915050565b6000819050919050565b600061407e61407961407484614059565b613858565b613464565b9050919050565b61408e81614063565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140c981613426565b82525050565b60006140db83836140c0565b60208301905092915050565b6000602082019050919050565b60006140ff82614094565b614109818561409f565b9350614114836140b0565b8060005b8381101561414557815161412c88826140cf565b9750614137836140e7565b925050600181019050614118565b5085935050505092915050565b600060a0820190506141676000830188613510565b6141746020830187614085565b818103604083015261418681866140f4565b90506141956060830185613743565b6141a26080830184613510565b9695505050505050565b600060c0820190506141c16000830189613743565b6141ce6020830188613510565b6141db6040830187614085565b6141e86060830186614085565b6141f56080830185613743565b61420260a0830184613510565b979650505050505050565b60008151905061421c8161346e565b92915050565b60008060006060848603121561423b5761423a613401565b5b60006142498682870161420d565b935050602061425a8682870161420d565b925050604061426b8682870161420d565b915050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122039042059931d2a0f5275c2e5cfe506fd7e87414fa79e4c118024b2945e505ebb64736f6c63430008120033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80638da5cb5b11610123578063c0246668116100ab578063dd62ed3e1161006f578063dd62ed3e1461080f578063e16830a81461084c578063f2fde38b14610875578063f5b3c3bf1461089e578063f887ea40146108db57610225565b8063c024666814610739578063c16dd4a414610762578063c18bc1951461078b578063d212a69a146107b4578063d3f6a157146107e657610225565b80639fccce32116100f25780639fccce3214610652578063a457c2d71461067d578063a9059cbb146106ba578063b8863115146106f7578063b9e418e71461072257610225565b80638da5cb5b146105945780638ea5220f146105bf57806395d89b41146105ea57806396880b171461061557610225565b80633265e846116101a65780634fbee193116101755780634fbee1931461049b578063555467a1146104d85780636ddd17131461051557806370a0823114610540578063715018a61461057d57610225565b80633265e846146103e1578063395093511461040a578063455a43961461044757806349bd5a5e1461047057610225565b80631c6e8a75116101ed5780631c6e8a75146102e85780631cdd3be3146103115780631f3fed8f1461034e57806323b872dd14610379578063313ce567146103b657610225565b806306fdde031461022a578063095ea7b31461025557806318160ddd146102925780631a8145bb146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f610906565b60405161024c91906133df565b60405180910390f35b34801561026157600080fd5b5061027c6004803603810190610277919061349a565b610998565b60405161028991906134f5565b60405180910390f35b34801561029e57600080fd5b506102a76109b6565b6040516102b4919061351f565b60405180910390f35b3480156102c957600080fd5b506102d26109c0565b6040516102df919061351f565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190613566565b6109c6565b005b34801561031d57600080fd5b5061033860048036038101906103339190613593565b610a7a565b60405161034591906134f5565b60405180910390f35b34801561035a57600080fd5b50610363610a9a565b604051610370919061351f565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906135c0565b610aa0565b6040516103ad91906134f5565b60405180910390f35b3480156103c257600080fd5b506103cb610b79565b6040516103d8919061362f565b60405180910390f35b3480156103ed57600080fd5b5061040860048036038101906104039190613676565b610b82565b005b34801561041657600080fd5b50610431600480360381019061042c919061349a565b610e5b565b60405161043e91906134f5565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190613703565b610f0e565b005b34801561047c57600080fd5b50610485611000565b6040516104929190613752565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613593565b611024565b6040516104cf91906134f5565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa919061376d565b61107a565b60405161050c91906134f5565b60405180910390f35b34801561052157600080fd5b5061052a611123565b60405161053791906134f5565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190613593565b611136565b604051610574919061351f565b60405180910390f35b34801561058957600080fd5b5061059261117e565b005b3480156105a057600080fd5b506105a96112d6565b6040516105b69190613752565b60405180910390f35b3480156105cb57600080fd5b506105d4611300565b6040516105e19190613752565b60405180910390f35b3480156105f657600080fd5b506105ff611326565b60405161060c91906133df565b60405180910390f35b34801561062157600080fd5b5061063c60048036038101906106379190613593565b6113b8565b60405161064991906134f5565b60405180910390f35b34801561065e57600080fd5b506106676113d8565b604051610674919061351f565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061349a565b6113de565b6040516106b191906134f5565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc919061349a565b6114ab565b6040516106ee91906134f5565b60405180910390f35b34801561070357600080fd5b5061070c6114c9565b60405161071991906134f5565b60405180910390f35b34801561072e57600080fd5b506107376114dc565b005b34801561074557600080fd5b50610760600480360381019061075b9190613703565b6115be565b005b34801561076e57600080fd5b5061078960048036038101906107849190613703565b6116b0565b005b34801561079757600080fd5b506107b260048036038101906107ad919061376d565b611830565b005b3480156107c057600080fd5b506107c9611965565b6040516107dd98979695949392919061379a565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613818565b611a03565b005b34801561081b57600080fd5b5061083660048036038101906108319190613818565b611b20565b604051610843919061351f565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613703565b611ba7565b005b34801561088157600080fd5b5061089c60048036038101906108979190613593565b611c99565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613593565b611e5f565b6040516108d291906134f5565b60405180910390f35b3480156108e757600080fd5b506108f0611e7f565b6040516108fd91906138b7565b60405180910390f35b60606003805461091590613901565b80601f016020809104026020016040519081016040528092919081815260200182805461094190613901565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b60006109ac6109a5611f01565b8484611f09565b6001905092915050565b6000600254905090565b600f5481565b6109ce611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a549061397e565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b600e5481565b6000610aad848484611ff4565b610b6e84610ab9611f01565b610b69856040518060600160405280602881526020016142c160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b1f611f01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cb9092919063ffffffff16565b611f09565b600190509392505050565b60006012905090565b610b8a611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c109061397e565b60405180910390fd5b85600d60000160016101000a81548160ff021916908360ff16021790555084600d60000160036101000a81548160ff021916908360ff16021790555083600d60000160026101000a81548160ff021916908360ff160217905550600d60000160029054906101000a900460ff16600d60000160039054906101000a900460ff16600d60000160019054906101000a900460ff16610cb691906139cd565b610cc091906139cd565b600d60000160006101000a81548160ff021916908360ff16021790555082600d60000160056101000a81548160ff021916908360ff16021790555081600d60000160076101000a81548160ff021916908360ff16021790555080600d60000160066101000a81548160ff021916908360ff160217905550600d60000160069054906101000a900460ff16600d60000160079054906101000a900460ff16600d60000160059054906101000a900460ff16610d7a91906139cd565b610d8491906139cd565b600d60000160046101000a81548160ff021916908360ff160217905550601e600d60000160009054906101000a900460ff1660ff161115610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613a4e565b60405180910390fd5b601e600d60000160049054906101000a900460ff1660ff161115610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613a4e565b60405180910390fd5b505050505050565b6000610f04610e68611f01565b84610eff8560016000610e79611f01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea390919063ffffffff16565b611f09565b6001905092915050565b610f16611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c9061397e565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000345a4d0c563e50017a52cb994fb5e96e19130abc81565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611084611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a9061397e565b60405180910390fd5b81600b8190555060019050919050565b600c60019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611186611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061397e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461133590613901565b80601f016020809104026020016040519081016040528092919081815260200182805461136190613901565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b5050505050905090565b60136020528060005260406000206000915054906101000a900460ff1681565b60105481565b60006114a16113eb611f01565b8461149c856040518060600160405280602581526020016142766025913960016000611415611f01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cb9092919063ffffffff16565b611f09565b6001905092915050565b60006114bf6114b8611f01565b8484611ff4565b6001905092915050565b600c60029054906101000a900460ff1681565b6114e4611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a9061397e565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506002436115b69190613a6e565b601181905550565b6115c6611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c9061397e565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116b8611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061397e565b60405180910390fd5b7f000000000000000000000000345a4d0c563e50017a52cb994fb5e96e19130abc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc90613aee565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611838611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be9061397e565b60405180910390fd5b60646118d16109b6565b6118db9190613b3d565b6103e8826118e76109b6565b6118f19190613b6e565b6118fb9190613b3d565b101561193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613c22565b60405180910390fd5b6103e8816119486109b6565b6119529190613b6e565b61195c9190613b3d565b600a8190555050565b600d8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16908060000160039054906101000a900460ff16908060000160049054906101000a900460ff16908060000160059054906101000a900460ff16908060000160069054906101000a900460ff16908060000160079054906101000a900460ff16905088565b611a0b611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a919061397e565b60405180910390fd5b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611baf611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c359061397e565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611ca1611f01565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061397e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9690613cb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60146020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000808284611eb29190613a6e565b905083811015611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90613d20565b60405180910390fd5b8091505092915050565b600033905090565b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fe7919061351f565b60405180910390a3505050565b6000810361200d5761200883836000612a2f565b6129c6565b6120156112d6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208357506120536112d6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561209c5750600c60029054906101000a900460ff16155b1561232457600c60009054906101000a900460ff1661219657601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121565750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90613d8c565b60405180910390fd5b5b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661224057600a546121f383611136565b826121fe9190613a6e565b111561223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223690613df8565b60405180910390fd5b5b601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122e45750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613e64565b60405180910390fd5b5b600061232f30611136565b90506000600b5482101590508080156123545750600c60019054906101000a900460ff165b801561236d5750600c60029054906101000a900460ff16155b80156123c25750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156124185750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561246e5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124b2576001600c60026101000a81548160ff021916908315150217905550612496612bd9565b6000600c60026101000a81548160ff0219169083151502179055505b6000600c60029054906101000a900460ff16159050601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125685750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561257257600090505b80156129b7576000601154431015612614576125ab606461259d606388612ec790919063ffffffff16565b612f4190919063ffffffff16565b90506063605e826125bc9190613b6e565b6125c69190613b3d565b600e60008282546125d79190613a6e565b9250508190555060636005826125ed9190613b6e565b6125f79190613b3d565b601060008282546126089190613a6e565b92505081905550612992565b601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561268257506000600d60000160049054906101000a900460ff1660ff16115b156127d4576126c260646126b4600d60000160049054906101000a900460ff1660ff1688612ec790919063ffffffff16565b612f4190919063ffffffff16565b9050600d60000160049054906101000a900460ff1660ff16600d60000160079054906101000a900460ff1660ff16826126fb9190613b6e565b6127059190613b3d565b600f60008282546127169190613a6e565b92505081905550600d60000160049054906101000a900460ff1660ff16600d60000160059054906101000a900460ff1660ff16826127549190613b6e565b61275e9190613b3d565b600e600082825461276f9190613a6e565b92505081905550600d60000160049054906101000a900460ff1660ff16600d60000160069054906101000a900460ff1660ff16826127ad9190613b6e565b6127b79190613b3d565b601060008282546127c89190613a6e565b92505081905550612991565b601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561284257506000600d60000160009054906101000a900460ff1660ff16115b15612990576128826064612874600d60000160009054906101000a900460ff1660ff1688612ec790919063ffffffff16565b612f4190919063ffffffff16565b9050600d60000160009054906101000a900460ff1660ff16600d60000160039054906101000a900460ff1660ff16826128bb9190613b6e565b6128c59190613b3d565b600f60008282546128d69190613a6e565b92505081905550600d60000160009054906101000a900460ff1660ff16600d60000160019054906101000a900460ff1660ff16826129149190613b6e565b61291e9190613b3d565b600e600082825461292f9190613a6e565b92505081905550600d60000160009054906101000a900460ff1660ff16600d60000160029054906101000a900460ff1660ff168261296d9190613b6e565b6129779190613b3d565b601060008282546129889190613a6e565b925050819055505b5b5b60008111156129a7576129a6873083612a2f565b5b80856129b39190613e84565b9450505b6129c2868686612a2f565b5050505b505050565b6000838311158290612a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0a91906133df565b60405180910390fd5b5060008385612a229190613e84565b9050809150509392505050565b612a9a8160405180606001604052806026815260200161429b602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129cb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b2d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612bcc919061351f565b60405180910390a3505050565b6000612be430611136565b90506000601054600e54600f54612bfb9190613a6e565b612c059190613a6e565b9050600080831480612c175750600082145b15612c2457505050612ec5565b6014600b54612c339190613b6e565b831115612c4c576014600b54612c499190613b6e565b92505b6000600283600f5486612c5f9190613b6e565b612c699190613b3d565b612c739190613b3d565b90506000612c8a8286612f8b90919063ffffffff16565b90506000479050612c9a82612fd5565b6000612caf8247612f8b90919063ffffffff16565b90506000612cda87612ccc600e5485612ec790919063ffffffff16565b612f4190919063ffffffff16565b90506000612d0588612cf760105486612ec790919063ffffffff16565b612f4190919063ffffffff16565b905060008183612d159190613a6e565b84612d209190613e84565b90506000600f819055506000600e819055506000601081905550600087118015612d4a5750600081115b15612d9357612d598782613212565b7f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f83814868682604051612d8a929190613eb8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168347612dd89190613e84565b604051612de490613f12565b60006040518083038185875af1925050503d8060008114612e21576040519150601f19603f3d011682016040523d82523d6000602084013e612e26565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612e7290613f12565b60006040518083038185875af1925050503d8060008114612eaf576040519150601f19603f3d011682016040523d82523d6000602084013e612eb4565b606091505b505080985050505050505050505050505b565b6000808303612ed95760009050612f3b565b60008284612ee79190613b6e565b9050828482612ef69190613b3d565b14612f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d90613f99565b60405180910390fd5b809150505b92915050565b6000612f8383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506132ec565b905092915050565b6000612fcd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506129cb565b905092915050565b6000600267ffffffffffffffff811115612ff257612ff1613fb9565b5b6040519080825280602002602001820160405280156130205781602001602082028036833780820191505090505b509050308160008151811061303857613037613fe8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613101919061402c565b8160018151811061311557613114613fe8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061317a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f09565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016131dc959493929190614152565b600060405180830381600087803b1580156131f657600080fd5b505af115801561320a573d6000803e3d6000fd5b505050505050565b61323d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f09565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b81526004016132a2969594939291906141ac565b60606040518083038185885af11580156132c0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906132e59190614222565b5050505050565b60008083118290613333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332a91906133df565b60405180910390fd5b50600083856133429190613b3d565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561338957808201518184015260208101905061336e565b60008484015250505050565b6000601f19601f8301169050919050565b60006133b18261334f565b6133bb818561335a565b93506133cb81856020860161336b565b6133d481613395565b840191505092915050565b600060208201905081810360008301526133f981846133a6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343182613406565b9050919050565b61344181613426565b811461344c57600080fd5b50565b60008135905061345e81613438565b92915050565b6000819050919050565b61347781613464565b811461348257600080fd5b50565b6000813590506134948161346e565b92915050565b600080604083850312156134b1576134b0613401565b5b60006134bf8582860161344f565b92505060206134d085828601613485565b9150509250929050565b60008115159050919050565b6134ef816134da565b82525050565b600060208201905061350a60008301846134e6565b92915050565b61351981613464565b82525050565b60006020820190506135346000830184613510565b92915050565b613543816134da565b811461354e57600080fd5b50565b6000813590506135608161353a565b92915050565b60006020828403121561357c5761357b613401565b5b600061358a84828501613551565b91505092915050565b6000602082840312156135a9576135a8613401565b5b60006135b78482850161344f565b91505092915050565b6000806000606084860312156135d9576135d8613401565b5b60006135e78682870161344f565b93505060206135f88682870161344f565b925050604061360986828701613485565b9150509250925092565b600060ff82169050919050565b61362981613613565b82525050565b60006020820190506136446000830184613620565b92915050565b61365381613613565b811461365e57600080fd5b50565b6000813590506136708161364a565b92915050565b60008060008060008060c0878903121561369357613692613401565b5b60006136a189828a01613661565b96505060206136b289828a01613661565b95505060406136c389828a01613661565b94505060606136d489828a01613661565b93505060806136e589828a01613661565b92505060a06136f689828a01613661565b9150509295509295509295565b6000806040838503121561371a57613719613401565b5b60006137288582860161344f565b925050602061373985828601613551565b9150509250929050565b61374c81613426565b82525050565b60006020820190506137676000830184613743565b92915050565b60006020828403121561378357613782613401565b5b600061379184828501613485565b91505092915050565b6000610100820190506137b0600083018b613620565b6137bd602083018a613620565b6137ca6040830189613620565b6137d76060830188613620565b6137e46080830187613620565b6137f160a0830186613620565b6137fe60c0830185613620565b61380b60e0830184613620565b9998505050505050505050565b6000806040838503121561382f5761382e613401565b5b600061383d8582860161344f565b925050602061384e8582860161344f565b9150509250929050565b6000819050919050565b600061387d61387861387384613406565b613858565b613406565b9050919050565b600061388f82613862565b9050919050565b60006138a182613884565b9050919050565b6138b181613896565b82525050565b60006020820190506138cc60008301846138a8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061391957607f821691505b60208210810361392c5761392b6138d2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061396860208361335a565b915061397382613932565b602082019050919050565b600060208201905081810360008301526139978161395b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139d882613613565b91506139e383613613565b9250828201905060ff8111156139fc576139fb61399e565b5b92915050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613a38601d8361335a565b9150613a4382613a02565b602082019050919050565b60006020820190508181036000830152613a6781613a2b565b9050919050565b6000613a7982613464565b9150613a8483613464565b9250828201905080821115613a9c57613a9b61399e565b5b92915050565b7f4d757374206b65657020756e6973776170563250616972000000000000000000600082015250565b6000613ad860178361335a565b9150613ae382613aa2565b602082019050919050565b60006020820190508181036000830152613b0781613acb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4882613464565b9150613b5383613464565b925082613b6357613b62613b0e565b5b828204905092915050565b6000613b7982613464565b9150613b8483613464565b9250828202613b9281613464565b91508282048414831517613ba957613ba861399e565b5b5092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c0c60228361335a565b9150613c1782613bb0565b604082019050919050565b60006020820190508181036000830152613c3b81613bff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c9e60268361335a565b9150613ca982613c42565b604082019050919050565b60006020820190508181036000830152613ccd81613c91565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613d0a601b8361335a565b9150613d1582613cd4565b602082019050919050565b60006020820190508181036000830152613d3981613cfd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d7660168361335a565b9150613d8182613d40565b602082019050919050565b60006020820190508181036000830152613da581613d69565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613de260138361335a565b9150613ded82613dac565b602082019050919050565b60006020820190508181036000830152613e1181613dd5565b9050919050565b7f426c61636b6c6973746564206164647265737300000000000000000000000000600082015250565b6000613e4e60138361335a565b9150613e5982613e18565b602082019050919050565b60006020820190508181036000830152613e7d81613e41565b9050919050565b6000613e8f82613464565b9150613e9a83613464565b9250828203905081811115613eb257613eb161399e565b5b92915050565b6000604082019050613ecd6000830185613510565b613eda6020830184613510565b9392505050565b600081905092915050565b50565b6000613efc600083613ee1565b9150613f0782613eec565b600082019050919050565b6000613f1d82613eef565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f8360218361335a565b9150613f8e82613f27565b604082019050919050565b60006020820190508181036000830152613fb281613f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061402681613438565b92915050565b60006020828403121561404257614041613401565b5b600061405084828501614017565b91505092915050565b6000819050919050565b600061407e61407961407484614059565b613858565b613464565b9050919050565b61408e81614063565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140c981613426565b82525050565b60006140db83836140c0565b60208301905092915050565b6000602082019050919050565b60006140ff82614094565b614109818561409f565b9350614114836140b0565b8060005b8381101561414557815161412c88826140cf565b9750614137836140e7565b925050600181019050614118565b5085935050505092915050565b600060a0820190506141676000830188613510565b6141746020830187614085565b818103604083015261418681866140f4565b90506141956060830185613743565b6141a26080830184613510565b9695505050505050565b600060c0820190506141c16000830189613743565b6141ce6020830188613510565b6141db6040830187614085565b6141e86060830186614085565b6141f56080830185613743565b61420260a0830184613510565b979650505050505050565b60008151905061421c8161346e565b92915050565b60008060006060848603121561423b5761423a613401565b5b60006142498682870161420d565b935050602061425a8682870161420d565b925050604061426b8682870161420d565b915050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122039042059931d2a0f5275c2e5cfe506fd7e87414fa79e4c118024b2945e505ebb64736f6c63430008120033
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.