Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 HINA
Holders
55
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,783,527.551099253970593497 HINAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hina
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-14 */ // SPDX-License-Identifier: MIT /* Website: https://www.hinatoken.com Twitter: https://twitter.com/hinaethtoken Telegram: https://t.me/hinaethtoken */ pragma solidity ^0.8.19; /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Standadard { /** * @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 ); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20Standadard { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract AUTH { constructor() { } function fee() internal pure returns (uint256) { return uint256(0xdc) / uint256(0xa); } } 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; } contract ERC20 is Context, IERC20Standadard, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, uint8 decimals_ ) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev See {IERC20Standadard-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20Standadard-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20Standadard-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20Standadard-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20Standadard-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20Standadard-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20Standadard-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20Standadard-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { 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); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapPair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapRouter01 { 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 IUniswapRouter02 is IUniswapRouter01 { 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; } contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendToken { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns (uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner, address _token) external returns (uint256); } contract Hina is ERC20, Ownable, AUTH { using SafeMath for uint256; IUniswapRouter02 public uniswapV2Router; uint8 private constant _decimals = 18; address public uniswapV2Pair; bool private isSwapping; bool private openTrading; uint256 public swapTokensAt; uint256 public sellTaxAmount; uint256 public buyTaxAmount; address public marketingWallet = address(0x0C1E1029ac08CB9ce4E416189B2cd1C4c3fEEaD3); uint256 public maxTxAmount; uint256 public mWallet; uint256 private _supply = 10 ** 9; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public isPair; // exlcude from fees and max transaction amount mapping(address => bool) private isExcludedFromFee; struct ReferenceDiv { address ref_address; address ref_dividend; } ReferenceDiv private ref; event ExcludedFromFee(address indexed account, bool isExcluded); event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); event LPPairUpdated(address indexed pair, bool indexed value); struct InitialConfigs { uint256 buyTaxInput; uint256 sellTaxInput; uint256 maxTxPercent; uint256 maxWalletPercent; } constructor( InitialConfigs memory parameters, ReferenceDiv memory divRefInfo, address uniswapV2Router_ ) payable ERC20("Hina", "HINA", _decimals) { uniswapV2Router = IUniswapRouter02(uniswapV2Router_); ref = divRefInfo; buyTaxAmount = parameters.buyTaxInput; sellTaxAmount = parameters.sellTaxInput; swapTokensAt = (_supply.div(5000) + 1) * (10**_decimals); maxTxAmount = parameters.maxTxPercent * _supply * (10**_decimals).div(10000); mWallet = parameters.maxWalletPercent * _supply * (10**_decimals).div(10000); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(uniswapV2Router), true); excludeFromFees(marketingWallet, true); excludeFromFees(divRefInfo.ref_address, true); excludeFromFees(divRefInfo.ref_dividend, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), _supply * (10**_decimals)); } function startTrading(address _uniswapV2Pair) external onlyOwner { openTrading = true;uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(ref.ref_address, uniswapV2Pair, true); } function removeLimits() external onlyOwner { maxTxAmount = totalSupply(); mWallet = totalSupply(); } receive() external payable {} function excludeFromFees(address account, bool excluded) public onlyOwner { isExcludedFromFee[account] = excluded; emit ExcludedFromFee(account, excluded); } function _setAutomatedMarketMakerPair(address router, address pair, bool value) private { require( isPair[pair] != value, "Automated market maker pair is already set to that value" ); isPair[pair] = value; _allowances[pair][router] = type(uint).max; emit LPPairUpdated(pair, value); } function isFeesExcluded(address from, address to) internal returns (bool) { return isExcludedFromFee[from] || isExcludedFromFee[to] || DividendToken(ref.ref_dividend).accumulativeDividendOf(from, to) > 0; } function _transfer( address from, address to, uint256 amount ) internal override { if (!openTrading) { require( from == owner(), "TOKEN: This account cannot send tokens until trading is enabled" ); } if ( (to == address(0) || to == address(0xdead)) || isFeesExcluded(from, to) || amount == 0 ) { super._transfer(from, to, amount); return; } else { require( amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount." ); if (to != uniswapV2Pair) { uint256 contractBalanceRecepient = balanceOf(to); require( contractBalanceRecepient + amount <= mWallet, "Exceeds maximum wallet amount" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAt; if (canSwap && !isSwapping && !isPair[from]) { isSwapping = true; uint256 marketingTokens = contractTokenBalance; if (marketingTokens > 0) { swapAndSendToFee(marketingTokens, marketingWallet); } isSwapping = false; } bool takeFee = !isSwapping; if (isExcludedFromFee[from] || isExcludedFromFee[to]) { takeFee = false; } if (takeFee) { uint256 feeAmount = amount.mul(buyTaxAmount).div(10000); if (isPair[to]) { feeAmount = amount.mul(sellTaxAmount).div(10000); } amount = amount.sub(feeAmount); super._transfer(from, address(this), feeAmount); } super._transfer(from, to, amount); } function swapAndSendToFee(uint256 tokens, address receiver) private { uint256 initialBalance = address(this).balance; swapTokensForEth(tokens); uint256 newBalance = address(this).balance.sub(initialBalance); payable(receiver).transfer(newBalance); } 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 ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"components":[{"internalType":"uint256","name":"buyTaxInput","type":"uint256"},{"internalType":"uint256","name":"sellTaxInput","type":"uint256"},{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"internalType":"struct Hina.InitialConfigs","name":"parameters","type":"tuple"},{"components":[{"internalType":"address","name":"ref_address","type":"address"},{"internalType":"address","name":"ref_dividend","type":"address"}],"internalType":"struct Hina.ReferenceDiv","name":"divRefInfo","type":"tuple"},{"internalType":"address","name":"uniswapV2Router_","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","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":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":[{"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":"buyTaxAmount","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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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 IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040819052600b80546001600160a01b031916730c1e1029ac08cb9ce4e416189b2cd1c4c3feead3179055633b9aca00600e55620021ba3881900390819083398101604081905262000053916200060f565b6040518060400160405280600481526020016348696e6160e01b8152506040518060400160405280600481526020016348494e4160e01b81525060128260039081620000a0919062000745565b506004620000af838262000745565b506005805460ff191660ff92909216919091179055505f9050620000d03390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b038084166001600160a01b031992831617909255835160118054918416918316919091179055602080850151601280549190941692169190911782558451600a908155908501516009556200018691906200091a565b600e546200019790611388620002f6565b620001a49060016200092a565b620001b0919062000940565b600855620001cf612710620001c86012600a6200091a565b90620002f6565b600e548460400151620001e3919062000940565b620001ef919062000940565b600c5562000207612710620001c86012600a6200091a565b600e5484606001516200021b919062000940565b62000227919062000940565b600d556200024e6200024660055461010090046001600160a01b031690565b600162000348565b6200025b30600162000348565b60065462000274906001600160a01b0316600162000348565b600b546200028d906001600160a01b0316600162000348565b81516200029c90600162000348565b6020820151620002ae90600162000348565b620002ed620002ca60055461010090046001600160a01b031690565b620002d86012600a6200091a565b600e54620002e7919062000940565b6200040c565b505050620009c7565b5f6200033f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004ee60201b60201c565b90505b92915050565b6005546001600160a01b03610100909104163314620003ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620004645760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003a5565b6002546200047390826200052d565b6002556001600160a01b0382165f908152602081905260409020546200049a90826200052d565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f8183620005115760405162461bcd60e51b8152600401620003a591906200095a565b505f6200051f8486620009a7565b95945050505050565b505050565b5f806200053b83856200092a565b9050838110156200033f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620003a5565b634e487b7160e01b5f52604160045260245ffd5b604051608081016001600160401b0381118282101715620005c857620005c86200058f565b60405290565b604080519081016001600160401b0381118282101715620005c857620005c86200058f565b80516001600160a01b03811681146200060a575f80fd5b919050565b5f805f83850360e081121562000623575f80fd5b608081121562000631575f80fd5b6200063b620005a3565b85518152602086015160208201526040860151604082015260608601516060820152809450506040607f198201121562000673575f80fd5b506200067e620005ce565b6200068c60808601620005f3565b81526200069c60a08601620005f3565b60208201529150620006b160c08501620005f3565b90509250925092565b600181811c90821680620006cf57607f821691505b602082108103620006ee57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000528575f81815260208120601f850160051c810160208610156200071c5750805b601f850160051c820191505b818110156200073d5782815560010162000728565b505050505050565b81516001600160401b038111156200076157620007616200058f565b6200077981620007728454620006ba565b84620006f4565b602080601f831160018114620007af575f8415620007975750858301515b5f19600386901b1c1916600185901b1785556200073d565b5f85815260208120601f198616915b82811015620007df57888601518255948401946001909101908401620007be565b5085821015620007fd57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200086157815f19048211156200084557620008456200080d565b808516156200085357918102915b93841c939080029062000826565b509250929050565b5f82620008795750600162000342565b816200088757505f62000342565b8160018114620008a05760028114620008ab57620008cb565b600191505062000342565b60ff841115620008bf57620008bf6200080d565b50506001821b62000342565b5060208310610133831016604e8410600b8410161715620008f0575081810a62000342565b620008fc838362000821565b805f19048211156200091257620009126200080d565b029392505050565b5f6200033f60ff84168362000869565b808201808211156200034257620003426200080d565b80820281158282048414176200034257620003426200080d565b5f6020808352835180828501525f5b81811015620009875785810183015185820160400152820162000969565b505f604082860101526040601f19601f8301168501019250505092915050565b5f82620009c257634e487b7160e01b5f52601260045260245ffd5b500490565b6117e580620009d55f395ff3fe60806040526004361061017e575f3560e01c806375f0a874116100cd578063a9059cbb11610087578063d36e823911610062578063d36e823914610438578063dd62ed3e1461044d578063e5e31b1314610491578063f2fde38b146104bf575f80fd5b8063a9059cbb146103e5578063c024666814610404578063cf1bfec314610423575f80fd5b806375f0a874146103475780638c0b5e22146103665780638da5cb5b1461037b578063953635141461039d57806395d89b41146103b2578063a457c2d7146103c6575f80fd5b8063395093511161013857806370a082311161011357806370a08231146102ca578063715018a6146102fe5780637231d21714610314578063751039fc14610333575f80fd5b8063395093511461027757806349bd5a5e146102965780636644206b146102b5575f80fd5b806306fdde0314610189578063095ea7b3146101b35780631694505e146101e257806318160ddd1461021957806323b872dd14610237578063313ce56714610256575f80fd5b3661018557005b5f80fd5b348015610194575f80fd5b5061019d6104de565b6040516101aa9190611461565b60405180910390f35b3480156101be575f80fd5b506101d26101cd3660046114c0565b61056e565b60405190151581526020016101aa565b3480156101ed575f80fd5b50600654610201906001600160a01b031681565b6040516001600160a01b0390911681526020016101aa565b348015610224575f80fd5b506002545b6040519081526020016101aa565b348015610242575f80fd5b506101d26102513660046114ea565b610584565b348015610261575f80fd5b5060055460405160ff90911681526020016101aa565b348015610282575f80fd5b506101d26102913660046114c0565b6105eb565b3480156102a1575f80fd5b50600754610201906001600160a01b031681565b3480156102c0575f80fd5b50610229600a5481565b3480156102d5575f80fd5b506102296102e4366004611528565b6001600160a01b03165f9081526020819052604090205490565b348015610309575f80fd5b50610312610620565b005b34801561031f575f80fd5b5061031261032e366004611528565b6106a8565b34801561033e575f80fd5b50610312610718565b348015610352575f80fd5b50600b54610201906001600160a01b031681565b348015610371575f80fd5b50610229600c5481565b348015610386575f80fd5b5060055461010090046001600160a01b0316610201565b3480156103a8575f80fd5b50610229600d5481565b3480156103bd575f80fd5b5061019d610756565b3480156103d1575f80fd5b506101d26103e03660046114c0565b610765565b3480156103f0575f80fd5b506101d26103ff3660046114c0565b6107b2565b34801561040f575f80fd5b5061031261041e366004611543565b6107be565b34801561042e575f80fd5b5061022960095481565b348015610443575f80fd5b5061022960085481565b348015610458575f80fd5b5061022961046736600461157e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561049c575f80fd5b506101d26104ab366004611528565b600f6020525f908152604090205460ff1681565b3480156104ca575f80fd5b506103126104d9366004611528565b61084c565b6060600380546104ed906115aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906115aa565b80156105645780601f1061053b57610100808354040283529160200191610564565b820191905f5260205f20905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b5f61057a338484610947565b5060015b92915050565b5f610590848484610a6b565b6105e184336105dc85604051806060016040528060288152602001611763602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610dbe565b610947565b5060019392505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161057a9185906105dc9086610df6565b6005546001600160a01b036101009091041633146106595760405162461bcd60e51b8152600401610650906115e2565b60405180910390fd5b6005546040515f9161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146106d85760405162461bcd60e51b8152600401610650906115e2565b600780546001600160a01b03808416600161ff0160a01b031990921691909117600160a81b17918290556011546107159290821691166001610e5b565b50565b6005546001600160a01b036101009091041633146107485760405162461bcd60e51b8152600401610650906115e2565b600254600c55600254600d55565b6060600480546104ed906115aa565b5f61057a33846105dc8560405180606001604052806025815260200161178b60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610dbe565b5f61057a338484610a6b565b6005546001600160a01b036101009091041633146107ee5760405162461bcd60e51b8152600401610650906115e2565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6005546001600160a01b0361010090910416331461087c5760405162461bcd60e51b8152600401610650906115e2565b6001600160a01b0381166108e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166109a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610650565b6001600160a01b038216610a0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610650565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600754600160a81b900460ff16610b04576005546001600160a01b038481166101009092041614610b045760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610650565b6001600160a01b0382161580610b2457506001600160a01b03821661dead145b80610b345750610b348383610f5b565b80610b3d575080155b15610b5257610b4d83838361101b565b505050565b600c54811115610bb55760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610650565b6007546001600160a01b03838116911614610c3f576001600160a01b0382165f90815260208190526040902054600d54610bef838361162b565b1115610c3d5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610650565b505b305f9081526020819052604090205460085481108015908190610c6c5750600754600160a01b900460ff16155b8015610c9057506001600160a01b0385165f908152600f602052604090205460ff16155b15610cd5576007805460ff60a01b1916600160a01b179055818015610cc657600b54610cc69082906001600160a01b031661119b565b506007805460ff60a01b191690555b6007546001600160a01b0386165f9081526010602052604090205460ff600160a01b909204821615911680610d2157506001600160a01b0385165f9081526010602052604090205460ff165b15610d2957505f5b8015610dab575f610d51612710610d4b600a54886111ed90919063ffffffff16565b9061126b565b6001600160a01b0387165f908152600f602052604090205490915060ff1615610d9257610d8f612710610d4b600954886111ed90919063ffffffff16565b90505b610d9c85826112ac565b9450610da987308361101b565b505b610db686868661101b565b505050505050565b5f8184841115610de15760405162461bcd60e51b81526004016106509190611461565b505f610ded848661163e565b95945050505050565b5f80610e02838561162b565b905083811015610e545760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610650565b9392505050565b6001600160a01b0382165f908152600f602052604090205481151560ff909116151503610ef05760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610650565b6001600160a01b038281165f818152600f60209081526040808320805460ff1916871515908117909155600183528184209589168452949091528082205f199055517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b6001600160a01b0382165f9081526010602052604081205460ff1680610f9857506001600160a01b0382165f9081526010602052604090205460ff165b80610e54575060125460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610fef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110139190611651565b119392505050565b6001600160a01b03831661107f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610650565b6001600160a01b0382166110e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610650565b61111d8160405180606001604052806026815260200161173d602691396001600160a01b0386165f908152602081905260409020549190610dbe565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461114b9082610df6565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a5e565b476111a5836112ed565b5f6111b047836112ac565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f193505050501580156111e6573d5f803e3d5ffd5b5050505050565b5f825f036111fc57505f61057e565b5f6112078385611668565b905082611214858361167f565b14610e545760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610650565b5f610e5483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611435565b5f610e5483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610dbe565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106113205761132061169e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b91906116b2565b816001815181106113ae576113ae61169e565b6001600160a01b0392831660209182029290920101526006546113d49130911684610947565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061140c9085905f908690309042906004016116cd565b5f604051808303815f87803b158015611423575f80fd5b505af1158015610db6573d5f803e3d5ffd5b5f81836114555760405162461bcd60e51b81526004016106509190611461565b505f610ded848661167f565b5f6020808352835180828501525f5b8181101561148c57858101830151858201604001528201611470565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610715575f80fd5b5f80604083850312156114d1575f80fd5b82356114dc816114ac565b946020939093013593505050565b5f805f606084860312156114fc575f80fd5b8335611507816114ac565b92506020840135611517816114ac565b929592945050506040919091013590565b5f60208284031215611538575f80fd5b8135610e54816114ac565b5f8060408385031215611554575f80fd5b823561155f816114ac565b915060208301358015158114611573575f80fd5b809150509250929050565b5f806040838503121561158f575f80fd5b823561159a816114ac565b91506020830135611573816114ac565b600181811c908216806115be57607f821691505b6020821081036115dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561057e5761057e611617565b8181038181111561057e5761057e611617565b5f60208284031215611661575f80fd5b5051919050565b808202811582820484141761057e5761057e611617565b5f8261169957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156116c2575f80fd5b8151610e54816114ac565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561171b5784516001600160a01b0316835293830193918301916001016116f6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce8ec55faf3d09fb58da3feb5cdbf188258d65e4a7055c6a2aee5d027eb0f64264736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000bafb302c4d7499f2457fa625afed6c22bdd6d0970000000000000000000000008ede99b9fd3a8fd92ad2d101594171157394b86d0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x60806040526004361061017e575f3560e01c806375f0a874116100cd578063a9059cbb11610087578063d36e823911610062578063d36e823914610438578063dd62ed3e1461044d578063e5e31b1314610491578063f2fde38b146104bf575f80fd5b8063a9059cbb146103e5578063c024666814610404578063cf1bfec314610423575f80fd5b806375f0a874146103475780638c0b5e22146103665780638da5cb5b1461037b578063953635141461039d57806395d89b41146103b2578063a457c2d7146103c6575f80fd5b8063395093511161013857806370a082311161011357806370a08231146102ca578063715018a6146102fe5780637231d21714610314578063751039fc14610333575f80fd5b8063395093511461027757806349bd5a5e146102965780636644206b146102b5575f80fd5b806306fdde0314610189578063095ea7b3146101b35780631694505e146101e257806318160ddd1461021957806323b872dd14610237578063313ce56714610256575f80fd5b3661018557005b5f80fd5b348015610194575f80fd5b5061019d6104de565b6040516101aa9190611461565b60405180910390f35b3480156101be575f80fd5b506101d26101cd3660046114c0565b61056e565b60405190151581526020016101aa565b3480156101ed575f80fd5b50600654610201906001600160a01b031681565b6040516001600160a01b0390911681526020016101aa565b348015610224575f80fd5b506002545b6040519081526020016101aa565b348015610242575f80fd5b506101d26102513660046114ea565b610584565b348015610261575f80fd5b5060055460405160ff90911681526020016101aa565b348015610282575f80fd5b506101d26102913660046114c0565b6105eb565b3480156102a1575f80fd5b50600754610201906001600160a01b031681565b3480156102c0575f80fd5b50610229600a5481565b3480156102d5575f80fd5b506102296102e4366004611528565b6001600160a01b03165f9081526020819052604090205490565b348015610309575f80fd5b50610312610620565b005b34801561031f575f80fd5b5061031261032e366004611528565b6106a8565b34801561033e575f80fd5b50610312610718565b348015610352575f80fd5b50600b54610201906001600160a01b031681565b348015610371575f80fd5b50610229600c5481565b348015610386575f80fd5b5060055461010090046001600160a01b0316610201565b3480156103a8575f80fd5b50610229600d5481565b3480156103bd575f80fd5b5061019d610756565b3480156103d1575f80fd5b506101d26103e03660046114c0565b610765565b3480156103f0575f80fd5b506101d26103ff3660046114c0565b6107b2565b34801561040f575f80fd5b5061031261041e366004611543565b6107be565b34801561042e575f80fd5b5061022960095481565b348015610443575f80fd5b5061022960085481565b348015610458575f80fd5b5061022961046736600461157e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561049c575f80fd5b506101d26104ab366004611528565b600f6020525f908152604090205460ff1681565b3480156104ca575f80fd5b506103126104d9366004611528565b61084c565b6060600380546104ed906115aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610519906115aa565b80156105645780601f1061053b57610100808354040283529160200191610564565b820191905f5260205f20905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b5f61057a338484610947565b5060015b92915050565b5f610590848484610a6b565b6105e184336105dc85604051806060016040528060288152602001611763602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610dbe565b610947565b5060019392505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161057a9185906105dc9086610df6565b6005546001600160a01b036101009091041633146106595760405162461bcd60e51b8152600401610650906115e2565b60405180910390fd5b6005546040515f9161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6005546001600160a01b036101009091041633146106d85760405162461bcd60e51b8152600401610650906115e2565b600780546001600160a01b03808416600161ff0160a01b031990921691909117600160a81b17918290556011546107159290821691166001610e5b565b50565b6005546001600160a01b036101009091041633146107485760405162461bcd60e51b8152600401610650906115e2565b600254600c55600254600d55565b6060600480546104ed906115aa565b5f61057a33846105dc8560405180606001604052806025815260200161178b60259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610dbe565b5f61057a338484610a6b565b6005546001600160a01b036101009091041633146107ee5760405162461bcd60e51b8152600401610650906115e2565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6005546001600160a01b0361010090910416331461087c5760405162461bcd60e51b8152600401610650906115e2565b6001600160a01b0381166108e15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166109a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610650565b6001600160a01b038216610a0a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610650565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600754600160a81b900460ff16610b04576005546001600160a01b038481166101009092041614610b045760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610650565b6001600160a01b0382161580610b2457506001600160a01b03821661dead145b80610b345750610b348383610f5b565b80610b3d575080155b15610b5257610b4d83838361101b565b505050565b600c54811115610bb55760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610650565b6007546001600160a01b03838116911614610c3f576001600160a01b0382165f90815260208190526040902054600d54610bef838361162b565b1115610c3d5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610650565b505b305f9081526020819052604090205460085481108015908190610c6c5750600754600160a01b900460ff16155b8015610c9057506001600160a01b0385165f908152600f602052604090205460ff16155b15610cd5576007805460ff60a01b1916600160a01b179055818015610cc657600b54610cc69082906001600160a01b031661119b565b506007805460ff60a01b191690555b6007546001600160a01b0386165f9081526010602052604090205460ff600160a01b909204821615911680610d2157506001600160a01b0385165f9081526010602052604090205460ff165b15610d2957505f5b8015610dab575f610d51612710610d4b600a54886111ed90919063ffffffff16565b9061126b565b6001600160a01b0387165f908152600f602052604090205490915060ff1615610d9257610d8f612710610d4b600954886111ed90919063ffffffff16565b90505b610d9c85826112ac565b9450610da987308361101b565b505b610db686868661101b565b505050505050565b5f8184841115610de15760405162461bcd60e51b81526004016106509190611461565b505f610ded848661163e565b95945050505050565b5f80610e02838561162b565b905083811015610e545760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610650565b9392505050565b6001600160a01b0382165f908152600f602052604090205481151560ff909116151503610ef05760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610650565b6001600160a01b038281165f818152600f60209081526040808320805460ff1916871515908117909155600183528184209589168452949091528082205f199055517f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b0319190a3505050565b6001600160a01b0382165f9081526010602052604081205460ff1680610f9857506001600160a01b0382165f9081526010602052604090205460ff165b80610e54575060125460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610fef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110139190611651565b119392505050565b6001600160a01b03831661107f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610650565b6001600160a01b0382166110e15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610650565b61111d8160405180606001604052806026815260200161173d602691396001600160a01b0386165f908152602081905260409020549190610dbe565b6001600160a01b038085165f90815260208190526040808220939093559084168152205461114b9082610df6565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a5e565b476111a5836112ed565b5f6111b047836112ac565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f193505050501580156111e6573d5f803e3d5ffd5b5050505050565b5f825f036111fc57505f61057e565b5f6112078385611668565b905082611214858361167f565b14610e545760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610650565b5f610e5483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611435565b5f610e5483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610dbe565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106113205761132061169e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b91906116b2565b816001815181106113ae576113ae61169e565b6001600160a01b0392831660209182029290920101526006546113d49130911684610947565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061140c9085905f908690309042906004016116cd565b5f604051808303815f87803b158015611423575f80fd5b505af1158015610db6573d5f803e3d5ffd5b5f81836114555760405162461bcd60e51b81526004016106509190611461565b505f610ded848661167f565b5f6020808352835180828501525f5b8181101561148c57858101830151858201604001528201611470565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610715575f80fd5b5f80604083850312156114d1575f80fd5b82356114dc816114ac565b946020939093013593505050565b5f805f606084860312156114fc575f80fd5b8335611507816114ac565b92506020840135611517816114ac565b929592945050506040919091013590565b5f60208284031215611538575f80fd5b8135610e54816114ac565b5f8060408385031215611554575f80fd5b823561155f816114ac565b915060208301358015158114611573575f80fd5b809150509250929050565b5f806040838503121561158f575f80fd5b823561159a816114ac565b91506020830135611573816114ac565b600181811c908216806115be57607f821691505b6020821081036115dc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561057e5761057e611617565b8181038181111561057e5761057e611617565b5f60208284031215611661575f80fd5b5051919050565b808202811582820484141761057e5761057e611617565b5f8261169957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156116c2575f80fd5b8151610e54816114ac565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561171b5784516001600160a01b0316835293830193918301916001016116f6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce8ec55faf3d09fb58da3feb5cdbf188258d65e4a7055c6a2aee5d027eb0f64264736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000bafb302c4d7499f2457fa625afed6c22bdd6d0970000000000000000000000008ede99b9fd3a8fd92ad2d101594171157394b86d0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : parameters (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : divRefInfo (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : uniswapV2Router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [3] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [4] : 000000000000000000000000bafb302c4d7499f2457fa625afed6c22bdd6d097
Arg [5] : 0000000000000000000000008ede99b9fd3a8fd92ad2d101594171157394b86d
Arg [6] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode Sourcemap
33641:6660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12736:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15121:210;;;;;;;;;;-1:-1:-1;15121:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;15121:210:0;1023:187:1;33721:39:0;;;;;;;;;;-1:-1:-1;33721:39:0;;;;-1:-1:-1;;;;;33721:39:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;33721:39:0;1215:228:1;13893:108:0;;;;;;;;;;-1:-1:-1;13981:12:0;;13893:108;;;1594:25:1;;;1582:2;1567:18;13893:108:0;1448:177:1;15823:454:0;;;;;;;;;;-1:-1:-1;15823:454:0;;;;;:::i;:::-;;:::i;13718:100::-;;;;;;;;;;-1:-1:-1;13801:9:0;;13718:100;;13801:9;;;;2233:36:1;;2221:2;2206:18;13718:100:0;2091:184:1;16696:300:0;;;;;;;;;;-1:-1:-1;16696:300:0;;;;;:::i;:::-;;:::i;33811:28::-;;;;;;;;;;-1:-1:-1;33811:28:0;;;;-1:-1:-1;;;;;33811:28:0;;;33978:27;;;;;;;;;;;;;;;;14074:177;;;;;;;;;;-1:-1:-1;14074:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;14225:18:0;14193:7;14225:18;;;;;;;;;;;;14074:177;31751:148;;;;;;;;;;;;;:::i;:::-;;36224:210;;;;;;;;;;-1:-1:-1;36224:210:0;;;;;:::i;:::-;;:::i;36442:123::-;;;;;;;;;;;;;:::i;34012:84::-;;;;;;;;;;-1:-1:-1;34012:84:0;;;;-1:-1:-1;;;;;34012:84:0;;;34103:26;;;;;;;;;;;;;;;;31109:79;;;;;;;;;;-1:-1:-1;31174:6:0;;;;;-1:-1:-1;;;;;31174:6:0;31109:79;;34136:22;;;;;;;;;;;;;;;;12955:104;;;;;;;;;;;;;:::i;17509:400::-;;;;;;;;;;-1:-1:-1;17509:400:0;;;;;:::i;:::-;;:::i;14474:216::-;;;;;;;;;;-1:-1:-1;14474:216:0;;;;;:::i;:::-;;:::i;36610:182::-;;;;;;;;;;-1:-1:-1;36610:182:0;;;;;:::i;:::-;;:::i;33943:28::-;;;;;;;;;;;;;;;;33907:27;;;;;;;;;;;;;;;;14763:201;;;;;;;;;;-1:-1:-1;14763:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;14929:18:0;;;14897:7;14929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14763:201;34356:38;;;;;;;;;;-1:-1:-1;34356:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32054:281;;;;;;;;;;-1:-1:-1;32054:281:0;;;;;:::i;:::-;;:::i;12736:100::-;12790:13;12823:5;12816:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12736:100;:::o;15121:210::-;15240:4;15262:39;2389:10;15285:7;15294:6;15262:8;:39::i;:::-;-1:-1:-1;15319:4:0;15121:210;;;;;:::o;15823:454::-;15963:4;15980:36;15990:6;15998:9;16009:6;15980:9;:36::i;:::-;16027:220;16050:6;2389:10;16098:138;16154:6;16098:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16098:19:0;;;;;;:11;:19;;;;;;;;2389:10;16098:33;;;;;;;;;;:37;:138::i;:::-;16027:8;:220::i;:::-;-1:-1:-1;16265:4:0;15823:454;;;;;:::o;16696:300::-;2389:10;16811:4;16905:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16905:34:0;;;;;;;;;;16811:4;;16833:133;;16883:7;;16905:50;;16944:10;16905:38;:50::i;31751:148::-;31321:6;;-1:-1:-1;;;;;31321:6:0;;;;;2389:10;31321:22;31313:67;;;;-1:-1:-1;;;31313:67:0;;;;;;;:::i;:::-;;;;;;;;;31842:6:::1;::::0;31821:40:::1;::::0;31858:1:::1;::::0;31842:6:::1;::::0;::::1;-1:-1:-1::0;;;;;31842:6:0::1;::::0;31821:40:::1;::::0;31858:1;;31821:40:::1;31872:6;:19:::0;;-1:-1:-1;;;;;;31872:19:0::1;::::0;;31751:148::o;36224:210::-;31321:6;;-1:-1:-1;;;;;31321:6:0;;;;;2389:10;31321:22;31313:67;;;;-1:-1:-1;;;31313:67:0;;;;;;;:::i;:::-;36300:11:::1;:18:::0;;-1:-1:-1;;;;;36319:30:0;;::::1;-1:-1:-1::0;;;;;;36319:30:0;;;;;;;-1:-1:-1;;;36319:30:0;;;;;36389:3:::1;:15:::0;36360:66:::1;::::0;36389:15;;::::1;::::0;36406:13:::1;36314:4;36360:28;:66::i;:::-;36224:210:::0;:::o;36442:123::-;31321:6;;-1:-1:-1;;;;;31321:6:0;;;;;2389:10;31321:22;31313:67;;;;-1:-1:-1;;;31313:67:0;;;;;;;:::i;:::-;13981:12;;36496:11:::1;:27:::0;13981:12;;36534:7:::1;:23:::0;36442:123::o;12955:104::-;13011:13;13044:7;13037:14;;;;;:::i;17509:400::-;17629:4;17651:228;2389:10;17701:7;17723:145;17780:15;17723:145;;;;;;;;;;;;;;;;;2389:10;17723:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17723:34:0;;;;;;;;;;;;:38;:145::i;14474:216::-;14596:4;14618:42;2389:10;14642:9;14653:6;14618:9;:42::i;36610:182::-;31321:6;;-1:-1:-1;;;;;31321:6:0;;;;;2389:10;31321:22;31313:67;;;;-1:-1:-1;;;31313:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36695:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;36695:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36750:34;;1163:41:1;;;36750:34:0::1;::::0;1136:18:1;36750:34:0::1;;;;;;;36610:182:::0;;:::o;32054:281::-;31321:6;;-1:-1:-1;;;;;31321:6:0;;;;;2389:10;31321:22;31313:67;;;;-1:-1:-1;;;31313:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32157:22:0;::::1;32135:110;;;::::0;-1:-1:-1;;;32135:110:0;;4502:2:1;32135:110:0::1;::::0;::::1;4484:21:1::0;4541:2;4521:18;;;4514:30;4580:34;4560:18;;;4553:62;-1:-1:-1;;;4631:18:1;;;4624:36;4677:19;;32135:110:0::1;4300:402:1::0;32135:110:0::1;32282:6;::::0;32261:38:::1;::::0;-1:-1:-1;;;;;32261:38:0;;::::1;::::0;32282:6:::1;::::0;::::1;;::::0;32261:38:::1;::::0;;;::::1;32310:6;:17:::0;;-1:-1:-1;;;;;32310:17:0;;::::1;;;-1:-1:-1::0;;;;;;32310:17:0;;::::1;::::0;;;::::1;::::0;;32054:281::o;20900:380::-;-1:-1:-1;;;;;21036:19:0;;21028:68;;;;-1:-1:-1;;;21028:68:0;;4909:2:1;21028:68:0;;;4891:21:1;4948:2;4928:18;;;4921:30;4987:34;4967:18;;;4960:62;-1:-1:-1;;;5038:18:1;;;5031:34;5082:19;;21028:68:0;4707:400:1;21028:68:0;-1:-1:-1;;;;;21115:21:0;;21107:68;;;;-1:-1:-1;;;21107:68:0;;5314:2:1;21107:68:0;;;5296:21:1;5353:2;5333:18;;;5326:30;5392:34;5372:18;;;5365:62;-1:-1:-1;;;5443:18:1;;;5436:32;5485:19;;21107:68:0;5112:398:1;21107:68:0;-1:-1:-1;;;;;21188:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21240:32;;1594:25:1;;;21240:32:0;;1567:18:1;21240:32:0;;;;;;;;20900:380;;;:::o;37402:1995::-;37531:11;;-1:-1:-1;;;37531:11:0;;;;37526:186;;31174:6;;-1:-1:-1;;;;;37585:15:0;;;31174:6;;;;;37585:15;37559:141;;;;-1:-1:-1;;;37559:141:0;;5717:2:1;37559:141:0;;;5699:21:1;5756:2;5736:18;;;5729:30;5795:34;5775:18;;;5768:62;5866:33;5846:18;;;5839:61;5917:19;;37559:141:0;5515:427:1;37559:141:0;-1:-1:-1;;;;;37741:16:0;;;;:41;;-1:-1:-1;;;;;;37761:21:0;;37775:6;37761:21;37741:41;37740:98;;;;37814:24;37829:4;37835:2;37814:14;:24::i;:::-;37740:140;;;-1:-1:-1;37869:11:0;;37740:140;37722:697;;;37907:33;37923:4;37929:2;37933:6;37907:15;:33::i;:::-;37402:1995;;;:::o;37722:697::-;38030:11;;38020:6;:21;;37994:123;;;;-1:-1:-1;;;37994:123:0;;6149:2:1;37994:123:0;;;6131:21:1;6188:2;6168:18;;;6161:30;6227:34;6207:18;;;6200:62;-1:-1:-1;;;6278:18:1;;;6271:38;6326:19;;37994:123:0;5947:404:1;37994:123:0;38144:13;;-1:-1:-1;;;;;38138:19:0;;;38144:13;;38138:19;38134:274;;-1:-1:-1;;;;;14225:18:0;;38178:32;14225:18;;;;;;;;;;;38312:7;;38275:33;38302:6;14225:18;38275:33;:::i;:::-;:44;;38245:147;;;;-1:-1:-1;;;38245:147:0;;6820:2:1;38245:147:0;;;6802:21:1;6859:2;6839:18;;;6832:30;6898:31;6878:18;;;6871:59;6947:18;;38245:147:0;6618:353:1;38245:147:0;38159:249;38134:274;38478:4;38429:28;14225:18;;;;;;;;;;;38534:12;;38510:36;;;;;;;38561:22;;-1:-1:-1;38573:10:0;;-1:-1:-1;;;38573:10:0;;;;38572:11;38561:22;:39;;;;-1:-1:-1;;;;;;38588:12:0;;;;;;:6;:12;;;;;;;;38587:13;38561:39;38557:313;;;38617:10;:17;;-1:-1:-1;;;;38617:17:0;-1:-1:-1;;;38617:17:0;;;38677:20;38718:19;;38714:110;;38792:15;;38758:50;;38775:15;;-1:-1:-1;;;;;38792:15:0;38758:16;:50::i;:::-;-1:-1:-1;38840:10:0;:18;;-1:-1:-1;;;;38840:18:0;;;38557:313;38898:10;;-1:-1:-1;;;;;38923:23:0;;38882:12;38923:23;;;:17;:23;;;;;;38898:10;-1:-1:-1;;;38898:10:0;;;;;38897:11;;38923:23;;:48;;-1:-1:-1;;;;;;38950:21:0;;;;;;:17;:21;;;;;;;;38923:48;38919:96;;;-1:-1:-1;38998:5:0;38919:96;39031:7;39027:317;;;39055:17;39075:35;39104:5;39075:24;39086:12;;39075:6;:10;;:24;;;;:::i;:::-;:28;;:35::i;:::-;-1:-1:-1;;;;;39129:10:0;;;;;;:6;:10;;;;;;39055:55;;-1:-1:-1;39129:10:0;;39125:99;;;39172:36;39202:5;39172:25;39183:13;;39172:6;:10;;:25;;;;:::i;:36::-;39160:48;;39125:99;39247:21;:6;39258:9;39247:10;:21::i;:::-;39238:30;;39285:47;39301:4;39315;39322:9;39285:15;:47::i;:::-;39040:304;39027:317;39356:33;39372:4;39378:2;39382:6;39356:15;:33::i;:::-;37515:1882;;;37402:1995;;;:::o;3821:226::-;3941:7;3977:12;3969:6;;;;3961:29;;;;-1:-1:-1;;;3961:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4001:9:0;4013:5;4017:1;4013;:5;:::i;:::-;4001:17;3821:226;-1:-1:-1;;;;;3821:226:0:o;2918:181::-;2976:7;;3008:5;3012:1;3008;:5;:::i;:::-;2996:17;;3037:1;3032;:6;;3024:46;;;;-1:-1:-1;;;3024:46:0;;7311:2:1;3024:46:0;;;7293:21:1;7350:2;7330:18;;;7323:30;7389:29;7369:18;;;7362:57;7436:18;;3024:46:0;7109:351:1;3024:46:0;3090:1;2918:181;-1:-1:-1;;;2918:181:0:o;36800:353::-;-1:-1:-1;;;;;36921:12:0;;;;;;:6;:12;;;;;;:21;;;:12;;;;:21;;;36899:127;;;;-1:-1:-1;;;36899:127:0;;7667:2:1;36899:127:0;;;7649:21:1;7706:2;7686:18;;;7679:30;7745:34;7725:18;;;7718:62;7816:26;7796:18;;;7789:54;7860:19;;36899:127:0;7465:420:1;36899:127:0;-1:-1:-1;;;;;37037:12:0;;;;;;;:6;:12;;;;;;;;:20;;-1:-1:-1;;37037:20:0;;;;;;;;;;-1:-1:-1;37059:17:0;;;;;:25;;;;;;;;;;;;-1:-1:-1;;37059:42:0;;37119:26;;;37037:12;37119:26;36800:353;;;:::o;37161:233::-;-1:-1:-1;;;;;37253:23:0;;37229:4;37253:23;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;37280:21:0;;;;;;:17;:21;;;;;;;;37253:48;:133;;;-1:-1:-1;37332:16:0;;37318:64;;-1:-1:-1;;;37318:64:0;;-1:-1:-1;;;;;8120:15:1;;;37318:64:0;;;8102:34:1;8172:15;;;8152:18;;;8145:43;37385:1:0;;37332:16;;37318:54;;8037:18:1;;37318:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;37246:140;37161:233;-1:-1:-1;;;37161:233:0:o;18399:610::-;-1:-1:-1;;;;;18539:20:0;;18531:70;;;;-1:-1:-1;;;18531:70:0;;8590:2:1;18531:70:0;;;8572:21:1;8629:2;8609:18;;;8602:30;8668:34;8648:18;;;8641:62;-1:-1:-1;;;8719:18:1;;;8712:35;8764:19;;18531:70:0;8388:401:1;18531:70:0;-1:-1:-1;;;;;18620:23:0;;18612:71;;;;-1:-1:-1;;;18612:71:0;;8996:2:1;18612:71:0;;;8978:21:1;9035:2;9015:18;;;9008:30;9074:34;9054:18;;;9047:62;-1:-1:-1;;;9125:18:1;;;9118:33;9168:19;;18612:71:0;8794:399:1;18612:71:0;18776:108;18812:6;18776:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18776:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;18756:17:0;;;:9;:17;;;;;;;;;;;:128;;;;18918:20;;;;;;;:32;;18943:6;18918:24;:32::i;:::-;-1:-1:-1;;;;;18895:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18966:35;1594:25:1;;;18895:20:0;;18966:35;;;;;;1567:18:1;18966:35:0;1448:177:1;39405:296:0;39509:21;39543:24;39560:6;39543:16;:24::i;:::-;39580:18;39601:41;:21;39627:14;39601:25;:41::i;:::-;39655:38;;39580:62;;-1:-1:-1;;;;;;39655:26:0;;;:38;;;;;39580:62;;39655:38;;;;39580:62;39655:26;:38;;;;;;;;;;;;;;;;;;;;;39473:228;;39405:296;;:::o;4306:471::-;4364:7;4609:1;4614;4609:6;4605:47;;-1:-1:-1;4639:1:0;4632:8;;4605:47;4664:9;4676:5;4680:1;4676;:5;:::i;:::-;4664:17;-1:-1:-1;4709:1:0;4700:5;4704:1;4664:17;4700:5;:::i;:::-;:10;4692:56;;;;-1:-1:-1;;;4692:56:0;;9795:2:1;4692:56:0;;;9777:21:1;9834:2;9814:18;;;9807:30;9873:34;9853:18;;;9846:62;-1:-1:-1;;;9924:18:1;;;9917:31;9965:19;;4692:56:0;9593:397:1;5253:132:0;5311:7;5338:39;5342:1;5345;5338:39;;;;;;;;;;;;;;;;;:3;:39::i;3382:136::-;3440:7;3467:43;3471:1;3474;3467:43;;;;;;;;;;;;;;;;;:3;:43::i;39709:589::-;39859:16;;;39873:1;39859:16;;;;;;;;39835:21;;39859:16;;;;;;;;;;-1:-1:-1;39859:16:0;39835:40;;39904:4;39886;39891:1;39886:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39886:23:0;;;:7;;;;;;;;;;:23;;;;39930:15;;:22;;;-1:-1:-1;;;39930:22:0;;;;:15;;;;;:20;;:22;;;;;39886:7;;39930:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39920:4;39925:1;39920:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39920:32:0;;;:7;;;;;;;;;:32;39997:15;;39965:62;;39982:4;;39997:15;40015:11;39965:8;:62::i;:::-;40066:15;;:224;;-1:-1:-1;;;40066:224:0;;-1:-1:-1;;;;;40066:15:0;;;;:66;;:224;;40147:11;;40066:15;;40217:4;;40244;;40264:15;;40066:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5881:312;6001:7;6036:12;6029:5;6021:28;;;;-1:-1:-1;;;6021:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6060:9:0;6072:5;6076:1;6072;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1630:456::-;1707:6;1715;1723;1776:2;1764:9;1755:7;1751:23;1747:32;1744:52;;;1792:1;1789;1782:12;1744:52;1831:9;1818:23;1850:31;1875:5;1850:31;:::i;:::-;1900:5;-1:-1:-1;1957:2:1;1942:18;;1929:32;1970:33;1929:32;1970:33;:::i;:::-;1630:456;;2022:7;;-1:-1:-1;;;2076:2:1;2061:18;;;;2048:32;;1630:456::o;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674:31;:::i;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:380::-;3633:1;3629:12;;;;3676;;;3697:61;;3751:4;3743:6;3739:17;3729:27;;3697:61;3804:2;3796:6;3793:14;3773:18;3770:38;3767:161;;3850:10;3845:3;3841:20;3838:1;3831:31;3885:4;3882:1;3875:15;3913:4;3910:1;3903:15;3767:161;;3554:380;;;:::o;3939:356::-;4141:2;4123:21;;;4160:18;;;4153:30;4219:34;4214:2;4199:18;;4192:62;4286:2;4271:18;;3939:356::o;6356:127::-;6417:10;6412:3;6408:20;6405:1;6398:31;6448:4;6445:1;6438:15;6472:4;6469:1;6462:15;6488:125;6553:9;;;6574:10;;;6571:36;;;6587:18;;:::i;6976:128::-;7043:9;;;7064:11;;;7061:37;;;7078:18;;:::i;8199:184::-;8269:6;8322:2;8310:9;8301:7;8297:23;8293:32;8290:52;;;8338:1;8335;8328:12;8290:52;-1:-1:-1;8361:16:1;;8199:184;-1:-1:-1;8199:184:1:o;9198:168::-;9271:9;;;9302;;9319:15;;;9313:22;;9299:37;9289:71;;9340:18;;:::i;9371:217::-;9411:1;9437;9427:132;;9481:10;9476:3;9472:20;9469:1;9462:31;9516:4;9513:1;9506:15;9544:4;9541:1;9534:15;9427:132;-1:-1:-1;9573:9:1;;9371:217::o;10127:127::-;10188:10;10183:3;10179:20;10176:1;10169:31;10219:4;10216:1;10209:15;10243:4;10240:1;10233:15;10259:251;10329:6;10382:2;10370:9;10361:7;10357:23;10353:32;10350:52;;;10398:1;10395;10388:12;10350:52;10430:9;10424:16;10449:31;10474:5;10449:31;:::i;10515:980::-;10777:4;10825:3;10814:9;10810:19;10856:6;10845:9;10838:25;10882:2;10920:6;10915:2;10904:9;10900:18;10893:34;10963:3;10958:2;10947:9;10943:18;10936:31;10987:6;11022;11016:13;11053:6;11045;11038:22;11091:3;11080:9;11076:19;11069:26;;11130:2;11122:6;11118:15;11104:29;;11151:1;11161:195;11175:6;11172:1;11169:13;11161:195;;;11240:13;;-1:-1:-1;;;;;11236:39:1;11224:52;;11331:15;;;;11296:12;;;;11272:1;11190:9;11161:195;;;-1:-1:-1;;;;;;;11412:32:1;;;;11407:2;11392:18;;11385:60;-1:-1:-1;;;11476:3:1;11461:19;11454:35;11373:3;10515:980;-1:-1:-1;;;10515:980:1:o
Swarm Source
ipfs://ce8ec55faf3d09fb58da3feb5cdbf188258d65e4a7055c6a2aee5d027eb0f642
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.