Cynical Squid Token Logo

CSP [Cynical Squid] Token

About CSP

Listings

Not Found
Token 2 years

Cynical Squid protocol.
8 tentacles 8 utilities.

Tokenomics:
2% towards holders
2% towards liquidity
4% towards marketing

Experienced team

Social

Not Found

Laser Scorebeta Last Audit: 9 February 2022

report
Token has too many issues. Scam probability is high.

Reentrancy in CynicalSquid._transfer(address,address,uint256) (#664-750):
External calls:
- swapBack() (#720)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
External calls sending eth:
- swapBack() (#720)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#746)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1014)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1017)
- _tokenTransfer(from,to,amount) (#746)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1015)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1018)
- _tokenTransfer(from,to,amount) (#746)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#847)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#867)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#889)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#910)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#848)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#890)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#912)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1022)
- _tokenTransfer(from,to,amount) (#746)
- _rTotal = _rTotal.sub(rFee) (#919)
- _tokenTransfer(from,to,amount) (#746)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#888)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#909)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#868)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#911)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1024)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#209) is never initialized. It is used in:
- Ownable.getUnlockTime() (#245-247)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Reentrancy in CynicalSquid.constructor() (#405-434):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412)
State variables written after the call(s):
- transferOwnership(newOwner) (#433)
- _owner = newOwner (#242)
Reentrancy in CynicalSquid.swapBack() (#752-789):
External calls:
- swapTokensForETH(amountToSwapForETH) (#771)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#779)
- _marketingTokensToSwap = 0 (#780)
Apply the check-effects-interactions pattern.

Additional information: link

CynicalSquid._transfer(address,address,uint256) (#664-750) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number - 1 && _holderLastTransferTimestamp[to] < block.number - 1,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#690)
Do not use tx.origin for authorization.

Additional information: link

CynicalSquid.addLiquidity(uint256,uint256) (#805-815) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
Ensure that all the return values of the function calls are used.

Additional information: link

CynicalSquid.allowance(address,address).owner (#466) shadows:
- Ownable.owner() (#222-224) (function)
CynicalSquid._approve(address,address,uint256).owner (#653) shadows:
- Ownable.owner() (#222-224) (function)
Rename the local variables that shadow another component.

Additional information: link

CynicalSquid.updateMinimumTokensBeforeSwap(uint256) (#577-581) should emit an event for:
- minimumTokensBeforeSwap = newAmount (#580)
CynicalSquid.updateMaxAmount(uint256) (#583-586) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#585)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in CynicalSquid._transfer(address,address,uint256) (#664-750):
External calls:
- swapBack() (#720)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
External calls sending eth:
- swapBack() (#720)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
State variables written after the call(s):
- removeAllFee() (#723)
- _liquidityFee = 0 (#1046)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee (#731)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee (#739)
- restoreAllFee() (#748)
- _liquidityFee = _previousLiquidityFee (#1051)
- removeAllFee() (#723)
- _previousLiquidityFee = _liquidityFee (#1043)
- removeAllFee() (#723)
- _previousTaxFee = _taxFee (#1042)
- _tokenTransfer(from,to,amount) (#746)
- _tFeeTotal = _tFeeTotal.add(tFee) (#920)
- removeAllFee() (#723)
- _taxFee = 0 (#1045)
- _taxFee = _buyTaxFee (#730)
- _taxFee = _sellTaxFee (#738)
- restoreAllFee() (#748)
- _taxFee = _previousTaxFee (#1050)
- buyOrSellSwitch = TRANSFER (#725)
- buyOrSellSwitch = BUY (#733)
- buyOrSellSwitch = SELL (#741)
Reentrancy in CynicalSquid.constructor() (#405-434):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#414)
- _excluded.push(account) (#636)
- _excluded[i] = _excluded[_excluded.length - 1] (#643)
- _excluded.pop() (#646)
- excludeFromReward(address(this)) (#429)
- _excluded.push(account) (#636)
- excludeFromReward(newOwner) (#430)
- _excluded.push(account) (#636)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#414)
- _isExcluded[account] = true (#635)
- _isExcluded[account] = false (#645)
- excludeFromReward(address(this)) (#429)
- _isExcluded[account] = true (#635)
- excludeFromReward(newOwner) (#430)
- _isExcluded[account] = true (#635)
- excludeFromFee(newOwner) (#421)
- _isExcludedFromFee[account] = true (#1059)
- excludeFromFee(address(this)) (#422)
- _isExcludedFromFee[account] = true (#1059)
- excludeFromFee(address(0xdead)) (#423)
- _isExcludedFromFee[account] = true (#1059)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#413)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#561)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#414)
- _isExcludedMaxTransactionAmount[pair] = value (#596)
- excludeFromMaxTransaction(newOwner,true) (#425)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#561)
- excludeFromMaxTransaction(address(this),true) (#426)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#561)
- excludeFromMaxTransaction(address(0xdead),true) (#427)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#561)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#414)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#633)
- _tOwned[account] = 0 (#644)
- excludeFromReward(address(this)) (#429)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#633)
- excludeFromReward(newOwner) (#430)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#633)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#414)
- automatedMarketMakerPairs[pair] = value (#595)
- marketingAddress = address(0xd79D5c14b409A94c44807Ef5aeE051449c37a964) (#419)
- maxTransactionAmount = _tTotal * 2 / 1000 (#416)
- minimumTokensBeforeSwap = _tTotal * 2 / 10000 (#417)
Reentrancy in CynicalSquid.swapBack() (#752-789):
External calls:
- swapTokensForETH(amountToSwapForETH) (#771)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#783)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#783)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#783)
- _allowances[owner][spender] = amount (#660)
Reentrancy in CynicalSquid.transferFrom(address,address,uint256) (#484-499):
External calls:
- _transfer(sender,recipient,amount) (#489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
External calls sending eth:
- _transfer(sender,recipient,amount) (#489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#490-497)
- _allowances[owner][spender] = amount (#660)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CynicalSquid._transfer(address,address,uint256) (#664-750):
External calls:
- swapBack() (#720)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
External calls sending eth:
- swapBack() (#720)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#851)
- _tokenTransfer(from,to,amount) (#746)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount) (#746)
- Transfer(sender,recipient,tTransferAmount) (#893)
- _tokenTransfer(from,to,amount) (#746)
- Transfer(sender,recipient,tTransferAmount) (#915)
- _tokenTransfer(from,to,amount) (#746)
Reentrancy in CynicalSquid.constructor() (#405-434):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#412)
Event emitted after the call(s):
- ExcludeFromFee(account) (#1060)
- excludeFromFee(address(0xdead)) (#423)
- ExcludeFromFee(account) (#1060)
- excludeFromFee(address(this)) (#422)
- ExcludeFromFee(account) (#1060)
- excludeFromFee(newOwner) (#421)
- OwnershipTransferred(_owner,newOwner) (#241)
- transferOwnership(newOwner) (#433)
- Transfer(address(0),newOwner,_tTotal) (#432)
Reentrancy in CynicalSquid.swapBack() (#752-789):
External calls:
- swapTokensForETH(amountToSwapForETH) (#771)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#783)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
External calls sending eth:
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#783)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#661)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#783)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#784)
Reentrancy in CynicalSquid.transferForeignToken(address,address) (#1104-1114):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1112)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1113)
Reentrancy in CynicalSquid.transferFrom(address,address,uint256) (#484-499):
External calls:
- _transfer(sender,recipient,amount) (#489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#796-802)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
External calls sending eth:
- _transfer(sender,recipient,amount) (#489)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0xdead),block.timestamp) (#807-814)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#661)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#490-497)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#111-122) uses assembly
- INLINE ASM (#118-120)
Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) uses assembly
- INLINE ASM (#195-198)
Do not use evm assembly.

Additional information: link

CynicalSquid.includeInReward(address) (#639-650) has costly operations inside a loop:
- _excluded.pop() (#646)
CynicalSquid._takeLiquidity(uint256) (#1012-1025) has costly operations inside a loop:
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1014)
CynicalSquid._takeLiquidity(uint256) (#1012-1025) has costly operations inside a loop:
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1015)
CynicalSquid._takeLiquidity(uint256) (#1012-1025) has costly operations inside a loop:
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1017)
CynicalSquid._takeLiquidity(uint256) (#1012-1025) has costly operations inside a loop:
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1018)
CynicalSquid._reflectFee(uint256,uint256) (#918-921) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#919)
CynicalSquid._reflectFee(uint256,uint256) (#918-921) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#920)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) is never used and should be removed
Address.functionCall(address,bytes) (#138-143) is never used and should be removed
Address.functionCall(address,bytes,string) (#145-151) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#153-165) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#167-178) is never used and should be removed
Address.isContract(address) (#111-122) is never used and should be removed
Address.sendValue(address,uint256) (#124-136) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#96-98) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#100-107) is never used and should be removed
Remove unused functions.

Additional information: link

CynicalSquid._previousTaxFee (#329) is set pre-construction with a non-constant function or state variable:
- _taxFee
CynicalSquid._previousLiquidityFee (#332) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version0.8.11 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#124-136):
- (success) = recipient.call{value: amount}() (#131)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#180-203):
- (success,returndata) = target.call{value: weiValue}(data) (#188-190)
Low level call in CynicalSquid.swapBack() (#752-789):
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#788)
Low level call in CynicalSquid.withdrawStuckETH() (#1117-1121):
- (success,None) = address(msg.sender).call{value: address(this).balance}() (#1120)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router02.WETH() (#264) is not in mixedCase
Parameter CynicalSquid.calculateTaxFee(uint256)._amount (#1027) is not in mixedCase
Parameter CynicalSquid.calculateLiquidityFee(uint256)._amount (#1031) is not in mixedCase
Parameter CynicalSquid.setMarketingAddress(address)._marketingAddress (#1090) is not in mixedCase
Parameter CynicalSquid.setSwapAndLiquifyEnabled(bool)._enabled (#1096) is not in mixedCase
Parameter CynicalSquid.transferForeignToken(address,address)._token (#1104) is not in mixedCase
Parameter CynicalSquid.transferForeignToken(address,address)._to (#1104) is not in mixedCase
Constant CynicalSquid._tTotal (#319) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CynicalSquid._name (#323) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CynicalSquid._symbol (#324) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CynicalSquid._decimals (#325) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CynicalSquid._buyTaxFee (#339) is not in mixedCase
Variable CynicalSquid._buyLiquidityFee (#340) is not in mixedCase
Variable CynicalSquid._buyMarketingFee (#341) is not in mixedCase
Variable CynicalSquid._sellTaxFee (#343) is not in mixedCase
Variable CynicalSquid._sellLiquidityFee (#344) is not in mixedCase
Variable CynicalSquid._sellMarketingFee (#345) is not in mixedCase
Variable CynicalSquid._liquidityTokensToSwap (#351) is not in mixedCase
Variable CynicalSquid._marketingTokensToSwap (#352) is not in mixedCase
Variable CynicalSquid._isExcludedMaxTransactionAmount (#355) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable CynicalSquid._transferStandard(address,address,uint256).rTransferAmount (#841) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._transferToExcluded(address,address,uint256).rTransferAmount (#861) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid._getValues(uint256).rTransferAmount (#940) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid._getValues(uint256).rTransferAmount (#940) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._transferStandard(address,address,uint256).rTransferAmount (#841) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#988) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._getValues(uint256).rTransferAmount (#940) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid._transferStandard(address,address,uint256).rTransferAmount (#841) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._getValues(uint256).rTransferAmount (#940) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#988) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#988) is too similar to CynicalSquid._transferFromExcluded(address,address,uint256).tTransferAmount (#884)
Variable CynicalSquid._transferStandard(address,address,uint256).rTransferAmount (#841) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid._getValues(uint256).rTransferAmount (#940) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid._transferToExcluded(address,address,uint256).rTransferAmount (#861) is too similar to CynicalSquid._transferToExcluded(address,address,uint256).tTransferAmount (#863)
Variable CynicalSquid._transferStandard(address,address,uint256).rTransferAmount (#841) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid._transferToExcluded(address,address,uint256).rTransferAmount (#861) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#988) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Variable CynicalSquid._transferStandard(address,address,uint256).rTransferAmount (#841) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Variable CynicalSquid._transferToExcluded(address,address,uint256).rTransferAmount (#861) is too similar to CynicalSquid._transferBothExcluded(address,address,uint256).tTransferAmount (#905)
Variable CynicalSquid._transferToExcluded(address,address,uint256).rTransferAmount (#861) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid._getValues(uint256).rTransferAmount (#940) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Variable CynicalSquid._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Variable CynicalSquid._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#988) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Variable CynicalSquid._transferBothExcluded(address,address,uint256).rTransferAmount (#903) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to CynicalSquid._getTValues(uint256).tTransferAmount (#967)
Variable CynicalSquid._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#988) is too similar to CynicalSquid._transferStandard(address,address,uint256).tTransferAmount (#843)
Variable CynicalSquid._transferToExcluded(address,address,uint256).rTransferAmount (#861) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Variable CynicalSquid._transferFromExcluded(address,address,uint256).rTransferAmount (#882) is too similar to CynicalSquid._getValues(uint256).tTransferAmount (#936)
Prevent variables from having similar names.

Additional information: link

CynicalSquid.updateMinimumTokensBeforeSwap(uint256) (#577-581) uses literals with too many digits:
- require(bool,string)(newAmount >= _tTotal * 1 / 100000,Swap amount cannot be lower than 0.001% total supply.) (#578)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#208) is never used in CynicalSquid (#298-1136)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#209) should be constant
Ownable._previousOwner (#208) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#231-234)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#245-247)
getTime() should be declared external:
- Ownable.getTime() (#249-251)
approve(address,uint256) should be declared external:
- CynicalSquid.approve(address,uint256) (#475-482)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- CynicalSquid.setAutomatedMarketMakerPair(address,bool) (#588-592)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CynicalSquid.setSwapAndLiquifyEnabled(bool) (#1096-1099)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is low.


Unable to find Telegram and Twitter accounts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for CSP

News for CSP