ASPIRECOMEDY Token Logo

AC [ASPIRECOMEDY] Token

ALERT: rug pull scam

About AC

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 24 January 2022

report
Token seems to be a scam (type: rug pull scam).


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

ASPIRECOMEDY.swapBack() (#782-823) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ASPIRECOMEDY._transferFrom(address,address,uint256) (#699-726):
External calls:
- swapBack() (#709)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#793-799)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
External calls sending eth:
- swapBack() (#709)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#714)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#717)
- amountReceived = takeFee(sender,recipient,amount) (#716)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#769)
- triggerAutoBuyback() (#710)
- inSwap = true (#642)
- inSwap = false (#642)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#535-546) ignores return value by CAKE.transfer(shareholder,amount) (#541)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

ASPIRECOMEDY.swapBack() (#782-823) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

ASPIRECOMEDY.manage_blacklist(address[],bool).i (#734) is a local variable never initialized
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

DividendDistributor.distributeDividend(address) (#535-546) has external calls inside a loop: CAKE.transfer(shareholder,amount) (#541)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#535-546):
External calls:
- CAKE.transfer(shareholder,amount) (#541)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#543)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#544)
Reentrancy in DividendDistributor.process(uint256) (#504-528):
External calls:
- distributeDividend(shareholders[currentIndex]) (#520)
- CAKE.transfer(shareholder,amount) (#541)
State variables written after the call(s):
- currentIndex ++ (#525)
Reentrancy in DividendDistributor.setShare(address,uint256) (#468-482):
External calls:
- distributeDividend(shareholder) (#470)
- CAKE.transfer(shareholder,amount) (#541)
State variables written after the call(s):
- shares[shareholder].amount = amount (#480)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#481)
Apply the check-effects-interactions pattern.

Additional information: link

ASPIRECOMEDY.swapBack() (#782-823) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#463-466) should emit an event for:
- minPeriod = _minPeriod (#464)
- minDistribution = _minDistribution (#465)
ASPIRECOMEDY.setTxLimit(uint256) (#825-827) should emit an event for:
- _maxTxAmount = amount (#826)
ASPIRECOMEDY.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#870-877) should emit an event for:
- autoBuybackCap = _cap (#872)
- autoBuybackAmount = _amount.div(100) (#874)
ASPIRECOMEDY.setBuybackMultiplierSettings(uint256,uint256,uint256) (#879-884) should emit an event for:
- buybackMultiplierNumerator = numerator (#881)
- buybackMultiplierDenominator = denominator (#882)
- buybackMultiplierLength = length (#883)
ASPIRECOMEDY.setFees(uint256,uint256,uint256,uint256,uint256) (#914-922) should emit an event for:
- liquidityFee = _liquidityFee (#915)
- reflectionFee = _reflectionFee (#917)
- marketingFee = _marketingFee (#918)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#919)
- feeDenominator = _feeDenominator (#920)
ASPIRECOMEDY.setSwapBackSettings(bool,uint256) (#929-932) should emit an event for:
- swapThreshold = _amount.div(100) (#931)
ASPIRECOMEDY.setTargetLiquidity(uint256,uint256) (#934-937) should emit an event for:
- targetLiquidity = _target (#935)
- targetLiquidityDenominator = _denominator (#936)
Emit an event for critical parameter changes.

Additional information: link

ASPIRECOMEDY.setFeeReceivers(address,address)._autoLiquidityReceiver (#924) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#925)
ASPIRECOMEDY.setFeeReceivers(address,address)._marketingFeeReceiver (#924) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#926)
Check that the address is not zero.

Additional information: link

Reentrancy in ASPIRECOMEDY._transferFrom(address,address,uint256) (#699-726):
External calls:
- swapBack() (#709)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#793-799)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
External calls sending eth:
- swapBack() (#709)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
State variables written after the call(s):
- launch() (#712)
- launchedAt = block.number (#891)
Reentrancy in ASPIRECOMEDY.constructor() (#644-664):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#646)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#647)
- _balances[msg.sender] = _totalSupply (#662)
- autoLiquidityReceiver = owner() (#658)
- distributor = new DividendDistributor(address(router)) (#649)
- isDividendExempt[pair] = true (#654)
- isDividendExempt[address(this)] = true (#655)
- isDividendExempt[DEAD] = true (#656)
- isDividendExempt[ZERO] = true (#657)
- isFeeExempt[msg.sender] = true (#651)
- isTxLimitExempt[msg.sender] = true (#652)
- isTxLimitExempt[address(router)] = true (#653)
- marketingFeeReceiver = msg.sender (#659)
Reentrancy in DividendDistributor.deposit() (#484-502):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#491-496)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#501)
- totalDividends = totalDividends.add(amount) (#500)
Reentrancy in DividendDistributor.distributeDividend(address) (#535-546):
External calls:
- CAKE.transfer(shareholder,amount) (#541)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#542)
Reentrancy in DividendDistributor.setShare(address,uint256) (#468-482):
External calls:
- distributeDividend(shareholder) (#470)
- CAKE.transfer(shareholder,amount) (#541)
State variables written after the call(s):
- addShareholder(shareholder) (#474)
- shareholderIndexes[shareholder] = shareholders.length (#568)
- removeShareholder(shareholder) (#476)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#574)
- addShareholder(shareholder) (#474)
- shareholders.push(shareholder) (#569)
- removeShareholder(shareholder) (#476)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#573)
- shareholders.pop() (#575)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#479)
Reentrancy in ASPIRECOMEDY.triggerAutoBuyback() (#850-855):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#851)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#853)
- autoBuybackBlockLast = block.number (#852)
- autoBuybackEnabled = false (#854)
Reentrancy in ASPIRECOMEDY.triggerManualBuyback(uint256,bool) (#838-844):
External calls:
- buyTokens(amount,DEAD) (#839)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#841)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ASPIRECOMEDY._transferFrom(address,address,uint256) (#699-726):
External calls:
- swapBack() (#709)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#793-799)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
- distributor.setShare(sender,_balances[sender]) (#719)
- distributor.setShare(recipient,_balances[recipient]) (#720)
- distributor.process(distributorGas) (#722)
External calls sending eth:
- swapBack() (#709)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#724)
Reentrancy in ASPIRECOMEDY._transferFrom(address,address,uint256) (#699-726):
External calls:
- swapBack() (#709)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#793-799)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
External calls sending eth:
- swapBack() (#709)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
- triggerAutoBuyback() (#710)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#770)
- amountReceived = takeFee(sender,recipient,amount) (#716)
Reentrancy in ASPIRECOMEDY.constructor() (#644-664):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#646)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#663)
Reentrancy in ASPIRECOMEDY.swapBack() (#782-823):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#793-799)
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#809)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#813-820)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#821)
Reentrancy in ASPIRECOMEDY.triggerManualBuyback(uint256,bool) (#838-844):
External calls:
- buyTokens(amount,DEAD) (#839)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#862-867)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#842)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#530-533) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#531-532)
ASPIRECOMEDY._transferFrom(address,address,uint256) (#699-726) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#712)
ASPIRECOMEDY.getTotalFee(bool) (#754-758) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#756)
ASPIRECOMEDY.shouldSwapBack() (#775-780) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#776-779)
ASPIRECOMEDY.isOverLiquified(uint256,uint256) (#956-958) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#957)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#49-58) uses assembly
- INLINE ASM (#56)
Address._functionCallWithValue(address,bytes,uint256,string) (#142-163) uses assembly
- INLINE ASM (#155-158)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#504-528) has costly operations inside a loop:
- currentIndex = 0 (#516)
DividendDistributor.distributeDividend(address) (#535-546) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#540)
DividendDistributor.process(uint256) (#504-528) has costly operations inside a loop:
- currentIndex ++ (#525)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#142-163) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#127-129) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#137-140) is never used and should be removed
Address.isContract(address) (#49-58) is never used and should be removed
Address.sendValue(address,uint256) (#76-82) is never used and should be removed
Context._msgData() (#171-174) is never used and should be removed
Remove unused functions.

Additional information: link

ASPIRECOMEDY.swapThreshold (#640) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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 version^0.7.4 (#28) allows old versions
solc-0.7.4 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) (#76-82):
- (success) = recipient.call{value: amount}() (#80)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#142-163):
- (success,returndata) = target.call{value: weiValue}(data) (#146)
Low level call in ASPIRECOMEDY.swapBack() (#782-823):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#810)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#360) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#463) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#463) is not in mixedCase
Variable DividendDistributor._token (#416) is not in mixedCase
Variable DividendDistributor.CAKE (#424) is not in mixedCase
Variable DividendDistributor.WBNB (#425) is not in mixedCase
Function ASPIRECOMEDY.enable_blacklist(bool) (#729-731) is not in mixedCase
Parameter ASPIRECOMEDY.enable_blacklist(bool)._status (#729) is not in mixedCase
Function ASPIRECOMEDY.manage_blacklist(address[],bool) (#733-737) is not in mixedCase
Parameter ASPIRECOMEDY.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#870) is not in mixedCase
Parameter ASPIRECOMEDY.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#870) is not in mixedCase
Parameter ASPIRECOMEDY.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#870) is not in mixedCase
Parameter ASPIRECOMEDY.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#870) is not in mixedCase
Parameter ASPIRECOMEDY.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#914) is not in mixedCase
Parameter ASPIRECOMEDY.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#914) is not in mixedCase
Parameter ASPIRECOMEDY.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#914) is not in mixedCase
Parameter ASPIRECOMEDY.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#914) is not in mixedCase
Parameter ASPIRECOMEDY.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#914) is not in mixedCase
Parameter ASPIRECOMEDY.setFeeReceivers(address,address)._autoLiquidityReceiver (#924) is not in mixedCase
Parameter ASPIRECOMEDY.setFeeReceivers(address,address)._marketingFeeReceiver (#924) is not in mixedCase
Parameter ASPIRECOMEDY.setSwapBackSettings(bool,uint256)._enabled (#929) is not in mixedCase
Parameter ASPIRECOMEDY.setSwapBackSettings(bool,uint256)._amount (#929) is not in mixedCase
Parameter ASPIRECOMEDY.setTargetLiquidity(uint256,uint256)._target (#934) is not in mixedCase
Parameter ASPIRECOMEDY.setTargetLiquidity(uint256,uint256)._denominator (#934) is not in mixedCase
Parameter ASPIRECOMEDY.setDistributionCriteria(uint256,uint256)._minPeriod (#939) is not in mixedCase
Parameter ASPIRECOMEDY.setDistributionCriteria(uint256,uint256)._minDistribution (#939) is not in mixedCase
Variable ASPIRECOMEDY.CAKE (#582) is not in mixedCase
Variable ASPIRECOMEDY.WBNB (#583) is not in mixedCase
Variable ASPIRECOMEDY.DEAD (#584) is not in mixedCase
Variable ASPIRECOMEDY.ZERO (#585) is not in mixedCase
Constant ASPIRECOMEDY._name (#587) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ASPIRECOMEDY._symbol (#588) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ASPIRECOMEDY._decimals (#589) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ASPIRECOMEDY._totalSupply (#591) is not in mixedCase
Variable ASPIRECOMEDY._maxTxAmount (#592) is not in mixedCase
Variable ASPIRECOMEDY._balances (#596) is not in mixedCase
Variable ASPIRECOMEDY._allowances (#597) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#172)" inContext (#166-175)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#365) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#366)
Prevent variables from having similar names.

Additional information: link

ASPIRECOMEDY.slitherConstructorVariables() (#579-964) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#584)
ASPIRECOMEDY.slitherConstructorVariables() (#579-964) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#585)
ASPIRECOMEDY.slitherConstructorVariables() (#579-964) uses literals with too many digits:
- _totalSupply = 100000000000000 * (10 ** _decimals) (#591)
ASPIRECOMEDY.slitherConstructorVariables() (#579-964) uses literals with too many digits:
- _maxTxAmount = 100000000000000 * (10 ** _decimals) (#592)
ASPIRECOMEDY.slitherConstructorVariables() (#579-964) uses literals with too many digits:
- distributorGas = 500000 (#637)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ASPIRECOMEDY.CAKE (#582) is never used in ASPIRECOMEDY (#579-964)
Remove unused state variables.

Additional information: link

ASPIRECOMEDY.CAKE (#582) should be constant
ASPIRECOMEDY.DEAD (#584) should be constant
ASPIRECOMEDY.WBNB (#583) should be constant
ASPIRECOMEDY.ZERO (#585) should be constant
ASPIRECOMEDY._totalSupply (#591) should be constant
DividendDistributor.WBNB (#425) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#438) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#338-341)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#347-351)
enable_blacklist(bool) should be declared external:
- ASPIRECOMEDY.enable_blacklist(bool) (#729-731)
manage_blacklist(address[],bool) should be declared external:
- ASPIRECOMEDY.manage_blacklist(address[],bool) (#733-737)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for AC