ERC-20
Overview
Max Total Supply
1,000,000,000 HOLE
Holders
500
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
90,189.014720170053794324 HOLEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GuysHoleToken
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/******************************* Telegram: https://t.me/HoleGuys X: https://x.com/HoleGuysEth Website: https://holeguys.com *******************************/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "./HOLEDividends.sol"; contract GuysHoleToken is Ownable, ERC20 { IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); HOLEDividends public dividends; uint256 public swapBackAt; uint256 public maxWallet; uint256 totalFee = 5; uint256 dividendsFee = 3; bool private inSwap = false; address public marketingWallet; address public developmentWallet; address public uniswapV2Pair; mapping(address => uint256) public receiveBlock; constructor(address _owner) ERC20("Guys", "HOLE") { uint256 totalSupply = 1_000_000_000 ether; swapBackAt = (totalSupply * 1) / 1000; // 0.1% maxWallet = (totalSupply * 1) / 100; // 1% uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); dividends = new HOLEDividends(); dividends.excludeFromDividends(owner()); dividends.excludeFromDividends(_owner); dividends.excludeFromDividends(address(this)); dividends.excludeFromDividends(address(dividends)); dividends.excludeFromDividends(address(router)); dividends.excludeFromDividends(uniswapV2Pair); dividends.excludeFromDividends(address(0xdead)); dividends.excludeFromDividends(address(0)); marketingWallet = 0xc91932Bfb917F55407844bD6668D2F57D3e8eD66; developmentWallet = 0xbaA82C662B8305A8882BAE2a91FD2D59A8cCb7eb; _mint(_owner, totalSupply); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); dividends.setBalance(payable(msg.sender)); } function setMarketingWallet(address _marketingWallet) external onlyOwner { marketingWallet = _marketingWallet; } function setDevelopmentWallet(address _developmentWallet) external onlyOwner { developmentWallet = _developmentWallet; } function setDividends(address _dividends) external onlyOwner { dividends = HOLEDividends(payable(_dividends)); dividends.excludeFromDividends(address(dividends)); dividends.excludeFromDividends(address(this)); dividends.excludeFromDividends(owner()); dividends.excludeFromDividends(uniswapV2Pair); dividends.excludeFromDividends(address(router)); } function setFee(uint256 _totalFee, uint256 _dividendsFee) external onlyOwner { require(_totalFee <= 5 && _dividendsFee <= _totalFee); totalFee = _totalFee; dividendsFee = _dividendsFee; } function setMaxHoldingPercent(uint256 percent) public onlyOwner { require(percent >= 1 && percent <= 100, "Invalid percent"); maxWallet = (totalSupply() * percent) / 100; } function setSwapBackAt(uint256 value) external onlyOwner { require(value <= totalSupply() / 50); swapBackAt = value; } function stats(address account) external view returns (uint256 withdrawableDividends, uint256 totalDividends) { (, withdrawableDividends, totalDividends) = dividends.getAccount( account ); } function claim() external { dividends.claim(msg.sender); } function _transfer( address from, address to, uint256 amount ) internal override { if ( from == uniswapV2Pair && to != address(this) && to != owner() && to != address(router) ) { require(super.balanceOf(to) + amount <= maxWallet, "Max wallet"); } uint256 swapAmount = balanceOf(address(this)); if (swapAmount > swapBackAt) { swapAmount = swapBackAt; } if ( swapBackAt > 0 && swapAmount == swapBackAt && !inSwap && from != uniswapV2Pair ) { inSwap = true; swapTokensForETH(swapAmount); uint256 balance = address(this).balance; if (balance > 0) { withdraw(balance); } inSwap = false; } if ( totalFee > 0 && from != address(this) && from != owner() && from != address(router) && (from == uniswapV2Pair || to == uniswapV2Pair) ) { uint256 feeTokens = (amount * totalFee) / 100; amount -= feeTokens; super._transfer(from, address(this), feeTokens); } super._transfer(from, to, amount); dividends.setBalance(payable(from)); dividends.setBalance(payable(to)); } function swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendFunds(address user, uint256 value) internal { if (value > 0) { (bool success, ) = user.call{value: value}(""); success; } } function withdraw(uint256 amount) internal { uint256 dividendsShare = totalFee > 0 ? (dividendsFee * 10000) / totalFee : 0; uint256 toDividends = (amount * dividendsShare) / 10000; uint256 toMarketing = (amount - toDividends); uint256 toDevelopment = toMarketing; sendFunds(marketingWallet, toMarketing); sendFunds(developmentWallet, toDevelopment); sendFunds(address(dividends), toDividends); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "@openzeppelin/[email protected]/access/Ownable.sol"; import "./utils/DividendPayingToken.sol"; contract HOLEDividends is DividendPayingToken, Ownable { error UnauthorizedAccount(address account); error InvalidDeployerAccount(address account); using SafeMath for uint256; using SafeMathInt for int256; IERC20 token; mapping(address => bool) public excludedFromDividends; bool noWarning; address private _deployer; uint256 public closeTime; uint256 public constant claimGracePeriod = 30 days; event ExcludeFromDividends(address indexed account); event Claim( address indexed account, uint256 amount, bool indexed automatic ); constructor() DividendPayingToken("HOLE_Dividends", "HOLE_Dividends") { _deployer = tx.origin; token = IERC20(msg.sender); } modifier onlyDeployer() { _checkDeployer(); _; } function deployer() public view virtual returns (address) { return _deployer; } function _checkDeployer() internal view virtual { if (deployer() != _msgSender()) { revert UnauthorizedAccount(_msgSender()); } } function renounceAsDeployer() public virtual onlyDeployer { _transferDeployer(address(0)); } function transferDeployer(address newDeployer) public virtual onlyDeployer { if (newDeployer == address(0)) { revert InvalidDeployerAccount(address(0)); } _transferDeployer(newDeployer); } function _transferDeployer(address newDeployer) internal virtual { _deployer = newDeployer; } function _transfer( address, address, uint256 ) internal override { require(false, "No transfers allowed"); noWarning = noWarning; } function withdrawDividend() public override { require( false, "withdrawDividend disabled. Use the 'claim' function on the main token contract." ); noWarning = noWarning; } function claim(address account) external onlyOwner { require( closeTime == 0 || block.timestamp < closeTime + claimGracePeriod, "closed" ); _withdrawDividendOfUser(payable(account)); } function excludeFromDividends(address account) external onlyOwner { excludedFromDividends[account] = true; _setBalance(account, 0); emit ExcludeFromDividends(account); } function getAccount(address _account) public view returns ( address account, uint256 withdrawableDividends, uint256 totalDividends ) { account = _account; withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); } function setBalance(address payable account) external { if (excludedFromDividends[account]) { return; } _setBalance(account, token.balanceOf(account)); } //If the dividend contract needs to be updated, we can close //this one, and let people claim for a month //After that is over, we can take the remaining funds and //use for the project function close() external onlyDeployer { require(closeTime == 0, "cannot take yet"); closeTime = block.timestamp; } //Only allows funds to be taken if contract has been closed for a month function takeFunds() external onlyDeployer { require( closeTime >= 0 && block.timestamp >= closeTime + claimGracePeriod, "already closed" ); (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/utils/math/SafeMath.sol"; import "./math/SafeMathUint.sol"; import "./math/SafeMathInt.sol"; contract DividendPayingToken is ERC20 { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 internal constant magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; event DividendsDistributed(address user, uint256 amount); event DividendWithdrawn(address user, uint256 amount); constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {} /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public payable virtual { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add( msg.value ); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add( _withdrawableDividend ); emit DividendWithdrawn(user, _withdrawableDividend); (bool success, ) = user.call{ value: _withdrawableDividend, gas: 3000 }(""); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub( _withdrawableDividend ); return 0; } return _withdrawableDividend; } return 0; } /// @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 dividendOf(address _owner) public view returns (uint256) { return withdrawableDividendOf(_owner); } /// @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) public view returns (uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @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) public view returns (uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @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) public view returns (uint256) { return magnifiedDividendPerShare .mul(balanceOf(_owner)) .toInt256Safe() .add(magnifiedDividendCorrections[_owner]) .toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer( address from, address to, uint256 value ) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare .mul(value) .toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from] .add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub( _magCorrection ); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].sub((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[ account ].add((magnifiedDividendPerShare.mul(value)).toInt256Safe()); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if (newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if (newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ 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); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (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 generally not needed starting with Solidity 0.8, since 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 subtraction 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; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 {IERC20-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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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 {IERC20-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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","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":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividends","outputs":[{"internalType":"contract HOLEDividends","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":[{"internalType":"address","name":"","type":"address"}],"name":"receiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dividends","type":"address"}],"name":"setDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFee","type":"uint256"},{"internalType":"uint256","name":"_dividendsFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxHoldingPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapBackAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"stats","outputs":[{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapBackAt","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d60805260056009556003600a55600b805460ff191690553480156200003c575f80fd5b5060405162003d0838038062003d088339810160408190526200005f9162000754565b604051806040016040528060048152602001634775797360e01b81525060405180604001604052806004815260200163484f4c4560e01b815250620000b3620000ad6200062860201b60201c565b6200062c565b6004620000c1838262000822565b506005620000d0828262000822565b506b033b2e3c9fd0803ce800000091506103e89050620000f2826001620008fe565b620000fe91906200091e565b600755606462000110826001620008fe565b6200011c91906200091e565b6008819055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000161573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000187919062000754565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001fb919062000754565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000754565b600d80546001600160a01b0319166001600160a01b03929092169190911790556040516200029a9062000746565b604051809103905ff080158015620002b4573d5f803e3d5ffd5b50600680546001600160a01b0319166001600160a01b039290921691821790556331e79db0620002eb5f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024015f604051808303815f87803b1580156200032a575f80fd5b505af11580156200033d573d5f803e3d5ffd5b505060065460405163031e79db60e41b81526001600160a01b03868116600483015290911692506331e79db091506024015f604051808303815f87803b15801562000386575f80fd5b505af115801562000399573d5f803e3d5ffd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db091506024015f604051808303815f87803b158015620003e0575f80fd5b505af1158015620003f3573d5f803e3d5ffd5b505060065460405163031e79db60e41b81526001600160a01b039091166004820181905292506331e79db091506024015f604051808303815f87803b1580156200043b575f80fd5b505af11580156200044e573d5f803e3d5ffd5b505060065460805160405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db091506024015f604051808303815f87803b15801562000499575f80fd5b505af1158015620004ac573d5f803e3d5ffd5b5050600654600d5460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db091506024015f604051808303815f87803b158015620004f7575f80fd5b505af11580156200050a573d5f803e3d5ffd5b505060065460405163031e79db60e41b815261dead60048201526001600160a01b0390911692506331e79db091506024015f604051808303815f87803b15801562000553575f80fd5b505af115801562000566573d5f803e3d5ffd5b505060065460405163031e79db60e41b81525f60048201526001600160a01b0390911692506331e79db091506024015f604051808303815f87803b158015620005ad575f80fd5b505af1158015620005c0573d5f803e3d5ffd5b5050600b805474c91932bfb917f55407844bd6668d2f57d3e8ed6600610100600160a81b03199091161790555050600c80546001600160a01b03191673baa82c662b8305a8882bae2a91fd2d59a8ccb7eb1790556200062082826200067b565b505062000954565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620006d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f828254620006e991906200093e565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b61195c80620023ac83390190565b5f6020828403121562000765575f80fd5b81516001600160a01b03811681146200077c575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620007ac57607f821691505b602082108103620007cb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000741575f81815260208120601f850160051c81016020861015620007f95750805b601f850160051c820191505b818110156200081a5782815560010162000805565b505050505050565b81516001600160401b038111156200083e576200083e62000783565b62000856816200084f845462000797565b84620007d1565b602080601f8311600181146200088c575f8415620008745750858301515b5f19600386901b1c1916600185901b1785556200081a565b5f85815260208120601f198616915b82811015620008bc578886015182559484019460019091019084016200089b565b5085821015620008da57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620009185762000918620008ea565b92915050565b5f826200093957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620009185762000918620008ea565b608051611a1c620009905f395f8181610ade01528181610e7901528181610fe601528181611319015281816113d0015261140c0152611a1c5ff3fe6080604052600436106101c7575f3560e01c806370a08231116100f257806395d89b4111610092578063c04a541411610062578063c04a541414610539578063dd62ed3e14610558578063f2fde38b14610577578063f8b45b0514610596575f80fd5b806395d89b41146104c85780639e9188ea146104dc578063a457c2d7146104fb578063a9059cbb1461051a575f80fd5b806375f0a874116100cd57806375f0a8741461043f5780638bcdcbf3146104635780638da5cb5b146104975780639217383f146104b3575f80fd5b806370a08231146103d8578063715018a61461040c57806372ac248614610420575f80fd5b806335d97405116101685780634e71d92d116101385780634e71d92d1461036757806352f7c9881461037b578063549d41e21461039a5780635d098b38146103b9575f80fd5b806335d97405146102d3578063395093511461030a57806342966c681461032957806349bd5a5e14610348575f80fd5b8063098fec39116101a3578063098fec391461024c57806318160ddd1461028557806323b872dd14610299578063313ce567146102b8575f80fd5b806216bd6c146101d257806306fdde03146101f3578063095ea7b31461021d575f80fd5b366101ce57005b5f80fd5b3480156101dd575f80fd5b506101f16101ec366004611715565b6105ab565b005b3480156101fe575f80fd5b5061020761062e565b604051610214919061172c565b60405180910390f35b348015610228575f80fd5b5061023c61023736600461178b565b6106be565b6040519015158152602001610214565b348015610257575f80fd5b506102776102663660046117b5565b600e6020525f908152604090205481565b604051908152602001610214565b348015610290575f80fd5b50600354610277565b3480156102a4575f80fd5b5061023c6102b33660046117d7565b6106d7565b3480156102c3575f80fd5b5060405160128152602001610214565b3480156102de575f80fd5b506006546102f2906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b348015610315575f80fd5b5061023c61032436600461178b565b6106fa565b348015610334575f80fd5b506101f1610343366004611715565b61071b565b348015610353575f80fd5b50600d546102f2906001600160a01b031681565b348015610372575f80fd5b506101f1610781565b348015610386575f80fd5b506101f1610395366004611815565b6107db565b3480156103a5575f80fd5b506101f16103b4366004611715565b610807565b3480156103c4575f80fd5b506101f16103d33660046117b5565b610834565b3480156103e3575f80fd5b506102776103f23660046117b5565b6001600160a01b03165f9081526001602052604090205490565b348015610417575f80fd5b506101f1610864565b34801561042b575f80fd5b506101f161043a3660046117b5565b610877565b34801561044a575f80fd5b50600b546102f29061010090046001600160a01b031681565b34801561046e575f80fd5b5061048261047d3660046117b5565b6108a1565b60408051928352602083019190915201610214565b3480156104a2575f80fd5b505f546001600160a01b03166102f2565b3480156104be575f80fd5b5061027760075481565b3480156104d3575f80fd5b5061020761091b565b3480156104e7575f80fd5b506101f16104f63660046117b5565b61092a565b348015610506575f80fd5b5061023c61051536600461178b565b610b18565b348015610525575f80fd5b5061023c61053436600461178b565b610b92565b348015610544575f80fd5b50600c546102f2906001600160a01b031681565b348015610563575f80fd5b50610277610572366004611835565b610b9f565b348015610582575f80fd5b506101f16105913660046117b5565b610bc9565b3480156105a1575f80fd5b5061027760085481565b6105b3610c42565b600181101580156105c5575060648111155b6106085760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081c195c98d95b9d608a1b60448201526064015b60405180910390fd5b60648161061460035490565b61061e9190611880565b6106289190611897565b60085550565b60606004805461063d906118b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610669906118b6565b80156106b45780601f1061068b576101008083540402835291602001916106b4565b820191905f5260205f20905b81548152906001019060200180831161069757829003601f168201915b5050505050905090565b5f336106cb818585610c9b565b60019150505b92915050565b5f336106e4858285610dbf565b6106ef858585610e31565b506001949350505050565b5f336106cb81858561070c8383610b9f565b61071691906118ee565b610c9b565b610725338261114b565b600654604051639eda069f60e01b81523360048201526001600160a01b0390911690639eda069f906024015b5f604051808303815f87803b158015610768575f80fd5b505af115801561077a573d5f803e3d5ffd5b5050505050565b600654604051630f41a04d60e11b81523360048201526001600160a01b0390911690631e83409a906024015f604051808303815f87803b1580156107c3575f80fd5b505af11580156107d5573d5f803e3d5ffd5b50505050565b6107e3610c42565b600582111580156107f45750818111155b6107fc575f80fd5b600991909155600a55565b61080f610c42565b603261081a60035490565b6108249190611897565b81111561082f575f80fd5b600755565b61083c610c42565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61086c610c42565b6108755f611275565b565b61087f610c42565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60065460405163fbcbc0f160e01b81526001600160a01b0383811660048301525f92839291169063fbcbc0f190602401606060405180830381865afa1580156108ec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109109190611901565b909590945092505050565b60606005805461063d906118b6565b610932610c42565b600680546001600160a01b0319166001600160a01b03831690811790915560405163031e79db60e41b8152600481018290526331e79db0906024015f604051808303815f87803b158015610984575f80fd5b505af1158015610996573d5f803e3d5ffd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db091506024015f604051808303815f87803b1580156109dc575f80fd5b505af11580156109ee573d5f803e3d5ffd5b50506006546001600160a01b031691506331e79db09050610a165f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024015f604051808303815f87803b158015610a54575f80fd5b505af1158015610a66573d5f803e3d5ffd5b5050600654600d5460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db091506024015f604051808303815f87803b158015610ab0575f80fd5b505af1158015610ac2573d5f803e3d5ffd5b505060065460405163031e79db60e41b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015290911692506331e79db09150602401610751565b5f3381610b258286610b9f565b905083811015610b855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105ff565b6106ef8286868403610c9b565b5f336106cb818585610e31565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b610bd1610c42565b6001600160a01b038116610c365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ff565b610c3f81611275565b50565b5f546001600160a01b031633146108755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ff565b6001600160a01b038316610cfd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ff565b6001600160a01b038216610d5e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ff565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610dca8484610b9f565b90505f1981146107d55781811015610e245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105ff565b6107d58484848403610c9b565b600d546001600160a01b038481169116148015610e5757506001600160a01b0382163014155b8015610e7057505f546001600160a01b03838116911614155b8015610eae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15610f1a5760085481610ed5846001600160a01b03165f9081526001602052604090205490565b610edf91906118ee565b1115610f1a5760405162461bcd60e51b815260206004820152600a60248201526913585e081dd85b1b195d60b21b60448201526064016105ff565b305f90815260016020526040902054600754811115610f3857506007545b5f600754118015610f4a575060075481145b8015610f595750600b5460ff16155b8015610f735750600d546001600160a01b03858116911614155b15610faa57600b805460ff19166001179055610f8e816112c4565b478015610f9e57610f9e8161147a565b50600b805460ff191690555b5f600954118015610fc457506001600160a01b0384163014155b8015610fdd57505f546001600160a01b03858116911614155b801561101b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b801561104b5750600d546001600160a01b038581169116148061104b5750600d546001600160a01b038481169116145b15611086575f6064600954846110619190611880565b61106b9190611897565b90506110778184611935565b9250611084853083611519565b505b611091848484611519565b600654604051639eda069f60e01b81526001600160a01b03868116600483015290911690639eda069f906024015f604051808303815f87803b1580156110d5575f80fd5b505af11580156110e7573d5f803e3d5ffd5b5050600654604051639eda069f60e01b81526001600160a01b0387811660048301529091169250639eda069f91506024015f604051808303815f87803b15801561112f575f80fd5b505af1158015611141573d5f803e3d5ffd5b5050505050505050565b6001600160a01b0382166111ab5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105ff565b6001600160a01b0382165f908152600160205260409020548181101561121e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105ff565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610db2565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106112f7576112f7611948565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611373573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611397919061195c565b816001815181106113aa576113aa611948565b60200260200101906001600160a01b031690816001600160a01b0316815250506113f5307f000000000000000000000000000000000000000000000000000000000000000084610c9b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906114499085905f90869030904290600401611977565b5f604051808303815f87803b158015611460575f80fd5b505af1158015611472573d5f803e3d5ffd5b505050505050565b5f806009541161148a575f6114a6565b600954600a5461149c90612710611880565b6114a69190611897565b90505f6127106114b68385611880565b6114c09190611897565b90505f6114cd8285611935565b600b5490915081906114ed9061010090046001600160a01b0316826116c2565b600c54611503906001600160a01b0316826116c2565b60065461077a906001600160a01b0316846116c2565b6001600160a01b03831661157d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ff565b6001600160a01b0382166115df5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ff565b6001600160a01b0383165f90815260016020526040902054818110156116565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105ff565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116b59086815260200190565b60405180910390a36107d5565b8015611711575f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611472576040519150601f19603f3d011682016040523d82523d5f602084013e611472565b5050565b5f60208284031215611725575f80fd5b5035919050565b5f6020808352835180828501525f5b818110156117575785810183015185820160400152820161173b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c3f575f80fd5b5f806040838503121561179c575f80fd5b82356117a781611777565b946020939093013593505050565b5f602082840312156117c5575f80fd5b81356117d081611777565b9392505050565b5f805f606084860312156117e9575f80fd5b83356117f481611777565b9250602084013561180481611777565b929592945050506040919091013590565b5f8060408385031215611826575f80fd5b50508035926020909101359150565b5f8060408385031215611846575f80fd5b823561185181611777565b9150602083013561186181611777565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176106d1576106d161186c565b5f826118b157634e487b7160e01b5f52601260045260245ffd5b500490565b600181811c908216806118ca57607f821691505b6020821081036118e857634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156106d1576106d161186c565b5f805f60608486031215611913575f80fd5b835161191e81611777565b602085015160409095015190969495509392505050565b818103818111156106d1576106d161186c565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561196c575f80fd5b81516117d081611777565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156119c55784516001600160a01b0316835293830193918301916001016119a0565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220221c798a5098212a0ccfb33628e84ff176c391f5eb0ef6b6229fe9540971e22b64736f6c63430008150033608060405234801562000010575f80fd5b50604080518082018252600e8082526d484f4c455f4469766964656e647360901b60208084018290528451808601909552918452908301529081816003620000598382620001ad565b506004620000688282620001ad565b50505050506200008762000081620000b860201b60201c565b620000bc565b600c80546101003202610100600160a81b0319909116179055600a80546001600160a01b0319163317905562000275565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200013657607f821691505b6020821081036200015557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001a8575f81815260208120601f850160051c81016020861015620001835750805b601f850160051c820191505b81811015620001a4578281556001016200018f565b5050505b505050565b81516001600160401b03811115620001c957620001c96200010d565b620001e181620001da845462000121565b846200015b565b602080601f83116001811462000217575f8415620001ff5750858301515b5f19600386901b1c1916600185901b178555620001a4565b5f85815260208120601f198616915b82811015620002475788860151825594840194600190910190840162000226565b50858210156200026557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b6116d980620002835f395ff3fe6080604052600436106101e8575f3560e01c8063715018a611610108578063a9059cbb1161009d578063d5f394881161006d578063d5f394881461054a578063dd62ed3e1461056c578063f2fde38b1461058b578063f711d2fb146105aa578063fbcbc0f1146105c9575f80fd5b8063a9059cbb146104cd578063aafd847a146104ec578063c9e7cc1314610520578063d0ed142614610536575f80fd5b806395d89b41116100d857806395d89b411461045c5780639eda069f14610470578063a457c2d71461048f578063a8b9d240146104ae575f80fd5b8063715018a6146103e357806385a6b3ae146103f75780638da5cb5b1461040c57806391b89fba1461043d575f80fd5b8063313ce5671161017e5780634e7b827f1161014e5780634e7b827f14610358578063627749e6146103865780636a4740021461039b57806370a08231146103af575f80fd5b8063313ce567146102eb57806331e79db014610306578063395093511461032557806343d726d614610344575f80fd5b806318160ddd116101b957806318160ddd146102705780631e83409a1461028e57806323b872dd146102ad57806327ce0147146102cc575f80fd5b8062788b56146101fb57806303c833021461020f57806306fdde0314610217578063095ea7b314610241575f80fd5b366101f7576101f561060d565b005b5f80fd5b348015610206575f80fd5b506101f56106a1565b6101f561060d565b348015610222575f80fd5b5061022b610753565b6040516102389190611485565b60405180910390f35b34801561024c575f80fd5b5061026061025b3660046114e4565b6107e3565b6040519015158152602001610238565b34801561027b575f80fd5b506002545b604051908152602001610238565b348015610299575f80fd5b506101f56102a836600461150e565b6107fc565b3480156102b8575f80fd5b506102606102c7366004611529565b610864565b3480156102d7575f80fd5b506102806102e636600461150e565b610887565b3480156102f6575f80fd5b5060405160128152602001610238565b348015610311575f80fd5b506101f561032036600461150e565b6108e2565b348015610330575f80fd5b5061026061033f3660046114e4565b61094d565b34801561034f575f80fd5b506101f561096e565b348015610363575f80fd5b5061026061037236600461150e565b600b6020525f908152604090205460ff1681565b348015610391575f80fd5b50610280600d5481565b3480156103a6575f80fd5b506101f56109be565b3480156103ba575f80fd5b506102806103c936600461150e565b6001600160a01b03165f9081526020819052604090205490565b3480156103ee575f80fd5b506101f5610a44565b348015610402575f80fd5b5061028060085481565b348015610417575f80fd5b506009546001600160a01b03165b6040516001600160a01b039091168152602001610238565b348015610448575f80fd5b5061028061045736600461150e565b610a55565b348015610467575f80fd5b5061022b610a5f565b34801561047b575f80fd5b506101f561048a36600461150e565b610a6e565b34801561049a575f80fd5b506102606104a93660046114e4565b610b07565b3480156104b9575f80fd5b506102806104c836600461150e565b610b81565b3480156104d8575f80fd5b506102606104e73660046114e4565b610bac565b3480156104f7575f80fd5b5061028061050636600461150e565b6001600160a01b03165f9081526007602052604090205490565b34801561052b575f80fd5b5061028062278d0081565b348015610541575f80fd5b506101f5610bb9565b348015610555575f80fd5b50600c5461010090046001600160a01b0316610425565b348015610577575f80fd5b50610280610586366004611567565b610bca565b348015610596575f80fd5b506101f56105a536600461150e565b610bf4565b3480156105b5575f80fd5b506101f56105c436600461150e565b610c6a565b3480156105d4575f80fd5b506105e86105e336600461150e565b610ca4565b604080516001600160a01b039094168452602084019290925290820152606001610238565b5f61061760025490565b11610620575f80fd5b341561069f5761065361063260025490565b61064034600160801b610cc3565b61064a91906115b2565b60055490610cd5565b600555604080513381523460208201527fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511910160405180910390a160085461069b9034610cd5565b6008555b565b6106a9610ce0565b62278d00600d546106ba91906115d1565b4210156106ff5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e4818db1bdcd95960921b60448201526064015b60405180910390fd5b6040515f90339047908381818185875af1925050503d805f811461073e576040519150601f19603f3d011682016040523d82523d5f602084013e610743565b606091505b5050905080610750575f80fd5b50565b606060038054610762906115e4565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906115e4565b80156107d95780601f106107b0576101008083540402835291602001916107d9565b820191905f5260205f20905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b5f336107f0818585610d13565b60019150505b92915050565b610804610e36565b600d541580610822575062278d00600d5461081f91906115d1565b42105b6108575760405162461bcd60e51b815260206004820152600660248201526518db1bdcd95960d21b60448201526064016106f6565b61086081610e90565b5050565b5f33610871858285610fcb565b61087c858585611043565b506001949350505050565b6001600160a01b0381165f9081526006602090815260408083205491839052822054600554600160801b926108d8926108d3926108cd916108c89190610cc3565b611082565b90611090565b6110ca565b6107f691906115b2565b6108ea610e36565b6001600160a01b0381165f908152600b60205260408120805460ff191660011790556109179082906110db565b6040516001600160a01b038216907fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b25905f90a250565b5f336107f081858561095f8383610bca565b61096991906115d1565b610d13565b610976610ce0565b600d54156109b85760405162461bcd60e51b815260206004820152600f60248201526e18d85b9b9bdd081d185ad9481e595d608a1b60448201526064016106f6565b42600d55565b60405162461bcd60e51b815260206004820152604f60248201527f77697468647261774469766964656e642064697361626c65642e20557365207460448201527f68652027636c61696d272066756e6374696f6e206f6e20746865206d61696e2060648201526e3a37b5b2b71031b7b73a3930b1ba1760891b608482015260a4016106f6565b610a4c610e36565b61069f5f611136565b5f6107f682610b81565b606060048054610762906115e4565b6001600160a01b0381165f908152600b602052604090205460ff1615610a915750565b600a546040516370a0823160e01b81526001600160a01b0380841660048301526107509284929116906370a0823190602401602060405180830381865afa158015610ade573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b02919061161c565b6110db565b5f3381610b148286610bca565b905083811015610b745760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106f6565b61087c8286868403610d13565b6001600160a01b0381165f908152600760205260408120546107f690610ba684610887565b90611187565b5f336107f0818585611043565b610bc1610ce0565b61069f5f611192565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610bfc610e36565b6001600160a01b038116610c615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f6565b61075081611136565b610c72610ce0565b6001600160a01b038116610c9b5760405163339f81af60e11b81525f60048201526024016106f6565b61075081611192565b805f80610cb083610b81565b9150610cbb83610887565b929491935050565b5f610cce8284611633565b9392505050565b5f610cce82846115d1565b600c546001600160a01b0361010090910416331461069f576040516332b2baa360e01b81523360048201526024016106f6565b6001600160a01b038316610d755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106f6565b6001600160a01b038216610dd65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106f6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6009546001600160a01b0316331461069f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f6565b5f80610e9b83610b81565b90508015610fc3576001600160a01b0383165f90815260076020526040902054610ec59082610cd5565b6001600160a01b0384165f818152600760209081526040918290209390935580519182529181018390527fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d910160405180910390a15f836001600160a01b031682610bb8906040515f60405180830381858888f193505050503d805f8114610f68576040519150601f19603f3d011682016040523d82523d5f602084013e610f6d565b606091505b5050905080610fbc576001600160a01b0384165f90815260076020526040902054610f989083611187565b6001600160a01b039094165f90815260076020526040812094909455509192915050565b5092915050565b505f92915050565b5f610fd68484610bca565b90505f19811461103d57818110156110305760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106f6565b61103d8484848403610d13565b50505050565b60405162461bcd60e51b8152602060048201526014602482015273139bc81d1c985b9cd9995c9cc8185b1b1bddd95960621b60448201526064016106f6565b5f81818112156107f6575f80fd5b5f8061109c838561164a565b90505f83121580156110ae5750838112155b806110c257505f831280156110c257508381125b610cce575f80fd5b5f808212156110d7575f80fd5b5090565b6001600160a01b0382165f9081526020819052604090205480821115611112575f6111068383611187565b905061103d84826111ba565b80821015611131575f6111258284611187565b905061103d848261121c565b505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f610cce8284611671565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6111c4828261125f565b6111fd6111df6108c883600554610cc390919063ffffffff16565b6001600160a01b0384165f908152600660205260409020549061131c565b6001600160a01b039092165f9081526006602052604090209190915550565b6112268282611355565b6111fd6112416108c883600554610cc390919063ffffffff16565b6001600160a01b0384165f9081526006602052604090205490611090565b6001600160a01b0382166112b55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106f6565b8060025f8282546112c691906115d1565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f806113288385611684565b90505f831215801561133a5750838113155b806110c257505f831280156110c25750838113610cce575f80fd5b6001600160a01b0382166113b55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106f6565b6001600160a01b0382165f90815260208190526040902054818110156114285760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106f6565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6020808352835180828501525f5b818110156114b057858101830151858201604001528201611494565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610750575f80fd5b5f80604083850312156114f5575f80fd5b8235611500816114d0565b946020939093013593505050565b5f6020828403121561151e575f80fd5b8135610cce816114d0565b5f805f6060848603121561153b575f80fd5b8335611546816114d0565b92506020840135611556816114d0565b929592945050506040919091013590565b5f8060408385031215611578575f80fd5b8235611583816114d0565b91506020830135611593816114d0565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b5f826115cc57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107f6576107f661159e565b600181811c908216806115f857607f821691505b60208210810361161657634e487b7160e01b5f52602260045260245ffd5b50919050565b5f6020828403121561162c575f80fd5b5051919050565b80820281158282048414176107f6576107f661159e565b8082018281125f8312801582168215821617156116695761166961159e565b505092915050565b818103818111156107f6576107f661159e565b8181035f831280158383131683831282161715610fbc57610fbc61159e56fea2646970667358221220ed5e02240a887e429031a8a5e4338a0794bf40ac565a3ab9cca0efc5af49deac64736f6c634300081500330000000000000000000000006a3d60ebc6bc993c5bcacf0eb3bbe585dcbd62b1
Deployed Bytecode
0x6080604052600436106101c7575f3560e01c806370a08231116100f257806395d89b4111610092578063c04a541411610062578063c04a541414610539578063dd62ed3e14610558578063f2fde38b14610577578063f8b45b0514610596575f80fd5b806395d89b41146104c85780639e9188ea146104dc578063a457c2d7146104fb578063a9059cbb1461051a575f80fd5b806375f0a874116100cd57806375f0a8741461043f5780638bcdcbf3146104635780638da5cb5b146104975780639217383f146104b3575f80fd5b806370a08231146103d8578063715018a61461040c57806372ac248614610420575f80fd5b806335d97405116101685780634e71d92d116101385780634e71d92d1461036757806352f7c9881461037b578063549d41e21461039a5780635d098b38146103b9575f80fd5b806335d97405146102d3578063395093511461030a57806342966c681461032957806349bd5a5e14610348575f80fd5b8063098fec39116101a3578063098fec391461024c57806318160ddd1461028557806323b872dd14610299578063313ce567146102b8575f80fd5b806216bd6c146101d257806306fdde03146101f3578063095ea7b31461021d575f80fd5b366101ce57005b5f80fd5b3480156101dd575f80fd5b506101f16101ec366004611715565b6105ab565b005b3480156101fe575f80fd5b5061020761062e565b604051610214919061172c565b60405180910390f35b348015610228575f80fd5b5061023c61023736600461178b565b6106be565b6040519015158152602001610214565b348015610257575f80fd5b506102776102663660046117b5565b600e6020525f908152604090205481565b604051908152602001610214565b348015610290575f80fd5b50600354610277565b3480156102a4575f80fd5b5061023c6102b33660046117d7565b6106d7565b3480156102c3575f80fd5b5060405160128152602001610214565b3480156102de575f80fd5b506006546102f2906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b348015610315575f80fd5b5061023c61032436600461178b565b6106fa565b348015610334575f80fd5b506101f1610343366004611715565b61071b565b348015610353575f80fd5b50600d546102f2906001600160a01b031681565b348015610372575f80fd5b506101f1610781565b348015610386575f80fd5b506101f1610395366004611815565b6107db565b3480156103a5575f80fd5b506101f16103b4366004611715565b610807565b3480156103c4575f80fd5b506101f16103d33660046117b5565b610834565b3480156103e3575f80fd5b506102776103f23660046117b5565b6001600160a01b03165f9081526001602052604090205490565b348015610417575f80fd5b506101f1610864565b34801561042b575f80fd5b506101f161043a3660046117b5565b610877565b34801561044a575f80fd5b50600b546102f29061010090046001600160a01b031681565b34801561046e575f80fd5b5061048261047d3660046117b5565b6108a1565b60408051928352602083019190915201610214565b3480156104a2575f80fd5b505f546001600160a01b03166102f2565b3480156104be575f80fd5b5061027760075481565b3480156104d3575f80fd5b5061020761091b565b3480156104e7575f80fd5b506101f16104f63660046117b5565b61092a565b348015610506575f80fd5b5061023c61051536600461178b565b610b18565b348015610525575f80fd5b5061023c61053436600461178b565b610b92565b348015610544575f80fd5b50600c546102f2906001600160a01b031681565b348015610563575f80fd5b50610277610572366004611835565b610b9f565b348015610582575f80fd5b506101f16105913660046117b5565b610bc9565b3480156105a1575f80fd5b5061027760085481565b6105b3610c42565b600181101580156105c5575060648111155b6106085760405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081c195c98d95b9d608a1b60448201526064015b60405180910390fd5b60648161061460035490565b61061e9190611880565b6106289190611897565b60085550565b60606004805461063d906118b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610669906118b6565b80156106b45780601f1061068b576101008083540402835291602001916106b4565b820191905f5260205f20905b81548152906001019060200180831161069757829003601f168201915b5050505050905090565b5f336106cb818585610c9b565b60019150505b92915050565b5f336106e4858285610dbf565b6106ef858585610e31565b506001949350505050565b5f336106cb81858561070c8383610b9f565b61071691906118ee565b610c9b565b610725338261114b565b600654604051639eda069f60e01b81523360048201526001600160a01b0390911690639eda069f906024015b5f604051808303815f87803b158015610768575f80fd5b505af115801561077a573d5f803e3d5ffd5b5050505050565b600654604051630f41a04d60e11b81523360048201526001600160a01b0390911690631e83409a906024015f604051808303815f87803b1580156107c3575f80fd5b505af11580156107d5573d5f803e3d5ffd5b50505050565b6107e3610c42565b600582111580156107f45750818111155b6107fc575f80fd5b600991909155600a55565b61080f610c42565b603261081a60035490565b6108249190611897565b81111561082f575f80fd5b600755565b61083c610c42565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61086c610c42565b6108755f611275565b565b61087f610c42565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60065460405163fbcbc0f160e01b81526001600160a01b0383811660048301525f92839291169063fbcbc0f190602401606060405180830381865afa1580156108ec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109109190611901565b909590945092505050565b60606005805461063d906118b6565b610932610c42565b600680546001600160a01b0319166001600160a01b03831690811790915560405163031e79db60e41b8152600481018290526331e79db0906024015f604051808303815f87803b158015610984575f80fd5b505af1158015610996573d5f803e3d5ffd5b505060065460405163031e79db60e41b81523060048201526001600160a01b0390911692506331e79db091506024015f604051808303815f87803b1580156109dc575f80fd5b505af11580156109ee573d5f803e3d5ffd5b50506006546001600160a01b031691506331e79db09050610a165f546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024015f604051808303815f87803b158015610a54575f80fd5b505af1158015610a66573d5f803e3d5ffd5b5050600654600d5460405163031e79db60e41b81526001600160a01b039182166004820152911692506331e79db091506024015f604051808303815f87803b158015610ab0575f80fd5b505af1158015610ac2573d5f803e3d5ffd5b505060065460405163031e79db60e41b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015290911692506331e79db09150602401610751565b5f3381610b258286610b9f565b905083811015610b855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105ff565b6106ef8286868403610c9b565b5f336106cb818585610e31565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b610bd1610c42565b6001600160a01b038116610c365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ff565b610c3f81611275565b50565b5f546001600160a01b031633146108755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ff565b6001600160a01b038316610cfd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ff565b6001600160a01b038216610d5e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ff565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b5f610dca8484610b9f565b90505f1981146107d55781811015610e245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105ff565b6107d58484848403610c9b565b600d546001600160a01b038481169116148015610e5757506001600160a01b0382163014155b8015610e7057505f546001600160a01b03838116911614155b8015610eae57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b15610f1a5760085481610ed5846001600160a01b03165f9081526001602052604090205490565b610edf91906118ee565b1115610f1a5760405162461bcd60e51b815260206004820152600a60248201526913585e081dd85b1b195d60b21b60448201526064016105ff565b305f90815260016020526040902054600754811115610f3857506007545b5f600754118015610f4a575060075481145b8015610f595750600b5460ff16155b8015610f735750600d546001600160a01b03858116911614155b15610faa57600b805460ff19166001179055610f8e816112c4565b478015610f9e57610f9e8161147a565b50600b805460ff191690555b5f600954118015610fc457506001600160a01b0384163014155b8015610fdd57505f546001600160a01b03858116911614155b801561101b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316846001600160a01b031614155b801561104b5750600d546001600160a01b038581169116148061104b5750600d546001600160a01b038481169116145b15611086575f6064600954846110619190611880565b61106b9190611897565b90506110778184611935565b9250611084853083611519565b505b611091848484611519565b600654604051639eda069f60e01b81526001600160a01b03868116600483015290911690639eda069f906024015f604051808303815f87803b1580156110d5575f80fd5b505af11580156110e7573d5f803e3d5ffd5b5050600654604051639eda069f60e01b81526001600160a01b0387811660048301529091169250639eda069f91506024015f604051808303815f87803b15801561112f575f80fd5b505af1158015611141573d5f803e3d5ffd5b5050505050505050565b6001600160a01b0382166111ab5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105ff565b6001600160a01b0382165f908152600160205260409020548181101561121e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105ff565b6001600160a01b0383165f8181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610db2565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106112f7576112f7611948565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611373573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611397919061195c565b816001815181106113aa576113aa611948565b60200260200101906001600160a01b031690816001600160a01b0316815250506113f5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c9b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906114499085905f90869030904290600401611977565b5f604051808303815f87803b158015611460575f80fd5b505af1158015611472573d5f803e3d5ffd5b505050505050565b5f806009541161148a575f6114a6565b600954600a5461149c90612710611880565b6114a69190611897565b90505f6127106114b68385611880565b6114c09190611897565b90505f6114cd8285611935565b600b5490915081906114ed9061010090046001600160a01b0316826116c2565b600c54611503906001600160a01b0316826116c2565b60065461077a906001600160a01b0316846116c2565b6001600160a01b03831661157d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ff565b6001600160a01b0382166115df5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ff565b6001600160a01b0383165f90815260016020526040902054818110156116565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105ff565b6001600160a01b038085165f8181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906116b59086815260200190565b60405180910390a36107d5565b8015611711575f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611472576040519150601f19603f3d011682016040523d82523d5f602084013e611472565b5050565b5f60208284031215611725575f80fd5b5035919050565b5f6020808352835180828501525f5b818110156117575785810183015185820160400152820161173b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c3f575f80fd5b5f806040838503121561179c575f80fd5b82356117a781611777565b946020939093013593505050565b5f602082840312156117c5575f80fd5b81356117d081611777565b9392505050565b5f805f606084860312156117e9575f80fd5b83356117f481611777565b9250602084013561180481611777565b929592945050506040919091013590565b5f8060408385031215611826575f80fd5b50508035926020909101359150565b5f8060408385031215611846575f80fd5b823561185181611777565b9150602083013561186181611777565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176106d1576106d161186c565b5f826118b157634e487b7160e01b5f52601260045260245ffd5b500490565b600181811c908216806118ca57607f821691505b6020821081036118e857634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156106d1576106d161186c565b5f805f60608486031215611913575f80fd5b835161191e81611777565b602085015160409095015190969495509392505050565b818103818111156106d1576106d161186c565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561196c575f80fd5b81516117d081611777565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156119c55784516001600160a01b0316835293830193918301916001016119a0565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220221c798a5098212a0ccfb33628e84ff176c391f5eb0ef6b6229fe9540971e22b64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006a3d60ebc6bc993c5bcacf0eb3bbe585dcbd62b1
-----Decoded View---------------
Arg [0] : _owner (address): 0x6a3d60Ebc6bc993C5BCaCf0Eb3Bbe585dCbD62b1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006a3d60ebc6bc993c5bcacf0eb3bbe585dcbd62b1
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.