ERC-20
Overview
Max Total Supply
100,000,000,000,000 TERM
Holders
24
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,896,664,810,804.32777464 TERMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Terminu
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ /** *Submitted for verification at Etherscan.io on 2021-06-03 */ /** *Submitted for verification at Etherscan.io on 2021-06-02 */ /** Disguised as a dog, a cyborg assassin known as Terminu travels from 2075 to 2021 to protect Doges and overcome Starlinks plan to destroy them. Will our hero succeed? https://terminu.finance/ https://t.me/TerminuFinance */ // SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.6.11; interface IERC20 { 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be 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; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 () internal { 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; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; 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); } // pragma solidity >=0.6.2; 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 Terminu is Context, IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100 * 10**12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Terminu"; string private _symbol = "TERM"; uint8 private _decimals = 9; uint256 public _taxFee = 2; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 18; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 100 * 10**12 * 10**9; uint256 private constant numTokensSellToAddToLiquidity = 1 * 10**10 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is not excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**3 // 10 is 1%, 1 is 0.1% ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to receive ETH from uniswapV2Router when swapping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity // and lock the liquidity in this contract uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } // additional function to address ether in the contract left after swap // can be used by admins to buyback and burn the tokens or for other purposes // related to the project function withdrawLeftoverEther() external onlyOwner { msg.sender.transfer(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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawLeftoverEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69152d02c7e14af6800000600790815569085afffa6ff50bffffff1960085561010060405260c0819052665465726d696e7560c81b60e09081526200004891600a9190620003cd565b50604080518082019091526004808252635445524d60e01b60209092019182526200007691600b91620003cd565b50600c805460ff191660091790556002600d819055600e556012600f81905560108190556011805461ff00191661010017905569152d02c7e14af68000009055348015620000c357600080fd5b506000620000d96001600160e01b03620003b916565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600854600160006200013d6001600160e01b03620003b916565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001b457600080fd5b505afa158015620001c9573d6000803e3d6000fd5b505050506040513d6020811015620001e057600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200023157600080fd5b505afa15801562000246573d6000803e3d6000fd5b505050506040513d60208110156200025d57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002b057600080fd5b505af1158015620002c5573d6000803e3d6000fd5b505050506040513d6020811015620002dc57600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160046000620003126001600160e01b03620003be16565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526004909252902080549091166001179055620003656001600160e01b03620003b916565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a3506200046f565b335b90565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041057805160ff191683800117855562000440565b8280016001018555821562000440579182015b828111156200044057825182559160200191906001019062000423565b506200044e92915062000452565b5090565b620003bb91905b808211156200044e576000815560010162000459565b60805160601c60a05160601c61297b620004b760003980610e8352806118a552508061094c52806120b5528061216d5280612194528061228352806122ea525061297b6000f3fe6080604052600436106102085760003560e01c806352390c021161011857806395d89b41116100a0578063c49b9a801161006f578063c49b9a801461073c578063d543dbeb14610768578063dd62ed3e14610792578063ea2f0b37146107cd578063f2fde38b146108005761020f565b806395d89b41146106a0578063a457c2d7146106b5578063a9059cbb146106ee578063c287d49d146107275761020f565b8063715018a6116100e7578063715018a6146106045780637d1db4a51461061957806388f820201461062e5780638da5cb5b146106615780638ee88c53146106765761020f565b806352390c02146105565780635342acb4146105895780636bc87c3a146105bc57806370a08231146105d15761020f565b8063313ce5671161019b5780633bd5d1731161016a5780633bd5d1731461049d578063437823ec146104c75780634549b039146104fa57806349bd5a5e1461052c5780634a74bb02146105415761020f565b8063313ce567146103f15780633685d4191461041c578063395093511461044f5780633b124fe7146104885761020f565b80631694505e116101d75780631694505e1461033e57806318160ddd1461036f57806323b872dd146103845780632d838119146103c75761020f565b8063061c82d01461021457806306fdde0314610240578063095ea7b3146102ca57806313114a9d146103175761020f565b3661020f57005b600080fd5b34801561022057600080fd5b5061023e6004803603602081101561023757600080fd5b5035610833565b005b34801561024c57600080fd5b50610255610890565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610926565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c610944565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061035361094a565b604080516001600160a01b039092168252519081900360200190f35b34801561037b57600080fd5b5061032c61096e565b34801561039057600080fd5b50610303600480360360608110156103a757600080fd5b506001600160a01b03813581169160208101359091169060400135610974565b3480156103d357600080fd5b5061032c600480360360208110156103ea57600080fd5b5035610a01565b3480156103fd57600080fd5b50610406610a69565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061023e6004803603602081101561043f57600080fd5b50356001600160a01b0316610a72565b34801561045b57600080fd5b506103036004803603604081101561047257600080fd5b506001600160a01b038135169060200135610c33565b34801561049457600080fd5b5061032c610c87565b3480156104a957600080fd5b5061023e600480360360208110156104c057600080fd5b5035610c8d565b3480156104d357600080fd5b5061023e600480360360208110156104ea57600080fd5b50356001600160a01b0316610d73565b34801561050657600080fd5b5061032c6004803603604081101561051d57600080fd5b50803590602001351515610def565b34801561053857600080fd5b50610353610e81565b34801561054d57600080fd5b50610303610ea5565b34801561056257600080fd5b5061023e6004803603602081101561057957600080fd5b50356001600160a01b0316610eb3565b34801561059557600080fd5b50610303600480360360208110156105ac57600080fd5b50356001600160a01b0316611039565b3480156105c857600080fd5b5061032c611057565b3480156105dd57600080fd5b5061032c600480360360208110156105f457600080fd5b50356001600160a01b031661105d565b34801561061057600080fd5b5061023e6110bf565b34801561062557600080fd5b5061032c611161565b34801561063a57600080fd5b506103036004803603602081101561065157600080fd5b50356001600160a01b0316611167565b34801561066d57600080fd5b50610353611185565b34801561068257600080fd5b5061023e6004803603602081101561069957600080fd5b5035611194565b3480156106ac57600080fd5b506102556111f1565b3480156106c157600080fd5b50610303600480360360408110156106d857600080fd5b506001600160a01b038135169060200135611252565b3480156106fa57600080fd5b506103036004803603604081101561071157600080fd5b506001600160a01b0381351690602001356112c0565b34801561073357600080fd5b5061023e6112d4565b34801561074857600080fd5b5061023e6004803603602081101561075f57600080fd5b5035151561135b565b34801561077457600080fd5b5061023e6004803603602081101561078b57600080fd5b5035611402565b34801561079e57600080fd5b5061032c600480360360408110156107b557600080fd5b506001600160a01b0381358116916020013516611487565b3480156107d957600080fd5b5061023e600480360360208110156107f057600080fd5b50356001600160a01b03166114b2565b34801561080c57600080fd5b5061023e6004803603602081101561082357600080fd5b50356001600160a01b031661152b565b61083b611623565b6000546001600160a01b0390811691161461088b576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b600d55565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b600061093a610933611623565b8484611627565b5060015b92915050565b60095490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60075490565b6000610981848484611713565b6109f78461098d611623565b6109f28560405180606001604052806028815260200161283b602891396001600160a01b038a166000908152600360205260408120906109cb611623565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61196516565b611627565b5060019392505050565b6000600854821115610a445760405162461bcd60e51b815260040180806020018281038252602a815260200180612780602a913960400191505060405180910390fd5b6000610a4e6119fc565b9050610a60838263ffffffff611a2516565b9150505b919050565b600c5460ff1690565b610a7a611623565b6000546001600160a01b03908116911614610aca576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff16610b37576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600654811015610c2f57816001600160a01b031660068281548110610b5b57fe5b6000918252602090912001546001600160a01b03161415610c2757600680546000198101908110610b8857fe5b600091825260209091200154600680546001600160a01b039092169183908110610bae57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610c0057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c2f565b600101610b3a565b5050565b600061093a610c40611623565b846109f28560036000610c51611623565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611a6e16565b600d5481565b6000610c97611623565b6001600160a01b03811660009081526005602052604090205490915060ff1615610cf25760405162461bcd60e51b815260040180806020018281038252602c8152602001806128f5602c913960400191505060405180910390fd5b6000610cfd83611ac8565b505050506001600160a01b038416600090815260016020526040902054919250610d2991905082611b17565b6001600160a01b038316600090815260016020526040902055600854610d55908263ffffffff611b1716565b600855600954610d6b908463ffffffff611a6e16565b600955505050565b610d7b611623565b6000546001600160a01b03908116911614610dcb576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610e48576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e67576000610e5884611ac8565b5093955061093e945050505050565b6000610e7284611ac8565b5092955061093e945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601154610100900460ff1681565b610ebb611623565b6000546001600160a01b03908116911614610f0b576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff1615610f79576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610fd3576001600160a01b038116600090815260016020526040902054610fb990610a01565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b600f5481565b6001600160a01b03811660009081526005602052604081205460ff161561109d57506001600160a01b038116600090815260026020526040902054610a64565b6001600160a01b03821660009081526001602052604090205461093e90610a01565b6110c7611623565b6000546001600160a01b03908116911614611117576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60125481565b6001600160a01b031660009081526005602052604090205460ff1690565b6000546001600160a01b031690565b61119c611623565b6000546001600160a01b039081169116146111ec576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b600f55565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561091c5780601f106108f15761010080835404028352916020019161091c565b600061093a61125f611623565b846109f2856040518060600160405280602581526020016129216025913960036000611289611623565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61196516565b600061093a6112cd611623565b8484611713565b6112dc611623565b6000546001600160a01b0390811691161461132c576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050158015611358573d6000803e3d6000fd5b50565b611363611623565b6000546001600160a01b039081169116146113b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b60118054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61140a611623565b6000546001600160a01b0390811691161461145a576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6114816103e861147583600754611b5990919063ffffffff16565b9063ffffffff611a2516565b60125550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6114ba611623565b6000546001600160a01b0390811691161461150a576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b611533611623565b6000546001600160a01b03908116911614611583576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b0381166115c85760405162461bcd60e51b81526004018080602001828103825260268152602001806127aa6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661166c5760405162461bcd60e51b81526004018080602001828103825260248152602001806128d16024913960400191505060405180910390fd5b6001600160a01b0382166116b15760405162461bcd60e51b81526004018080602001828103825260228152602001806127d06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117585760405162461bcd60e51b81526004018080602001828103825260258152602001806128ac6025913960400191505060405180910390fd5b6001600160a01b03821661179d5760405162461bcd60e51b815260040180806020018281038252602381526020018061275d6023913960400191505060405180910390fd5b600081116117dc5760405162461bcd60e51b81526004018080602001828103825260298152602001806128836029913960400191505060405180910390fd5b6117e4611185565b6001600160a01b0316836001600160a01b03161415801561181e5750611808611185565b6001600160a01b0316826001600160a01b031614155b15611864576012548111156118645760405162461bcd60e51b81526004018080602001828103825260288152602001806127f26028913960400191505060405180910390fd5b600061186f3061105d565b9050601254811061187f57506012545b678ac7230489e800008110801590819061189c575060115460ff16155b80156118da57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156118ed5750601154610100900460ff165b1561190657678ac7230489e80000915061190682611bb2565b6001600160a01b03851660009081526004602052604090205460019060ff168061194857506001600160a01b03851660009081526004602052604090205460ff165b15611951575060005b61195d86868684611c61565b505050505050565b600081848411156119f45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119b95781810151838201526020016119a1565b50505050905090810190601f1680156119e65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611a09611dd5565b9092509050611a1e828263ffffffff611a2516565b9250505090565b6000611a6783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f4a565b9392505050565b600082820183811015611a67576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611adf8a611faf565b9250925092506000806000611afd8d8686611af86119fc565b611ffd565b919f909e50909c50959a5093985091965092945050505050565b6000611a6783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611965565b600082611b685750600061093e565b82820282848281611b7557fe5b0414611a675760405162461bcd60e51b815260040180806020018281038252602181526020018061281a6021913960400191505060405180910390fd5b6011805460ff191660011790556000611bd282600263ffffffff611a2516565b90506000611be6838363ffffffff611b1716565b905047611bf283612065565b6000611c04478363ffffffff611b1716565b9050611c10838261227d565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506011805460ff19169055505050565b80611c6e57611c6e61235f565b6001600160a01b03841660009081526005602052604090205460ff168015611caf57506001600160a01b03831660009081526005602052604090205460ff16155b15611cc457611cbf848484612391565b611dc2565b6001600160a01b03841660009081526005602052604090205460ff16158015611d0557506001600160a01b03831660009081526005602052604090205460ff165b15611d1557611cbf8484846124c7565b6001600160a01b03841660009081526005602052604090205460ff16158015611d5757506001600160a01b03831660009081526005602052604090205460ff16155b15611d6757611cbf848484612582565b6001600160a01b03841660009081526005602052604090205460ff168015611da757506001600160a01b03831660009081526005602052604090205460ff165b15611db757611cbf8484846125cc565b611dc2848484612582565b80611dcf57611dcf61264b565b50505050565b6008546007546000918291825b600654811015611f1257826001600060068481548110611dfe57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611e635750816002600060068481548110611e3c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611e7a5760085460075494509450505050611f46565b611ec06001600060068481548110611e8e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff611b1716565b9250611f086002600060068481548110611ed657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff611b1716565b9150600101611de2565b50600754600854611f289163ffffffff611a2516565b821015611f4057600854600754935093505050611f46565b90925090505b9091565b60008183611f995760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156119b95781810151838201526020016119a1565b506000838581611fa557fe5b0495945050505050565b600080600080611fbe85612659565b90506000611fcb86612675565b90506000611fef82611fe3898663ffffffff611b1716565b9063ffffffff611b1716565b979296509094509092505050565b6000808080612012888663ffffffff611b5916565b90506000612026888763ffffffff611b5916565b9050600061203a888863ffffffff611b5916565b9050600061205282611fe3868663ffffffff611b1716565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061209357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561210c57600080fd5b505afa158015612120573d6000803e3d6000fd5b505050506040513d602081101561213657600080fd5b505181518290600190811061214757fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612192307f000000000000000000000000000000000000000000000000000000000000000084611627565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612240578181015183820152602001612228565b505050509050019650505050505050600060405180830381600087803b15801561226957600080fd5b505af115801561195d573d6000803e3d6000fd5b6122a8307f000000000000000000000000000000000000000000000000000000000000000084611627565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991849160c48082019260609290919082900301818588803b15801561233457600080fd5b505af1158015612348573d6000803e3d6000fd5b50505050506040513d6060811015611dcf57600080fd5b600d5415801561236f5750600f54155b156123795761238f565b600d8054600e55600f8054601055600091829055555b565b6000806000806000806123a387611ac8565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506123db908863ffffffff611b1716565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612410908763ffffffff611b1716565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054612445908663ffffffff611a6e16565b6001600160a01b03891660009081526001602052604090205561246781612691565b612471848361272c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806124d987611ac8565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612511908763ffffffff611b1716565b6001600160a01b03808b16600090815260016020908152604080832094909455918b1681526002909152205461254d908463ffffffff611a6e16565b6001600160a01b038916600090815260026020908152604080832093909355600190522054612445908663ffffffff611a6e16565b60008060008060008061259487611ac8565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612410908763ffffffff611b1716565b6000806000806000806125de87611ac8565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612616908863ffffffff611b1716565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612511908763ffffffff611b1716565b600e54600d55601054600f55565b600061093e6064611475600d5485611b5990919063ffffffff16565b600061093e6064611475600f5485611b5990919063ffffffff16565b600061269b6119fc565b905060006126af838363ffffffff611b5916565b306000908152600160205260409020549091506126d2908263ffffffff611a6e16565b3060009081526001602090815260408083209390935560059052205460ff16156127275730600090815260026020526040902054612716908463ffffffff611a6e16565b306000908152600260205260409020555b505050565b60085461273f908363ffffffff611b1716565b600855600954612755908263ffffffff611a6e16565b600955505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ec81879ca63712c1b8c04f4e322703d306443c69f0405290b3bb2f986eb411264736f6c634300060b0033
Deployed Bytecode
0x6080604052600436106102085760003560e01c806352390c021161011857806395d89b41116100a0578063c49b9a801161006f578063c49b9a801461073c578063d543dbeb14610768578063dd62ed3e14610792578063ea2f0b37146107cd578063f2fde38b146108005761020f565b806395d89b41146106a0578063a457c2d7146106b5578063a9059cbb146106ee578063c287d49d146107275761020f565b8063715018a6116100e7578063715018a6146106045780637d1db4a51461061957806388f820201461062e5780638da5cb5b146106615780638ee88c53146106765761020f565b806352390c02146105565780635342acb4146105895780636bc87c3a146105bc57806370a08231146105d15761020f565b8063313ce5671161019b5780633bd5d1731161016a5780633bd5d1731461049d578063437823ec146104c75780634549b039146104fa57806349bd5a5e1461052c5780634a74bb02146105415761020f565b8063313ce567146103f15780633685d4191461041c578063395093511461044f5780633b124fe7146104885761020f565b80631694505e116101d75780631694505e1461033e57806318160ddd1461036f57806323b872dd146103845780632d838119146103c75761020f565b8063061c82d01461021457806306fdde0314610240578063095ea7b3146102ca57806313114a9d146103175761020f565b3661020f57005b600080fd5b34801561022057600080fd5b5061023e6004803603602081101561023757600080fd5b5035610833565b005b34801561024c57600080fd5b50610255610890565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610926565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061032c610944565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061035361094a565b604080516001600160a01b039092168252519081900360200190f35b34801561037b57600080fd5b5061032c61096e565b34801561039057600080fd5b50610303600480360360608110156103a757600080fd5b506001600160a01b03813581169160208101359091169060400135610974565b3480156103d357600080fd5b5061032c600480360360208110156103ea57600080fd5b5035610a01565b3480156103fd57600080fd5b50610406610a69565b6040805160ff9092168252519081900360200190f35b34801561042857600080fd5b5061023e6004803603602081101561043f57600080fd5b50356001600160a01b0316610a72565b34801561045b57600080fd5b506103036004803603604081101561047257600080fd5b506001600160a01b038135169060200135610c33565b34801561049457600080fd5b5061032c610c87565b3480156104a957600080fd5b5061023e600480360360208110156104c057600080fd5b5035610c8d565b3480156104d357600080fd5b5061023e600480360360208110156104ea57600080fd5b50356001600160a01b0316610d73565b34801561050657600080fd5b5061032c6004803603604081101561051d57600080fd5b50803590602001351515610def565b34801561053857600080fd5b50610353610e81565b34801561054d57600080fd5b50610303610ea5565b34801561056257600080fd5b5061023e6004803603602081101561057957600080fd5b50356001600160a01b0316610eb3565b34801561059557600080fd5b50610303600480360360208110156105ac57600080fd5b50356001600160a01b0316611039565b3480156105c857600080fd5b5061032c611057565b3480156105dd57600080fd5b5061032c600480360360208110156105f457600080fd5b50356001600160a01b031661105d565b34801561061057600080fd5b5061023e6110bf565b34801561062557600080fd5b5061032c611161565b34801561063a57600080fd5b506103036004803603602081101561065157600080fd5b50356001600160a01b0316611167565b34801561066d57600080fd5b50610353611185565b34801561068257600080fd5b5061023e6004803603602081101561069957600080fd5b5035611194565b3480156106ac57600080fd5b506102556111f1565b3480156106c157600080fd5b50610303600480360360408110156106d857600080fd5b506001600160a01b038135169060200135611252565b3480156106fa57600080fd5b506103036004803603604081101561071157600080fd5b506001600160a01b0381351690602001356112c0565b34801561073357600080fd5b5061023e6112d4565b34801561074857600080fd5b5061023e6004803603602081101561075f57600080fd5b5035151561135b565b34801561077457600080fd5b5061023e6004803603602081101561078b57600080fd5b5035611402565b34801561079e57600080fd5b5061032c600480360360408110156107b557600080fd5b506001600160a01b0381358116916020013516611487565b3480156107d957600080fd5b5061023e600480360360208110156107f057600080fd5b50356001600160a01b03166114b2565b34801561080c57600080fd5b5061023e6004803603602081101561082357600080fd5b50356001600160a01b031661152b565b61083b611623565b6000546001600160a01b0390811691161461088b576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b600d55565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b600061093a610933611623565b8484611627565b5060015b92915050565b60095490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60075490565b6000610981848484611713565b6109f78461098d611623565b6109f28560405180606001604052806028815260200161283b602891396001600160a01b038a166000908152600360205260408120906109cb611623565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61196516565b611627565b5060019392505050565b6000600854821115610a445760405162461bcd60e51b815260040180806020018281038252602a815260200180612780602a913960400191505060405180910390fd5b6000610a4e6119fc565b9050610a60838263ffffffff611a2516565b9150505b919050565b600c5460ff1690565b610a7a611623565b6000546001600160a01b03908116911614610aca576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff16610b37576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b600654811015610c2f57816001600160a01b031660068281548110610b5b57fe5b6000918252602090912001546001600160a01b03161415610c2757600680546000198101908110610b8857fe5b600091825260209091200154600680546001600160a01b039092169183908110610bae57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610c0057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c2f565b600101610b3a565b5050565b600061093a610c40611623565b846109f28560036000610c51611623565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611a6e16565b600d5481565b6000610c97611623565b6001600160a01b03811660009081526005602052604090205490915060ff1615610cf25760405162461bcd60e51b815260040180806020018281038252602c8152602001806128f5602c913960400191505060405180910390fd5b6000610cfd83611ac8565b505050506001600160a01b038416600090815260016020526040902054919250610d2991905082611b17565b6001600160a01b038316600090815260016020526040902055600854610d55908263ffffffff611b1716565b600855600954610d6b908463ffffffff611a6e16565b600955505050565b610d7b611623565b6000546001600160a01b03908116911614610dcb576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000600754831115610e48576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e67576000610e5884611ac8565b5093955061093e945050505050565b6000610e7284611ac8565b5092955061093e945050505050565b7f000000000000000000000000dd159b0fffec6fb52cf835fe94e32e618ced7e6481565b601154610100900460ff1681565b610ebb611623565b6000546001600160a01b03908116911614610f0b576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205460ff1615610f79576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610fd3576001600160a01b038116600090815260016020526040902054610fb990610a01565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b6001600160a01b031660009081526004602052604090205460ff1690565b600f5481565b6001600160a01b03811660009081526005602052604081205460ff161561109d57506001600160a01b038116600090815260026020526040902054610a64565b6001600160a01b03821660009081526001602052604090205461093e90610a01565b6110c7611623565b6000546001600160a01b03908116911614611117576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60125481565b6001600160a01b031660009081526005602052604090205460ff1690565b6000546001600160a01b031690565b61119c611623565b6000546001600160a01b039081169116146111ec576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b600f55565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561091c5780601f106108f15761010080835404028352916020019161091c565b600061093a61125f611623565b846109f2856040518060600160405280602581526020016129216025913960036000611289611623565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61196516565b600061093a6112cd611623565b8484611713565b6112dc611623565b6000546001600160a01b0390811691161461132c576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f19350505050158015611358573d6000803e3d6000fd5b50565b611363611623565b6000546001600160a01b039081169116146113b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b60118054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61140a611623565b6000546001600160a01b0390811691161461145a576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6114816103e861147583600754611b5990919063ffffffff16565b9063ffffffff611a2516565b60125550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6114ba611623565b6000546001600160a01b0390811691161461150a576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600460205260409020805460ff19169055565b611533611623565b6000546001600160a01b03908116911614611583576040805162461bcd60e51b81526020600482018190526024820152600080516020612863833981519152604482015290519081900360640190fd5b6001600160a01b0381166115c85760405162461bcd60e51b81526004018080602001828103825260268152602001806127aa6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661166c5760405162461bcd60e51b81526004018080602001828103825260248152602001806128d16024913960400191505060405180910390fd5b6001600160a01b0382166116b15760405162461bcd60e51b81526004018080602001828103825260228152602001806127d06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117585760405162461bcd60e51b81526004018080602001828103825260258152602001806128ac6025913960400191505060405180910390fd5b6001600160a01b03821661179d5760405162461bcd60e51b815260040180806020018281038252602381526020018061275d6023913960400191505060405180910390fd5b600081116117dc5760405162461bcd60e51b81526004018080602001828103825260298152602001806128836029913960400191505060405180910390fd5b6117e4611185565b6001600160a01b0316836001600160a01b03161415801561181e5750611808611185565b6001600160a01b0316826001600160a01b031614155b15611864576012548111156118645760405162461bcd60e51b81526004018080602001828103825260288152602001806127f26028913960400191505060405180910390fd5b600061186f3061105d565b9050601254811061187f57506012545b678ac7230489e800008110801590819061189c575060115460ff16155b80156118da57507f000000000000000000000000dd159b0fffec6fb52cf835fe94e32e618ced7e646001600160a01b0316856001600160a01b031614155b80156118ed5750601154610100900460ff165b1561190657678ac7230489e80000915061190682611bb2565b6001600160a01b03851660009081526004602052604090205460019060ff168061194857506001600160a01b03851660009081526004602052604090205460ff165b15611951575060005b61195d86868684611c61565b505050505050565b600081848411156119f45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119b95781810151838201526020016119a1565b50505050905090810190601f1680156119e65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611a09611dd5565b9092509050611a1e828263ffffffff611a2516565b9250505090565b6000611a6783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f4a565b9392505050565b600082820183811015611a67576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611adf8a611faf565b9250925092506000806000611afd8d8686611af86119fc565b611ffd565b919f909e50909c50959a5093985091965092945050505050565b6000611a6783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611965565b600082611b685750600061093e565b82820282848281611b7557fe5b0414611a675760405162461bcd60e51b815260040180806020018281038252602181526020018061281a6021913960400191505060405180910390fd5b6011805460ff191660011790556000611bd282600263ffffffff611a2516565b90506000611be6838363ffffffff611b1716565b905047611bf283612065565b6000611c04478363ffffffff611b1716565b9050611c10838261227d565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506011805460ff19169055505050565b80611c6e57611c6e61235f565b6001600160a01b03841660009081526005602052604090205460ff168015611caf57506001600160a01b03831660009081526005602052604090205460ff16155b15611cc457611cbf848484612391565b611dc2565b6001600160a01b03841660009081526005602052604090205460ff16158015611d0557506001600160a01b03831660009081526005602052604090205460ff165b15611d1557611cbf8484846124c7565b6001600160a01b03841660009081526005602052604090205460ff16158015611d5757506001600160a01b03831660009081526005602052604090205460ff16155b15611d6757611cbf848484612582565b6001600160a01b03841660009081526005602052604090205460ff168015611da757506001600160a01b03831660009081526005602052604090205460ff165b15611db757611cbf8484846125cc565b611dc2848484612582565b80611dcf57611dcf61264b565b50505050565b6008546007546000918291825b600654811015611f1257826001600060068481548110611dfe57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611e635750816002600060068481548110611e3c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611e7a5760085460075494509450505050611f46565b611ec06001600060068481548110611e8e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff611b1716565b9250611f086002600060068481548110611ed657fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff611b1716565b9150600101611de2565b50600754600854611f289163ffffffff611a2516565b821015611f4057600854600754935093505050611f46565b90925090505b9091565b60008183611f995760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156119b95781810151838201526020016119a1565b506000838581611fa557fe5b0495945050505050565b600080600080611fbe85612659565b90506000611fcb86612675565b90506000611fef82611fe3898663ffffffff611b1716565b9063ffffffff611b1716565b979296509094509092505050565b6000808080612012888663ffffffff611b5916565b90506000612026888763ffffffff611b5916565b9050600061203a888863ffffffff611b5916565b9050600061205282611fe3868663ffffffff611b1716565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061209357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561210c57600080fd5b505afa158015612120573d6000803e3d6000fd5b505050506040513d602081101561213657600080fd5b505181518290600190811061214757fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612192307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611627565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612240578181015183820152602001612228565b505050509050019650505050505050600060405180830381600087803b15801561226957600080fd5b505af115801561195d573d6000803e3d6000fd5b6122a8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611627565b6040805163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a482015290516001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991849160c48082019260609290919082900301818588803b15801561233457600080fd5b505af1158015612348573d6000803e3d6000fd5b50505050506040513d6060811015611dcf57600080fd5b600d5415801561236f5750600f54155b156123795761238f565b600d8054600e55600f8054601055600091829055555b565b6000806000806000806123a387611ac8565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506123db908863ffffffff611b1716565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612410908763ffffffff611b1716565b6001600160a01b03808b1660009081526001602052604080822093909355908a1681522054612445908663ffffffff611a6e16565b6001600160a01b03891660009081526001602052604090205561246781612691565b612471848361272c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806124d987611ac8565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612511908763ffffffff611b1716565b6001600160a01b03808b16600090815260016020908152604080832094909455918b1681526002909152205461254d908463ffffffff611a6e16565b6001600160a01b038916600090815260026020908152604080832093909355600190522054612445908663ffffffff611a6e16565b60008060008060008061259487611ac8565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612410908763ffffffff611b1716565b6000806000806000806125de87611ac8565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612616908863ffffffff611b1716565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612511908763ffffffff611b1716565b600e54600d55601054600f55565b600061093e6064611475600d5485611b5990919063ffffffff16565b600061093e6064611475600f5485611b5990919063ffffffff16565b600061269b6119fc565b905060006126af838363ffffffff611b5916565b306000908152600160205260409020549091506126d2908263ffffffff611a6e16565b3060009081526001602090815260408083209390935560059052205460ff16156127275730600090815260026020526040902054612716908463ffffffff611a6e16565b306000908152600260205260409020555b505050565b60085461273f908363ffffffff611b1716565b600855600954612755908263ffffffff611a6e16565b600955505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ec81879ca63712c1b8c04f4e322703d306443c69f0405290b3bb2f986eb411264736f6c634300060b0033
Deployed Bytecode Sourcemap
19004:18717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26428:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26428:98:0;;:::i;:::-;;21367:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22279:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22279:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23400:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19922:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;19922:51:0;;;;;;;;;;;;;;21644:95;;;;;;;;;;;;;:::i;22448:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22448:313:0;;;;;;;;;;;;;;;;;:::i;24324:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24324:253:0;;:::i;21553:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25040:475;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25040:475:0;-1:-1:-1;;;;;25040:475:0;;:::i;22769:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22769:218:0;;;;;;;;:::i;19733:26::-;;;;;;;;;;;;;:::i;23495:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23495:377:0;;:::i;26183:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26183:111:0;-1:-1:-1;;;;;26183:111:0;;:::i;23880:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23880:436:0;;;;;;;;;:::i;19980:38::-;;;;;;;;;;;;;:::i;20067:40::-;;;;;;;;;;;;;:::i;24585:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24585:447:0;-1:-1:-1;;;;;24585:447:0;;:::i;30349:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30349:123:0;-1:-1:-1;;;;;30349:123:0;;:::i;19820:33::-;;;;;;;;;;;;;:::i;21747:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21747:198:0;-1:-1:-1;;;;;21747:198:0;;:::i;10355:148::-;;;;;;;;;;;;;:::i;20120:50::-;;;;;;;;;;;;;:::i;23272:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23272:120:0;-1:-1:-1;;;;;23272:120:0;;:::i;9713:79::-;;;;;;;;;;;;;:::i;26538:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26538:122:0;;:::i;21458:87::-;;;;;;;;;;;;;:::i;22995:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22995:269:0;;;;;;;;:::i;21953:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21953:167:0;;;;;;;;:::i;37603:113::-;;;;;;;;;;;;;:::i;26864:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26864:171:0;;;;:::i;26671:185::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26671:185:0;;:::i;22128:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22128:143:0;;;;;;;;;;:::i;26306:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26306:110:0;-1:-1:-1;;;;;26306:110:0;;:::i;10658:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10658:244:0;-1:-1:-1;;;;;10658:244:0;;:::i;26428:98::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;26502:7:::1;:16:::0;26428:98::o;21367:83::-;21437:5;21430:12;;;;;;;;-1:-1:-1;;21430:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21404:13;;21430:12;;21437:5;;21430:12;;21437:5;21430:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21367:83;:::o;22279:161::-;22354:4;22371:39;22380:12;:10;:12::i;:::-;22394:7;22403:6;22371:8;:39::i;:::-;-1:-1:-1;22428:4:0;22279:161;;;;;:::o;23400:87::-;23469:10;;23400:87;:::o;19922:51::-;;;:::o;21644:95::-;21724:7;;21644:95;:::o;22448:313::-;22546:4;22563:36;22573:6;22581:9;22592:6;22563:9;:36::i;:::-;22610:121;22619:6;22627:12;:10;:12::i;:::-;22641:89;22679:6;22641:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22641:19:0;;;;;;:11;:19;;;;;;22661:12;:10;:12::i;:::-;-1:-1:-1;;;;;22641:33:0;;;;;;;;;;;;-1:-1:-1;22641:33:0;;;:89;;:37;:89;:::i;:::-;22610:8;:121::i;:::-;-1:-1:-1;22749:4:0;22448:313;;;;;:::o;24324:253::-;24390:7;24429;;24418;:18;;24410:73;;;;-1:-1:-1;;;24410:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24494:19;24517:10;:8;:10::i;:::-;24494:33;-1:-1:-1;24545:24:0;:7;24494:33;24545:24;:11;:24;:::i;:::-;24538:31;;;24324:253;;;;:::o;21553:83::-;21619:9;;;;21553:83;:::o;25040:475::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25122:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;25114:56;;;::::0;;-1:-1:-1;;;25114:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;25186:9;25181:327;25205:9;:16:::0;25201:20;::::1;25181:327;;;25263:7;-1:-1:-1::0;;;;;25247:23:0::1;:9;25257:1;25247:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;25247:12:0::1;:23;25243:254;;;25306:9;25316:16:::0;;-1:-1:-1;;25316:20:0;;;25306:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;25291:9:::1;:12:::0;;-1:-1:-1;;;;;25306:31:0;;::::1;::::0;25301:1;;25291:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;25291:46:0::1;-1:-1:-1::0;;;;;25291:46:0;;::::1;;::::0;;25356:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;25395:11:::1;:20:::0;;;;:28;;-1:-1:-1;;25395:28:0::1;::::0;;25442:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;25442:15:0;;;;;-1:-1:-1;;;;;;25442:15:0::1;::::0;;;;;25476:5:::1;;25243:254;25223:3;;25181:327;;;;25040:475:::0;:::o;22769:218::-;22857:4;22874:83;22883:12;:10;:12::i;:::-;22897:7;22906:50;22945:10;22906:11;:25;22918:12;:10;:12::i;:::-;-1:-1:-1;;;;;22906:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22906:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;19733:26::-;;;;:::o;23495:377::-;23547:14;23564:12;:10;:12::i;:::-;-1:-1:-1;;;;;23596:19:0;;;;;;:11;:19;;;;;;23547:29;;-1:-1:-1;23596:19:0;;23595:20;23587:77;;;;-1:-1:-1;;;23587:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23676:15;23700:19;23711:7;23700:10;:19::i;:::-;-1:-1:-1;;;;;;;;;23748:15:0;;;;;;:7;:15;;;;;;23675:44;;-1:-1:-1;23748:28:0;;:15;-1:-1:-1;23675:44:0;23748:19;:28::i;:::-;-1:-1:-1;;;;;23730:15:0;;;;;;:7;:15;;;;;:46;23797:7;;:20;;23809:7;23797:20;:11;:20;:::i;:::-;23787:7;:30;23841:10;;:23;;23856:7;23841:23;:14;:23;:::i;:::-;23828:10;:36;-1:-1:-1;;;23495:377:0:o;26183:111::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26252:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;26252:34:0::1;26282:4;26252:34;::::0;;26183:111::o;23880:436::-;23970:7;24009;;23998;:18;;23990:62;;;;;-1:-1:-1;;;23990:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24068:17;24063:246;;24103:15;24127:19;24138:7;24127:10;:19::i;:::-;-1:-1:-1;24102:44:0;;-1:-1:-1;24161:14:0;;-1:-1:-1;;;;;24161:14:0;24063:246;24210:23;24241:19;24252:7;24241:10;:19::i;:::-;-1:-1:-1;24208:52:0;;-1:-1:-1;24275:22:0;;-1:-1:-1;;;;;24275:22:0;19980:38;;;:::o;20067:40::-;;;;;;;;;:::o;24585:447::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24782:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;24781:21;24773:61;;;::::0;;-1:-1:-1;;;24773:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;24848:16:0;::::1;24867:1;24848:16:::0;;;:7:::1;:16;::::0;;;;;:20;24845:108:::1;;-1:-1:-1::0;;;;;24924:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;24904:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;24885:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;24845:108:::1;-1:-1:-1::0;;;;;24963:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;24963:27:0::1;24986:4;24963:27:::0;;::::1;::::0;;;25001:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;25001:23:0::1;::::0;;::::1;::::0;;24585:447::o;30349:123::-;-1:-1:-1;;;;;30437:27:0;30413:4;30437:27;;;:18;:27;;;;;;;;;30349:123::o;19820:33::-;;;;:::o;21747:198::-;-1:-1:-1;;;;;21837:20:0;;21813:7;21837:20;;;:11;:20;;;;;;;;21833:49;;;-1:-1:-1;;;;;;21866:16:0;;;;;;:7;:16;;;;;;21859:23;;21833:49;-1:-1:-1;;;;;21920:16:0;;;;;;:7;:16;;;;;;21900:37;;:19;:37::i;10355:148::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;10462:1:::1;10446:6:::0;;10425:40:::1;::::0;-1:-1:-1;;;;;10446:6:0;;::::1;::::0;10425:40:::1;::::0;10462:1;;10425:40:::1;10493:1;10476:19:::0;;-1:-1:-1;;;;;;10476:19:0::1;::::0;;10355:148::o;20120:50::-;;;;:::o;23272:120::-;-1:-1:-1;;;;;23364:20:0;23340:4;23364:20;;;:11;:20;;;;;;;;;23272:120::o;9713:79::-;9751:7;9778:6;-1:-1:-1;;;;;9778:6:0;9713:79;:::o;26538:122::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;26624:13:::1;:28:::0;26538:122::o;21458:87::-;21530:7;21523:14;;;;;;;;-1:-1:-1;;21523:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21497:13;;21523:14;;21530:7;;21523:14;;21530:7;21523:14;;;;;;;;;;;;;;;;;;;;;;;;22995:269;23088:4;23105:129;23114:12;:10;:12::i;:::-;23128:7;23137:96;23176:15;23137:96;;;;;;;;;;;;;;;;;:11;:25;23149:12;:10;:12::i;:::-;-1:-1:-1;;;;;23137:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23137:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;21953:167::-;22031:4;22048:42;22058:12;:10;:12::i;:::-;22072:9;22083:6;22048:9;:42::i;37603:113::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;37666:42:::1;::::0;:10:::1;::::0;37686:21:::1;37666:42:::0;::::1;;;::::0;::::1;::::0;;;37686:21;37666:10;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37603:113::o:0;26864:171::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;26941:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;26941:32:0;;::::1;::::0;;;::::1;::::0;;;26989:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;26864:171:::0;:::o;26671:185::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;26765:83:::1;26809:5;26765:25;26777:12;26765:7;;:11;;:25;;;;:::i;:::-;:29:::0;:83:::1;:29;:83;:::i;:::-;26750:12;:98:::0;-1:-1:-1;26671:185:0:o;22128:143::-;-1:-1:-1;;;;;22236:18:0;;;22209:7;22236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22128:143::o;26306:110::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26373:27:0::1;26403:5;26373:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;26373:35:0::1;::::0;;26306:110::o;10658:244::-;9935:12;:10;:12::i;:::-;9925:6;;-1:-1:-1;;;;;9925:6:0;;;:22;;;9917:67;;;;;-1:-1:-1;;;9917:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9917:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10747:22:0;::::1;10739:73;;;;-1:-1:-1::0;;;10739:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10849:6;::::0;;10828:38:::1;::::0;-1:-1:-1;;;;;10828:38:0;;::::1;::::0;10849:6;::::1;::::0;10828:38:::1;::::0;::::1;10877:6;:17:::0;;-1:-1:-1;;;;;;10877:17:0::1;-1:-1:-1::0;;;;;10877:17:0;;;::::1;::::0;;;::::1;::::0;;10658:244::o;8349:106::-;8437:10;8349:106;:::o;30480:337::-;-1:-1:-1;;;;;30573:19:0;;30565:68;;;;-1:-1:-1;;;30565:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30652:21:0;;30644:68;;;;-1:-1:-1;;;30644:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30725:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30777:32;;;;;;;;;;;;;;;;;30480:337;;;:::o;30825:1813::-;-1:-1:-1;;;;;30947:18:0;;30939:68;;;;-1:-1:-1;;;30939:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31026:16:0;;31018:64;;;;-1:-1:-1;;;31018:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31110:1;31101:6;:10;31093:64;;;;-1:-1:-1;;;31093:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31179:7;:5;:7::i;:::-;-1:-1:-1;;;;;31171:15:0;:4;-1:-1:-1;;;;;31171:15:0;;;:32;;;;;31196:7;:5;:7::i;:::-;-1:-1:-1;;;;;31190:13:0;:2;-1:-1:-1;;;;;31190:13:0;;;31171:32;31168:125;;;31236:12;;31226:6;:22;;31218:75;;;;-1:-1:-1;;;31218:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31588:28;31619:24;31637:4;31619:9;:24::i;:::-;31588:55;;31691:12;;31667:20;:36;31664:112;;-1:-1:-1;31752:12:0;;31664:112;20234:18;31823:53;;;;;;;31905;;-1:-1:-1;31942:16:0;;;;31941:17;31905:53;:91;;;;;31983:13;-1:-1:-1;;;;;31975:21:0;:4;-1:-1:-1;;;;;31975:21:0;;;31905:91;:129;;;;-1:-1:-1;32013:21:0;;;;;;;31905:129;31887:318;;;20234:18;32061:52;;32157:36;32172:20;32157:14;:36::i;:::-;-1:-1:-1;;;;;32413:24:0;;32286:12;32413:24;;;:18;:24;;;;;;32301:4;;32413:24;;;:50;;-1:-1:-1;;;;;;32441:22:0;;;;;;:18;:22;;;;;;;;32413:50;32410:96;;;-1:-1:-1;32489:5:0;32410:96;32592:38;32607:4;32612:2;32615:6;32622:7;32592:14;:38::i;:::-;30825:1813;;;;;;:::o;4759:192::-;4845:7;4881:12;4873:6;;;;4865:29;;;;-1:-1:-1;;;4865:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4917:5:0;;;4759:192::o;28499:163::-;28540:7;28561:15;28578;28597:19;:17;:19::i;:::-;28560:56;;-1:-1:-1;28560:56:0;-1:-1:-1;28634:20:0;28560:56;;28634:20;:11;:20;:::i;:::-;28627:27;;;;28499:163;:::o;6157:132::-;6215:7;6242:39;6246:1;6249;6242:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6235:46;6157:132;-1:-1:-1;;;6157:132:0:o;3856:181::-;3914:7;3946:5;;;3970:6;;;;3962:46;;;;;-1:-1:-1;;;3962:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;27297:419;27356:7;27365;27374;27383;27392;27401;27422:23;27447:12;27461:18;27483:20;27495:7;27483:11;:20::i;:::-;27421:82;;;;;;27515:15;27532:23;27557:12;27573:50;27585:7;27594:4;27600:10;27612;:8;:10::i;:::-;27573:11;:50::i;:::-;27514:109;;;;-1:-1:-1;27514:109:0;;-1:-1:-1;27674:15:0;;-1:-1:-1;27691:4:0;;-1:-1:-1;27697:10:0;;-1:-1:-1;27297:419:0;;-1:-1:-1;;;;;27297:419:0:o;4320:136::-;4378:7;4405:43;4409:1;4412;4405:43;;;;;;;;;;;;;;;;;:3;:43::i;5210:471::-;5268:7;5513:6;5509:47;;-1:-1:-1;5543:1:0;5536:8;;5509:47;5580:5;;;5584:1;5580;:5;:1;5604:5;;;;;:10;5596:56;;;;-1:-1:-1;;;5596:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32646:985;20560:16;:23;;-1:-1:-1;;20560:23:0;20579:4;20560:23;;;:16;32797:27:::1;:20:::0;32822:1:::1;32797:27;:24;:27;:::i;:::-;32782:42:::0;-1:-1:-1;32835:17:0::1;32855:30;:20:::0;32782:42;32855:30:::1;:24;:30;:::i;:::-;32835:50:::0;-1:-1:-1;33188:21:0::1;33254:22;33271:4:::0;33254:16:::1;:22::i;:::-;33407:18;33428:41;:21;33454:14:::0;33428:41:::1;:25;:41;:::i;:::-;33407:62;;33519:35;33532:9;33543:10;33519:12;:35::i;:::-;33580:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;20606:16:0;:24;;-1:-1:-1;;20606:24:0;;;-1:-1:-1;;;32646:985:0:o;34888:834::-;34999:7;34995:40;;35021:14;:12;:14::i;:::-;-1:-1:-1;;;;;35060:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;35084:22:0;;;;;;:11;:22;;;;;;;;35083:23;35060:46;35056:597;;;35123:48;35145:6;35153:9;35164:6;35123:21;:48::i;:::-;35056:597;;;-1:-1:-1;;;;;35194:19:0;;;;;;:11;:19;;;;;;;;35193:20;:46;;;;-1:-1:-1;;;;;;35217:22:0;;;;;;:11;:22;;;;;;;;35193:46;35189:464;;;35256:46;35276:6;35284:9;35295:6;35256:19;:46::i;35189:464::-;-1:-1:-1;;;;;35325:19:0;;;;;;:11;:19;;;;;;;;35324:20;:47;;;;-1:-1:-1;;;;;;35349:22:0;;;;;;:11;:22;;;;;;;;35348:23;35324:47;35320:333;;;35388:44;35406:6;35414:9;35425:6;35388:17;:44::i;35320:333::-;-1:-1:-1;;;;;35454:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;35477:22:0;;;;;;:11;:22;;;;;;;;35454:45;35450:203;;;35516:48;35538:6;35546:9;35557:6;35516:21;:48::i;35450:203::-;35597:44;35615:6;35623:9;35634:6;35597:17;:44::i;:::-;35677:7;35673:41;;35699:15;:13;:15::i;:::-;34888:834;;;;:::o;28670:561::-;28767:7;;28803;;28720;;;;;28827:289;28851:9;:16;28847:20;;28827:289;;;28917:7;28893;:21;28901:9;28911:1;28901:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28901:12:0;28893:21;;;;;;;;;;;;;:31;;:66;;;28952:7;28928;:21;28936:9;28946:1;28936:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28936:12:0;28928:21;;;;;;;;;;;;;:31;28893:66;28889:97;;;28969:7;;28978;;28961:25;;;;;;;;;28889:97;29011:34;29023:7;:21;29031:9;29041:1;29031:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29031:12:0;29023:21;;;;;;;;;;;;;29011:7;;:34;:11;:34;:::i;:::-;29001:44;;29070:34;29082:7;:21;29090:9;29100:1;29090:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29090:12:0;29082:21;;;;;;;;;;;;;29070:7;;:34;:11;:34;:::i;:::-;29060:44;-1:-1:-1;28869:3:0;;28827:289;;;-1:-1:-1;29152:7:0;;29140;;:20;;;:11;:20;:::i;:::-;29130:7;:30;29126:61;;;29170:7;;29179;;29162:25;;;;;;;;29126:61;29206:7;;-1:-1:-1;29215:7:0;-1:-1:-1;28670:561:0;;;:::o;6785:278::-;6871:7;6906:12;6899:5;6891:28;;;;-1:-1:-1;;;6891:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6930:9;6946:1;6942;:5;;;;;;;6785:278;-1:-1:-1;;;;;6785:278:0:o;27724:330::-;27784:7;27793;27802;27822:12;27837:24;27853:7;27837:15;:24::i;:::-;27822:39;;27872:18;27893:30;27915:7;27893:21;:30::i;:::-;27872:51;-1:-1:-1;27934:23:0;27960:33;27872:51;27960:17;:7;27972:4;27960:17;:11;:17;:::i;:::-;:21;:33;:21;:33;:::i;:::-;27934:59;28029:4;;-1:-1:-1;28035:10:0;;-1:-1:-1;27724:330:0;;-1:-1:-1;;;27724:330:0:o;28062:429::-;28177:7;;;;28233:24;:7;28245:11;28233:24;:11;:24;:::i;:::-;28215:42;-1:-1:-1;28268:12:0;28283:21;:4;28292:11;28283:21;:8;:21;:::i;:::-;28268:36;-1:-1:-1;28315:18:0;28336:27;:10;28351:11;28336:27;:14;:27;:::i;:::-;28315:48;-1:-1:-1;28374:23:0;28400:33;28315:48;28400:17;:7;28412:4;28400:17;:11;:17;:::i;:33::-;28452:7;;;;-1:-1:-1;28478:4:0;;-1:-1:-1;28062:429:0;;-1:-1:-1;;;;;;;28062:429:0:o;33639:589::-;33789:16;;;33803:1;33789:16;;;33765:21;33789:16;;;;;33765:21;33789:16;;;;;;;;;;-1:-1:-1;33789:16:0;33765:40;;33834:4;33816;33821:1;33816:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;33816:23:0;;;-1:-1:-1;;;;;33816:23:0;;;;;33860:15;-1:-1:-1;;;;;33860:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33860:22:0;33850:7;;:4;;33855:1;;33850:7;;;;;;;;;;;:32;-1:-1:-1;;;;;33850:32:0;;;-1:-1:-1;;;;;33850:32:0;;;;;33895:62;33912:4;33927:15;33945:11;33895:8;:62::i;:::-;33996:15;-1:-1:-1;;;;;33996:66:0;;34077:11;34103:1;34147:4;34174;34194:15;33996:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33996:224:0;-1:-1:-1;;;;;33996:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34236:571;34384:62;34401:4;34416:15;34434:11;34384:8;:62::i;:::-;34541:258;;;-1:-1:-1;;;34541:258:0;;34613:4;34541:258;;;;;;;;;;;;34659:1;34541:258;;;;;;;;;;;;;;34773:15;34541:258;;;;;;-1:-1:-1;;;;;34541:15:0;:31;;;;34580:9;;34541:258;;;;;;;;;;;;;;;34580:9;34541:31;:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29950:250;29996:7;;:12;:34;;;;-1:-1:-1;30012:13:0;;:18;29996:34;29993:46;;;30032:7;;29993:46;30077:7;;;30059:15;:25;30119:13;;;30095:21;:37;-1:-1:-1;30153:11:0;;;;30175:17;29950:250;:::o;36834:566::-;36937:15;36954:23;36979:12;36993:23;37018:12;37032:18;37054:19;37065:7;37054:10;:19::i;:::-;-1:-1:-1;;;;;37102:15:0;;;;;;:7;:15;;;;;;36936:137;;-1:-1:-1;36936:137:0;;-1:-1:-1;36936:137:0;;-1:-1:-1;36936:137:0;-1:-1:-1;36936:137:0;-1:-1:-1;36936:137:0;-1:-1:-1;37102:28:0;;37122:7;37102:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;37084:15:0;;;;;;:7;:15;;;;;;;;:46;;;;37159:7;:15;;;;:28;;37179:7;37159:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;37141:15:0;;;;;;;:7;:15;;;;;;:46;;;;37219:18;;;;;;;:39;;37242:15;37219:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;37198:18:0;;;;;;:7;:18;;;;;:60;37272:26;37287:10;37272:14;:26::i;:::-;37309:23;37321:4;37327;37309:11;:23::i;:::-;37365:9;-1:-1:-1;;;;;37348:44:0;37357:6;-1:-1:-1;;;;;37348:44:0;;37376:15;37348:44;;;;;;;;;;;;;;;;;;36834:566;;;;;;;;;:::o;36240:586::-;36341:15;36358:23;36383:12;36397:23;36422:12;36436:18;36458:19;36469:7;36458:10;:19::i;:::-;-1:-1:-1;;;;;36506:15:0;;;;;;:7;:15;;;;;;36340:137;;-1:-1:-1;36340:137:0;;-1:-1:-1;36340:137:0;;-1:-1:-1;36340:137:0;-1:-1:-1;36340:137:0;-1:-1:-1;36340:137:0;-1:-1:-1;36506:28:0;;36340:137;36506:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;36488:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;36566:18;;;;;:7;:18;;;;;:39;;36589:15;36566:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;36545:18:0;;;;;;:7;:18;;;;;;;;:60;;;;36637:7;:18;;;;:39;;36660:15;36637:39;:22;:39;:::i;35730:502::-;35829:15;35846:23;35871:12;35885:23;35910:12;35924:18;35946:19;35957:7;35946:10;:19::i;:::-;-1:-1:-1;;;;;35994:15:0;;;;;;:7;:15;;;;;;35828:137;;-1:-1:-1;35828:137:0;;-1:-1:-1;35828:137:0;;-1:-1:-1;35828:137:0;-1:-1:-1;35828:137:0;-1:-1:-1;35828:137:0;-1:-1:-1;35994:28:0;;35828:137;35994:28;:19;:28;:::i;25525:642::-;25628:15;25645:23;25670:12;25684:23;25709:12;25723:18;25745:19;25756:7;25745:10;:19::i;:::-;-1:-1:-1;;;;;25793:15:0;;;;;;:7;:15;;;;;;25627:137;;-1:-1:-1;25627:137:0;;-1:-1:-1;25627:137:0;;-1:-1:-1;25627:137:0;-1:-1:-1;25627:137:0;-1:-1:-1;25627:137:0;-1:-1:-1;25793:28:0;;25813:7;25793:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;25775:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25850:7;:15;;;;:28;;25870:7;25850:28;:19;:28;:::i;30212:125::-;30266:15;;30256:7;:25;30308:21;;30292:13;:37;30212:125::o;29610:154::-;29674:7;29701:55;29740:5;29701:20;29713:7;;29701;:11;;:20;;;;:::i;29772:166::-;29842:7;29869:61;29914:5;29869:26;29881:13;;29869:7;:11;;:26;;;;:::i;29243:355::-;29306:19;29329:10;:8;:10::i;:::-;29306:33;-1:-1:-1;29350:18:0;29371:27;:10;29306:33;29371:27;:14;:27;:::i;:::-;29450:4;29434:22;;;;:7;:22;;;;;;29350:48;;-1:-1:-1;29434:38:0;;29350:48;29434:38;:26;:38;:::i;:::-;29425:4;29409:22;;;;:7;:22;;;;;;;;:63;;;;29486:11;:26;;;;;;29483:107;;;29568:4;29552:22;;;;:7;:22;;;;;;:38;;29579:10;29552:38;:26;:38;:::i;:::-;29543:4;29527:22;;;;:7;:22;;;;;:63;29483:107;29243:355;;;:::o;27142:147::-;27220:7;;:17;;27232:4;27220:17;:11;:17;:::i;:::-;27210:7;:27;27261:10;;:20;;27276:4;27261:20;:14;:20;:::i;:::-;27248:10;:33;-1:-1:-1;;27142:147:0:o
Swarm Source
ipfs://4ec81879ca63712c1b8c04f4e322703d306443c69f0405290b3bb2f986eb4112
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.