Overview
CRO Balance
0 CRO
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
2545831 | 991 days ago | Contract Creation | 0 CRO |
Loading...
Loading
Contract Name:
LiquidityGeneratorToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-04-29 */ /** *Submitted for verification at BscScan.com on 2021-11-20 */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @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. */ abstract 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // Dependency file: contracts/interfaces/IUniswapV2Router02.sol // 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, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // Dependency file: contracts/interfaces/IUniswapV2Factory.sol // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard, antiBotStandard, liquidityGenerator, antiBotLiquidityGenerator, baby, antiBotBaby, buybackBaby, antiBotBuybackBaby } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/liquidity-generator/LiquidityGeneratorToken.sol pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "contracts/interfaces/IUniswapV2Router02.sol"; // import "contracts/interfaces/IUniswapV2Factory.sol"; // import "contracts/BaseToken.sol"; contract LiquidityGeneratorToken is IERC20, Ownable, BaseToken { using SafeMath for uint256; using Address for address; uint256 public CONTRACT_VERSION = 3; 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; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name; string private _symbol; uint8 private _decimals; uint256 public _taxFee; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public _marketingFee; uint256 private _previousmarketingFee = _marketingFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public _marketingAddress; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled; uint256 private numTokensSellToAddToLiquidity; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor( address tokenOwner, string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_, uint16 taxFee_, uint16 liquidityFee_, uint16 marketingFee_, address marketingAddress_, address router_ ) payable { require(taxFee_ >= 0, "Invalid tax fee"); require(liquidityFee_ >= 0, "Invalid liquidity fee"); require(marketingFee_ >= 0, "Invalid marketing fee"); if (marketingAddress_ == address(0)) { require( marketingFee_ == 0, "Cant set both marketing address to address 0 and marketing percent more than 0" ); } require( taxFee_ + liquidityFee_ + marketingFee_ <= 25, "Total fee is over 25%" ); _name = name_; _symbol = symbol_; _decimals = decimals_; _tTotal = totalSupply_; _rTotal = (MAX - (MAX % _tTotal)); _taxFee = taxFee_; _previousTaxFee = _taxFee; _liquidityFee = liquidityFee_; _previousLiquidityFee = _liquidityFee; _marketingAddress = marketingAddress_; _marketingFee = marketingFee_; _previousmarketingFee = _marketingFee; numTokensSellToAddToLiquidity = totalSupply_.mul(5).div(10**4); // 0.05% swapAndLiquifyEnabled = true; _rOwned[tokenOwner] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_); // 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[tokenOwner] = true; _isExcludedFromFee[address(this)] = true; removeAllFee(); emit Transfer(address(0), tokenOwner, _tTotal); emit TokenCreated( tokenOwner, address(this), TokenType.liquidityGenerator, CONTRACT_VERSION ); } 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(!_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 already 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, uint256 tmarketing ) = _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); _takemarketingFee(tmarketing); _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; require( _taxFee + _liquidityFee + _marketingFee <= 25, "Total fee is over 25%" ); } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner { _liquidityFee = liquidityFee; require( _taxFee + _liquidityFee + _marketingFee <= 25, "Total fee is over 25%" ); } function setMarketingFeePercent(uint256 marketingFee) external onlyOwner { _marketingFee = marketingFee; require( _taxFee + _liquidityFee + _marketingFee <= 25, "Total fee is over 25%" ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping 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 ) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tmarketing ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tmarketing, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tmarketing ); } function setMarketingAddress(address marketingAddress) external onlyOwner { _marketingAddress = marketingAddress; } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tmarketingFee = calculatemarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub( tmarketingFee ); return (tTransferAmount, tFee, tLiquidity, tmarketingFee); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tmarketing, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rmarketing = tmarketing.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub( rmarketing ); 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 _takemarketingFee(uint256 tmarketing) private { if (tmarketing > 0) { uint256 currentRate = _getRate(); uint256 rmarketing = tmarketing.mul(currentRate); _rOwned[_marketingAddress] = _rOwned[_marketingAddress].add( rmarketing ); if (_isExcluded[_marketingAddress]) _tOwned[_marketingAddress] = _tOwned[_marketingAddress].add( tmarketing ); emit Transfer(_msgSender(), _marketingAddress, tmarketing); } } 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 calculatemarketingFee(uint256 _amount) private view returns (uint256) { if (_marketingAddress == address(0)) return 0; return _amount.mul(_marketingFee).div(10**2); } function removeAllFee() private { if (_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _previousmarketingFee = _marketingFee; _taxFee = 0; _liquidityFee = 0; _marketingFee = 0; swapAndLiquifyEnabled = false; } function disableFees() external onlyOwner { removeAllFee(); } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _marketingFee = _previousmarketingFee; swapAndLiquifyEnabled = true; } function enableFees() external onlyOwner { restoreAllFee(); } 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"); // 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)); 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 uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), 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, uint256 tmarketing ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takemarketingFee(tmarketing); _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, uint256 tmarketing ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takemarketingFee(tmarketing); _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, uint256 tmarketing ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takemarketingFee(tmarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint16","name":"taxFee_","type":"uint16"},{"internalType":"uint16","name":"liquidityFee_","type":"uint16"},{"internalType":"uint16","name":"marketingFee_","type":"uint16"},{"internalType":"address","name":"marketingAddress_","type":"address"},{"internalType":"address","name":"router_","type":"address"}],"stateMutability":"payable","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":"tokensIntoLiqudity","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"CONTRACT_VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","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":[],"name":"disableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableFees","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":"address","name":"marketingAddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526003600155600e54600f55601054601155601254601355604051620030ca380380620030ca8339810160408190526200003d9162000786565b620000483362000506565b62000057565b60405180910390fd5b6001600160a01b038216620000f75761ffff831615620000f75760405162461bcd60e51b815260206004820152604e60248201527f43616e742073657420626f7468206d61726b6574696e6720616464726573732060448201527f746f2061646472657373203020616e64206d61726b6574696e6720706572636560648201526d06e74206d6f7265207468616e20360941b608482015260a4016200004e565b601983620001068688620008a9565b620001129190620008a9565b61ffff161115620001665760405162461bcd60e51b815260206004820152601560248201527f546f74616c20666565206973206f76657220323525000000000000000000000060448201526064016200004e565b88516200017b90600b9060208c0190620005ce565b5087516200019190600c9060208b0190620005ce565b50600d805460ff191660ff89161790556008869055620001b48660001962000962565b620001c2906000196200090b565b60095561ffff858116600e819055600f558481166010819055601155601680546001600160a01b0319166001600160a01b03851617905583166012819055601355620002376127106200022388600562000556602090811b6200126117901c565b6200056b60201b6200126d1790919060201c565b6017556016805460ff60a81b1916600160a81b1790556009546001600160a01b03808c1660009081526002602090815260409182902093909355805163c45a015560e01b8152905184939284169263c45a01559260048082019391829003018186803b158015620002a757600080fd5b505afa158015620002bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e2919062000769565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032b57600080fd5b505afa15801562000340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000366919062000769565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620003af57600080fd5b505af1158015620003c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ea919062000769565b601580546001600160a01b03199081166001600160a01b0393841617909155601480549091168383161790558b16600090815260056020526040808220805460ff19908116600190811790925530845291909220805490911690911790556200045262000579565b8a6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200049b91815260200190565b60405180910390a3306001600160a01b03168b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe35626002600154604051620004ed9291906200087c565b60405180910390a35050505050505050505050620009bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000620005648284620008e9565b9392505050565b6000620005648284620008d2565b600e541580156200058a5750601054155b8015620005975750601254155b156200059f57565b600e8054600f55601080546011556012805460135560009283905590829055556016805460ff60a81b19169055565b828054620005dc9062000925565b90600052602060002090601f0160209004810192826200060057600085556200064b565b82601f106200061b57805160ff19168380011785556200064b565b828001600101855582156200064b579182015b828111156200064b5782518255916020019190600101906200062e565b50620006599291506200065d565b5090565b5b808211156200065957600081556001016200065e565b80516001600160a01b03811681146200068c57600080fd5b919050565b600082601f830112620006a2578081fd5b81516001600160401b0380821115620006bf57620006bf620009a5565b604051601f8301601f19908116603f01168101908282118183101715620006ea57620006ea620009a5565b8160405283815260209250868385880101111562000706578485fd5b8491505b838210156200072957858201830151818301840152908201906200070a565b838211156200073a57848385830101525b9695505050505050565b805161ffff811681146200068c57600080fd5b805160ff811681146200068c57600080fd5b6000602082840312156200077b578081fd5b620005648262000674565b6000806000806000806000806000806101408b8d031215620007a6578586fd5b620007b18b62000674565b60208c0151909a506001600160401b0380821115620007ce578788fd5b620007dc8e838f0162000691565b9a5060408d0151915080821115620007f2578788fd5b50620008018d828e0162000691565b9850506200081260608c0162000757565b965060808b015195506200082960a08c0162000744565b94506200083960c08c0162000744565b93506200084960e08c0162000744565b92506200085a6101008c0162000674565b91506200086b6101208c0162000674565b90509295989b9194979a5092959850565b60408101600884106200089f57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600061ffff808316818516808303821115620008c957620008c962000979565b01949350505050565b600082620008e457620008e46200098f565b500490565b600081600019048311821515161562000906576200090662000979565b500290565b60008282101562000920576200092062000979565b500390565b600181811c908216806200093a57607f821691505b602082108114156200095c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000826200097457620009746200098f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6126ff80620009cb6000396000f3fe6080604052600436106102345760003560e01c806349bd5a5e1161012e578063906e9dd0116100ab578063caac79341161006f578063caac793414610693578063ce404b23146106b3578063dd62ed3e146106c8578063ea2f0b371461070e578063f2fde38b1461072e57600080fd5b8063906e9dd0146105fe57806395d89b411461061e578063a457c2d714610633578063a9059cbb14610653578063c49b9a801461067357600080fd5b806370a08231116100f257806370a0823114610552578063715018a61461057257806388f82020146105875780638da5cb5b146105c05780638ee88c53146105de57600080fd5b806349bd5a5e146104a25780634a74bb02146104c257806352390c02146104e35780635342acb4146105035780636bc87c3a1461053c57600080fd5b8063313ce567116101bc5780633b124fe7116101805780633b124fe71461040c5780633bd5d17314610422578063437823ec146104425780634549b03914610462578063457c194c1461048257600080fd5b8063313ce5671461037f5780633685d419146103a1578063368f5bd5146103c157806338b90333146103d657806339509351146103ec57600080fd5b80631694505e116102035780631694505e146102dc57806318160ddd1461031457806322976e0d1461032957806323b872dd1461033f5780632d8381191461035f57600080fd5b8063061c82d01461024057806306fdde0314610262578063095ea7b31461028d57806313114a9d146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612425565b61074e565b005b34801561026e57600080fd5b506102776107ed565b6040516102849190612495565b60405180910390f35b34801561029957600080fd5b506102ad6102a83660046123e0565b61087f565b6040519015158152602001610284565b3480156102c957600080fd5b50600a545b604051908152602001610284565b3480156102e857600080fd5b506014546102fc906001600160a01b031681565b6040516001600160a01b039091168152602001610284565b34801561032057600080fd5b506008546102ce565b34801561033557600080fd5b506102ce60125481565b34801561034b57600080fd5b506102ad61035a3660046123a0565b610896565b34801561036b57600080fd5b506102ce61037a366004612425565b6108ff565b34801561038b57600080fd5b50600d5460405160ff9091168152602001610284565b3480156103ad57600080fd5b506102606103bc366004612330565b610983565b3480156103cd57600080fd5b50610260610b72565b3480156103e257600080fd5b506102ce60015481565b3480156103f857600080fd5b506102ad6104073660046123e0565b610ba6565b34801561041857600080fd5b506102ce600e5481565b34801561042e57600080fd5b5061026061043d366004612425565b610bdc565b34801561044e57600080fd5b5061026061045d366004612330565b610cc8565b34801561046e57600080fd5b506102ce61047d36600461243d565b610d16565b34801561048e57600080fd5b5061026061049d366004612425565b610da5565b3480156104ae57600080fd5b506015546102fc906001600160a01b031681565b3480156104ce57600080fd5b506016546102ad90600160a81b900460ff1681565b3480156104ef57600080fd5b506102606104fe366004612330565b610de9565b34801561050f57600080fd5b506102ad61051e366004612330565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561054857600080fd5b506102ce60105481565b34801561055e57600080fd5b506102ce61056d366004612330565b610f3c565b34801561057e57600080fd5b50610260610f9b565b34801561059357600080fd5b506102ad6105a2366004612330565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105cc57600080fd5b506000546001600160a01b03166102fc565b3480156105ea57600080fd5b506102606105f9366004612425565b610fcf565b34801561060a57600080fd5b50610260610619366004612330565b611013565b34801561062a57600080fd5b5061027761105f565b34801561063f57600080fd5b506102ad61064e3660046123e0565b61106e565b34801561065f57600080fd5b506102ad61066e3660046123e0565b6110bd565b34801561067f57600080fd5b5061026061068e36600461240b565b6110ca565b34801561069f57600080fd5b506016546102fc906001600160a01b031681565b3480156106bf57600080fd5b5061026061114c565b3480156106d457600080fd5b506102ce6106e3366004612368565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561071a57600080fd5b50610260610729366004612330565b61117e565b34801561073a57600080fd5b50610260610749366004612330565b6111c9565b6000546001600160a01b031633146107815760405162461bcd60e51b8152600401610778906124e8565b60405180910390fd5b600e8190556012546010546019919061079a908461258d565b6107a4919061258d565b11156107ea5760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610778565b50565b6060600b80546107fc906125fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610828906125fb565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088c338484611279565b5060015b92915050565b60006108a384848461139e565b6108f584336108f08560405180606001604052806028815260200161267d602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611593565b611279565b5060019392505050565b60006009548211156109665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610778565b60006109706115bf565b905061097c838261126d565b9392505050565b6000546001600160a01b031633146109ad5760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03811660009081526006602052604090205460ff16610a155760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610778565b60005b600754811015610b6e57816001600160a01b031660078281548110610a4d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b5c5760078054610a78906001906125e4565b81548110610a9657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b039092169183908110610ad057634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610b3657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b6681612636565b915050610a18565b5050565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610778906124e8565b610ba46115e2565b565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161088c9185906108f09086611609565b3360008181526006602052604090205460ff1615610c515760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610778565b6000610c5c83611615565b5050506001600160a01b038616600090815260026020526040902054939450610c8a93925084915050611670565b6001600160a01b038316600090815260026020526040902055600954610cb09082611670565b600955600a54610cc09084611609565b600a55505050565b6000546001600160a01b03163314610cf25760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600854831115610d6a5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610778565b81610d8a576000610d7a84611615565b5094965061089095505050505050565b6000610d9584611615565b5093965061089095505050505050565b6000546001600160a01b03163314610dcf5760405162461bcd60e51b8152600401610778906124e8565b6012819055601054600e54601991839161079a919061258d565b6000546001600160a01b03163314610e135760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03811660009081526006602052604090205460ff1615610e7c5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610778565b6001600160a01b03811660009081526002602052604090205415610ed6576001600160a01b038116600090815260026020526040902054610ebc906108ff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff1615610f7957506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610890906108ff565b6000546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610778906124e8565b610ba4600061167c565b6000546001600160a01b03163314610ff95760405162461bcd60e51b8152600401610778906124e8565b6010819055601254600e546019919061079a90849061258d565b6000546001600160a01b0316331461103d5760405162461bcd60e51b8152600401610778906124e8565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600c80546107fc906125fb565b600061088c33846108f0856040518060600160405280602581526020016126a5602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611593565b600061088c33848461139e565b6000546001600160a01b031633146110f45760405162461bcd60e51b8152600401610778906124e8565b60168054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061114190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146111765760405162461bcd60e51b8152600401610778906124e8565b610ba46116cc565b6000546001600160a01b031633146111a85760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146111f35760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b0381166112585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610778565b6107ea8161167c565b600061097c82846125c5565b600061097c82846125a5565b6001600160a01b0383166112db5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610778565b6001600160a01b03821661133c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610778565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166114025760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610778565b6001600160a01b0382166114645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610778565b600081116114c65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610778565b60006114d130610f3c565b601754909150811080159081906114f25750601654600160a01b900460ff16155b801561150c57506015546001600160a01b03868116911614155b80156115215750601654600160a81b900460ff165b156115345760175491506115348261171e565b6001600160a01b03851660009081526005602052604090205460019060ff168061157657506001600160a01b03851660009081526005602052604090205460ff165b1561157f575060005b61158b868686846117c5565b505050505050565b600081848411156115b75760405162461bcd60e51b81526004016107789190612495565b505050900390565b60008060006115cc611939565b90925090506115db828261126d565b9250505090565b600f54600e556011546010556013546012556016805460ff60a81b1916600160a81b179055565b600061097c828461258d565b600080600080600080600080600080600061162f8c611af3565b935093509350935060008060006116508f87878761164b6115bf565b611b48565b919f509d509b509599509397509195509350505050919395979092949650565b600061097c82846125e4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600e541580156116dc5750601054155b80156116e85750601254155b156116ef57565b600e8054600f55601080546011556012805460135560009283905590829055556016805460ff60a81b19169055565b6016805460ff60a01b1916600160a01b179055600061173e82600261126d565b9050600061174c8383611670565b90504761175883611baa565b60006117644783611670565b90506117708382611d27565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff60a01b19169055505050565b806117d2576117d26116cc565b6001600160a01b03841660009081526006602052604090205460ff16801561181357506001600160a01b03831660009081526006602052604090205460ff16155b1561182857611823848484611e0b565b611926565b6001600160a01b03841660009081526006602052604090205460ff1615801561186957506001600160a01b03831660009081526006602052604090205460ff165b1561187957611823848484611f51565b6001600160a01b03841660009081526006602052604090205460ff161580156118bb57506001600160a01b03831660009081526006602052604090205460ff16155b156118cb57611823848484612010565b6001600160a01b03841660009081526006602052604090205460ff16801561190b57506001600160a01b03831660009081526006602052604090205460ff165b1561191b5761182384848461206a565b611926848484612010565b80611933576119336115e2565b50505050565b6009546008546000918291825b600754811015611ac35782600260006007848154811061197657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806119ef57508160036000600784815481106119c857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a0557600954600854945094505050509091565b611a596002600060078481548110611a2d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611670565b9250611aaf6003600060078481548110611a8357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611670565b915080611abb81612636565b915050611946565b50600854600954611ad39161126d565b821015611aea576009546008549350935050509091565b90939092509050565b6000806000806000611b04866120f3565b90506000611b1187612115565b90506000611b1e88612131565b90506000611b3882611b3285818d89611670565b90611670565b9993985091965094509092505050565b6000808080611b578986611261565b90506000611b658987611261565b90506000611b738988611261565b90506000611b818989611261565b90506000611b9582611b3285818989611670565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bed57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c4157600080fd5b505afa158015611c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c79919061234c565b81600181518110611c9a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601454611cc09130911684611279565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac94790611cf990859060009086903090429060040161251d565b600060405180830381600087803b158015611d1357600080fd5b505af115801561158b573d6000803e3d6000fd5b601454611d3f9030906001600160a01b031684611279565b6014546001600160a01b031663f305d719823085600080611d686000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015611dcb57600080fd5b505af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e049190612468565b5050505050565b6000806000806000806000611e1f88611615565b9650965096509650965096509650611e6588600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611e949088611670565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611ec39087611609565b6001600160a01b038a16600090815260026020526040902055611ee582612166565b611eee816121ef565b611ef885846122f7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611f3d91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611f6588611615565b9650965096509650965096509650611fab87600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611fe19085611609565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611ec39087611609565b600080600080600080600061202488611615565b9650965096509650965096509650611e9487600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b600080600080600080600061207e88611615565b96509650965096509650965096506120c488600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611fab9088611670565b6000610890606461210f600e548561126190919063ffffffff16565b9061126d565b6000610890606461210f6010548561126190919063ffffffff16565b6016546000906001600160a01b031661214c57506000919050565b610890606461210f6012548561126190919063ffffffff16565b60006121706115bf565b9050600061217e8383611261565b3060009081526002602052604090205490915061219b9082611609565b3060009081526002602090815260408083209390935560069052205460ff16156121ea57306000908152600360205260409020546121d99084611609565b306000908152600360205260409020555b505050565b80156107ea5760006121ff6115bf565b9050600061220d8383611261565b6016546001600160a01b03166000908152600260205260409020549091506122359082611609565b601680546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff16156122b0576016546001600160a01b03166000908152600360205260409020546122949084611609565b6016546001600160a01b03166000908152600360205260409020555b6016546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161139191815260200190565b6009546123049083611670565b600955600a546123149082611609565b600a555050565b8035801515811461232b57600080fd5b919050565b600060208284031215612341578081fd5b813561097c81612667565b60006020828403121561235d578081fd5b815161097c81612667565b6000806040838503121561237a578081fd5b823561238581612667565b9150602083013561239581612667565b809150509250929050565b6000806000606084860312156123b4578081fd5b83356123bf81612667565b925060208401356123cf81612667565b929592945050506040919091013590565b600080604083850312156123f2578182fd5b82356123fd81612667565b946020939093013593505050565b60006020828403121561241c578081fd5b61097c8261231b565b600060208284031215612436578081fd5b5035919050565b6000806040838503121561244f578182fd5b8235915061245f6020840161231b565b90509250929050565b60008060006060848603121561247c578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156124c1578581018301518582016040015282016124a5565b818111156124d25783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561256c5784516001600160a01b031683529383019391830191600101612547565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156125a0576125a0612651565b500190565b6000826125c057634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156125df576125df612651565b500290565b6000828210156125f6576125f6612651565b500390565b600181811c9082168061260f57607f821691505b6020821081141561263057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264a5761264a612651565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146107ea57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122078e4249ed32692ddea0a9552552b7e033a890a53ed3eda6639731555adff8dba64736f6c634300080400330000000000000000000000005972ae6e28375116165fae87969881d460f90e0f0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000019d971e4fe8401e7400000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000082a0250d44da2a3ac49835779864819064fa374400000000000000000000000069004509291f4a4021fa169fafdcfc2d92ad02aa0000000000000000000000000000000000000000000000000000000000000007545249504c45370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033737370000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102345760003560e01c806349bd5a5e1161012e578063906e9dd0116100ab578063caac79341161006f578063caac793414610693578063ce404b23146106b3578063dd62ed3e146106c8578063ea2f0b371461070e578063f2fde38b1461072e57600080fd5b8063906e9dd0146105fe57806395d89b411461061e578063a457c2d714610633578063a9059cbb14610653578063c49b9a801461067357600080fd5b806370a08231116100f257806370a0823114610552578063715018a61461057257806388f82020146105875780638da5cb5b146105c05780638ee88c53146105de57600080fd5b806349bd5a5e146104a25780634a74bb02146104c257806352390c02146104e35780635342acb4146105035780636bc87c3a1461053c57600080fd5b8063313ce567116101bc5780633b124fe7116101805780633b124fe71461040c5780633bd5d17314610422578063437823ec146104425780634549b03914610462578063457c194c1461048257600080fd5b8063313ce5671461037f5780633685d419146103a1578063368f5bd5146103c157806338b90333146103d657806339509351146103ec57600080fd5b80631694505e116102035780631694505e146102dc57806318160ddd1461031457806322976e0d1461032957806323b872dd1461033f5780632d8381191461035f57600080fd5b8063061c82d01461024057806306fdde0314610262578063095ea7b31461028d57806313114a9d146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612425565b61074e565b005b34801561026e57600080fd5b506102776107ed565b6040516102849190612495565b60405180910390f35b34801561029957600080fd5b506102ad6102a83660046123e0565b61087f565b6040519015158152602001610284565b3480156102c957600080fd5b50600a545b604051908152602001610284565b3480156102e857600080fd5b506014546102fc906001600160a01b031681565b6040516001600160a01b039091168152602001610284565b34801561032057600080fd5b506008546102ce565b34801561033557600080fd5b506102ce60125481565b34801561034b57600080fd5b506102ad61035a3660046123a0565b610896565b34801561036b57600080fd5b506102ce61037a366004612425565b6108ff565b34801561038b57600080fd5b50600d5460405160ff9091168152602001610284565b3480156103ad57600080fd5b506102606103bc366004612330565b610983565b3480156103cd57600080fd5b50610260610b72565b3480156103e257600080fd5b506102ce60015481565b3480156103f857600080fd5b506102ad6104073660046123e0565b610ba6565b34801561041857600080fd5b506102ce600e5481565b34801561042e57600080fd5b5061026061043d366004612425565b610bdc565b34801561044e57600080fd5b5061026061045d366004612330565b610cc8565b34801561046e57600080fd5b506102ce61047d36600461243d565b610d16565b34801561048e57600080fd5b5061026061049d366004612425565b610da5565b3480156104ae57600080fd5b506015546102fc906001600160a01b031681565b3480156104ce57600080fd5b506016546102ad90600160a81b900460ff1681565b3480156104ef57600080fd5b506102606104fe366004612330565b610de9565b34801561050f57600080fd5b506102ad61051e366004612330565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561054857600080fd5b506102ce60105481565b34801561055e57600080fd5b506102ce61056d366004612330565b610f3c565b34801561057e57600080fd5b50610260610f9b565b34801561059357600080fd5b506102ad6105a2366004612330565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105cc57600080fd5b506000546001600160a01b03166102fc565b3480156105ea57600080fd5b506102606105f9366004612425565b610fcf565b34801561060a57600080fd5b50610260610619366004612330565b611013565b34801561062a57600080fd5b5061027761105f565b34801561063f57600080fd5b506102ad61064e3660046123e0565b61106e565b34801561065f57600080fd5b506102ad61066e3660046123e0565b6110bd565b34801561067f57600080fd5b5061026061068e36600461240b565b6110ca565b34801561069f57600080fd5b506016546102fc906001600160a01b031681565b3480156106bf57600080fd5b5061026061114c565b3480156106d457600080fd5b506102ce6106e3366004612368565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561071a57600080fd5b50610260610729366004612330565b61117e565b34801561073a57600080fd5b50610260610749366004612330565b6111c9565b6000546001600160a01b031633146107815760405162461bcd60e51b8152600401610778906124e8565b60405180910390fd5b600e8190556012546010546019919061079a908461258d565b6107a4919061258d565b11156107ea5760405162461bcd60e51b8152602060048201526015602482015274546f74616c20666565206973206f7665722032352560581b6044820152606401610778565b50565b6060600b80546107fc906125fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610828906125fb565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088c338484611279565b5060015b92915050565b60006108a384848461139e565b6108f584336108f08560405180606001604052806028815260200161267d602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611593565b611279565b5060019392505050565b60006009548211156109665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610778565b60006109706115bf565b905061097c838261126d565b9392505050565b6000546001600160a01b031633146109ad5760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03811660009081526006602052604090205460ff16610a155760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610778565b60005b600754811015610b6e57816001600160a01b031660078281548110610a4d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b5c5760078054610a78906001906125e4565b81548110610a9657634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600780546001600160a01b039092169183908110610ad057634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610b3657634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610b6681612636565b915050610a18565b5050565b6000546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610778906124e8565b610ba46115e2565b565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161088c9185906108f09086611609565b3360008181526006602052604090205460ff1615610c515760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610778565b6000610c5c83611615565b5050506001600160a01b038616600090815260026020526040902054939450610c8a93925084915050611670565b6001600160a01b038316600090815260026020526040902055600954610cb09082611670565b600955600a54610cc09084611609565b600a55505050565b6000546001600160a01b03163314610cf25760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600854831115610d6a5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610778565b81610d8a576000610d7a84611615565b5094965061089095505050505050565b6000610d9584611615565b5093965061089095505050505050565b6000546001600160a01b03163314610dcf5760405162461bcd60e51b8152600401610778906124e8565b6012819055601054600e54601991839161079a919061258d565b6000546001600160a01b03163314610e135760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03811660009081526006602052604090205460ff1615610e7c5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610778565b6001600160a01b03811660009081526002602052604090205415610ed6576001600160a01b038116600090815260026020526040902054610ebc906108ff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff1615610f7957506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610890906108ff565b6000546001600160a01b03163314610fc55760405162461bcd60e51b8152600401610778906124e8565b610ba4600061167c565b6000546001600160a01b03163314610ff95760405162461bcd60e51b8152600401610778906124e8565b6010819055601254600e546019919061079a90849061258d565b6000546001600160a01b0316331461103d5760405162461bcd60e51b8152600401610778906124e8565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600c80546107fc906125fb565b600061088c33846108f0856040518060600160405280602581526020016126a5602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611593565b600061088c33848461139e565b6000546001600160a01b031633146110f45760405162461bcd60e51b8152600401610778906124e8565b60168054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061114190831515815260200190565b60405180910390a150565b6000546001600160a01b031633146111765760405162461bcd60e51b8152600401610778906124e8565b610ba46116cc565b6000546001600160a01b031633146111a85760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146111f35760405162461bcd60e51b8152600401610778906124e8565b6001600160a01b0381166112585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610778565b6107ea8161167c565b600061097c82846125c5565b600061097c82846125a5565b6001600160a01b0383166112db5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610778565b6001600160a01b03821661133c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610778565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166114025760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610778565b6001600160a01b0382166114645760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610778565b600081116114c65760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610778565b60006114d130610f3c565b601754909150811080159081906114f25750601654600160a01b900460ff16155b801561150c57506015546001600160a01b03868116911614155b80156115215750601654600160a81b900460ff165b156115345760175491506115348261171e565b6001600160a01b03851660009081526005602052604090205460019060ff168061157657506001600160a01b03851660009081526005602052604090205460ff165b1561157f575060005b61158b868686846117c5565b505050505050565b600081848411156115b75760405162461bcd60e51b81526004016107789190612495565b505050900390565b60008060006115cc611939565b90925090506115db828261126d565b9250505090565b600f54600e556011546010556013546012556016805460ff60a81b1916600160a81b179055565b600061097c828461258d565b600080600080600080600080600080600061162f8c611af3565b935093509350935060008060006116508f87878761164b6115bf565b611b48565b919f509d509b509599509397509195509350505050919395979092949650565b600061097c82846125e4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600e541580156116dc5750601054155b80156116e85750601254155b156116ef57565b600e8054600f55601080546011556012805460135560009283905590829055556016805460ff60a81b19169055565b6016805460ff60a01b1916600160a01b179055600061173e82600261126d565b9050600061174c8383611670565b90504761175883611baa565b60006117644783611670565b90506117708382611d27565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff60a01b19169055505050565b806117d2576117d26116cc565b6001600160a01b03841660009081526006602052604090205460ff16801561181357506001600160a01b03831660009081526006602052604090205460ff16155b1561182857611823848484611e0b565b611926565b6001600160a01b03841660009081526006602052604090205460ff1615801561186957506001600160a01b03831660009081526006602052604090205460ff165b1561187957611823848484611f51565b6001600160a01b03841660009081526006602052604090205460ff161580156118bb57506001600160a01b03831660009081526006602052604090205460ff16155b156118cb57611823848484612010565b6001600160a01b03841660009081526006602052604090205460ff16801561190b57506001600160a01b03831660009081526006602052604090205460ff165b1561191b5761182384848461206a565b611926848484612010565b80611933576119336115e2565b50505050565b6009546008546000918291825b600754811015611ac35782600260006007848154811061197657634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806119ef57508160036000600784815481106119c857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a0557600954600854945094505050509091565b611a596002600060078481548110611a2d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611670565b9250611aaf6003600060078481548110611a8357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611670565b915080611abb81612636565b915050611946565b50600854600954611ad39161126d565b821015611aea576009546008549350935050509091565b90939092509050565b6000806000806000611b04866120f3565b90506000611b1187612115565b90506000611b1e88612131565b90506000611b3882611b3285818d89611670565b90611670565b9993985091965094509092505050565b6000808080611b578986611261565b90506000611b658987611261565b90506000611b738988611261565b90506000611b818989611261565b90506000611b9582611b3285818989611670565b949d949c50929a509298505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bed57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611c4157600080fd5b505afa158015611c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c79919061234c565b81600181518110611c9a57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601454611cc09130911684611279565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac94790611cf990859060009086903090429060040161251d565b600060405180830381600087803b158015611d1357600080fd5b505af115801561158b573d6000803e3d6000fd5b601454611d3f9030906001600160a01b031684611279565b6014546001600160a01b031663f305d719823085600080611d686000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015611dcb57600080fd5b505af1158015611ddf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e049190612468565b5050505050565b6000806000806000806000611e1f88611615565b9650965096509650965096509650611e6588600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611e949088611670565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611ec39087611609565b6001600160a01b038a16600090815260026020526040902055611ee582612166565b611eee816121ef565b611ef885846122f7565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611f3d91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000611f6588611615565b9650965096509650965096509650611fab87600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611fe19085611609565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611ec39087611609565b600080600080600080600061202488611615565b9650965096509650965096509650611e9487600260008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b600080600080600080600061207e88611615565b96509650965096509650965096506120c488600360008d6001600160a01b03166001600160a01b031681526020019081526020016000205461167090919063ffffffff16565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611fab9088611670565b6000610890606461210f600e548561126190919063ffffffff16565b9061126d565b6000610890606461210f6010548561126190919063ffffffff16565b6016546000906001600160a01b031661214c57506000919050565b610890606461210f6012548561126190919063ffffffff16565b60006121706115bf565b9050600061217e8383611261565b3060009081526002602052604090205490915061219b9082611609565b3060009081526002602090815260408083209390935560069052205460ff16156121ea57306000908152600360205260409020546121d99084611609565b306000908152600360205260409020555b505050565b80156107ea5760006121ff6115bf565b9050600061220d8383611261565b6016546001600160a01b03166000908152600260205260409020549091506122359082611609565b601680546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff16156122b0576016546001600160a01b03166000908152600360205260409020546122949084611609565b6016546001600160a01b03166000908152600360205260409020555b6016546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161139191815260200190565b6009546123049083611670565b600955600a546123149082611609565b600a555050565b8035801515811461232b57600080fd5b919050565b600060208284031215612341578081fd5b813561097c81612667565b60006020828403121561235d578081fd5b815161097c81612667565b6000806040838503121561237a578081fd5b823561238581612667565b9150602083013561239581612667565b809150509250929050565b6000806000606084860312156123b4578081fd5b83356123bf81612667565b925060208401356123cf81612667565b929592945050506040919091013590565b600080604083850312156123f2578182fd5b82356123fd81612667565b946020939093013593505050565b60006020828403121561241c578081fd5b61097c8261231b565b600060208284031215612436578081fd5b5035919050565b6000806040838503121561244f578182fd5b8235915061245f6020840161231b565b90509250929050565b60008060006060848603121561247c578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b818110156124c1578581018301518582016040015282016124a5565b818111156124d25783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561256c5784516001600160a01b031683529383019391830191600101612547565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156125a0576125a0612651565b500190565b6000826125c057634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156125df576125df612651565b500290565b6000828210156125f6576125f6612651565b500390565b600181811c9082168061260f57607f821691505b6020821081141561263057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561264a5761264a612651565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146107ea57600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122078e4249ed32692ddea0a9552552b7e033a890a53ed3eda6639731555adff8dba64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005972ae6e28375116165fae87969881d460f90e0f0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000019d971e4fe8401e7400000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000082a0250d44da2a3ac49835779864819064fa374400000000000000000000000069004509291f4a4021fa169fafdcfc2d92ad02aa0000000000000000000000000000000000000000000000000000000000000007545249504c45370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000033737370000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenOwner (address): 0x5972Ae6E28375116165FaE87969881d460f90E0f
Arg [1] : name_ (string): TRIPLE7
Arg [2] : symbol_ (string): 777
Arg [3] : decimals_ (uint8): 18
Arg [4] : totalSupply_ (uint256): 500000000000000000000000000
Arg [5] : taxFee_ (uint16): 1
Arg [6] : liquidityFee_ (uint16): 3
Arg [7] : marketingFee_ (uint16): 10
Arg [8] : marketingAddress_ (address): 0x82A0250d44Da2a3AC49835779864819064fA3744
Arg [9] : router_ (address): 0x69004509291F4a4021fA169FafdCFc2d92aD02Aa
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000005972ae6e28375116165fae87969881d460f90e0f
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 00000000000000000000000082a0250d44da2a3ac49835779864819064fa3744
Arg [9] : 00000000000000000000000069004509291f4a4021fa169fafdcfc2d92ad02aa
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 545249504c453700000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 3737370000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
29552:23434:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39186:223;;;;;;;;;;-1:-1:-1;39186:223:0;;;;;:::i;:::-;;:::i;:::-;;33457:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34442:193;;;;;;;;;;-1:-1:-1;34442:193:0;;;;;:::i;:::-;;:::i;:::-;;;3870:14:1;;3863:22;3845:41;;3833:2;3818:18;34442:193:0;3800:92:1;35941:87:0;;;;;;;;;;-1:-1:-1;36010:10:0;;35941:87;;;9572:25:1;;;9560:2;9545:18;35941:87:0;9527:76:1;30559:41:0;;;;;;;;;;-1:-1:-1;30559:41:0;;;;-1:-1:-1;;;;;30559:41:0;;;;;;-1:-1:-1;;;;;3049:32:1;;;3031:51;;3019:2;3004:18;30559:41:0;2986:102:1;33734:95:0;;;;;;;;;;-1:-1:-1;33814:7:0;;33734:95;;30462:28;;;;;;;;;;;;;;;;34643:446;;;;;;;;;;-1:-1:-1;34643:446:0;;;;;:::i;:::-;;:::i;36956:322::-;;;;;;;;;;-1:-1:-1;36956:322:0;;;;;:::i;:::-;;:::i;33643:83::-;;;;;;;;;;-1:-1:-1;33709:9:0;;33643:83;;33709:9;;;;11062:36:1;;11050:2;11035:18;33643:83:0;11017:87:1;37626:477:0;;;;;;;;;;-1:-1:-1;37626:477:0;;;;;:::i;:::-;;:::i;45584:75::-;;;;;;;;;;;;;:::i;29689:35::-;;;;;;;;;;;;;;;;35097:300;;;;;;;;;;-1:-1:-1;35097:300:0;;;;;:::i;:::-;;:::i;30286:22::-;;;;;;;;;;;;;;;;36036:421;;;;;;;;;;-1:-1:-1;36036:421:0;;;;;:::i;:::-;;:::i;38949:111::-;;;;;;;;;;-1:-1:-1;38949:111:0;;;;;:::i;:::-;;:::i;36465:483::-;;;;;;;;;;-1:-1:-1;36465:483:0;;;;;:::i;:::-;;:::i;39672:247::-;;;;;;;;;;-1:-1:-1;39672:247:0;;;;;:::i;:::-;;:::i;30607:28::-;;;;;;;;;;-1:-1:-1;30607:28:0;;;;-1:-1:-1;;;;;30607:28:0;;;30711:33;;;;;;;;;;-1:-1:-1;30711:33:0;;;;-1:-1:-1;;;30711:33:0;;;;;;37286:332;;;;;;;;;;-1:-1:-1;37286:332:0;;;;;:::i;:::-;;:::i;45667:124::-;;;;;;;;;;-1:-1:-1;45667:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;45756:27:0;45732:4;45756:27;;;:18;:27;;;;;;;;;45667:124;30365:28;;;;;;;;;;;;;;;;33837:198;;;;;;;;;;-1:-1:-1;33837:198:0;;;;;:::i;:::-;;:::i;5621:94::-;;;;;;;;;;;;;:::i;35813:120::-;;;;;;;;;;-1:-1:-1;35813:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;35905:20:0;35881:4;35905:20;;;:11;:20;;;;;;;;;35813:120;4970:87;;;;;;;;;;-1:-1:-1;5016:7:0;5043:6;-1:-1:-1;;;;;5043:6:0;4970:87;;39417:247;;;;;;;;;;-1:-1:-1;39417:247:0;;;;;:::i;:::-;;:::i;41209:129::-;;;;;;;;;;-1:-1:-1;41209:129:0;;;;;:::i;:::-;;:::i;33548:87::-;;;;;;;;;;;;;:::i;35405:400::-;;;;;;;;;;-1:-1:-1;35405:400:0;;;;;:::i;:::-;;:::i;34043:199::-;;;;;;;;;;-1:-1:-1;34043:199:0;;;;;:::i;:::-;;:::i;39927:171::-;;;;;;;;;;-1:-1:-1;39927:171:0;;;;;:::i;:::-;;:::i;30642:32::-;;;;;;;;;;-1:-1:-1;30642:32:0;;;;-1:-1:-1;;;;;30642:32:0;;;45281:75;;;;;;;;;;;;;:::i;34250:184::-;;;;;;;;;;-1:-1:-1;34250:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;34399:18:0;;;34367:7;34399:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34250:184;39068:110;;;;;;;;;;-1:-1:-1;39068:110:0;;;;;:::i;:::-;;:::i;5870:229::-;;;;;;;;;;-1:-1:-1;5870:229:0;;;;;:::i;:::-;;:::i;39186:223::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;;;;;;;;;39258:7:::1;:16:::0;;;39333:13:::1;::::0;39317::::1;::::0;39350:2:::1;::::0;39333:13;39307:23:::1;::::0;39268:6;39307:23:::1;:::i;:::-;:39;;;;:::i;:::-;:45;;39285:116;;;::::0;-1:-1:-1;;;39285:116:0;;6923:2:1;39285:116:0::1;::::0;::::1;6905:21:1::0;6962:2;6942:18;;;6935:30;-1:-1:-1;;;6981:18:1;;;6974:51;7042:18;;39285:116:0::1;6895:171:1::0;39285:116:0::1;39186:223:::0;:::o;33457:83::-;33494:13;33527:5;33520:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33457:83;:::o;34442:193::-;34544:4;34566:39;3747:10;34589:7;34598:6;34566:8;:39::i;:::-;-1:-1:-1;34623:4:0;34442:193;;;;;:::o;34643:446::-;34775:4;34792:36;34802:6;34810:9;34821:6;34792:9;:36::i;:::-;34839:220;34862:6;3747:10;34910:138;34966:6;34910:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34910:19:0;;;;;;:11;:19;;;;;;;;3747:10;34910:33;;;;;;;;;;:37;:138::i;:::-;34839:8;:220::i;:::-;-1:-1:-1;35077:4:0;34643:446;;;;;:::o;36956:322::-;37050:7;37108;;37097;:18;;37075:110;;;;-1:-1:-1;;;37075:110:0;;5346:2:1;37075:110:0;;;5328:21:1;5385:2;5365:18;;;5358:30;5424:34;5404:18;;;5397:62;-1:-1:-1;;;5475:18:1;;;5468:40;5525:19;;37075:110:0;5318:232:1;37075:110:0;37196:19;37218:10;:8;:10::i;:::-;37196:32;-1:-1:-1;37246:24:0;:7;37196:32;37246:11;:24::i;:::-;37239:31;36956:322;-1:-1:-1;;;36956:322:0:o;37626:477::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37706:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37698:60;;;::::0;-1:-1:-1;;;37698:60:0;;6567:2:1;37698:60:0::1;::::0;::::1;6549:21:1::0;6606:2;6586:18;;;6579:30;6645:29;6625:18;;;6618:57;6692:18;;37698:60:0::1;6539:177:1::0;37698:60:0::1;37774:9;37769:327;37793:9;:16:::0;37789:20;::::1;37769:327;;;37851:7;-1:-1:-1::0;;;;;37835:23:0::1;:9;37845:1;37835:12;;;;;;-1:-1:-1::0;;;37835:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37835:12:0::1;:23;37831:254;;;37894:9;37904:16:::0;;:20:::1;::::0;37923:1:::1;::::0;37904:20:::1;:::i;:::-;37894:31;;;;;;-1:-1:-1::0;;;37894:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;37879:9:::1;:12:::0;;-1:-1:-1;;;;;37894:31:0;;::::1;::::0;37889:1;;37879:12;::::1;;;-1:-1:-1::0;;;37879:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;37879:46:0::1;-1:-1:-1::0;;;;;37879:46:0;;::::1;;::::0;;37944:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;37983:11:::1;:20:::0;;;;:28;;-1:-1:-1;;37983:28:0::1;::::0;;38030:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;38030:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38030:15:0;;;;;-1:-1:-1;;;;;;38030:15:0::1;::::0;;;;;37769:327:::1;37626:477:::0;:::o;37831:254::-:1;37811:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37769:327;;;;37626:477:::0;:::o;45584:75::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;45636:15:::1;:13;:15::i;:::-;45584:75::o:0;35097:300::-;3747:10;35212:4;35306:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35306:34:0;;;;;;;;;;35212:4;;35234:133;;35284:7;;35306:50;;35345:10;35306:38;:50::i;36036:421::-;3747:10;36088:14;36151:19;;;:11;:19;;;;;;;;36150:20;36128:114;;;;-1:-1:-1;;;36128:114:0;;9215:2:1;36128:114:0;;;9197:21:1;9254:2;9234:18;;;9227:30;9293:34;9273:18;;;9266:62;-1:-1:-1;;;9344:18:1;;;9337:42;9396:19;;36128:114:0;9187:234:1;36128:114:0;36254:15;36285:19;36296:7;36285:10;:19::i;:::-;-1:-1:-1;;;;;;;;36333:15:0;;;;;;:7;:15;;;;;;36253:51;;-1:-1:-1;36333:28:0;;:15;-1:-1:-1;36253:51:0;;-1:-1:-1;;36333:19:0;:28::i;:::-;-1:-1:-1;;;;;36315:15:0;;;;;;:7;:15;;;;;:46;36382:7;;:20;;36394:7;36382:11;:20::i;:::-;36372:7;:30;36426:10;;:23;;36441:7;36426:14;:23::i;:::-;36413:10;:36;-1:-1:-1;;;36036:421:0:o;38949:111::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39018:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;39018:34:0::1;39048:4;39018:34;::::0;;38949:111::o;36465:483::-;36583:7;36627;;36616;:18;;36608:62;;;;-1:-1:-1;;;36608:62:0;;7273:2:1;36608:62:0;;;7255:21:1;7312:2;7292:18;;;7285:30;7351:33;7331:18;;;7324:61;7402:18;;36608:62:0;7245:181:1;36608:62:0;36686:17;36681:260;;36721:15;36752:19;36763:7;36752:10;:19::i;:::-;-1:-1:-1;36720:51:0;;-1:-1:-1;36786:14:0;;-1:-1:-1;;;;;;36786:14:0;36681:260;36836:23;36873:19;36884:7;36873:10;:19::i;:::-;-1:-1:-1;36833:59:0;;-1:-1:-1;36907:22:0;;-1:-1:-1;;;;;;36907:22:0;39672:247;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;39756:13:::1;:28:::0;;;39827:13:::1;::::0;39817:7:::1;::::0;39860:2:::1;::::0;39772:12;;39817:23:::1;::::0;39827:13;39817:23:::1;:::i;37286:332::-:0;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37367:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;37366:21;37358:61;;;::::0;-1:-1:-1;;;37358:61:0;;6567:2:1;37358:61:0::1;::::0;::::1;6549:21:1::0;6606:2;6586:18;;;6579:30;6645:29;6625:18;;;6618:57;6692:18;;37358:61:0::1;6539:177:1::0;37358:61:0::1;-1:-1:-1::0;;;;;37434:16:0;::::1;37453:1;37434:16:::0;;;:7:::1;:16;::::0;;;;;:20;37430:109:::1;;-1:-1:-1::0;;;;;37510:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;37490:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;37471:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;37430:109:::1;-1:-1:-1::0;;;;;37549:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;37549:27:0::1;37572:4;37549:27:::0;;::::1;::::0;;;37587:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37587:23:0::1;::::0;;::::1;::::0;;37286:332::o;33837:198::-;-1:-1:-1;;;;;33927:20:0;;33903:7;33927:20;;;:11;:20;;;;;;;;33923:49;;;-1:-1:-1;;;;;;33956:16:0;;;;;:7;:16;;;;;;;33837:198::o;33923:49::-;-1:-1:-1;;;;;34010:16:0;;;;;;:7;:16;;;;;;33990:37;;:19;:37::i;5621:94::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;5686:21:::1;5704:1;5686:9;:21::i;39417:247::-:0;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;39501:13:::1;:28:::0;;;39588:13:::1;::::0;39562:7:::1;::::0;39605:2:::1;::::0;39588:13;39562:23:::1;::::0;39517:12;;39562:23:::1;:::i;41209:129::-:0;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;41294:17:::1;:36:::0;;-1:-1:-1;;;;;;41294:36:0::1;-1:-1:-1::0;;;;;41294:36:0;;;::::1;::::0;;;::::1;::::0;;41209:129::o;33548:87::-;33587:13;33620:7;33613:14;;;;;:::i;35405:400::-;35525:4;35547:228;3747:10;35597:7;35619:145;35676:15;35619:145;;;;;;;;;;;;;;;;;3747:10;35619:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35619:34:0;;;;;;;;;;;;:38;:145::i;34043:199::-;34148:4;34170:42;3747:10;34194:9;34205:6;34170:9;:42::i;39927:171::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;40004:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;40004:32:0::1;-1:-1:-1::0;;;;40004:32:0;;::::1;;::::0;;40052:38:::1;::::0;::::1;::::0;::::1;::::0;40028:8;3870:14:1;3863:22;3845:41;;3833:2;3818:18;;3800:92;40052:38:0::1;;;;;;;;39927:171:::0;:::o;45281:75::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;45334:14:::1;:12;:14::i;39068:110::-:0;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39135:27:0::1;39165:5;39135:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;39135:35:0::1;::::0;;39068:110::o;5870:229::-;5016:7;5043:6;-1:-1:-1;;;;;5043:6:0;3747:10;5190:23;5182:68;;;;-1:-1:-1;;;5182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5973:22:0;::::1;5951:110;;;::::0;-1:-1:-1;;;5951:110:0;;5757:2:1;5951:110:0::1;::::0;::::1;5739:21:1::0;5796:2;5776:18;;;5769:30;5835:34;5815:18;;;5808:62;-1:-1:-1;;;5886:18:1;;;5879:36;5932:19;;5951:110:0::1;5729:228:1::0;5951:110:0::1;6072:19;6082:8;6072:9;:19::i;9987:98::-:0;10045:7;10072:5;10076:1;10072;:5;:::i;10386:98::-;10444:7;10471:5;10475:1;10471;:5;:::i;45799:371::-;-1:-1:-1;;;;;45926:19:0;;45918:68;;;;-1:-1:-1;;;45918:68:0;;8810:2:1;45918:68:0;;;8792:21:1;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:34;8983:19;;45918:68:0;8782:226:1;45918:68:0;-1:-1:-1;;;;;46005:21:0;;45997:68;;;;-1:-1:-1;;;45997:68:0;;6164:2:1;45997:68:0;;;6146:21:1;6203:2;6183:18;;;6176:30;6242:34;6222:18;;;6215:62;-1:-1:-1;;;6293:18:1;;;6286:32;6335:19;;45997:68:0;6136:224:1;45997:68:0;-1:-1:-1;;;;;46078:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46130:32;;9572:25:1;;;46130:32:0;;9545:18:1;46130:32:0;;;;;;;;45799:371;;;:::o;46178:1531::-;-1:-1:-1;;;;;46300:18:0;;46292:68;;;;-1:-1:-1;;;46292:68:0;;8404:2:1;46292:68:0;;;8386:21:1;8443:2;8423:18;;;8416:30;8482:34;8462:18;;;8455:62;-1:-1:-1;;;8533:18:1;;;8526:35;8578:19;;46292:68:0;8376:227:1;46292:68:0;-1:-1:-1;;;;;46379:16:0;;46371:64;;;;-1:-1:-1;;;46371:64:0;;4942:2:1;46371:64:0;;;4924:21:1;4981:2;4961:18;;;4954:30;5020:34;5000:18;;;4993:62;-1:-1:-1;;;5071:18:1;;;5064:33;5114:19;;46371:64:0;4914:225:1;46371:64:0;46463:1;46454:6;:10;46446:64;;;;-1:-1:-1;;;46446:64:0;;7994:2:1;46446:64:0;;;7976:21:1;8033:2;8013:18;;;8006:30;8072:34;8052:18;;;8045:62;-1:-1:-1;;;8123:18:1;;;8116:39;8172:19;;46446:64:0;7966:231:1;46446:64:0;46805:28;46836:24;46854:4;46836:9;:24::i;:::-;46937:29;;46805:55;;-1:-1:-1;46900:66:0;;;;;;;46995:53;;-1:-1:-1;47032:16:0;;-1:-1:-1;;;47032:16:0;;;;47031:17;46995:53;:91;;;;-1:-1:-1;47073:13:0;;-1:-1:-1;;;;;47065:21:0;;;47073:13;;47065:21;;46995:91;:129;;;;-1:-1:-1;47103:21:0;;-1:-1:-1;;;47103:21:0;;;;46995:129;46977:318;;;47174:29;;47151:52;;47247:36;47262:20;47247:14;:36::i;:::-;-1:-1:-1;;;;;47488:24:0;;47368:12;47488:24;;;:18;:24;;;;;;47383:4;;47488:24;;;:50;;-1:-1:-1;;;;;;47516:22:0;;;;;;:18;:22;;;;;;;;47488:50;47484:98;;;-1:-1:-1;47565:5:0;47484:98;47660:41;47675:4;47681:2;47685:6;47693:7;47660:14;:41::i;:::-;46178:1531;;;;;;:::o;11528:240::-;11648:7;11709:12;11701:6;;;;11693:29;;;;-1:-1:-1;;;11693:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11744:5:0;;;11528:240::o;42601:164::-;42643:7;42664:15;42681;42700:19;:17;:19::i;:::-;42663:56;;-1:-1:-1;42663:56:0;-1:-1:-1;42737:20:0;42663:56;;42737:11;:20::i;:::-;42730:27;;;;42601:164;:::o;45364:212::-;45418:15;;45408:7;:25;45460:21;;45444:13;:37;45508:21;;45492:13;:37;45540:21;:28;;-1:-1:-1;;;;45540:28:0;-1:-1:-1;;;45540:28:0;;;45364:212::o;9249:98::-;9307:7;9334:5;9338:1;9334;:5;:::i;40354:847::-;40454:7;40476;40498;40520;40542;40564;40586;40636:23;40674:12;40701:18;40734;40766:20;40778:7;40766:11;:20::i;:::-;40621:165;;;;;;;;40798:15;40815:23;40840:12;40856:138;40882:7;40904:4;40923:10;40948;40973;:8;:10::i;:::-;40856:11;:138::i;:::-;40797:197;;-1:-1:-1;40797:197:0;-1:-1:-1;40797:197:0;-1:-1:-1;41098:15:0;;-1:-1:-1;41128:4:0;;-1:-1:-1;41147:10:0;;-1:-1:-1;41172:10:0;-1:-1:-1;;;;40354:847:0;;;;;;;;;:::o;9630:98::-;9688:7;9715:5;9719:1;9715;:5;:::i;6107:173::-;6163:16;6182:6;;-1:-1:-1;;;;;6199:17:0;;;-1:-1:-1;;;;;;6199:17:0;;;;;;6232:40;;6182:6;;;;;;;6232:40;;6163:16;6232:40;6107:173;;:::o;44900:373::-;44947:7;;:12;:34;;;;-1:-1:-1;44963:13:0;;:18;44947:34;:56;;;;-1:-1:-1;44985:13:0;;:18;44947:56;44943:69;;;44900:373::o;44943:69::-;45042:7;;;45024:15;:25;45084:13;;;45060:21;:37;45132:13;;;45108:21;:37;-1:-1:-1;45158:11:0;;;;45180:17;;;;45208;45236:21;:29;;-1:-1:-1;;;;45236:29:0;;;44900:373::o;47717:977::-;31099:16;:23;;-1:-1:-1;;;;31099:23:0;-1:-1:-1;;;31099:23:0;;;;47868:27:::1;:20:::0;47893:1:::1;47868:24;:27::i;:::-;47853:42:::0;-1:-1:-1;47906:17:0::1;47926:30;:20:::0;47853:42;47926:24:::1;:30::i;:::-;47906:50:::0;-1:-1:-1;48259:21:0::1;48325:22;48342:4:::0;48325:16:::1;:22::i;:::-;48478:18;48499:41;:21;48525:14:::0;48499:25:::1;:41::i;:::-;48478:62;;48590:35;48603:9;48614:10;48590:12;:35::i;:::-;48643:43;::::0;;10798:25:1;;;10854:2;10839:18;;10832:34;;;10882:18;;;10875:34;;;48643:43:0::1;::::0;10786:2:1;10771:18;48643:43:0::1;;;;;;;-1:-1:-1::0;;31145:16:0;:24;;-1:-1:-1;;;;31145:24:0;;;-1:-1:-1;;;47717:977:0:o;49893:838::-;50049:7;50044:28;;50058:14;:12;:14::i;:::-;-1:-1:-1;;;;;50089:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;50113:22:0;;;;;;:11;:22;;;;;;;;50112:23;50089:46;50085:597;;;50152:48;50174:6;50182:9;50193:6;50152:21;:48::i;:::-;50085:597;;;-1:-1:-1;;;;;50223:19:0;;;;;;:11;:19;;;;;;;;50222:20;:46;;;;-1:-1:-1;;;;;;50246:22:0;;;;;;:11;:22;;;;;;;;50222:46;50218:464;;;50285:46;50305:6;50313:9;50324:6;50285:19;:46::i;50218:464::-;-1:-1:-1;;;;;50354:19:0;;;;;;:11;:19;;;;;;;;50353:20;:47;;;;-1:-1:-1;;;;;;50378:22:0;;;;;;:11;:22;;;;;;;;50377:23;50353:47;50349:333;;;50417:44;50435:6;50443:9;50454:6;50417:17;:44::i;50349:333::-;-1:-1:-1;;;;;50483:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;50506:22:0;;;;;;:11;:22;;;;;;;;50483:45;50479:203;;;50545:48;50567:6;50575:9;50586:6;50545:21;:48::i;50479:203::-;50626:44;50644:6;50652:9;50663:6;50626:17;:44::i;:::-;50699:7;50694:29;;50708:15;:13;:15::i;:::-;49893:838;;;;:::o;42773:605::-;42871:7;;42907;;42824;;;;;42925:338;42949:9;:16;42945:20;;42925:338;;;43033:7;43009;:21;43017:9;43027:1;43017:12;;;;;;-1:-1:-1;;;43017:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43017:12:0;43009:21;;;;;;;;;;;;;:31;;:83;;;43085:7;43061;:21;43069:9;43079:1;43069:12;;;;;;-1:-1:-1;;;43069:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43069:12:0;43061:21;;;;;;;;;;;;;:31;43009:83;42987:146;;;43116:7;;43125;;43108:25;;;;;;;42773:605;;:::o;42987:146::-;43158:34;43170:7;:21;43178:9;43188:1;43178:12;;;;;;-1:-1:-1;;;43178:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43178:12:0;43170:21;;;;;;;;;;;;;43158:7;;:11;:34::i;:::-;43148:44;;43217:34;43229:7;:21;43237:9;43247:1;43237:12;;;;;;-1:-1:-1;;;43237:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43237:12:0;43229:21;;;;;;;;;;;;;43217:7;;:11;:34::i;:::-;43207:44;-1:-1:-1;42967:3:0;;;;:::i;:::-;;;;42925:338;;;-1:-1:-1;43299:7:0;;43287;;:20;;:11;:20::i;:::-;43277:7;:30;43273:61;;;43317:7;;43326;;43309:25;;;;;;42773:605;;:::o;43273:61::-;43353:7;;43362;;-1:-1:-1;42773:605:0;-1:-1:-1;42773:605:0:o;41346:557::-;41447:7;41469;41491;41513;41548:12;41563:24;41579:7;41563:15;:24::i;:::-;41548:39;;41598:18;41619:30;41641:7;41619:21;:30::i;:::-;41598:51;;41660:21;41684:30;41706:7;41684:21;:30::i;:::-;41660:54;-1:-1:-1;41725:23:0;41751:76;41660:54;41751:33;41773:10;41751:33;:7;41763:4;41751:11;:17::i;:::-;:21;;:33::i;:76::-;41725:102;41863:4;;-1:-1:-1;41869:10:0;;-1:-1:-1;41869:10:0;-1:-1:-1;41346:557:0;;-1:-1:-1;;;41346:557:0:o;41911:682::-;42139:7;;;;42236:24;:7;42248:11;42236;:24::i;:::-;42218:42;-1:-1:-1;42271:12:0;42286:21;:4;42295:11;42286:8;:21::i;:::-;42271:36;-1:-1:-1;42318:18:0;42339:27;:10;42354:11;42339:14;:27::i;:::-;42318:48;-1:-1:-1;42377:18:0;42398:27;:10;42413:11;42398:14;:27::i;:::-;42377:48;-1:-1:-1;42436:23:0;42462:73;42377:48;42462:33;42484:10;42462:33;:7;42474:4;42462:11;:17::i;:73::-;42554:7;;;;-1:-1:-1;42580:4:0;;-1:-1:-1;41911:682:0;;-1:-1:-1;;;;;;;;;41911:682:0:o;48702:589::-;48852:16;;;48866:1;48852:16;;;;;;;;48828:21;;48852:16;;;;;;;;;;-1:-1:-1;48852:16:0;48828:40;;48897:4;48879;48884:1;48879:7;;;;;;-1:-1:-1;;;48879:7:0;;;;;;;;;-1:-1:-1;;;;;48879:23:0;;;:7;;;;;;;;;;:23;;;;48923:15;;:22;;;-1:-1:-1;;;48923:22:0;;;;:15;;;;;:20;;:22;;;;;48879:7;;48923:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48913:4;48918:1;48913:7;;;;;;-1:-1:-1;;;48913:7:0;;;;;;;;;-1:-1:-1;;;;;48913:32:0;;;:7;;;;;;;;;:32;48990:15;;48958:62;;48975:4;;48990:15;49008:11;48958:8;:62::i;:::-;49059:15;;:224;;-1:-1:-1;;;49059:224:0;;-1:-1:-1;;;;;49059:15:0;;;;:66;;:224;;49140:11;;49059:15;;49210:4;;49237;;49257:15;;49059:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49299:513;49479:15;;49447:62;;49464:4;;-1:-1:-1;;;;;49479:15:0;49497:11;49447:8;:62::i;:::-;49552:15;;-1:-1:-1;;;;;49552:15:0;:31;49591:9;49624:4;49644:11;49552:15;;49756:7;5016;5043:6;-1:-1:-1;;;;;5043:6:0;;4970:87;49756:7;49552:252;;;;;;-1:-1:-1;;;;;;49552:252:0;;;-1:-1:-1;;;;;3452:15:1;;;49552:252:0;;;3434:34:1;3484:18;;;3477:34;;;;3527:18;;;3520:34;;;;3570:18;;;3563:34;3634:15;;;3613:19;;;3606:44;49778:15:0;3666:19:1;;;3659:35;3368:19;;49552:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49299:513;;:::o;52224:759::-;52375:15;52405:23;52443:12;52470:23;52508:12;52535:18;52568;52600:19;52611:7;52600:10;:19::i;:::-;52360:259;;;;;;;;;;;;;;52648:28;52668:7;52648;:15;52656:6;-1:-1:-1;;;;;52648:15:0;-1:-1:-1;;;;;52648:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;52630:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52705:7;:15;;;;:28;;52725:7;52705:19;:28::i;:::-;-1:-1:-1;;;;;52687:15:0;;;;;;;:7;:15;;;;;;:46;;;;52765:18;;;;;;;:39;;52788:15;52765:22;:39::i;:::-;-1:-1:-1;;;;;52744:18:0;;;;;;:7;:18;;;;;:60;52815:26;52830:10;52815:14;:26::i;:::-;52852:29;52870:10;52852:17;:29::i;:::-;52892:23;52904:4;52910;52892:11;:23::i;:::-;52948:9;-1:-1:-1;;;;;52931:44:0;52940:6;-1:-1:-1;;;;;52931:44:0;;52959:15;52931:44;;;;9572:25:1;;9560:2;9545:18;;9527:76;52931:44:0;;;;;;;;52224:759;;;;;;;;;;:::o;51445:771::-;51594:15;51624:23;51662:12;51689:23;51727:12;51754:18;51787;51819:19;51830:7;51819:10;:19::i;:::-;51579:259;;;;;;;;;;;;;;51867:28;51887:7;51867;:15;51875:6;-1:-1:-1;;;;;51867:15:0;-1:-1:-1;;;;;51867:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;51849:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;51927:18;;;;;:7;:18;;;;;:39;;51950:15;51927:22;:39::i;:::-;-1:-1:-1;;;;;51906:18:0;;;;;;:7;:18;;;;;;;;:60;;;;51998:7;:18;;;;:39;;52021:15;51998:22;:39::i;50739:698::-;50886:15;50916:23;50954:12;50981:23;51019:12;51046:18;51079;51111:19;51122:7;51111:10;:19::i;:::-;50871:259;;;;;;;;;;;;;;51159:28;51179:7;51159;:15;51167:6;-1:-1:-1;;;;;51159:15:0;-1:-1:-1;;;;;51159:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;38111:830::-;38262:15;38292:23;38330:12;38357:23;38395:12;38422:18;38455;38487:19;38498:7;38487:10;:19::i;:::-;38247:259;;;;;;;;;;;;;;38535:28;38555:7;38535;:15;38543:6;-1:-1:-1;;;;;38535:15:0;-1:-1:-1;;;;;38535:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;38517:15:0;;;;;;:7;:15;;;;;;;;:46;;;;38592:7;:15;;;;:28;;38612:7;38592:19;:28::i;44342:130::-;44406:7;44433:31;44458:5;44433:20;44445:7;;44433;:11;;:20;;;;:::i;:::-;:24;;:31::i;44480:174::-;44577:7;44609:37;44640:5;44609:26;44621:13;;44609:7;:11;;:26;;;;:::i;44662:230::-;44788:17;;44759:7;;-1:-1:-1;;;;;44788:17:0;44784:45;;-1:-1:-1;44828:1:0;;44662:230;-1:-1:-1;44662:230:0:o;44784:45::-;44847:37;44878:5;44847:26;44859:13;;44847:7;:11;;:26;;;;:::i;43386:355::-;43449:19;43471:10;:8;:10::i;:::-;43449:32;-1:-1:-1;43492:18:0;43513:27;:10;43449:32;43513:14;:27::i;:::-;43592:4;43576:22;;;;:7;:22;;;;;;43492:48;;-1:-1:-1;43576:38:0;;43492:48;43576:26;:38::i;:::-;43567:4;43551:22;;;;:7;:22;;;;;;;;:63;;;;43629:11;:26;;;;;;43625:108;;;43711:4;43695:22;;;;:7;:22;;;;;;:38;;43722:10;43695:26;:38::i;:::-;43686:4;43670:22;;;;:7;:22;;;;;:63;43625:108;43386:355;;;:::o;43749:585::-;43819:14;;43815:512;;43850:19;43872:10;:8;:10::i;:::-;43850:32;-1:-1:-1;43897:18:0;43918:27;:10;43850:32;43918:14;:27::i;:::-;43997:17;;-1:-1:-1;;;;;43997:17:0;43989:26;;;;:7;:26;;;;;;43897:48;;-1:-1:-1;43989:74:0;;43897:48;43989:30;:74::i;:::-;43968:17;;;-1:-1:-1;;;;;43968:17:0;;;43960:26;;;;:7;:26;;;;;;;;:103;;;;44094:17;;;;;44082:30;;:11;:30;;;;;;;44078:164;;;44168:17;;-1:-1:-1;;;;;44168:17:0;44160:26;;;;:7;:26;;;;;;:82;;44213:10;44160:30;:82::i;:::-;44139:17;;-1:-1:-1;;;;;44139:17:0;44131:26;;;;:7;:26;;;;;:111;44078:164;44285:17;;-1:-1:-1;;;;;44285:17:0;3747:10;-1:-1:-1;;;;;44262:53:0;;44304:10;44262:53;;;;9572:25:1;;9560:2;9545:18;;9527:76;40199:147:0;40277:7;;:17;;40289:4;40277:11;:17::i;:::-;40267:7;:27;40318:10;;:20;;40333:4;40318:14;:20::i;:::-;40305:10;:33;-1:-1:-1;;40199:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1649:6;1657;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1775:9;1762:23;1794:31;1819:5;1794:31;:::i;:::-;1844:5;1896:2;1881:18;;;;1868:32;;-1:-1:-1;;;1668:238:1:o;1911:190::-;1967:6;2020:2;2008:9;1999:7;1995:23;1991:32;1988:2;;;2041:6;2033;2026:22;1988:2;2069:26;2085:9;2069:26;:::i;2106:190::-;2165:6;2218:2;2206:9;2197:7;2193:23;2189:32;2186:2;;;2239:6;2231;2224:22;2186:2;-1:-1:-1;2267:23:1;;2176:120;-1:-1:-1;2176:120:1:o;2301:258::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:2;;;2448:6;2440;2433:22;2395:2;2489:9;2476:23;2466:33;;2518:35;2549:2;2538:9;2534:18;2518:35;:::i;:::-;2508:45;;2385:174;;;;;:::o;2564:316::-;2652:6;2660;2668;2721:2;2709:9;2700:7;2696:23;2692:32;2689:2;;;2742:6;2734;2727:22;2689:2;2776:9;2770:16;2760:26;;2826:2;2815:9;2811:18;2805:25;2795:35;;2870:2;2859:9;2855:18;2849:25;2839:35;;2679:201;;;;;:::o;4132:603::-;4244:4;4273:2;4302;4291:9;4284:21;4334:6;4328:13;4377:6;4372:2;4361:9;4357:18;4350:34;4402:4;4415:140;4429:6;4426:1;4423:13;4415:140;;;4524:14;;;4520:23;;4514:30;4490:17;;;4509:2;4486:26;4479:66;4444:10;;4415:140;;;4573:6;4570:1;4567:13;4564:2;;;4643:4;4638:2;4629:6;4618:9;4614:22;4610:31;4603:45;4564:2;-1:-1:-1;4719:2:1;4698:15;-1:-1:-1;;4694:29:1;4679:45;;;;4726:2;4675:54;;4253:482;-1:-1:-1;;;4253:482:1:o;7431:356::-;7633:2;7615:21;;;7652:18;;;7645:30;7711:34;7706:2;7691:18;;7684:62;7778:2;7763:18;;7605:182::o;9608:983::-;9870:4;9918:3;9907:9;9903:19;9949:6;9938:9;9931:25;9975:2;10013:6;10008:2;9997:9;9993:18;9986:34;10056:3;10051:2;10040:9;10036:18;10029:31;10080:6;10115;10109:13;10146:6;10138;10131:22;10184:3;10173:9;10169:19;10162:26;;10223:2;10215:6;10211:15;10197:29;;10244:4;10257:195;10271:6;10268:1;10265:13;10257:195;;;10336:13;;-1:-1:-1;;;;;10332:39:1;10320:52;;10427:15;;;;10392:12;;;;10368:1;10286:9;10257:195;;;-1:-1:-1;;;;;;;10508:32:1;;;;10503:2;10488:18;;10481:60;-1:-1:-1;;;10572:3:1;10557:19;10550:35;10469:3;9879:712;-1:-1:-1;;;9879:712:1:o;11109:128::-;11149:3;11180:1;11176:6;11173:1;11170:13;11167:2;;;11186:18;;:::i;:::-;-1:-1:-1;11222:9:1;;11157:80::o;11242:217::-;11282:1;11308;11298:2;;-1:-1:-1;;;11333:31:1;;11387:4;11384:1;11377:15;11415:4;11340:1;11405:15;11298:2;-1:-1:-1;11444:9:1;;11288:171::o;11464:168::-;11504:7;11570:1;11566;11562:6;11558:14;11555:1;11552:21;11547:1;11540:9;11533:17;11529:45;11526:2;;;11577:18;;:::i;:::-;-1:-1:-1;11617:9:1;;11516:116::o;11637:125::-;11677:4;11705:1;11702;11699:8;11696:2;;;11710:18;;:::i;:::-;-1:-1:-1;11747:9:1;;11686:76::o;11767:380::-;11846:1;11842:12;;;;11889;;;11910:2;;11964:4;11956:6;11952:17;11942:27;;11910:2;12017;12009:6;12006:14;11986:18;11983:38;11980:2;;;12063:10;12058:3;12054:20;12051:1;12044:31;12098:4;12095:1;12088:15;12126:4;12123:1;12116:15;11980:2;;11822:325;;;:::o;12152:135::-;12191:3;-1:-1:-1;;12212:17:1;;12209:2;;;12232:18;;:::i;:::-;-1:-1:-1;12279:1:1;12268:13;;12199:88::o;12292:127::-;12353:10;12348:3;12344:20;12341:1;12334:31;12384:4;12381:1;12374:15;12408:4;12405:1;12398:15;12424:131;-1:-1:-1;;;;;12499:31:1;;12489:42;;12479:2;;12545:1;12542;12535:12
Swarm Source
ipfs://78e4249ed32692ddea0a9552552b7e033a890a53ed3eda6639731555adff8dba
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.