ERC-20
Overview
Max Total Supply
1,000,000,000 COFFEE
Holders
32
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
20,000,000 COFFEEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JamaicaBlueMountainCoffee
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-17 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.9; 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 JamaicaBlueMountainCoffee 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("JamaicaBlueMountainCoffee", "COFFEE") { 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; maxSellAmount = totalSupply * 2 / 100; maxWalletAmount = totalSupply * 2 / 100; thresholdSwapAmount = totalSupply * 1 / 1000; _fees.buyMarketingFee = 10; _fees.buyLiquidityFee = 0; _fees.buyDevelopmentFee = 15; _fees.buyTotalFees = _fees.buyMarketingFee + _fees.buyLiquidityFee + _fees.buyDevelopmentFee; _fees.sellMarketingFee = 15; _fees.sellLiquidityFee = 0; _fees.sellDevelopmentFee = 15; _fees.sellTotalFees = _fees.sellMarketingFee + _fees.sellLiquidityFee + _fees.sellDevelopmentFee; marketingWallet = address(0x28485FbC9fcdE5BA46475Bd74B8F069936E793c8); developmentWallet = address(0x28485FbC9fcdE5BA46475Bd74B8F069936E793c8); // 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 tradingStart() 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 <= 40, "Must keep fees at 40% or less"); require(_fees.sellTotalFees <= 40, "Must keep fees at 40% 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":[{"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":[],"name":"tradingStart","outputs":[],"stateMutability":"nonpayable","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
600d805461ffff191690556101a0604052600060a081905260c081905260e0819052610100819052610120819052610140819052610160819052610180819052600e819055600f819055601081905560118190556012819055601381905560148190556015553480156200007257600080fd5b50604080518082018252601981527f4a616d61696361426c75654d6f756e7461696e436f6666656500000000000000602080830191825283518085019094526006845265434f4646454560d01b908401528151919291620000d6916003916200062a565b508051620000ec9060049060208401906200062a565b5050506000620001016200044360201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526000908152601b60208190527f737a8aa320b777139cfebe450e173d90b49df21bdde0d83dcfdff4abee7622ee805460ff1916600190811790915591620001b86005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601b909252812080548316600190811790915561dead82527f6790d4910a095e0e04c8daa388834616a295bac3f59038957b6d0b93a2d2168480549093168117909255601a90620002406005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601a909252812080549092166001908117909255601c90620002996005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055601c9092527fa48bd8e7b1565515cde2859b6cc48308ba05b5325bcf90fb096b9ac0b8087dfc80548416600190811790915530835291208054909216179055608051620003159060001962000447565b506b033b2e3c9fd0803ce8000000606462000332826002620006e6565b6200033e919062000708565b600955606462000350826002620006e6565b6200035c919062000708565b600a5560646200036e826002620006e6565b6200037a919062000708565b600b556103e86200038d826001620006e6565b62000399919062000708565b600c55600a600f8181556000601181905560108290559091620003bd91906200072b565b620003c991906200072b565b600e55600f6013819055600060158190556014829055620003eb90826200072b565b620003f791906200072b565b601255600880547328485fbc9fcde5ba46475bd74b8f069936e793c86001600160a01b031991821681179092556007805490911690911790556200043c33826200045f565b5062000783565b3390565b6000620004563384846200055f565b50600192915050565b6001600160a01b038216620004bb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620004d781600254620005c060201b620012581790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200050a91839062001258620005c0821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620005cf83856200072b565b905083811015620006235760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004b2565b9392505050565b828054620006389062000746565b90600052602060002090601f0160209004810192826200065c5760008555620006a7565b82601f106200067757805160ff1916838001178555620006a7565b82800160010185558215620006a7579182015b82811115620006a75782518255916020019190600101906200068a565b50620006b5929150620006b9565b5090565b5b80821115620006b55760008155600101620006ba565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007035762000703620006d0565b500290565b6000826200072657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007415762000741620006d0565b500190565b600181811c908216806200075b57607f821691505b602082108114156200077d57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612509620007d0600039600081816107bd01528181610c9201528181610d3201528181611dfd01528181611ec501528181611f0101528181611f730152611fcf01526125096000f3fe6080604052600436106102345760003560e01c80638da5cb5b1161012e578063c18bc195116100ab578063ef8700e51161006f578063ef8700e514610730578063f11743f614610746578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c18bc1951461061c578063d212a69a1461063c578063d3f6a157146106aa578063dd62ed3e146106ca578063e16830a81461071057600080fd5b8063a457c2d7116100f2578063a457c2d71461057c578063a9059cbb1461059c578063b8863115146105bc578063c0246668146105dc578063c16dd4a4146105fc57600080fd5b80638da5cb5b146104e457806395d89b411461050257806396880b1714610517578063992c58e4146105475780639e78fb4f1461056757600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b604051610262919061208a565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120f7565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b6366004612123565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e6366004612140565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d366004612172565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b61037336600461218d565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120f7565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b610407366004612123565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b6104403660046121ce565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f366004612123565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121e7565b610adc565b3480156104f057600080fd5b506005546001600160a01b03166103d4565b34801561050e57600080fd5b50610255610b31565b34801561052357600080fd5b5061028b610532366004612123565b601c6020526000908152604090205460ff1681565b34801561055357600080fd5b506102eb61056236600461221c565b610b40565b34801561057357600080fd5b506102eb610c66565b34801561058857600080fd5b5061028b6105973660046120f7565b610eaf565b3480156105a857600080fd5b5061028b6105b73660046120f7565b610efe565b3480156105c857600080fd5b50600d5461028b9062010000900460ff1681565b3480156105e857600080fd5b506102eb6105f73660046121e7565b610f0b565b34801561060857600080fd5b506102eb6106173660046121e7565b610f60565b34801561062857600080fd5b506102eb6106373660046121ce565b611026565b34801561064857600080fd5b50600e54600f5460105460115460125460135460145460155461066f979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106b657600080fd5b506102eb6106c536600461225f565b611077565b3480156106d657600080fd5b506102fe6106e536600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071c57600080fd5b506102eb61072b3660046121e7565b6110cf565b34801561073c57600080fd5b506102fe60185481565b34801561075257600080fd5b506102eb611124565b34801561076757600080fd5b506102eb610776366004612123565b61116d565b34801561078757600080fd5b5061028b610796366004612123565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546107ee90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612298565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e3384846112be565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b2906122d3565b60405180910390fd5b6103e8826108c860025490565b6108d2919061231e565b6108dc919061233d565b6009556103e8816108ec60025490565b6108f6919061231e565b610900919061233d565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b2906122d3565b600d80549115156101000261ff0019909216919091179055565b6000610958848484611320565b6109aa84336109a5856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611979565b6112be565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a59086611258565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b2906122d3565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b2906122d3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b2906122d3565b610acf6103e880610888565b610ada6103e8611026565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6060600480546107ee90612298565b6005546001600160a01b03163314610b6a5760405162461bcd60e51b81526004016108b2906122d3565b600f8690556011859055601084905583610b84868861235f565b610b8e919061235f565b600e5560138390556015829055601481905580610bab838561235f565b610bb5919061235f565b601255600e5460281015610c0b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b60125460281015610c5e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610c905760405162461bcd60e51b81526004016108b2906122d3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce957600080fd5b505afa158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190612377565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d8957600080fd5b505afa158015610d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190612377565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610e0957600080fd5b505af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e419190612377565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a585604051806060016040528060258152602001612461602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611979565b600061087e338484611320565b6005546001600160a01b03163314610f355760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f8a5760405162461bcd60e51b81526004016108b2906122d3565b6006546001600160a01b0383811691161415610ffb5760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110505760405162461bcd60e51b81526004016108b2906122d3565b6103e88161105d60025490565b611067919061231e565b611071919061233d565b600b5550565b6005546001600160a01b031633146110a15760405162461bcd60e51b81526004016108b2906122d3565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461114e5760405162461bcd60e51b81526004016108b2906122d3565b600d805461ffff191661010117905561116843600061235f565b601955565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b0381166111fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611265838561235f565b9050838110156112b75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061133657611331838360006119b3565b505050565b6005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b80156113775750600d5462010000900460ff16155b1561160657600d5460ff1661140a576001600160a01b0383166000908152601a602052604090205460ff16806113c557506001600160a01b0382166000908152601a602052604090205460ff165b61140a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561144b57506001600160a01b0382166000908152601b602052604090205460ff16155b156114c5576009548111156114c05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b61157c565b6001600160a01b0382166000908152601d602052604090205460ff16801561150657506001600160a01b0383166000908152601b602052604090205460ff16155b1561157c57600a5481111561157c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff1661160657600b546001600160a01b0383166000908152602081905260409020546115c2908361235f565b11156116065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116315750600d54610100900460ff165b80156116465750600d5462010000900460ff16155b801561166a57506001600160a01b0384166000908152601d602052604090205460ff165b801561168f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156116b457506001600160a01b0384166000908152601a602052604090205460ff16155b156116df57600d805462ff00001916620100001790556116d2611a70565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061172c57506001600160a01b0385166000908152601a602052604090205460ff165b15611735575060005b801561196e5760006019544310156117c05761175d6064611757876063611ca3565b90611d22565b9050606361176c82605e61231e565b611776919061233d565b60166000828254611787919061235f565b909155506063905061179a82600561231e565b6117a4919061233d565b601860008282546117b5919061235f565b9091555061194f9050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117e9575060125415155b156118775760125461180390606490611757908890611ca3565b60125460155491925090611817908361231e565b611821919061233d565b60176000828254611832919061235f565b9091555050601254601354611847908361231e565b611851919061233d565b60166000828254611862919061235f565b909155505060125460145461179a908361231e565b6001600160a01b0387166000908152601d602052604090205460ff1680156118a05750600e5415155b1561194f57600e546118ba90606490611757908890611ca3565b600e54601154919250906118ce908361231e565b6118d8919061233d565b601760008282546118e9919061235f565b9091555050600e54600f546118fe908361231e565b611908919061233d565b60166000828254611919919061235f565b9091555050600e5460105461192e908361231e565b611938919061233d565b60186000828254611949919061235f565b90915550505b8015611960576119608730836119b3565b61196a8186612394565b9450505b610c5e8686866119b3565b6000818484111561199d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa8486612394565b95945050505050565b6119f081604051806060016040528060268152602001612486602691396001600160a01b0386166000908152602081905260409020549190611979565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a1f9082611258565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611313565b3060009081526020819052604081205490506000601854601654601754611a97919061235f565b611aa1919061235f565b90506000821580611ab0575081155b15611aba57505050565b600c54611ac890601461231e565b831115611ae057600c54611add90601461231e565b92505b600060028360175486611af3919061231e565b611afd919061233d565b611b07919061233d565b90506000611b158583611d64565b905047611b2182611da6565b6000611b2d4783611d64565b90506000611b4a8761175760165485611ca390919063ffffffff16565b90506000611b678861175760185486611ca390919063ffffffff16565b90506000611b75828461235f565b611b7f9085612394565b60006017819055601681905560185590508615801590611b9f5750600081115b15611be857611bae8782611f6d565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bfe8447612394565b604051600081818185875af1925050503d8060008114611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50505050505050505050505050565b600082611cb257506000610882565b6000611cbe838561231e565b905082611ccb858361233d565b146112b75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b60006112b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061205c565b60006112b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611979565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ddb57611ddb6123ab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5457600080fd5b505afa158015611e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8c9190612377565b81600181518110611e9f57611e9f6123ab565b60200260200101906001600160a01b031690816001600160a01b031681525050611eea307f0000000000000000000000000000000000000000000000000000000000000000846112be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f3f9085906000908690309042906004016123c1565b600060405180830381600087803b158015611f5957600080fd5b505af1158015610c5e573d6000803e3d6000fd5b611f98307f0000000000000000000000000000000000000000000000000000000000000000846112be565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120559190612432565b5050505050565b6000818361207d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa848661233d565b600060208083528351808285015260005b818110156120b75785810183015185820160400152820161209b565b818111156120c9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120f457600080fd5b50565b6000806040838503121561210a57600080fd5b8235612115816120df565b946020939093013593505050565b60006020828403121561213557600080fd5b81356112b7816120df565b6000806040838503121561215357600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561218457600080fd5b6112b782612162565b6000806000606084860312156121a257600080fd5b83356121ad816120df565b925060208401356121bd816120df565b929592945050506040919091013590565b6000602082840312156121e057600080fd5b5035919050565b600080604083850312156121fa57600080fd5b8235612205816120df565b915061221360208401612162565b90509250929050565b60008060008060008060c0878903121561223557600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561227257600080fd5b823561227d816120df565b9150602083013561228d816120df565b809150509250929050565b600181811c908216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233857612338612308565b500290565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561237257612372612308565b500190565b60006020828403121561238957600080fd5b81516112b7816120df565b6000828210156123a6576123a6612308565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124115784516001600160a01b0316835293830193918301916001016123ec565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122078ca6ed8a78f4a3e25ff7d103e5afbb1b4b64b71afef72dfb28602512561db3864736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102345760003560e01c80638da5cb5b1161012e578063c18bc195116100ab578063ef8700e51161006f578063ef8700e514610730578063f11743f614610746578063f2fde38b1461075b578063f5b3c3bf1461077b578063f887ea40146107ab57600080fd5b8063c18bc1951461061c578063d212a69a1461063c578063d3f6a157146106aa578063dd62ed3e146106ca578063e16830a81461071057600080fd5b8063a457c2d7116100f2578063a457c2d71461057c578063a9059cbb1461059c578063b8863115146105bc578063c0246668146105dc578063c16dd4a4146105fc57600080fd5b80638da5cb5b146104e457806395d89b411461050257806396880b1714610517578063992c58e4146105475780639e78fb4f1461056757600080fd5b8063313ce567116101bc5780636ddd1713116101805780636ddd17131461044557806370a0823114610464578063715018a61461049a578063751039fc146104af5780637571336a146104c457600080fd5b8063313ce56714610378578063395093511461039457806349bd5a5e146103b45780634fbee193146103ec578063555467a11461042557600080fd5b806318160ddd1161020357806318160ddd146102ed5780631a8145bb1461030c5780631c6e8a75146103225780631f3fed8f1461034257806323b872dd1461035857600080fd5b806306fdde0314610240578063095ea7b31461026b57806310d5de531461029b57806311a582c3146102cb57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b506102556107df565b604051610262919061208a565b60405180910390f35b34801561027757600080fd5b5061028b6102863660046120f7565b610871565b6040519015158152602001610262565b3480156102a757600080fd5b5061028b6102b6366004612123565b601b6020526000908152604090205460ff1681565b3480156102d757600080fd5b506102eb6102e6366004612140565b610888565b005b3480156102f957600080fd5b506002545b604051908152602001610262565b34801561031857600080fd5b506102fe60175481565b34801561032e57600080fd5b506102eb61033d366004612172565b610907565b34801561034e57600080fd5b506102fe60165481565b34801561036457600080fd5b5061028b61037336600461218d565b61094b565b34801561038457600080fd5b5060405160128152602001610262565b3480156103a057600080fd5b5061028b6103af3660046120f7565b6109b4565b3480156103c057600080fd5b506006546103d4906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156103f857600080fd5b5061028b610407366004612123565b6001600160a01b03166000908152601a602052604090205460ff1690565b34801561043157600080fd5b5061028b6104403660046121ce565b6109ea565b34801561045157600080fd5b50600d5461028b90610100900460ff1681565b34801561047057600080fd5b506102fe61047f366004612123565b6001600160a01b031660009081526020819052604090205490565b3480156104a657600080fd5b506102eb610a25565b3480156104bb57600080fd5b506102eb610a99565b3480156104d057600080fd5b506102eb6104df3660046121e7565b610adc565b3480156104f057600080fd5b506005546001600160a01b03166103d4565b34801561050e57600080fd5b50610255610b31565b34801561052357600080fd5b5061028b610532366004612123565b601c6020526000908152604090205460ff1681565b34801561055357600080fd5b506102eb61056236600461221c565b610b40565b34801561057357600080fd5b506102eb610c66565b34801561058857600080fd5b5061028b6105973660046120f7565b610eaf565b3480156105a857600080fd5b5061028b6105b73660046120f7565b610efe565b3480156105c857600080fd5b50600d5461028b9062010000900460ff1681565b3480156105e857600080fd5b506102eb6105f73660046121e7565b610f0b565b34801561060857600080fd5b506102eb6106173660046121e7565b610f60565b34801561062857600080fd5b506102eb6106373660046121ce565b611026565b34801561064857600080fd5b50600e54600f5460105460115460125460135460145460155461066f979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610262565b3480156106b657600080fd5b506102eb6106c536600461225f565b611077565b3480156106d657600080fd5b506102fe6106e536600461225f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071c57600080fd5b506102eb61072b3660046121e7565b6110cf565b34801561073c57600080fd5b506102fe60185481565b34801561075257600080fd5b506102eb611124565b34801561076757600080fd5b506102eb610776366004612123565b61116d565b34801561078757600080fd5b5061028b610796366004612123565b601d6020526000908152604090205460ff1681565b3480156107b757600080fd5b506103d47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6060600380546107ee90612298565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612298565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087e3384846112be565b5060015b92915050565b6005546001600160a01b031633146108bb5760405162461bcd60e51b81526004016108b2906122d3565b60405180910390fd5b6103e8826108c860025490565b6108d2919061231e565b6108dc919061233d565b6009556103e8816108ec60025490565b6108f6919061231e565b610900919061233d565b600a555050565b6005546001600160a01b031633146109315760405162461bcd60e51b81526004016108b2906122d3565b600d80549115156101000261ff0019909216919091179055565b6000610958848484611320565b6109aa84336109a5856040518060600160405280602881526020016124ac602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611979565b6112be565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161087e9185906109a59086611258565b6005546000906001600160a01b03163314610a175760405162461bcd60e51b81526004016108b2906122d3565b50600c81905560015b919050565b6005546001600160a01b03163314610a4f5760405162461bcd60e51b81526004016108b2906122d3565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b2906122d3565b610acf6103e880610888565b610ada6103e8611026565b565b6005546001600160a01b03163314610b065760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6060600480546107ee90612298565b6005546001600160a01b03163314610b6a5760405162461bcd60e51b81526004016108b2906122d3565b600f8690556011859055601084905583610b84868861235f565b610b8e919061235f565b600e5560138390556015829055601481905580610bab838561235f565b610bb5919061235f565b601255600e5460281015610c0b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b60125460281015610c5e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420343025206f72206c65737300000060448201526064016108b2565b505050505050565b6005546001600160a01b03163314610c905760405162461bcd60e51b81526004016108b2906122d3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce957600080fd5b505afa158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190612377565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d8957600080fd5b505afa158015610d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc19190612377565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610e0957600080fd5b505af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e419190612377565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601b60209081526040808320805460ff199081166001908117909255855487168552601c8452828520805482168317905594549095168352601d909152902080549091169091179055565b600061087e33846109a585604051806060016040528060258152602001612461602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611979565b600061087e338484611320565b6005546001600160a01b03163314610f355760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601a60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f8a5760405162461bcd60e51b81526004016108b2906122d3565b6006546001600160a01b0383811691161415610ffb5760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526936b0b935b2ba2830b4b960b11b60648201526084016108b2565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110505760405162461bcd60e51b81526004016108b2906122d3565b6103e88161105d60025490565b611067919061231e565b611071919061233d565b600b5550565b6005546001600160a01b031633146110a15760405162461bcd60e51b81526004016108b2906122d3565b600880546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461114e5760405162461bcd60e51b81526004016108b2906122d3565b600d805461ffff191661010117905561116843600061235f565b601955565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016108b2906122d3565b6001600160a01b0381166111fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611265838561235f565b9050838110156112b75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108b2565b9392505050565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b8061133657611331838360006119b3565b505050565b6005546001600160a01b0384811691161480159061136257506005546001600160a01b03838116911614155b80156113775750600d5462010000900460ff16155b1561160657600d5460ff1661140a576001600160a01b0383166000908152601a602052604090205460ff16806113c557506001600160a01b0382166000908152601a602052604090205460ff165b61140a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108b2565b6001600160a01b0383166000908152601d602052604090205460ff16801561144b57506001600160a01b0382166000908152601b602052604090205460ff16155b156114c5576009548111156114c05760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108b2565b61157c565b6001600160a01b0382166000908152601d602052604090205460ff16801561150657506001600160a01b0383166000908152601b602052604090205460ff16155b1561157c57600a5481111561157c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108b2565b6001600160a01b0382166000908152601c602052604090205460ff1661160657600b546001600160a01b0383166000908152602081905260409020546115c2908361235f565b11156116065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108b2565b30600090815260208190526040902054600c54811080159081906116315750600d54610100900460ff165b80156116465750600d5462010000900460ff16155b801561166a57506001600160a01b0384166000908152601d602052604090205460ff165b801561168f57506001600160a01b0385166000908152601a602052604090205460ff16155b80156116b457506001600160a01b0384166000908152601a602052604090205460ff16155b156116df57600d805462ff00001916620100001790556116d2611a70565b600d805462ff0000191690555b600d546001600160a01b0386166000908152601a602052604090205460ff6201000090920482161591168061172c57506001600160a01b0385166000908152601a602052604090205460ff165b15611735575060005b801561196e5760006019544310156117c05761175d6064611757876063611ca3565b90611d22565b9050606361176c82605e61231e565b611776919061233d565b60166000828254611787919061235f565b909155506063905061179a82600561231e565b6117a4919061233d565b601860008282546117b5919061235f565b9091555061194f9050565b6001600160a01b0386166000908152601d602052604090205460ff1680156117e9575060125415155b156118775760125461180390606490611757908890611ca3565b60125460155491925090611817908361231e565b611821919061233d565b60176000828254611832919061235f565b9091555050601254601354611847908361231e565b611851919061233d565b60166000828254611862919061235f565b909155505060125460145461179a908361231e565b6001600160a01b0387166000908152601d602052604090205460ff1680156118a05750600e5415155b1561194f57600e546118ba90606490611757908890611ca3565b600e54601154919250906118ce908361231e565b6118d8919061233d565b601760008282546118e9919061235f565b9091555050600e54600f546118fe908361231e565b611908919061233d565b60166000828254611919919061235f565b9091555050600e5460105461192e908361231e565b611938919061233d565b60186000828254611949919061235f565b90915550505b8015611960576119608730836119b3565b61196a8186612394565b9450505b610c5e8686866119b3565b6000818484111561199d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa8486612394565b95945050505050565b6119f081604051806060016040528060268152602001612486602691396001600160a01b0386166000908152602081905260409020549190611979565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611a1f9082611258565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611313565b3060009081526020819052604081205490506000601854601654601754611a97919061235f565b611aa1919061235f565b90506000821580611ab0575081155b15611aba57505050565b600c54611ac890601461231e565b831115611ae057600c54611add90601461231e565b92505b600060028360175486611af3919061231e565b611afd919061233d565b611b07919061233d565b90506000611b158583611d64565b905047611b2182611da6565b6000611b2d4783611d64565b90506000611b4a8761175760165485611ca390919063ffffffff16565b90506000611b678861175760185486611ca390919063ffffffff16565b90506000611b75828461235f565b611b7f9085612394565b60006017819055601681905560185590508615801590611b9f5750600081115b15611be857611bae8782611f6d565b60408051878152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a15b6007546001600160a01b0316611bfe8447612394565b604051600081818185875af1925050503d8060008114611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114611c8f576040519150601f19603f3d011682016040523d82523d6000602084013e611c94565b606091505b50505050505050505050505050565b600082611cb257506000610882565b6000611cbe838561231e565b905082611ccb858361233d565b146112b75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108b2565b60006112b783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061205c565b60006112b783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611979565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ddb57611ddb6123ab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5457600080fd5b505afa158015611e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8c9190612377565b81600181518110611e9f57611e9f6123ab565b60200260200101906001600160a01b031690816001600160a01b031681525050611eea307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f3f9085906000908690309042906004016123c1565b600060405180830381600087803b158015611f5957600080fd5b505af1158015610c5e573d6000803e3d6000fd5b611f98307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112be565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561201c57600080fd5b505af1158015612030573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120559190612432565b5050505050565b6000818361207d5760405162461bcd60e51b81526004016108b2919061208a565b5060006119aa848661233d565b600060208083528351808285015260005b818110156120b75785810183015185820160400152820161209b565b818111156120c9576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146120f457600080fd5b50565b6000806040838503121561210a57600080fd5b8235612115816120df565b946020939093013593505050565b60006020828403121561213557600080fd5b81356112b7816120df565b6000806040838503121561215357600080fd5b50508035926020909101359150565b80358015158114610a2057600080fd5b60006020828403121561218457600080fd5b6112b782612162565b6000806000606084860312156121a257600080fd5b83356121ad816120df565b925060208401356121bd816120df565b929592945050506040919091013590565b6000602082840312156121e057600080fd5b5035919050565b600080604083850312156121fa57600080fd5b8235612205816120df565b915061221360208401612162565b90509250929050565b60008060008060008060c0878903121561223557600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000806040838503121561227257600080fd5b823561227d816120df565b9150602083013561228d816120df565b809150509250929050565b600181811c908216806122ac57607f821691505b602082108114156122cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233857612338612308565b500290565b60008261235a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561237257612372612308565b500190565b60006020828403121561238957600080fd5b81516112b7816120df565b6000828210156123a6576123a6612308565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124115784516001600160a01b0316835293830193918301916001016123ec565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561244757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206465637265617365642063616e6e6f742062652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122078ca6ed8a78f4a3e25ff7d103e5afbb1b4b64b71afef72dfb28602512561db3864736f6c63430008090033
Deployed Bytecode Sourcemap
20655:13052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4238:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6398:168;;;;;;;;;;-1:-1:-1;6398:168:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;6398:168:0;1072:187:1;22086:63:0;;;;;;;;;;-1:-1:-1;22086:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25246:214;;;;;;;;;;-1:-1:-1;25246:214:0;;;;;:::i;:::-;;:::i;:::-;;5355:107;;;;;;;;;;-1:-1:-1;5442:12:0;;5355:107;;;1915:25:1;;;1903:2;1888:18;5355:107:0;1769:177:1;21860:33:0;;;;;;;;;;;;;;;;25710:101;;;;;;;;;;-1:-1:-1;25710:101:0;;;;;:::i;:::-;;:::i;21820:33::-;;;;;;;;;;;;;;;;7048:354;;;;;;;;;;-1:-1:-1;7048:354:0;;;;;:::i;:::-;;:::i;5198:92::-;;;;;;;;;;-1:-1:-1;5198:92:0;;5280:2;2904:36:1;;2892:2;2877:18;5198:92:0;2762:184:1;7811:217:0;;;;;;;;;;-1:-1:-1;7811:217:0;;;;;:::i;:::-;;:::i;20800:29::-;;;;;;;;;;-1:-1:-1;20800:29:0;;;;-1:-1:-1;;;;;20800:29:0;;;;;;-1:-1:-1;;;;;3115:32:1;;;3097:51;;3085:2;3070:18;20800:29:0;2951:203:1;27711:125:0;;;;;;;;;;-1:-1:-1;27711:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;27800:28:0;27776:4;27800:28;;;:19;:28;;;;;;;;;27711:125;25080:158;;;;;;;;;;-1:-1:-1;25080:158:0;;;;;:::i;:::-;;:::i;21169:31::-;;;;;;;;;;-1:-1:-1;21169:31:0;;;;;;;;;;;5525:126;;;;;;;;;;-1:-1:-1;5525:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;5625:18:0;5598:7;5625:18;;;;;;;;;;;;5525:126;13335:148;;;;;;;;;;;;;:::i;27169:129::-;;;;;;;;;;;;;:::i;27017:144::-;;;;;;;;;;-1:-1:-1;27017:144:0;;;;;:::i;:::-;;:::i;12694:78::-;;;;;;;;;;-1:-1:-1;12758:6:0;;-1:-1:-1;;;;;12758:6:0;12694:78;;4456:103;;;;;;;;;;;;;:::i;22156:58::-;;;;;;;;;;-1:-1:-1;22156:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25819:896;;;;;;;;;;-1:-1:-1;25819:896:0;;;;;:::i;:::-;;:::i;24457:353::-;;;;;;;;;;;;;:::i;8531:268::-;;;;;;;;;;-1:-1:-1;8531:268:0;;;;;:::i;:::-;;:::i;5864:174::-;;;;;;;;;;-1:-1:-1;5864:174:0;;;;;:::i;:::-;;:::i;21207:22::-;;;;;;;;;;-1:-1:-1;21207:22:0;;;;;;;;;;;26727:132;;;;;;;;;;-1:-1:-1;26727:132:0;;;;;:::i;:::-;;:::i;27306:196::-;;;;;;;;;;-1:-1:-1;27306:196:0;;;;;:::i;:::-;;:::i;25468:146::-;;;;;;;;;;-1:-1:-1;25468:146:0;;;;;:::i;:::-;;:::i;21544:267::-;;;;;;;;;;-1:-1:-1;21544: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;21544:267:0;4192:679:1;27510:193:0;;;;;;;;;;-1:-1:-1;27510:193:0;;;;;:::i;:::-;;:::i;6101:150::-;;;;;;;;;;-1:-1:-1;6101:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;6216:18:0;;;6189:7;6216:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6101:150;26865:146;;;;;;;;;;-1:-1:-1;26865:146:0;;;;;:::i;:::-;;:::i;21900:35::-;;;;;;;;;;;;;;;;24866:144;;;;;;;;;;;;;:::i;13638:244::-;;;;;;;;;;-1:-1:-1;13638:244:0;;;;;:::i;:::-;;:::i;22372:42::-;;;;;;;;;;-1:-1:-1;22372:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20751;;;;;;;;;;;;;;;4238:99;4291:13;4324:5;4317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4238:99;:::o;6398:168::-;6480:4;6497:39;3390:10;6520:7;6529:6;6497:8;:39::i;:::-;-1:-1:-1;6554:4:0;6398:168;;;;;:::o;25246:214::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;;;;;;;;;25386:4:::1;25373:9;25357:13;5442:12:::0;;;5355:107;25357:13:::1;:25;;;;:::i;:::-;25356:34;;;;:::i;:::-;25341:12;:49:::0;25448:4:::1;25434:10:::0;25418:13:::1;5442:12:::0;;;5355:107;25418:13:::1;:26;;;;:::i;:::-;25417:35;;;;:::i;:::-;25401:13;:51:::0;-1:-1:-1;;25246:214:0:o;25710:101::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;25782:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;25782:21:0;;::::1;::::0;;;::::1;::::0;;25710:101::o;7048:354::-;7187:4;7204:36;7214:6;7222:9;7233:6;7204:9;:36::i;:::-;7251:121;7260:6;3390:10;7282:89;7320:6;7282:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7282:19:0;;;;;;:11;:19;;;;;;;;3390:10;7282:33;;;;;;;;;;:37;:89::i;:::-;7251:8;:121::i;:::-;-1:-1:-1;7390:4:0;7048:354;;;;;:::o;7811:217::-;3390:10;7898:4;7947:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7947:34:0;;;;;;;;;;7898:4;;7915:83;;7938:7;;7947:50;;7986:10;7947:38;:50::i;25080:158::-;12905:6;;25161:4;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;-1:-1:-1;25177:19:0::1;:31:::0;;;25226:4:::1;12975:1;25080:158:::0;;;:::o;13335:148::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;13426:6:::1;::::0;13405:40:::1;::::0;13442:1:::1;::::0;-1:-1:-1;;;;;13426:6:0::1;::::0;13405:40:::1;::::0;13442:1;;13405:40:::1;13456:6;:19:::0;;-1:-1:-1;;;;;;13456:19:0::1;::::0;;13335:148::o;27169:129::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;27223:29:::1;27242:4;27247::::0;27223:18:::1;:29::i;:::-;27263:27;27285:4;27263:21;:27::i;:::-;27169:129::o:0;27017:144::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27107:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27107:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27017:144::o;4456:103::-;4511:13;4544:7;4537:14;;;;;:::i;25819:896::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;26028:21;:40;;;26079:21;:40;;;26130:23;:44;;;26156:18;26206:45:::1;26103:16:::0;26052;26206:45:::1;:::i;:::-;:71;;;;:::i;:::-;26185:5;:92:::0;26290:22;:42;;;26343:22;:42;;;26396:24;:46;;;26423:19;26475:47:::1;26368:17:::0;26315;26475:47:::1;:::i;:::-;:74;;;;:::i;:::-;26453:19:::0;:96;:5:::1;26568:18:::0;26590:2:::1;-1:-1:-1::0;26568:24:0::1;26560:66;;;::::0;-1:-1:-1;;;26560:66:0;;7112:2:1;26560:66:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26560:66:0::1;6910:353:1::0;26560:66:0::1;26648:19:::0;;26671:2:::1;-1:-1:-1::0;26648:25:0::1;26640:67;;;::::0;-1:-1:-1;;;26640:67:0;;7112:2:1;26640:67:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:31;7170:18;;;7163:59;7239:18;;26640:67:0::1;6910:353:1::0;26640:67:0::1;25819:896:::0;;;;;;:::o;24457:353::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;24543:6:::1;-1:-1:-1::0;;;;;24543:14:0::1;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24525:46:0::1;;24580:4;24587:6;-1:-1:-1::0;;;;;24587:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24525:76;::::0;-1:-1:-1;;;;;;24525:76:0::1;::::0;;;;;;-1:-1:-1;;;;;7754:15:1;;;24525:76:0::1;::::0;::::1;7736:34:1::0;7806:15;;7786:18;;;7779:43;7671:18;;24525:76:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24509:13;:92:::0;;-1:-1:-1;;;;;;24509:92:0::1;-1:-1:-1::0;;;;;24509:92:0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;24612:55:0;;;:31:::1;:55;::::0;;;;;;;:62;;-1:-1:-1;;24612:62:0;;::::1;-1:-1:-1::0;24612:62:0;;::::1;::::0;;;24728:13;;;::::1;24693:50:::0;;:26:::1;:50:::0;;;;;:57;;;::::1;::::0;::::1;::::0;;24780:13;;;;::::1;24761:34:::0;;:10:::1;:34:::0;;;;;:41;;;;::::1;::::0;;::::1;::::0;;24457:353::o;8531:268::-;8623:4;8640:129;3390:10;8663:7;8672:96;8711:15;8672:96;;;;;;;;;;;;;;;;;3390:10;8672:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8672:34:0;;;;;;;;;;;;:38;:96::i;5864:174::-;5949:4;5966:42;3390:10;5990:9;6001:6;5966:9;:42::i;26727:132::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26812:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26812:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26727:132::o;27306:196::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;27399:13:::1;::::0;-1:-1:-1;;;;;27391:21:0;;::::1;27399:13:::0;::::1;27391:21;;27383:76;;;::::0;-1:-1:-1;;;27383:76:0;;8035:2:1;27383: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;;27383:76:0::1;7833:406:1::0;27383:76:0::1;-1:-1:-1::0;;;;;27470:16:0;;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;27470:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27306:196::o;25468:146::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;25602:4:::1;25585:13;25569;5442:12:::0;;;5355:107;25569:13:::1;:29;;;;:::i;:::-;25568:38;;;;:::i;:::-;25550:15;:56:::0;-1:-1:-1;25468:146:0:o;27510:193::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;27612:15:::1;:34:::0;;-1:-1:-1;;;;;27612:34:0;;::::1;-1:-1:-1::0;;;;;;27612:34:0;;::::1;;::::0;;;27657:17:::1;:38:::0;;;;;::::1;::::0;::::1;;::::0;;27510:193::o;26865:146::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26957:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;26957:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26865:146::o;24866:144::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;24920:9:::1;:16:::0;;-1:-1:-1;;24947:18:0;;;;;24986:16:::1;:12;-1:-1:-1::0;24986:16:0::1;:::i;:::-;24976:7;:26:::0;24866:144::o;13638:244::-;12905:6;;-1:-1:-1;;;;;12905:6:0;3390:10;12905:22;12897:67;;;;-1:-1:-1;;;12897:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13727:22:0;::::1;13719:73;;;::::0;-1:-1:-1;;;13719:73:0;;8446:2:1;13719: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;;13719:73:0::1;8244:402:1::0;13719:73:0::1;13829:6;::::0;13808:38:::1;::::0;-1:-1:-1;;;;;13808:38:0;;::::1;::::0;13829:6:::1;::::0;13808:38:::1;::::0;13829:6:::1;::::0;13808:38:::1;13857:6;:17:::0;;-1:-1:-1;;;;;;13857:17:0::1;-1:-1:-1::0;;;;;13857:17:0;;;::::1;::::0;;;::::1;::::0;;13638:244::o;10959:180::-;11016:7;;11048:5;11052:1;11048;:5;:::i;:::-;11036:17;;11077:1;11072;:6;;11064:46;;;;-1:-1:-1;;;11064:46:0;;8853:2:1;11064:46:0;;;8835:21:1;8892:2;8872:18;;;8865:30;8931:29;8911:18;;;8904:57;8978:18;;11064:46:0;8651:351:1;11064:46:0;11130:1;10959:180;-1:-1:-1;;;10959:180:0:o;10694:220::-;-1:-1:-1;;;;;10822:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10874:32;;1915:25:1;;;10874:32:0;;1888:18:1;10874:32:0;;;;;;;;10694:220;;;:::o;27844:3317::-;27991:11;27987:102;;28019:37;28035:6;28043:9;28054:1;28019:15;:37::i;:::-;27844:3317;;;:::o;27987:102::-;12758:6;;-1:-1:-1;;;;;28119:17:0;;;12758:6;;28119:17;;;;:54;;-1:-1:-1;12758:6:0;;-1:-1:-1;;;;;28153:20:0;;;12758:6;;28153:20;;28119:54;:82;;;;-1:-1:-1;28191:10:0;;;;;;;28190:11;28119:82;28101:888;;;28235:9;;;;28230:147;;-1:-1:-1;;;;;28273:27:0;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;;;;;;28304:30:0;;;;;;:19;:30;;;;;;;;28273:61;28265:96;;;;-1:-1:-1;;;28265:96:0;;9209:2:1;28265:96:0;;;9191:21:1;9248:2;9228:18;;;9221:30;-1:-1:-1;;;9267:18:1;;;9260:52;9329:18;;28265:96:0;9007:346:1;28265:96:0;-1:-1:-1;;;;;28395:18:0;;;;;;:10;:18;;;;;;;;:65;;;;-1:-1:-1;;;;;;28418:42:0;;;;;;:31;:42;;;;;;;;28417:43;28395:65;28391:410;;;28499:12;;28489:6;:22;;28481:88;;;;-1:-1:-1;;;28481:88:0;;9560:2:1;28481: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;;28481:88:0;9358:417:1;28481:88:0;28391:410;;;-1:-1:-1;;;;;28609:21:0;;;;;;:10;:21;;;;;;;;:65;;;;-1:-1:-1;;;;;;28635:39:0;;;;;;:31;:39;;;;;;;;28634:40;28609:65;28605:196;;;28713:13;;28703:6;:23;;28695:90;;;;-1:-1:-1;;;28695:90:0;;9982:2:1;28695: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;;28695:90:0;9780:418:1;28695:90:0;-1:-1:-1;;;;;28822:37:0;;;;;;:26;:37;;;;;;;;28817:159;;28921:15;;-1:-1:-1;;;;;5625:18:0;;5598:7;5625:18;;;;;;;;;;;28888:29;;:6;:29;:::i;:::-;:48;;28880:80;;;;-1:-1:-1;;;28880:80:0;;10405:2:1;28880:80:0;;;10387:21:1;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:49;10522:18;;28880:80:0;10203:343:1;28880:80:0;29051:4;29002:28;5625:18;;;;;;;;;;;29110:19;;29086:43;;;;;;;29160:35;;-1:-1:-1;29184:11:0;;;;;;;29160:35;:63;;;;-1:-1:-1;29213:10:0;;;;;;;29212:11;29160:63;:101;;;;-1:-1:-1;;;;;;29240:21:0;;;;;;:10;:21;;;;;;;;29160:101;:146;;;;-1:-1:-1;;;;;;29279:27:0;;;;;;:19;:27;;;;;;;;29278:28;29160:146;:194;;;;-1:-1:-1;;;;;;29324:30:0;;;;;;:19;:30;;;;;;;;29323:31;29160:194;29142:326;;;29381:10;:17;;-1:-1:-1;;29381:17:0;;;;;29413:10;:8;:10::i;:::-;29438;:18;;-1:-1:-1;;29438:18:0;;;29142:326;29497:10;;-1:-1:-1;;;;;29609:27:0;;29481:12;29609:27;;;:19;:27;;;;;;29497:10;;;;;;;29496:11;;29609:27;;:61;;-1:-1:-1;;;;;;29640:30:0;;;;;;:19;:30;;;;;;;;29609:61;29605:109;;;-1:-1:-1;29697:5:0;29605:109;29815:7;29811:1288;;;29839:12;29888:7;;29873:12;:22;29870:1076;;;29923:23;29942:3;29923:14;:6;29934:2;29923:10;:14::i;:::-;:18;;:23::i;:::-;29916:30;-1:-1:-1;30001:2:0;29988:9;29916:30;29995:2;29988:9;:::i;:::-;29987:16;;;;:::i;:::-;29965:18;;:38;;;;;;;:::i;:::-;;;;-1:-1:-1;30059:2:0;;-1:-1:-1;30047:8:0;:4;30054:1;30047:8;:::i;:::-;30046:15;;;;:::i;:::-;30022:20;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;29870:1076:0;;-1:-1:-1;29870:1076:0;;-1:-1:-1;;;;;30087:21:0;;;;;;:10;:21;;;;;;;;:48;;;;-1:-1:-1;30112:19:0;;:23;;30087:48;30083:863;;;30174:19;;30163:40;;30199:3;;30163:31;;:6;;:10;:31::i;:40::-;30276:19;;30251:22;;30156:47;;-1:-1:-1;30276:19:0;30244:29;;30156:47;30244:29;:::i;:::-;:51;;;;:::i;:::-;30222:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30368:19:0;;30343:22;;30336:29;;:4;:29;:::i;:::-;:51;;;;:::i;:::-;30314:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;30464:19:0;;30437:24;;30430:31;;:4;:31;:::i;30083:863::-;-1:-1:-1;;;;;30545:18:0;;;;;;:10;:18;;;;;;;;:44;;;;-1:-1:-1;30567:5:0;:18;:22;;30545:44;30541:405;;;30628:5;:18;30617:39;;30652:3;;30617:30;;:6;;:10;:30::i;:39::-;30728:5;:18;30704:21;;30610:46;;-1:-1:-1;30728:18:0;30697:28;;30610:46;30697:28;:::i;:::-;:49;;;;:::i;:::-;30675:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30818:5:0;:18;30794:21;;30787:28;;:4;:28;:::i;:::-;:49;;;;:::i;:::-;30765:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;30912:5:0;:18;30886:23;;30879:30;;:4;:30;:::i;:::-;:51;;;;:::i;:::-;30855:20;;:75;;;;;;;:::i;:::-;;;;-1:-1:-1;;30541:405:0;30966:8;;30962:93;;30995:44;31011:6;31027:4;31034;30995:15;:44::i;:::-;31071:14;31081:4;31071:14;;:::i;:::-;;;29824:1275;29811:1288;31111:42;31127:6;31135:9;31146:6;31111:15;:42::i;11300:191::-;11385:7;11421:12;11413:6;;;;11405:29;;;;-1:-1:-1;;;11405:29:0;;;;;;;;:::i;:::-;-1:-1:-1;11445:9:0;11457:5;11461:1;11457;:5;:::i;:::-;11445:17;11300:191;-1:-1:-1;;;;;11300:191:0:o;9289:358::-;9451:71;9473:6;9451:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9451:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;9431:17:0;;;:9;:17;;;;;;;;;;;:91;;;;9556:20;;;;;;;:32;;9581:6;9556:24;:32::i;:::-;-1:-1:-1;;;;;9533:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;9604:35;1915:25:1;;;9533:20:0;;9604:35;;;;;;1888:18:1;9604:35:0;1769:177:1;32089:1613:0;32177:4;32128:28;5625:18;;;;;;;;;;;32128:55;;32194:14;32253:20;;32232:18;;32211;;:39;;;;:::i;:::-;:62;;;;:::i;:::-;32194:79;-1:-1:-1;32284:12:0;32313:25;;;:40;;-1:-1:-1;32342:11:0;;32313:40;32309:57;;;32357:7;;;32089:1613::o;32309:57::-;32405:19;;:24;;32427:2;32405:24;:::i;:::-;32382:20;:47;32378:127;;;32469:19;;:24;;32491:2;32469:24;:::i;:::-;32446:47;;32378:127;32566:23;32645:1;32636:6;32615:18;;32592:20;:41;;;;:::i;:::-;:50;;;;:::i;:::-;:54;;;;:::i;:::-;32566:80;-1:-1:-1;32657:26:0;32686:41;:20;32566:80;32686:24;:41::i;:::-;32657:70;-1:-1:-1;32769:21:0;32803:36;32657:70;32803:16;:36::i;:::-;32854:18;32875:44;:21;32901:17;32875:25;:44::i;:::-;32854:65;;32933:23;32959:46;32998:6;32959:34;32974:18;;32959:10;:14;;:34;;;;:::i;:46::-;32933:72;;33016:25;33044:48;33085:6;33044:36;33059:20;;33044:10;:14;;:36;;;;:::i;:48::-;33016:76;-1:-1:-1;33103:23:0;33143:35;33016:76;33143:15;:35;:::i;:::-;33129:50;;:10;:50;:::i;:::-;33215:1;33194:18;:22;;;33227:18;:22;;;33260:20;:24;33103:76;-1:-1:-1;33303:19:0;;;;;:42;;;33344:1;33326:15;:19;33303:42;33299:192;;;33362:46;33375:15;33392;33362:12;:46::i;:::-;33428:51;;;10855:25:1;;;10911:2;10896:18;;10889:34;;;33428:51:0;;10828:18:1;33428:51:0;;;;;;;33299:192;33524:17;;-1:-1:-1;;;;;33524:17:0;33557:39;33581:15;33557:21;:39;:::i;:::-;33516:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33636:15:0;;33628:66;;33503:101;;-1:-1:-1;;;;;;33636:15:0;;33666:21;;33628:66;;;;33666:21;33636:15;33628:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;32089:1613:0:o;11499:256::-;11556:7;11586:6;11582:47;;-1:-1:-1;11616:1:0;11609:8;;11582:47;11642:9;11654:5;11658:1;11654;:5;:::i;:::-;11642:17;-1:-1:-1;11687:1:0;11678:5;11682:1;11642:17;11678:5;:::i;:::-;:10;11670:56;;;;-1:-1:-1;;;11670:56:0;;11346:2:1;11670: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;;11670:56:0;11144:397:1;11766:131:0;11823:7;11850:39;11854:1;11857;11850:39;;;;;;;;;;;;;;;;;:3;:39::i;11152:135::-;11209:7;11236:43;11240:1;11243;11236:43;;;;;;;;;;;;;;;;;:3;:43::i;31169:554::-;31317:16;;;31331:1;31317:16;;;;;;;;31293:21;;31317:16;;;;;;;;;;-1:-1:-1;31317:16:0;31293:40;;31362:4;31344;31349:1;31344:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31344:23:0;;;-1:-1:-1;;;;;31344:23:0;;;;;31388:6;-1:-1:-1;;;;;31388:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31378:4;31383:1;31378:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31378:23:0;;;-1:-1:-1;;;;;31378:23:0;;;;;31414:49;31431:4;31446:6;31455:7;31414:8;:49::i;:::-;31502:211;;-1:-1:-1;;;31502:211:0;;-1:-1:-1;;;;;31502:6:0;:57;;;;:211;;31574:7;;31596:1;;31640:4;;31667;;31687:15;;31502:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31731:350;31875:49;31892:4;31907:6;31916:7;31875:8;:49::i;:::-;31967:106;;-1:-1:-1;;;31967:106:0;;32019:4;31967:106;;;13136:34:1;;;13186:18;;;13179:34;;;32035:1:0;13229:18:1;;;13222:34;;;13272:18;;;13265:34;13315:19;;;13308:44;32057:15:0;13368:19:1;;;13361:35;31967:6:0;-1:-1:-1;;;;;31967:22:0;;;;31998:9;;13070:19:1;;31967:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;31731:350;;:::o;11909:277::-;11994:7;12029:12;12022:5;12014:28;;;;-1:-1:-1;;;12014:28:0;;;;;;;;:::i;:::-;-1:-1:-1;12053:9:0;12065:5;12069:1;12065;: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://78ca6ed8a78f4a3e25ff7d103e5afbb1b4b64b71afef72dfb28602512561db38
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.