ERC-20
Overview
Max Total Supply
1,000,000,000 JACKAL
Holders
45
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,882,643.473051203310148696 JACKALValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JACKAL
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-09 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* https://jackaltoken.xyz https://t.me/jackalportal */ 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 JACKAL is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable router; address public uniswapV2Pair; // addresses address private developmentWallet; 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 { uint256 buyTotalFees; uint256 buyMarketingFee; uint256 buyDevelopmentFee; uint256 buyLiquidityFee; uint256 sellTotalFees; uint256 sellMarketingFee; uint256 sellDevelopmentFee; uint256 sellLiquidityFee; } Fees public _fees = Fees({ buyTotalFees: 0, buyMarketingFee: 0, buyDevelopmentFee:0, buyLiquidityFee: 0, sellTotalFees: 0, sellMarketingFee: 0, sellDevelopmentFee:0, sellLiquidityFee: 0 }); uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDevelopment; uint256 private taxTill; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; 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; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived ); constructor() ERC20("Jackal", "JACKAL") { router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _isExcludedMaxTransactionAmount[address(router)] = true; _isExcludedMaxTransactionAmount[owner()] = true; _isExcludedMaxTransactionAmount[address(this)] = true; _isExcludedMaxTransactionAmount[address(0xdead)] = true; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedMaxWalletAmount[owner()] = true; _isExcludedMaxWalletAmount[address(0xdead)] = true; _isExcludedMaxWalletAmount[address(this)] = true; approve(address(router), type(uint256).max); uint256 totalSupply = 1e9 * 1e18; maxBuyAmount = totalSupply * 2 / 100; // 2% maxBuyAmount maxSellAmount = totalSupply * 1 / 100; // 1% maxSellAmount maxWalletAmount = totalSupply * 2 / 100; // 2% maxWallet thresholdSwapAmount = totalSupply * 1 / 1000; _fees.buyMarketingFee = 10; _fees.buyLiquidityFee = 0; _fees.buyDevelopmentFee = 10; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee; _fees.sellMarketingFee = 25; _fees.sellLiquidityFee = 0; _fees.sellDevelopmentFee = 20; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee; marketingWallet = address(0x404AcbA40e05392865aB055D8B0B69E4A1C95A3e); developmentWallet = address(0xD74bf663F4720ac32F28A7b1872D581B95c3fd86); // 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 { } function createPair() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _isExcludedMaxTransactionAmount[address(uniswapV2Pair)] = true; _isExcludedMaxWalletAmount[address(uniswapV2Pair)] = true; marketPair[address(uniswapV2Pair)] = true; } // once enabled, can never be turned off function secretWeapon() external onlyOwner { isTrading = true; swapEnabled = true; taxTill = block.number + 0; } // change the minimum amount of tokens to sell from fees function updateThresholdSwapAmount(uint256 newAmount) external onlyOwner returns(bool){ thresholdSwapAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newMaxBuy, uint256 newMaxSell) public onlyOwner { maxBuyAmount = (totalSupply() * newMaxBuy) / 1000; maxSellAmount = (totalSupply() * newMaxSell) / 1000; } function updateMaxWalletAmount(uint256 newPercentage) public onlyOwner { 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 updateFees(uint256 _marketingFeeBuy, uint256 _liquidityFeeBuy,uint256 _developmentFeeBuy,uint256 _marketingFeeSell, uint256 _liquidityFeeSell,uint256 _developmentFeeSell) external onlyOwner{ _fees.buyMarketingFee = _marketingFeeBuy; _fees.buyLiquidityFee = _liquidityFeeBuy; _fees.buyDevelopmentFee = _developmentFeeBuy; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee; _fees.sellMarketingFee = _marketingFeeSell; _fees.sellLiquidityFee = _liquidityFeeSell; _fees.sellDevelopmentFee = _developmentFeeSell; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee; require(_fees.buyTotalFees <= 99, "Must keep fees at 99% or less"); require(_fees.sellTotalFees <= 99, "Must keep fees at 99% 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 excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function removeLimits() external onlyOwner { updateMaxTxnAmount(1000,1000); updateMaxWalletAmount(1000); } function setMarketPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from marketPair"); marketPair[pair] = value; } function setWallets(address _marketingWallet,address _developmentWallet) external onlyOwner{ marketingWallet = _marketingWallet; developmentWallet = _developmentWallet; } 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 (marketPair[sender] && !_isExcludedMaxTransactionAmount[recipient]) { require(amount <= maxBuyAmount, "Buy transfer amount exceeds the maxTransactionAmount."); } else if (marketPair[recipient] && !_isExcludedMaxTransactionAmount[sender]) { require(amount <= maxSellAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } if (!_isExcludedMaxWalletAmount[recipient]) { require(amount + balanceOf(recipient) <= maxWalletAmount, "Max wallet exceeded"); } } 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; tokensForDevelopment += (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; tokensForDevelopment += fees * _fees.sellDevelopmentFee / _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; tokensForDevelopment += fees * _fees.buyDevelopmentFee / _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 + tokensForDevelopment; 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 ethForDevelopment = newBalance.mul(tokensForDevelopment).div(toSwap); uint256 ethForLiquidity = newBalance - (ethForMarketing + ethForDevelopment); tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity); } (success,) = address(developmentWallet).call{ value: (address(this).balance - ethForMarketing) } (""); (success,) = address(marketingWallet).call{ value: address(this).balance } (""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"buyDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"sellDevelopmentFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","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":[],"name":"secretWeapon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggleSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForDevelopment","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":"uint256","name":"_marketingFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeSell","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeSell","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"},{"internalType":"uint256","name":"newMaxSell","type":"uint256"}],"name":"updateMaxTxnAmount","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
600d805461ffff191690556101a0604052600060a081905260c081905260e0819052610100819052610120819052610140819052610160819052610180819052600e819055600f819055601081905560118190556012819055601381905560148190556015553480156200007257600080fd5b5060405180604001604052806006815260200165129858dad85b60d21b81525060405180604001604052806006815260200165129050d2d05360d21b8152508160039080519060200190620000c99291906200062e565b508051620000df9060049060208401906200062e565b5050506000620000f46200044760201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526000908152601b60208190527f737a8aa320b777139cfebe450e173d90b49df21bdde0d83dcfdff4abee7622ee805460ff1916600190811790915591620001ab6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601b909252812080548316600190811790915561dead82527f6790d4910a095e0e04c8daa388834616a295bac3f59038957b6d0b93a2d2168480549093168117909255601a90620002336005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601a909252812080549092166001908117909255601c906200028c6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055601c9092527fa48bd8e7b1565515cde2859b6cc48308ba05b5325bcf90fb096b9ac0b8087dfc8054841660019081179091553083529120805490921617905560805162000308906000196200044b565b506b033b2e3c9fd0803ce8000000606462000325826002620006ea565b6200033191906200070c565b600955606462000343826001620006ea565b6200034f91906200070c565b600a55606462000361826002620006ea565b6200036d91906200070c565b600b556103e862000380826001620006ea565b6200038c91906200070c565b600c55600a600f819055600060118190556010829055620003ae90826200072f565b620003ba91906200072f565b600e556019601381905560006015819055601480805591620003dd91906200072f565b620003e991906200072f565b601255600880546001600160a01b031990811673404acba40e05392865ab055d8b0b69e4a1c95a3e179091556007805490911673d74bf663f4720ac32f28a7b1872d581b95c3fd8617905562000440338262000463565b5062000787565b3390565b60006200045a33848462000563565b50600192915050565b6001600160a01b038216620004bf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620004db81600254620005c460201b620012581790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200050e91839062001258620005c4821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620005d383856200072f565b905083811015620006275760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004b6565b9392505050565b8280546200063c906200074a565b90600052602060002090601f016020900481019282620006605760008555620006ab565b82601f106200067b57805160ff1916838001178555620006ab565b82800160010185558215620006ab579182015b82811115620006ab5782518255916020019190600101906200068e565b50620006b9929150620006bd565b5090565b5b80821115620006b95760008155600101620006be565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007075762000707620006d4565b500290565b6000826200072a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007455762000745620006d4565b500190565b600181811c908216806200075f57607f821691505b602082108114156200078157634e487b7160e01b600052602260045260246000fd5b50919050565b608051612509620007d4600039600081816107bd01528181610cdb01528181610d7b01528181611dfd01528181611ec501528181611f0101528181611f730152611fcf01526125096000f3fe6080604052600436106102345760003560e01c806378e0edd71161012e578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610725578063ef8700e514610745578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c16dd4a414610611578063c18bc19514610631578063d212a69a14610651578063d3f6a157146106bf578063dd62ed3e146106df57600080fd5b80639e78fb4f116100f25780639e78fb4f1461057c578063a457c2d714610591578063a9059cbb146105b1578063b8863115146105d1578063c0246668146105f157600080fd5b806378e0edd7146104e45780638da5cb5b146104f957806395d89b411461051757806396880b171461052c578063992c58e41461055c57600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b604051610262919061208a565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120f7565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b6366004612123565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e6366004612140565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d366004612172565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b61037336600461218d565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120f7565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b610407366004612123565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b6104403660046121ce565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f366004612123565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121e7565b610adc565b3480156104f057600080fd5b506102eb610b31565b34801561050557600080fd5b506005546001600160a01b03166103d4565b34801561052357600080fd5b50610255610b7a565b34801561053857600080fd5b5061028b610547366004612123565b601c6020526000908152604090205460ff1681565b34801561056857600080fd5b506102eb61057736600461221c565b610b89565b34801561058857600080fd5b506102eb610caf565b34801561059d57600080fd5b5061028b6105ac3660046120f7565b610ef8565b3480156105bd57600080fd5b5061028b6105cc3660046120f7565b610f47565b3480156105dd57600080fd5b50600d5461028b9062010000900460ff1681565b3480156105fd57600080fd5b506102eb61060c3660046121e7565b610f54565b34801561061d57600080fd5b506102eb61062c3660046121e7565b610fa9565b34801561063d57600080fd5b506102eb61064c3660046121ce565b61106f565b34801561065d57600080fd5b50600e54600f54601054601154601254601354601454601554610684979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106cb57600080fd5b506102eb6106da36600461225f565b6110c0565b3480156106eb57600080fd5b506102fe6106fa36600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b506102eb6107403660046121e7565b611118565b34801561075157600080fd5b506102fe60185481565b34801561076757600080fd5b506102eb610776366004612123565b61116d565b34801561078757600080fd5b5061028b610796366004612123565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546107ee90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612298565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e3384846112be565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b2906122d3565b60405180910390fd5b6103e8826108c860025490565b6108d2919061231e565b6108dc919061233d565b6009556103e8816108ec60025490565b6108f6919061231e565b610900919061233d565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b2906122d3565b600d80549115156101000261ff0019909216919091179055565b6000610958848484611320565b6109aa84336109a5856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611979565b6112be565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a59086611258565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b2906122d3565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b2906122d3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b2906122d3565b610acf6103e880610888565b610ada6103e861106f565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108b2906122d3565b600d805461ffff1916610101179055610b7543600061235f565b601955565b6060600480546107ee90612298565b6005546001600160a01b03163314610bb35760405162461bcd60e51b81526004016108b2906122d3565b600f8690556011859055601084905583610bcd868861235f565b610bd7919061235f565b600e5560138390556015829055601481905580610bf4838561235f565b610bfe919061235f565b601255600e5460631015610c545760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b60125460631015610ca75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b2906122d3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a9190612377565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610dd257600080fd5b505afa158015610de6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0a9190612377565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610e5257600080fd5b505af1158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a9190612377565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a585604051806060016040528060258152602001612461602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611979565b600061087e338484611320565b6005546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fd35760405162461bcd60e51b81526004016108b2906122d3565b6006546001600160a01b03838116911614156110445760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110995760405162461bcd60e51b81526004016108b2906122d3565b6103e8816110a660025490565b6110b0919061231e565b6110ba919061233d565b600b5550565b6005546001600160a01b031633146110ea5760405162461bcd60e51b81526004016108b2906122d3565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146111425760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b0381166111fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611265838561235f565b9050838110156112b75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061133657611331838360006119b3565b505050565b6005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b80156113775750600d5462010000900460ff16155b1561160657600d5460ff1661140a576001600160a01b0383166000908152601a602052604090205460ff16806113c557506001600160a01b0382166000908152601a602052604090205460ff165b61140a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561144b57506001600160a01b0382166000908152601b602052604090205460ff16155b156114c5576009548111156114c05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b61157c565b6001600160a01b0382166000908152601d602052604090205460ff16801561150657506001600160a01b0383166000908152601b602052604090205460ff16155b1561157c57600a5481111561157c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff1661160657600b546001600160a01b0383166000908152602081905260409020546115c2908361235f565b11156116065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116315750600d54610100900460ff165b80156116465750600d5462010000900460ff16155b801561166a57506001600160a01b0384166000908152601d602052604090205460ff165b801561168f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156116b457506001600160a01b0384166000908152601a602052604090205460ff16155b156116df57600d805462ff00001916620100001790556116d2611a70565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061172c57506001600160a01b0385166000908152601a602052604090205460ff165b15611735575060005b801561196e5760006019544310156117c05761175d6064611757876063611ca3565b90611d22565b9050606361176c82605e61231e565b611776919061233d565b60166000828254611787919061235f565b909155506063905061179a82600561231e565b6117a4919061233d565b601860008282546117b5919061235f565b9091555061194f9050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117e9575060125415155b156118775760125461180390606490611757908890611ca3565b60125460155491925090611817908361231e565b611821919061233d565b60176000828254611832919061235f565b9091555050601254601354611847908361231e565b611851919061233d565b60166000828254611862919061235f565b909155505060125460145461179a908361231e565b6001600160a01b0387166000908152601d602052604090205460ff1680156118a05750600e5415155b1561194f57600e546118ba90606490611757908890611ca3565b600e54601154919250906118ce908361231e565b6118d8919061233d565b601760008282546118e9919061235f565b9091555050600e54600f546118fe908361231e565b611908919061233d565b60166000828254611919919061235f565b9091555050600e5460105461192e908361231e565b611938919061233d565b60186000828254611949919061235f565b90915550505b8015611960576119608730836119b3565b61196a8186612394565b9450505b610ca78686866119b3565b6000818484111561199d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa8486612394565b95945050505050565b6119f081604051806060016040528060268152602001612486602691396001600160a01b0386166000908152602081905260409020549190611979565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a1f9082611258565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611313565b3060009081526020819052604081205490506000601854601654601754611a97919061235f565b611aa1919061235f565b90506000821580611ab0575081155b15611aba57505050565b600c54611ac890601461231e565b831115611ae057600c54611add90601461231e565b92505b600060028360175486611af3919061231e565b611afd919061233d565b611b07919061233d565b90506000611b158583611d64565b905047611b2182611da6565b6000611b2d4783611d64565b90506000611b4a8761175760165485611ca390919063ffffffff16565b90506000611b678861175760185486611ca390919063ffffffff16565b90506000611b75828461235f565b611b7f9085612394565b60006017819055601681905560185590508615801590611b9f5750600081115b15611be857611bae8782611f6d565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bfe8447612394565b604051600081818185875af1925050503d8060008114611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50505050505050505050505050565b600082611cb257506000610882565b6000611cbe838561231e565b905082611ccb858361233d565b146112b75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b60006112b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061205c565b60006112b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611979565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ddb57611ddb6123ab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5457600080fd5b505afa158015611e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8c9190612377565b81600181518110611e9f57611e9f6123ab565b60200260200101906001600160a01b031690816001600160a01b031681525050611eea307f0000000000000000000000000000000000000000000000000000000000000000846112be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f3f9085906000908690309042906004016123c1565b600060405180830381600087803b158015611f5957600080fd5b505af1158015610ca7573d6000803e3d6000fd5b611f98307f0000000000000000000000000000000000000000000000000000000000000000846112be565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120559190612432565b5050505050565b6000818361207d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa848661233d565b600060208083528351808285015260005b818110156120b75785810183015185820160400152820161209b565b818111156120c9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120f457600080fd5b50565b6000806040838503121561210a57600080fd5b8235612115816120df565b946020939093013593505050565b60006020828403121561213557600080fd5b81356112b7816120df565b6000806040838503121561215357600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561218457600080fd5b6112b782612162565b6000806000606084860312156121a257600080fd5b83356121ad816120df565b925060208401356121bd816120df565b929592945050506040919091013590565b6000602082840312156121e057600080fd5b5035919050565b600080604083850312156121fa57600080fd5b8235612205816120df565b915061221360208401612162565b90509250929050565b60008060008060008060c0878903121561223557600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561227257600080fd5b823561227d816120df565b9150602083013561228d816120df565b809150509250929050565b600181811c908216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233857612338612308565b500290565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561237257612372612308565b500190565b60006020828403121561238957600080fd5b81516112b7816120df565b6000828210156123a6576123a6612308565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124115784516001600160a01b0316835293830193918301916001016123ec565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122025d2dafbeff4204eb8b97227c4db2a758804f68c700d8537e4b97ac3c53d15fe64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102345760003560e01c806378e0edd71161012e578063c16dd4a4116100ab578063e16830a81161006f578063e16830a814610725578063ef8700e514610745578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c16dd4a414610611578063c18bc19514610631578063d212a69a14610651578063d3f6a157146106bf578063dd62ed3e146106df57600080fd5b80639e78fb4f116100f25780639e78fb4f1461057c578063a457c2d714610591578063a9059cbb146105b1578063b8863115146105d1578063c0246668146105f157600080fd5b806378e0edd7146104e45780638da5cb5b146104f957806395d89b411461051757806396880b171461052c578063992c58e41461055c57600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b604051610262919061208a565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120f7565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b6366004612123565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e6366004612140565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d366004612172565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b61037336600461218d565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120f7565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b610407366004612123565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b6104403660046121ce565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f366004612123565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121e7565b610adc565b3480156104f057600080fd5b506102eb610b31565b34801561050557600080fd5b506005546001600160a01b03166103d4565b34801561052357600080fd5b50610255610b7a565b34801561053857600080fd5b5061028b610547366004612123565b601c6020526000908152604090205460ff1681565b34801561056857600080fd5b506102eb61057736600461221c565b610b89565b34801561058857600080fd5b506102eb610caf565b34801561059d57600080fd5b5061028b6105ac3660046120f7565b610ef8565b3480156105bd57600080fd5b5061028b6105cc3660046120f7565b610f47565b3480156105dd57600080fd5b50600d5461028b9062010000900460ff1681565b3480156105fd57600080fd5b506102eb61060c3660046121e7565b610f54565b34801561061d57600080fd5b506102eb61062c3660046121e7565b610fa9565b34801561063d57600080fd5b506102eb61064c3660046121ce565b61106f565b34801561065d57600080fd5b50600e54600f54601054601154601254601354601454601554610684979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106cb57600080fd5b506102eb6106da36600461225f565b6110c0565b3480156106eb57600080fd5b506102fe6106fa36600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561073157600080fd5b506102eb6107403660046121e7565b611118565b34801561075157600080fd5b506102fe60185481565b34801561076757600080fd5b506102eb610776366004612123565b61116d565b34801561078757600080fd5b5061028b610796366004612123565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6060600380546107ee90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612298565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e3384846112be565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b2906122d3565b60405180910390fd5b6103e8826108c860025490565b6108d2919061231e565b6108dc919061233d565b6009556103e8816108ec60025490565b6108f6919061231e565b610900919061233d565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b2906122d3565b600d80549115156101000261ff0019909216919091179055565b6000610958848484611320565b6109aa84336109a5856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611979565b6112be565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a59086611258565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b2906122d3565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b2906122d3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b2906122d3565b610acf6103e880610888565b610ada6103e861106f565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016108b2906122d3565b600d805461ffff1916610101179055610b7543600061235f565b601955565b6060600480546107ee90612298565b6005546001600160a01b03163314610bb35760405162461bcd60e51b81526004016108b2906122d3565b600f8690556011859055601084905583610bcd868861235f565b610bd7919061235f565b600e5560138390556015829055601481905580610bf4838561235f565b610bfe919061235f565b601255600e5460631015610c545760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b60125460631015610ca75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610cd95760405162461bcd60e51b81526004016108b2906122d3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3257600080fd5b505afa158015610d46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6a9190612377565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610dd257600080fd5b505afa158015610de6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0a9190612377565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610e5257600080fd5b505af1158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a9190612377565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a585604051806060016040528060258152602001612461602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611979565b600061087e338484611320565b6005546001600160a01b03163314610f7e5760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fd35760405162461bcd60e51b81526004016108b2906122d3565b6006546001600160a01b03838116911614156110445760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110995760405162461bcd60e51b81526004016108b2906122d3565b6103e8816110a660025490565b6110b0919061231e565b6110ba919061233d565b600b5550565b6005546001600160a01b031633146110ea5760405162461bcd60e51b81526004016108b2906122d3565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146111425760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b0381166111fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611265838561235f565b9050838110156112b75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061133657611331838360006119b3565b505050565b6005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b80156113775750600d5462010000900460ff16155b1561160657600d5460ff1661140a576001600160a01b0383166000908152601a602052604090205460ff16806113c557506001600160a01b0382166000908152601a602052604090205460ff165b61140a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561144b57506001600160a01b0382166000908152601b602052604090205460ff16155b156114c5576009548111156114c05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b61157c565b6001600160a01b0382166000908152601d602052604090205460ff16801561150657506001600160a01b0383166000908152601b602052604090205460ff16155b1561157c57600a5481111561157c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff1661160657600b546001600160a01b0383166000908152602081905260409020546115c2908361235f565b11156116065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116315750600d54610100900460ff165b80156116465750600d5462010000900460ff16155b801561166a57506001600160a01b0384166000908152601d602052604090205460ff165b801561168f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156116b457506001600160a01b0384166000908152601a602052604090205460ff16155b156116df57600d805462ff00001916620100001790556116d2611a70565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061172c57506001600160a01b0385166000908152601a602052604090205460ff165b15611735575060005b801561196e5760006019544310156117c05761175d6064611757876063611ca3565b90611d22565b9050606361176c82605e61231e565b611776919061233d565b60166000828254611787919061235f565b909155506063905061179a82600561231e565b6117a4919061233d565b601860008282546117b5919061235f565b9091555061194f9050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117e9575060125415155b156118775760125461180390606490611757908890611ca3565b60125460155491925090611817908361231e565b611821919061233d565b60176000828254611832919061235f565b9091555050601254601354611847908361231e565b611851919061233d565b60166000828254611862919061235f565b909155505060125460145461179a908361231e565b6001600160a01b0387166000908152601d602052604090205460ff1680156118a05750600e5415155b1561194f57600e546118ba90606490611757908890611ca3565b600e54601154919250906118ce908361231e565b6118d8919061233d565b601760008282546118e9919061235f565b9091555050600e54600f546118fe908361231e565b611908919061233d565b60166000828254611919919061235f565b9091555050600e5460105461192e908361231e565b611938919061233d565b60186000828254611949919061235f565b90915550505b8015611960576119608730836119b3565b61196a8186612394565b9450505b610ca78686866119b3565b6000818484111561199d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa8486612394565b95945050505050565b6119f081604051806060016040528060268152602001612486602691396001600160a01b0386166000908152602081905260409020549190611979565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a1f9082611258565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611313565b3060009081526020819052604081205490506000601854601654601754611a97919061235f565b611aa1919061235f565b90506000821580611ab0575081155b15611aba57505050565b600c54611ac890601461231e565b831115611ae057600c54611add90601461231e565b92505b600060028360175486611af3919061231e565b611afd919061233d565b611b07919061233d565b90506000611b158583611d64565b905047611b2182611da6565b6000611b2d4783611d64565b90506000611b4a8761175760165485611ca390919063ffffffff16565b90506000611b678861175760185486611ca390919063ffffffff16565b90506000611b75828461235f565b611b7f9085612394565b60006017819055601681905560185590508615801590611b9f5750600081115b15611be857611bae8782611f6d565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bfe8447612394565b604051600081818185875af1925050503d8060008114611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50505050505050505050505050565b600082611cb257506000610882565b6000611cbe838561231e565b905082611ccb858361233d565b146112b75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b60006112b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061205c565b60006112b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611979565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ddb57611ddb6123ab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5457600080fd5b505afa158015611e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8c9190612377565b81600181518110611e9f57611e9f6123ab565b60200260200101906001600160a01b031690816001600160a01b031681525050611eea307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f3f9085906000908690309042906004016123c1565b600060405180830381600087803b158015611f5957600080fd5b505af1158015610ca7573d6000803e3d6000fd5b611f98307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112be565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120559190612432565b5050505050565b6000818361207d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa848661233d565b600060208083528351808285015260005b818110156120b75785810183015185820160400152820161209b565b818111156120c9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120f457600080fd5b50565b6000806040838503121561210a57600080fd5b8235612115816120df565b946020939093013593505050565b60006020828403121561213557600080fd5b81356112b7816120df565b6000806040838503121561215357600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561218457600080fd5b6112b782612162565b6000806000606084860312156121a257600080fd5b83356121ad816120df565b925060208401356121bd816120df565b929592945050506040919091013590565b6000602082840312156121e057600080fd5b5035919050565b600080604083850312156121fa57600080fd5b8235612205816120df565b915061221360208401612162565b90509250929050565b60008060008060008060c0878903121561223557600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561227257600080fd5b823561227d816120df565b9150602083013561228d816120df565b809150509250929050565b600181811c908216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233857612338612308565b500290565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561237257612372612308565b500190565b60006020828403121561238957600080fd5b81516112b7816120df565b6000828210156123a6576123a6612308565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124115784516001600160a01b0316835293830193918301916001016123ec565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122025d2dafbeff4204eb8b97227c4db2a758804f68c700d8537e4b97ac3c53d15fe64736f6c63430008090033
Deployed Bytecode Sourcemap
20716:13053:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6460:168;;;;;;;;;;-1:-1:-1;6460:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6460:168:0;1072:187:1;22126:63:0;;;;;;;;;;-1:-1:-1;22126:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25308:214;;;;;;;;;;-1:-1:-1;25308:214:0;;;;;:::i;:::-;;:::i;:::-;;5417:107;;;;;;;;;;-1:-1:-1;5504:12:0;;5417:107;;;1915:25:1;;;1903:2;1888:18;5417:107:0;1769:177:1;21900:33:0;;;;;;;;;;;;;;;;25772:101;;;;;;;;;;-1:-1:-1;25772:101:0;;;;;:::i;:::-;;:::i;21860:33::-;;;;;;;;;;;;;;;;7110:354;;;;;;;;;;-1:-1:-1;7110:354:0;;;;;:::i;:::-;;:::i;5260:92::-;;;;;;;;;;-1:-1:-1;5260:92:0;;5342:2;2904:36:1;;2892:2;2877:18;5260:92:0;2762:184:1;7873:217:0;;;;;;;;;;-1:-1:-1;7873:217:0;;;;;:::i;:::-;;:::i;20841:28::-;;;;;;;;;;-1:-1:-1;20841:28:0;;;;-1:-1:-1;;;;;20841:28:0;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;20841:28:0;2951:203:1;27773:125:0;;;;;;;;;;-1:-1:-1;27773:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27862:28:0;27838:4;27862:28;;;:19;:28;;;;;;;;;27773:125;25142:158;;;;;;;;;;-1:-1:-1;25142:158:0;;;;;:::i;:::-;;:::i;21209:31::-;;;;;;;;;;-1:-1:-1;21209:31:0;;;;;;;;;;;5587:126;;;;;;;;;;-1:-1:-1;5587:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5687:18:0;5660:7;5687:18;;;;;;;;;;;;5587:126;13397:148;;;;;;;;;;;;;:::i;27231:129::-;;;;;;;;;;;;;:::i;27079:144::-;;;;;;;;;;-1:-1:-1;27079:144:0;;;;;:::i;:::-;;:::i;24928:::-;;;;;;;;;;;;;:::i;12756:78::-;;;;;;;;;;-1:-1:-1;12820:6:0;;-1:-1:-1;;;;;12820:6:0;12756:78;;4518:103;;;;;;;;;;;;;:::i;22196:58::-;;;;;;;;;;-1:-1:-1;22196:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25881:896;;;;;;;;;;-1:-1:-1;25881:896:0;;;;;:::i;:::-;;:::i;24519:353::-;;;;;;;;;;;;;:::i;8593:268::-;;;;;;;;;;-1:-1:-1;8593:268:0;;;;;:::i;:::-;;:::i;5926:174::-;;;;;;;;;;-1:-1:-1;5926:174:0;;;;;:::i;:::-;;:::i;21247:22::-;;;;;;;;;;-1:-1:-1;21247:22:0;;;;;;;;;;;26789:132;;;;;;;;;;-1:-1:-1;26789:132:0;;;;;:::i;:::-;;:::i;27368:196::-;;;;;;;;;;-1:-1:-1;27368:196:0;;;;;:::i;:::-;;:::i;25530:146::-;;;;;;;;;;-1:-1:-1;25530:146:0;;;;;:::i;:::-;;:::i;21584:267::-;;;;;;;;;;-1:-1:-1;21584:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4535:25:1;;;4591:2;4576:18;;4569:34;;;;4619:18;;;4612:34;;;;4677:2;4662:18;;4655:34;;;;4720:3;4705:19;;4698:35;4764:3;4749:19;;4742:35;4808:3;4793:19;;4786:35;4852:3;4837:19;;4830:35;4522:3;4507:19;21584:267:0;4192:679:1;27572:193:0;;;;;;;;;;-1:-1:-1;27572:193:0;;;;;:::i;:::-;;:::i;6163:150::-;;;;;;;;;;-1:-1:-1;6163:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6278:18:0;;;6251:7;6278:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6163:150;26927:146;;;;;;;;;;-1:-1:-1;26927:146:0;;;;;:::i;:::-;;:::i;21940:35::-;;;;;;;;;;;;;;;;13700:244;;;;;;;;;;-1:-1:-1;13700:244:0;;;;;:::i;:::-;;:::i;22412:42::-;;;;;;;;;;-1:-1:-1;22412:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20792;;;;;;;;;;;;;;;4300:99;4353:13;4386:5;4379:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4300:99;:::o;6460:168::-;6542:4;6559:39;3452:10;6582:7;6591:6;6559:8;:39::i;:::-;-1:-1:-1;6616:4:0;6460:168;;;;;:::o;25308:214::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;;;;;;;;;25448:4:::1;25435:9;25419:13;5504:12:::0;;;5417:107;25419:13:::1;:25;;;;:::i;:::-;25418:34;;;;:::i;:::-;25403:12;:49:::0;25510:4:::1;25496:10:::0;25480:13:::1;5504:12:::0;;;5417:107;25480:13:::1;:26;;;;:::i;:::-;25479:35;;;;:::i;:::-;25463:13;:51:::0;-1:-1:-1;;25308:214:0:o;25772:101::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;25844:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;25844:21:0;;::::1;::::0;;;::::1;::::0;;25772:101::o;7110:354::-;7249:4;7266:36;7276:6;7284:9;7295:6;7266:9;:36::i;:::-;7313:121;7322:6;3452:10;7344:89;7382:6;7344:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7344:19:0;;;;;;:11;:19;;;;;;;;3452:10;7344:33;;;;;;;;;;:37;:89::i;:::-;7313:8;:121::i;:::-;-1:-1:-1;7452:4:0;7110:354;;;;;:::o;7873:217::-;3452:10;7960:4;8009:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8009:34:0;;;;;;;;;;7960:4;;7977:83;;8000:7;;8009:50;;8048:10;8009:38;:50::i;25142:158::-;12967:6;;25223:4;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;-1:-1:-1;25239:19:0::1;:31:::0;;;25288:4:::1;13037:1;25142:158:::0;;;:::o;13397:148::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;13488:6:::1;::::0;13467:40:::1;::::0;13504:1:::1;::::0;-1:-1:-1;;;;;13488:6:0::1;::::0;13467:40:::1;::::0;13504:1;;13467:40:::1;13518:6;:19:::0;;-1:-1:-1;;;;;;13518:19:0::1;::::0;;13397:148::o;27231:129::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;27285:29:::1;27304:4;27309::::0;27285:18:::1;:29::i;:::-;27325:27;27347:4;27325:21;:27::i;:::-;27231:129::o:0;27079:144::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27169:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27169:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27079:144::o;24928:::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;24982:9:::1;:16:::0;;-1:-1:-1;;25009:18:0;;;;;25048:16:::1;:12;-1:-1:-1::0;25048:16:0::1;:::i;:::-;25038:7;:26:::0;24928:144::o;4518:103::-;4573:13;4606:7;4599:14;;;;;:::i;25881:896::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;26090:21;:40;;;26141:21;:40;;;26192:23;:44;;;26218:18;26268:45:::1;26165:16:::0;26114;26268:45:::1;:::i;:::-;:71;;;;:::i;:::-;26247:5;:92:::0;26352:22;:42;;;26405:22;:42;;;26458:24;:46;;;26485:19;26537:47:::1;26430:17:::0;26377;26537:47:::1;:::i;:::-;:74;;;;:::i;:::-;26515:19:::0;:96;:5:::1;26630:18:::0;26652:2:::1;-1:-1:-1::0;26630:24:0::1;26622:66;;;::::0;-1:-1:-1;;;26622:66:0;;7112:2:1;26622:66:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26622:66:0::1;6910:353:1::0;26622:66:0::1;26710:19:::0;;26733:2:::1;-1:-1:-1::0;26710:25:0::1;26702:67;;;::::0;-1:-1:-1;;;26702:67:0;;7112:2:1;26702:67:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26702:67:0::1;6910:353:1::0;26702:67:0::1;25881:896:::0;;;;;;:::o;24519:353::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;24605:6:::1;-1:-1:-1::0;;;;;24605:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24587:46:0::1;;24642:4;24649:6;-1:-1:-1::0;;;;;24649:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24587:76;::::0;-1:-1:-1;;;;;;24587:76:0::1;::::0;;;;;;-1:-1:-1;;;;;7754:15:1;;;24587:76:0::1;::::0;::::1;7736:34:1::0;7806:15;;7786:18;;;7779:43;7671:18;;24587:76:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24571:13;:92:::0;;-1:-1:-1;;;;;;24571:92:0::1;-1:-1:-1::0;;;;;24571:92:0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;24674:55:0;;;:31:::1;:55;::::0;;;;;;;:62;;-1:-1:-1;;24674:62:0;;::::1;-1:-1:-1::0;24674:62:0;;::::1;::::0;;;24790:13;;;::::1;24755:50:::0;;:26:::1;:50:::0;;;;;:57;;;::::1;::::0;::::1;::::0;;24842:13;;;;::::1;24823:34:::0;;:10:::1;:34:::0;;;;;:41;;;;::::1;::::0;;::::1;::::0;;24519:353::o;8593:268::-;8685:4;8702:129;3452:10;8725:7;8734:96;8773:15;8734:96;;;;;;;;;;;;;;;;;3452:10;8734:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8734:34:0;;;;;;;;;;;;:38;:96::i;5926:174::-;6011:4;6028:42;3452:10;6052:9;6063:6;6028:9;:42::i;26789:132::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26874:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26874:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26789:132::o;27368:196::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;27461:13:::1;::::0;-1:-1:-1;;;;;27453:21:0;;::::1;27461:13:::0;::::1;27453:21;;27445:76;;;::::0;-1:-1:-1;;;27445:76:0;;8035:2:1;27445:76:0::1;::::0;::::1;8017:21:1::0;8074:2;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;-1:-1:-1;;;8164:18:1;;;8157:40;8214:19;;27445:76:0::1;7833:406:1::0;27445:76:0::1;-1:-1:-1::0;;;;;27532:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27532:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27368:196::o;25530:146::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;25664:4:::1;25647:13;25631;5504:12:::0;;;5417:107;25631:13:::1;:29;;;;:::i;:::-;25630:38;;;;:::i;:::-;25612:15;:56:::0;-1:-1:-1;25530:146:0:o;27572:193::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;27674:15:::1;:34:::0;;-1:-1:-1;;;;;27674:34:0;;::::1;-1:-1:-1::0;;;;;;27674:34:0;;::::1;;::::0;;;27719:17:::1;:38:::0;;;;;::::1;::::0;::::1;;::::0;;27572:193::o;26927:146::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27019:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;27019:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26927:146::o;13700:244::-;12967:6;;-1:-1:-1;;;;;12967:6:0;3452:10;12967:22;12959:67;;;;-1:-1:-1;;;12959:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13789:22:0;::::1;13781:73;;;::::0;-1:-1:-1;;;13781:73:0;;8446:2:1;13781:73:0::1;::::0;::::1;8428:21:1::0;8485:2;8465:18;;;8458:30;8524:34;8504:18;;;8497:62;-1:-1:-1;;;8575:18:1;;;8568:36;8621:19;;13781:73:0::1;8244:402:1::0;13781:73:0::1;13891:6;::::0;13870:38:::1;::::0;-1:-1:-1;;;;;13870:38:0;;::::1;::::0;13891:6:::1;::::0;13870:38:::1;::::0;13891:6:::1;::::0;13870:38:::1;13919:6;:17:::0;;-1:-1:-1;;;;;;13919:17:0::1;-1:-1:-1::0;;;;;13919:17:0;;;::::1;::::0;;;::::1;::::0;;13700:244::o;11021:180::-;11078:7;;11110:5;11114:1;11110;:5;:::i;:::-;11098:17;;11139:1;11134;:6;;11126:46;;;;-1:-1:-1;;;11126:46:0;;8853:2:1;11126:46:0;;;8835:21:1;8892:2;8872:18;;;8865:30;8931:29;8911:18;;;8904:57;8978:18;;11126:46:0;8651:351:1;11126:46:0;11192:1;11021:180;-1:-1:-1;;;11021:180:0:o;10756:220::-;-1:-1:-1;;;;;10884:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10936:32;;1915:25:1;;;10936:32:0;;1888:18:1;10936:32:0;;;;;;;;10756:220;;;:::o;27906:3317::-;28053:11;28049:102;;28081:37;28097:6;28105:9;28116:1;28081:15;:37::i;:::-;27906:3317;;;:::o;28049:102::-;12820:6;;-1:-1:-1;;;;;28181:17:0;;;12820:6;;28181:17;;;;:54;;-1:-1:-1;12820:6:0;;-1:-1:-1;;;;;28215:20:0;;;12820:6;;28215:20;;28181:54;:82;;;;-1:-1:-1;28253:10:0;;;;;;;28252:11;28181:82;28163:888;;;28297:9;;;;28292:147;;-1:-1:-1;;;;;28335:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28366:30:0;;;;;;:19;:30;;;;;;;;28335:61;28327:96;;;;-1:-1:-1;;;28327:96:0;;9209:2:1;28327:96:0;;;9191:21:1;9248:2;9228:18;;;9221:30;-1:-1:-1;;;9267:18:1;;;9260:52;9329:18;;28327:96:0;9007:346:1;28327:96:0;-1:-1:-1;;;;;28457:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28480:42:0;;;;;;:31;:42;;;;;;;;28479:43;28457:65;28453:410;;;28561:12;;28551:6;:22;;28543:88;;;;-1:-1:-1;;;28543:88:0;;9560:2:1;28543:88:0;;;9542:21:1;9599:2;9579:18;;;9572:30;9638:34;9618:18;;;9611:62;-1:-1:-1;;;9689:18:1;;;9682:51;9750:19;;28543:88:0;9358:417:1;28543:88:0;28453:410;;;-1:-1:-1;;;;;28671:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28697:39:0;;;;;;:31;:39;;;;;;;;28696:40;28671:65;28667:196;;;28775:13;;28765:6;:23;;28757:90;;;;-1:-1:-1;;;28757:90:0;;9982:2:1;28757:90:0;;;9964:21:1;10021:2;10001:18;;;9994:30;10060:34;10040:18;;;10033:62;-1:-1:-1;;;10111:18:1;;;10104:52;10173:19;;28757:90:0;9780:418:1;28757:90:0;-1:-1:-1;;;;;28884:37:0;;;;;;:26;:37;;;;;;;;28879:159;;28983:15;;-1:-1:-1;;;;;5687:18:0;;5660:7;5687:18;;;;;;;;;;;28950:29;;:6;:29;:::i;:::-;:48;;28942:80;;;;-1:-1:-1;;;28942:80:0;;10405:2:1;28942:80:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:49;10522:18;;28942:80:0;10203:343:1;28942:80:0;29113:4;29064:28;5687:18;;;;;;;;;;;29172:19;;29148:43;;;;;;;29222:35;;-1:-1:-1;29246:11:0;;;;;;;29222:35;:63;;;;-1:-1:-1;29275:10:0;;;;;;;29274:11;29222:63;:101;;;;-1:-1:-1;;;;;;29302:21:0;;;;;;:10;:21;;;;;;;;29222:101;:146;;;;-1:-1:-1;;;;;;29341:27:0;;;;;;:19;:27;;;;;;;;29340:28;29222:146;:194;;;;-1:-1:-1;;;;;;29386:30:0;;;;;;:19;:30;;;;;;;;29385:31;29222:194;29204:326;;;29443:10;:17;;-1:-1:-1;;29443:17:0;;;;;29475:10;:8;:10::i;:::-;29500;:18;;-1:-1:-1;;29500:18:0;;;29204:326;29559:10;;-1:-1:-1;;;;;29671:27:0;;29543:12;29671:27;;;:19;:27;;;;;;29559:10;;;;;;;29558:11;;29671:27;;:61;;-1:-1:-1;;;;;;29702:30:0;;;;;;:19;:30;;;;;;;;29671:61;29667:109;;;-1:-1:-1;29759:5:0;29667:109;29877:7;29873:1288;;;29901:12;29950:7;;29935:12;:22;29932:1076;;;29985:23;30004:3;29985:14;:6;29996:2;29985:10;:14::i;:::-;:18;;:23::i;:::-;29978:30;-1:-1:-1;30063:2:0;30050:9;29978:30;30057:2;30050:9;:::i;:::-;30049:16;;;;:::i;:::-;30027:18;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;30121:2:0;;-1:-1:-1;30109:8:0;:4;30116:1;30109:8;:::i;:::-;30108:15;;;;:::i;:::-;30084:20;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;29932:1076:0;;-1:-1:-1;29932:1076:0;;-1:-1:-1;;;;;30149:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30174:19:0;;:23;;30149:48;30145:863;;;30236:19;;30225:40;;30261:3;;30225:31;;:6;;:10;:31::i;:40::-;30338:19;;30313:22;;30218:47;;-1:-1:-1;30338:19:0;30306:29;;30218:47;30306:29;:::i;:::-;:51;;;;:::i;:::-;30284:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30430:19:0;;30405:22;;30398:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30376:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30526:19:0;;30499:24;;30492:31;;:4;:31;:::i;30145:863::-;-1:-1:-1;;;;;30607:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30629:5:0;:18;:22;;30607:44;30603:405;;;30690:5;:18;30679:39;;30714:3;;30679:30;;:6;;:10;:30::i;:39::-;30790:5;:18;30766:21;;30672:46;;-1:-1:-1;30790:18:0;30759:28;;30672:46;30759:28;:::i;:::-;:49;;;;:::i;:::-;30737:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30880:5:0;:18;30856:21;;30849:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30827:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30974:5:0;:18;30948:23;;30941:30;;:4;:30;:::i;:::-;:51;;;;:::i;:::-;30917:20;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;30603:405:0;31028:8;;31024:93;;31057:44;31073:6;31089:4;31096;31057:15;:44::i;:::-;31133:14;31143:4;31133:14;;:::i;:::-;;;29886:1275;29873:1288;31173:42;31189:6;31197:9;31208:6;31173:15;:42::i;11362:191::-;11447:7;11483:12;11475:6;;;;11467:29;;;;-1:-1:-1;;;11467:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11507:9:0;11519:5;11523:1;11519;:5;:::i;:::-;11507:17;11362:191;-1:-1:-1;;;;;11362:191:0:o;9351:358::-;9513:71;9535:6;9513:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9513:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9493:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9618:20;;;;;;;:32;;9643:6;9618:24;:32::i;:::-;-1:-1:-1;;;;;9595:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9666:35;1915:25:1;;;9595:20:0;;9666:35;;;;;;1888:18:1;9666:35:0;1769:177:1;32151:1613:0;32239:4;32190:28;5687:18;;;;;;;;;;;32190:55;;32256:14;32315:20;;32294:18;;32273;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;32256:79;-1:-1:-1;32346:12:0;32375:25;;;:40;;-1:-1:-1;32404:11:0;;32375:40;32371:57;;;32419:7;;;32151:1613::o;32371:57::-;32467:19;;:24;;32489:2;32467:24;:::i;:::-;32444:20;:47;32440:127;;;32531:19;;:24;;32553:2;32531:24;:::i;:::-;32508:47;;32440:127;32628:23;32707:1;32698:6;32677:18;;32654:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32628:80;-1:-1:-1;32719:26:0;32748:41;:20;32628:80;32748:24;:41::i;:::-;32719:70;-1:-1:-1;32831:21:0;32865:36;32719:70;32865:16;:36::i;:::-;32916:18;32937:44;:21;32963:17;32937:25;:44::i;:::-;32916:65;;32995:23;33021:46;33060:6;33021:34;33036:18;;33021:10;:14;;:34;;;;:::i;:46::-;32995:72;;33078:25;33106:48;33147:6;33106:36;33121:20;;33106:10;:14;;:36;;;;:::i;:48::-;33078:76;-1:-1:-1;33165:23:0;33205:35;33078:76;33205:15;:35;:::i;:::-;33191:50;;:10;:50;:::i;:::-;33277:1;33256:18;:22;;;33289:18;:22;;;33322:20;:24;33165:76;-1:-1:-1;33365:19:0;;;;;:42;;;33406:1;33388:15;:19;33365:42;33361:192;;;33424:46;33437:15;33454;33424:12;:46::i;:::-;33490:51;;;10855:25:1;;;10911:2;10896:18;;10889:34;;;33490:51:0;;10828:18:1;33490:51:0;;;;;;;33361:192;33586:17;;-1:-1:-1;;;;;33586:17:0;33619:39;33643:15;33619:21;:39;:::i;:::-;33578:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33698:15:0;;33690:66;;33565:101;;-1:-1:-1;;;;;;33698:15:0;;33728:21;;33690:66;;;;33728:21;33698:15;33690:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;32151:1613:0:o;11561:256::-;11618:7;11648:6;11644:47;;-1:-1:-1;11678:1:0;11671:8;;11644:47;11704:9;11716:5;11720:1;11716;:5;:::i;:::-;11704:17;-1:-1:-1;11749:1:0;11740:5;11744:1;11704:17;11740:5;:::i;:::-;:10;11732:56;;;;-1:-1:-1;;;11732:56:0;;11346:2:1;11732:56:0;;;11328:21:1;11385:2;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;-1:-1:-1;;;11475:18:1;;;11468:31;11516:19;;11732:56:0;11144:397:1;11828:131:0;11885:7;11912:39;11916:1;11919;11912:39;;;;;;;;;;;;;;;;;:3;:39::i;11214:135::-;11271:7;11298:43;11302:1;11305;11298:43;;;;;;;;;;;;;;;;;:3;:43::i;31231:554::-;31379:16;;;31393:1;31379:16;;;;;;;;31355:21;;31379:16;;;;;;;;;;-1:-1:-1;31379:16:0;31355:40;;31424:4;31406;31411:1;31406:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31406:23:0;;;-1:-1:-1;;;;;31406:23:0;;;;;31450:6;-1:-1:-1;;;;;31450:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31440:4;31445:1;31440:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31440:23:0;;;-1:-1:-1;;;;;31440:23:0;;;;;31476:49;31493:4;31508:6;31517:7;31476:8;:49::i;:::-;31564:211;;-1:-1:-1;;;31564:211:0;;-1:-1:-1;;;;;31564:6:0;:57;;;;:211;;31636:7;;31658:1;;31702:4;;31729;;31749:15;;31564:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31793:350;31937:49;31954:4;31969:6;31978:7;31937:8;:49::i;:::-;32029:106;;-1:-1:-1;;;32029:106:0;;32081:4;32029:106;;;13136:34:1;;;13186:18;;;13179:34;;;32097:1:0;13229:18:1;;;13222:34;;;13272:18;;;13265:34;13315:19;;;13308:44;32119:15:0;13368:19:1;;;13361:35;32029:6:0;-1:-1:-1;;;;;32029:22:0;;;;32060:9;;13070:19:1;;32029:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31793:350;;:::o;11971:277::-;12056:7;12091:12;12084:5;12076:28;;;;-1:-1:-1;;;12076:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12115:9:0;12127:5;12131:1;12127;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:248::-;1584:6;1592;1645:2;1633:9;1624:7;1620:23;1616:32;1613:52;;;1661:1;1658;1651:12;1613:52;-1:-1:-1;;1684:23:1;;;1754:2;1739:18;;;1726:32;;-1:-1:-1;1516:248:1:o;1951:160::-;2016:20;;2072:13;;2065:21;2055:32;;2045:60;;2101:1;2098;2091:12;2116:180;2172:6;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:26;2280:9;2264:26;:::i;2301:456::-;2378:6;2386;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2502:9;2489:23;2521:31;2546:5;2521:31;:::i;:::-;2571:5;-1:-1:-1;2628:2:1;2613:18;;2600:32;2641:33;2600:32;2641:33;:::i;:::-;2301:456;;2693:7;;-1:-1:-1;;;2747:2:1;2732:18;;;;2719:32;;2301:456::o;3159:180::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;-1:-1:-1;3310:23:1;;3159:180;-1:-1:-1;3159:180:1:o;3344:315::-;3409:6;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3525:9;3512:23;3544:31;3569:5;3544:31;:::i;:::-;3594:5;-1:-1:-1;3618:35:1;3649:2;3634:18;;3618:35;:::i;:::-;3608:45;;3344:315;;;;;:::o;3664:523::-;3768:6;3776;3784;3792;3800;3808;3861:3;3849:9;3840:7;3836:23;3832:33;3829:53;;;3878:1;3875;3868:12;3829:53;-1:-1:-1;;3901:23:1;;;3971:2;3956:18;;3943:32;;-1:-1:-1;4022:2:1;4007:18;;3994:32;;4073:2;4058:18;;4045:32;;-1:-1:-1;4124:3:1;4109:19;;4096:33;;-1:-1:-1;4176:3:1;4161:19;4148:33;;-1:-1:-1;3664:523:1;-1:-1:-1;3664:523:1:o;4876:388::-;4944:6;4952;5005:2;4993:9;4984:7;4980:23;4976:32;4973:52;;;5021:1;5018;5011:12;4973:52;5060:9;5047:23;5079:31;5104:5;5079:31;:::i;:::-;5129:5;-1:-1:-1;5186:2:1;5171:18;;5158:32;5199:33;5158:32;5199:33;:::i;:::-;5251:7;5241:17;;;4876:388;;;;;:::o;5504:380::-;5583:1;5579:12;;;;5626;;;5647:61;;5701:4;5693:6;5689:17;5679:27;;5647:61;5754:2;5746:6;5743:14;5723:18;5720:38;5717:161;;;5800:10;5795:3;5791:20;5788:1;5781:31;5835:4;5832:1;5825:15;5863:4;5860:1;5853:15;5717:161;;5504:380;;;:::o;5889:356::-;6091:2;6073:21;;;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;6236:2;6221:18;;5889:356::o;6250:127::-;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:168;6422:7;6488:1;6484;6480:6;6476:14;6473:1;6470:21;6465:1;6458:9;6451:17;6447:45;6444:71;;;6495:18;;:::i;:::-;-1:-1:-1;6535:9:1;;6382:168::o;6555:217::-;6595:1;6621;6611:132;;6665:10;6660:3;6656:20;6653:1;6646:31;6700:4;6697:1;6690:15;6728:4;6725:1;6718:15;6611:132;-1:-1:-1;6757:9:1;;6555:217::o;6777:128::-;6817:3;6848:1;6844:6;6841:1;6838:13;6835:39;;;6854:18;;:::i;:::-;-1:-1:-1;6890:9:1;;6777:128::o;7268:251::-;7338:6;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;7439:9;7433:16;7458:31;7483:5;7458:31;:::i;10551:125::-;10591:4;10619:1;10616;10613:8;10610:34;;;10624:18;;:::i;:::-;-1:-1:-1;10661:9:1;;10551:125::o;11678:127::-;11739:10;11734:3;11730:20;11727:1;11720:31;11770:4;11767:1;11760:15;11794:4;11791:1;11784:15;11810:980;12072:4;12120:3;12109:9;12105:19;12151:6;12140:9;12133:25;12177:2;12215:6;12210:2;12199:9;12195:18;12188:34;12258:3;12253:2;12242:9;12238:18;12231:31;12282:6;12317;12311:13;12348:6;12340;12333:22;12386:3;12375:9;12371:19;12364:26;;12425:2;12417:6;12413:15;12399:29;;12446:1;12456:195;12470:6;12467:1;12464:13;12456:195;;;12535:13;;-1:-1:-1;;;;;12531:39:1;12519:52;;12626:15;;;;12591:12;;;;12567:1;12485:9;12456:195;;;-1:-1:-1;;;;;;;12707:32:1;;;;12702:2;12687:18;;12680:60;-1:-1:-1;;;12771:3:1;12756:19;12749:35;12668:3;11810:980;-1:-1:-1;;;11810:980:1:o;13407:306::-;13495:6;13503;13511;13564:2;13552:9;13543:7;13539:23;13535:32;13532:52;;;13580:1;13577;13570:12;13532:52;13609:9;13603:16;13593:26;;13659:2;13648:9;13644:18;13638:25;13628:35;;13703:2;13692:9;13688:18;13682:25;13672:35;;13407:306;;;;;:::o
Swarm Source
ipfs://25d2dafbeff4204eb8b97227c4db2a758804f68c700d8537e4b97ac3c53d15fe
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.