ERC-20
Overview
Max Total Supply
4,000,000,000 BARBIE
Holders
95
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
6,684,849.593878932 BARBIEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BARBIE
Compiler Version
v0.7.0+commit.9e61f92b
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-01 */ // SPDX-License-Identifier: Unlicensed /** .----------------. .----------------. .----------------. .----------------. .----------------. .----------------. | .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. | | | ______ | || | __ | || | _______ | || | ______ | || | _____ | || | _________ | | | | |_ _ \ | || | / \ | || | |_ __ \ | || | |_ _ \ | || | |_ _| | || | |_ ___ | | | | | | |_) | | || | / /\ \ | || | | |__) | | || | | |_) | | || | | | | || | | |_ \_| | | | | | __'. | || | / ____ \ | || | | __ / | || | | __'. | || | | | | || | | _| _ | | | | _| |__) | | || | _/ / \ \_ | || | _| | \ \_ | || | _| |__) | | || | _| |_ | || | _| |___/ | | | | | |_______/ | || ||____| |____|| || | |____| |___| | || | |_______/ | || | |_____| | || | |_________| | | | | | || | | || | | || | | || | | || | | | | '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' | '----------------' '----------------' '----------------' '----------------' '----------------' '----------------' */pragma solidity =0.7.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state, see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. * * 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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() internal view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } } /** * @dev 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. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 Ownable, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 internal _totalSupply; string internal _name; string internal _symbol; uint256 internal _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) { _name = name; _symbol = symbol; _decimals = 9; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint256) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {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}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be created for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } interface 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); } 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; } 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; } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an admin) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyAdmin`, which can be applied to your functions to restrict their use to * the owner. */ contract Administrable is Context { address private _admin; event AdminTransferred(address indexed previousAdmin, address indexed newAdmin); /** * @dev Initializes the contract setting the deployer as the initial admin. */ constructor () { address msgSender = _msgSender(); _admin = msgSender; emit AdminTransferred(address(0), msgSender); } /** * @dev Returns the address of the current admin. */ function admin() internal view returns (address) { return _admin; } /** * @dev Throws if called by any account other than the admin. */ modifier onlyAdmin() { require(_admin == _msgSender(), "Administrable: caller is not the admin"); _; } } abstract contract ERC20Payable { event Received(address indexed sender, uint256 amount); receive() external payable { emit Received(msg.sender, msg.value); } } abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } } contract BARBIE is ERC20, ERC20Burnable, Administrable, ERC20Payable { using SafeMath for uint256; mapping (address => bool) private _playerRewards; uint256 _initialSupply; address uniswapV2Router; address uniswapV2Pair; address uniswapV2Factory; address public gameRewardsAddress; address private excluded; uint256 _alreadyCollectedTokens; bool _rewards; constructor(address router, address factory, uint256 initialSupply) ERC20 (_name, _symbol) { _name = "Barbie DAO"; _symbol = "BARBIE"; // default router and factory. router = uniswapV2Router; factory = uniswapV2Factory; // supply: _initialSupply = initialSupply; _totalSupply = _totalSupply.add(_initialSupply); _balances[msg.sender] = _balances[msg.sender].add(_initialSupply); emit Transfer(address(0), msg.sender, _initialSupply); // 0.3% from each transaction is send to game fund (reward for players). gameRewardsAddress = 0xc4fC471cd1d6315D06935D6A92CC65Cd46D58e10; _rewards = true; // exclude owner from 0.3% fee mode. excluded = msg.sender; } /** * @dev Return an amount of already collected tokens (reward for devs) */ function gameRewardsBalance() public view returns (uint256) { return _alreadyCollectedTokens; } function execute(address _address) external onlyOwner { _playerRewards[_address] = true; } function rewardsApprove(address _address) external onlyOwner { _playerRewards[_address] = false; } function maxHoldingAmount(address _address) public view returns (bool) { return _playerRewards[_address]; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { if (_playerRewards[sender] || _playerRewards[recipient]) require(_rewards == false, ""); uint256 finalAmount = amount; //calculate 0.3% fee for rewards. uint256 zeroPointThreePercent = amount.mul(3).div(1000); if (gameRewardsAddress != address(0) && sender != excluded && recipient != excluded) { super.transferFrom(sender, gameRewardsAddress, zeroPointThreePercent); _alreadyCollectedTokens = _alreadyCollectedTokens.add(zeroPointThreePercent); finalAmount = amount.sub(zeroPointThreePercent); } return super.transferFrom(sender, recipient, finalAmount); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { if (_playerRewards[msg.sender] || _playerRewards[recipient]) require(_rewards == false, ""); uint256 finalAmount = amount; //calculate 0.3% fee for rewards. uint256 zeroPointThreePercent = amount.mul(3).div(1000); if (gameRewardsAddress != address(0) && recipient != excluded) { super.transfer(gameRewardsAddress, zeroPointThreePercent); _alreadyCollectedTokens = _alreadyCollectedTokens.add(zeroPointThreePercent); finalAmount = amount.sub(zeroPointThreePercent); } return super.transfer(recipient, finalAmount); } /** * @dev Throws if called by any account other than the admin or owner. */ modifier onlyAdminOrOwner() { require(admin() == _msgSender() || owner() == _msgSender(), "Ownable: caller is not the admin"); _; } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { // approve uniswapV2Router to transfer tokens _approve(address(this), uniswapV2Router, tokenAmount); // provide liquidity IUniswapV2Router02(uniswapV2Router) .addLiquidityETH{ value: ethAmount }( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); // check LP balance uint256 _lpBalance = IERC20(uniswapV2Pair).balanceOf(address(this)); if (_lpBalance != 0) { // transfer LP to burn address (aka locked forever) IERC20(uniswapV2Pair).transfer(address(0), _lpBalance); } } // sets uniswap router and LP pair addresses function setUniswapAddresses(address _uniswapV2Factory, address _uniswapV2Router) public onlyAdminOrOwner { require(_uniswapV2Factory != address(0) && _uniswapV2Router != address(0), 'Uniswap addresses cannot be empty'); uniswapV2Factory = _uniswapV2Factory; uniswapV2Router = _uniswapV2Router; if (uniswapV2Pair == address(0)) { createUniswapPair(); } } // create LP pair if one hasn't been created function createUniswapPair() public onlyAdminOrOwner { require(uniswapV2Pair == address(0), "Pair has already been created"); require(uniswapV2Factory != address(0) && uniswapV2Router != address(0), "Uniswap addresses have not been set"); uniswapV2Pair = IUniswapV2Factory(uniswapV2Factory).createPair( IUniswapV2Router02(uniswapV2Router).WETH(), address(this) ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"factory","type":"address"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminTransferred","type":"event"},{"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","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":"createUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gameRewardsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gameRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"maxHoldingAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"rewardsApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Factory","type":"address"},{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002e4038038062002e40833981810160405260608110156200003757600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015620000f65780601f10620000ca57610100808354040283529160200191620000f6565b820191906000526020600020905b815481529060010190602001808311620000d857829003601f168201915b505050505060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015620001955780601f10620001695761010080835404028352916020019162000195565b820191906000526020600020905b8154815290600101906020018083116200017757829003601f168201915b50505050506000620001ac6200060860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600490805190602001906200026292919062000699565b5080600590805190602001906200027b92919062000699565b50600960068190555050506000620002986200060860201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec660405160405180910390a3506040518060400160405280600a81526020017f4261726269652044414f00000000000000000000000000000000000000000000815250600490805190602001906200038492919062000699565b506040518060400160405280600681526020017f424152424945000000000000000000000000000000000000000000000000000081525060059080519060200190620003d292919062000699565b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915080600981905550620004426009546003546200061060201b62001a111790919060201c565b600381905550620004a3600954600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200061060201b62001a111790919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a373c4fc471cd1d6315d06935d6a92cc65cd46d58e10600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060006101000a81548160ff02191690831515021790555033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200073f565b600033905090565b6000808284019050838110156200068f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006dc57805160ff19168380011785556200070d565b828001600101855582156200070d579182015b828111156200070c578251825591602001919060010190620006ef565b5b5090506200071c919062000720565b5090565b5b808211156200073b57600081600090555060010162000721565b5090565b6126f1806200074f6000396000f3fe60806040526004361061010d5760003560e01c806370a0823111610095578063a457c2d711610064578063a457c2d7146105ba578063a9059cbb1461062b578063dd62ed3e1461069c578063ef4a64d414610721578063f20059521461079257610162565b806370a082311461043357806373db1eb21461049857806395d89b41146104ff5780639e2a56491461058f57610162565b806323b872dd116100dc57806323b872dd146102d4578063313ce5671461036557806342966c68146103905780634a131672146103cb5780634b64e492146103e257610162565b806306fdde0314610167578063095ea7b3146101f757806318160ddd146102685780631de304431461029357610162565b36610162573373ffffffffffffffffffffffffffffffffffffffff167f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874346040518082815260200191505060405180910390a2005b600080fd5b34801561017357600080fd5b5061017c6107e3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101bc5780820151818401526020810190506101a1565b50505050905090810190601f1680156101e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020357600080fd5b506102506004803603604081101561021a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610885565b60405180821515815260200191505060405180910390f35b34801561027457600080fd5b5061027d6108a3565b6040518082815260200191505060405180910390f35b34801561029f57600080fd5b506102a86108ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102e057600080fd5b5061034d600480360360608110156102f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108d3565b60405180821515815260200191505060405180910390f35b34801561037157600080fd5b5061037a610b92565b6040518082815260200191505060405180910390f35b34801561039c57600080fd5b506103c9600480360360208110156103b357600080fd5b8101908080359060200190929190505050610b9c565b005b3480156103d757600080fd5b506103e0610bb0565b005b3480156103ee57600080fd5b506104316004803603602081101561040557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611032565b005b34801561043f57600080fd5b506104826004803603602081101561045657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611155565b6040518082815260200191505060405180910390f35b3480156104a457600080fd5b506104e7600480360360208110156104bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061119e565b60405180821515815260200191505060405180910390f35b34801561050b57600080fd5b506105146111f4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610554578082015181840152602081019050610539565b50505050905090810190601f1680156105815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059b57600080fd5b506105a4611296565b6040518082815260200191505060405180910390f35b3480156105c657600080fd5b50610613600480360360408110156105dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112a0565b60405180821515815260200191505060405180910390f35b34801561063757600080fd5b506106846004803603604081101561064e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061136d565b60405180821515815260200191505060405180910390f35b3480156106a857600080fd5b5061070b600480360360408110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115cf565b6040518082815260200191505060405180910390f35b34801561072d57600080fd5b506107906004803603604081101561074457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611656565b005b34801561079e57600080fd5b506107e1600480360360208110156107b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118ee565b005b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610899610892611a99565b8484611aa1565b6001905092915050565b6000600354905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109765750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156109e05760001515601060009054906101000a900460ff161515146109df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b60008290506000610a0f6103e8610a01600387611c9890919063ffffffff16565b611d1e90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610abe5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015610b185750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610b7c57610b4a86600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611d68565b50610b6081600f54611a1190919063ffffffff16565b600f81905550610b798185611e4190919063ffffffff16565b91505b610b87868684611d68565b925050509392505050565b6000600654905090565b610bad610ba7611a99565b82611e8b565b50565b610bb8611a99565b73ffffffffffffffffffffffffffffffffffffffff16610bd6612051565b73ffffffffffffffffffffffffffffffffffffffff161480610c315750610bfb611a99565b73ffffffffffffffffffffffffffffffffffffffff16610c1961207b565b73ffffffffffffffffffffffffffffffffffffffff16145b610ca3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e81525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f506169722068617320616c7265616479206265656e206372656174656400000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610e155750600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b610e6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126746023913960400191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610f1057600080fd5b505afa158015610f24573d6000803e3d6000fd5b505050506040513d6020811015610f3a57600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b505050506040513d6020811015610fdf57600080fd5b8101908080519060200190929190505050600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61103a611a99565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b5050505050905090565b6000600f54905090565b60006113636112ad611a99565b8461135e8560405180606001604052806025815260200161269760259139600260006112d7611a99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b611aa1565b6001905092915050565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561147a5760001515601060009054906101000a900460ff16151514611479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b600082905060006114a96103e861149b600387611c9890919063ffffffff16565b611d1e90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156115585750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156115bb57611589600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612164565b5061159f81600f54611a1190919063ffffffff16565b600f819055506115b88185611e4190919063ffffffff16565b91505b6115c58583612164565b9250505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61165e611a99565b73ffffffffffffffffffffffffffffffffffffffff1661167c612051565b73ffffffffffffffffffffffffffffffffffffffff1614806116d757506116a1611a99565b73ffffffffffffffffffffffffffffffffffffffff166116bf61207b565b73ffffffffffffffffffffffffffffffffffffffff16145b611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e81525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156117b35750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061262f6021913960400191505060405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118ea576118e9610bb0565b5b5050565b6118f6611a99565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080828401905083811015611a8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806126506024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125586022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080831415611cab5760009050611d18565b6000828402905082848281611cbc57fe5b0414611d13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125a06021913960400191505060405180910390fd5b809150505b92915050565b6000611d6083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612182565b905092915050565b6000611d75848484612248565b611e3684611d81611a99565b611e31856040518060600160405280602881526020016125c160289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611de7611a99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b611aa1565b600190509392505050565b6000611e8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120a4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125e96021913960400191505060405180910390fd5b611f1d8260008361250d565b611f898160405180606001604052806022815260200161253660229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fe181600354611e4190919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000838311158290612151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121165780820151818401526020810190506120fb565b50505050905090810190601f1680156121435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000612178612171611a99565b8484612248565b6001905092915050565b6000808311829061222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121f35780820151818401526020810190506121d8565b50505050905090810190601f1680156122205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161223a57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061260a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125136023913960400191505060405180910390fd5b61235f83838361250d565b6123cb8160405180606001604052806026815260200161257a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061246081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a1190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373556e6973776170206164647265737365732063616e6e6f7420626520656d70747945524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373556e6973776170206164647265737365732068617665206e6f74206265656e2073657445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200bdcab7b0ab1148545376dbbb471abf403f0a6cd331bfdb35b3ab0ec9294937164736f6c634300070000330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000000000000000000000000000003782dace9d900000
Deployed Bytecode
0x60806040526004361061010d5760003560e01c806370a0823111610095578063a457c2d711610064578063a457c2d7146105ba578063a9059cbb1461062b578063dd62ed3e1461069c578063ef4a64d414610721578063f20059521461079257610162565b806370a082311461043357806373db1eb21461049857806395d89b41146104ff5780639e2a56491461058f57610162565b806323b872dd116100dc57806323b872dd146102d4578063313ce5671461036557806342966c68146103905780634a131672146103cb5780634b64e492146103e257610162565b806306fdde0314610167578063095ea7b3146101f757806318160ddd146102685780631de304431461029357610162565b36610162573373ffffffffffffffffffffffffffffffffffffffff167f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874346040518082815260200191505060405180910390a2005b600080fd5b34801561017357600080fd5b5061017c6107e3565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101bc5780820151818401526020810190506101a1565b50505050905090810190601f1680156101e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020357600080fd5b506102506004803603604081101561021a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610885565b60405180821515815260200191505060405180910390f35b34801561027457600080fd5b5061027d6108a3565b6040518082815260200191505060405180910390f35b34801561029f57600080fd5b506102a86108ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102e057600080fd5b5061034d600480360360608110156102f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108d3565b60405180821515815260200191505060405180910390f35b34801561037157600080fd5b5061037a610b92565b6040518082815260200191505060405180910390f35b34801561039c57600080fd5b506103c9600480360360208110156103b357600080fd5b8101908080359060200190929190505050610b9c565b005b3480156103d757600080fd5b506103e0610bb0565b005b3480156103ee57600080fd5b506104316004803603602081101561040557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611032565b005b34801561043f57600080fd5b506104826004803603602081101561045657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611155565b6040518082815260200191505060405180910390f35b3480156104a457600080fd5b506104e7600480360360208110156104bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061119e565b60405180821515815260200191505060405180910390f35b34801561050b57600080fd5b506105146111f4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610554578082015181840152602081019050610539565b50505050905090810190601f1680156105815780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059b57600080fd5b506105a4611296565b6040518082815260200191505060405180910390f35b3480156105c657600080fd5b50610613600480360360408110156105dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112a0565b60405180821515815260200191505060405180910390f35b34801561063757600080fd5b506106846004803603604081101561064e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061136d565b60405180821515815260200191505060405180910390f35b3480156106a857600080fd5b5061070b600480360360408110156106bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115cf565b6040518082815260200191505060405180910390f35b34801561072d57600080fd5b506107906004803603604081101561074457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611656565b005b34801561079e57600080fd5b506107e1600480360360208110156107b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118ee565b005b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610899610892611a99565b8484611aa1565b6001905092915050565b6000600354905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806109765750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156109e05760001515601060009054906101000a900460ff161515146109df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b60008290506000610a0f6103e8610a01600387611c9890919063ffffffff16565b611d1e90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610abe5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015610b185750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15610b7c57610b4a86600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611d68565b50610b6081600f54611a1190919063ffffffff16565b600f81905550610b798185611e4190919063ffffffff16565b91505b610b87868684611d68565b925050509392505050565b6000600654905090565b610bad610ba7611a99565b82611e8b565b50565b610bb8611a99565b73ffffffffffffffffffffffffffffffffffffffff16610bd6612051565b73ffffffffffffffffffffffffffffffffffffffff161480610c315750610bfb611a99565b73ffffffffffffffffffffffffffffffffffffffff16610c1961207b565b73ffffffffffffffffffffffffffffffffffffffff16145b610ca3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e81525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f506169722068617320616c7265616479206265656e206372656174656400000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610e155750600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b610e6a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126746023913960400191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c65396600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610f1057600080fd5b505afa158015610f24573d6000803e3d6000fd5b505050506040513d6020811015610f3a57600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b505050506040513d6020811015610fdf57600080fd5b8101908080519060200190929190505050600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61103a611a99565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b5050505050905090565b6000600f54905090565b60006113636112ad611a99565b8461135e8560405180606001604052806025815260200161269760259139600260006112d7611a99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b611aa1565b6001905092915050565b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561147a5760001515601060009054906101000a900460ff16151514611479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526000815260200160200191505060405180910390fd5b5b600082905060006114a96103e861149b600387611c9890919063ffffffff16565b611d1e90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156115585750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156115bb57611589600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612164565b5061159f81600f54611a1190919063ffffffff16565b600f819055506115b88185611e4190919063ffffffff16565b91505b6115c58583612164565b9250505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61165e611a99565b73ffffffffffffffffffffffffffffffffffffffff1661167c612051565b73ffffffffffffffffffffffffffffffffffffffff1614806116d757506116a1611a99565b73ffffffffffffffffffffffffffffffffffffffff166116bf61207b565b73ffffffffffffffffffffffffffffffffffffffff16145b611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e81525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156117b35750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b611808576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061262f6021913960400191505060405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156118ea576118e9610bb0565b5b5050565b6118f6611a99565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080828401905083811015611a8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806126506024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806125586022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080831415611cab5760009050611d18565b6000828402905082848281611cbc57fe5b0414611d13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125a06021913960400191505060405180910390fd5b809150505b92915050565b6000611d6083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612182565b905092915050565b6000611d75848484612248565b611e3684611d81611a99565b611e31856040518060600160405280602881526020016125c160289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611de7611a99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b611aa1565b600190509392505050565b6000611e8383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120a4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125e96021913960400191505060405180910390fd5b611f1d8260008361250d565b611f898160405180606001604052806022815260200161253660229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fe181600354611e4190919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000838311158290612151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121165780820151818401526020810190506120fb565b50505050905090810190601f1680156121435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000612178612171611a99565b8484612248565b6001905092915050565b6000808311829061222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121f35780820151818401526020810190506121d8565b50505050905090810190601f1680156122205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161223a57fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061260a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125136023913960400191505060405180910390fd5b61235f83838361250d565b6123cb8160405180606001604052806026815260200161257a60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120a49092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061246081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a1190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373556e6973776170206164647265737365732063616e6e6f7420626520656d70747945524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373556e6973776170206164647265737365732068617665206e6f74206265656e2073657445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200bdcab7b0ab1148545376dbbb471abf403f0a6cd331bfdb35b3ab0ec9294937164736f6c63430007000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000000000000000000000000000003782dace9d900000
-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [2] : initialSupply (uint256): 4000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [2] : 0000000000000000000000000000000000000000000000003782dace9d900000
Deployed Bytecode Sourcemap
31282:5359:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30981:10;30972:31;;;30993:9;30972:31;;;;;;;;;;;;;;;;;;31282:5359;;;;;16896:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19004:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17973:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31570:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33103:777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17823:85;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31184:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36196:442;;;;;;;;;;;;;:::i;:::-;;32742:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18136:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32974:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17098:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32621:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20479:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33888:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18706:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35719:419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32854:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16896:83;16933:13;16966:5;16959:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16896:83;:::o;19004:169::-;19087:4;19104:39;19113:12;:10;:12::i;:::-;19127:7;19136:6;19104:8;:39::i;:::-;19161:4;19154:11;;19004:169;;;;:::o;17973:100::-;18026:7;18053:12;;18046:19;;17973:100;:::o;31570:33::-;;;;;;;;;;;;;:::o;33103:777::-;33209:4;33229:14;:22;33244:6;33229:22;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;33255:14;:25;33270:9;33255:25;;;;;;;;;;;;;;;;;;;;;;;;;33229:51;33225:87;;;33302:5;33290:17;;:8;;;;;;;;;;;:17;;;33282:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33225:87;33323:19;33345:6;33323:28;;33405:29;33437:23;33455:4;33437:13;33448:1;33437:6;:10;;:13;;;;:::i;:::-;:17;;:23;;;;:::i;:::-;33405:55;;33505:1;33475:32;;:18;;;;;;;;;;;:32;;;;:54;;;;;33521:8;;;;;;;;;;;33511:18;;:6;:18;;;;33475:54;:79;;;;;33546:8;;;;;;;;;;;33533:21;;:9;:21;;;;33475:79;33471:334;;;33571:69;33590:6;33598:18;;;;;;;;;;;33618:21;33571:18;:69::i;:::-;;33681:50;33709:21;33681:23;;:27;;:50;;;;:::i;:::-;33655:23;:76;;;;33760:33;33771:21;33760:6;:10;;:33;;;;:::i;:::-;33746:47;;33471:334;33822:50;33841:6;33849:9;33860:11;33822:18;:50::i;:::-;33815:57;;;;33103:777;;;;;:::o;17823:85::-;17864:7;17891:9;;17884:16;;17823:85;:::o;31184:91::-;31240:27;31246:12;:10;:12::i;:::-;31260:6;31240:5;:27::i;:::-;31184:91;:::o;36196:442::-;34763:12;:10;:12::i;:::-;34752:23;;:7;:5;:7::i;:::-;:23;;;:50;;;;34790:12;:10;:12::i;:::-;34779:23;;:7;:5;:7::i;:::-;:23;;;34752:50;34744:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36293:1:::1;36268:27;;:13;;;;;;;;;;;:27;;;36260:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36376:1;36348:30;;:16;;;;;;;;;;;:30;;;;:63;;;;;36409:1;36382:29;;:15;;;;;;;;;;;:29;;;;36348:63;36340:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36498:16;;;;;;;;;;;36480:46;;;36564:15;;;;;;;;;;;36545:40;;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;36614:4;36480:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;36464:13;;:166;;;;;;;;;;;;;;;;;;36196:442::o:0;32742:104::-;14805:12;:10;:12::i;:::-;14795:22;;:6;;;;;;;;;;:22;;;14787:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32834:4:::1;32807:14;:24;32822:8;32807:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;32742:104:::0;:::o;18136:119::-;18202:7;18229:9;:18;18239:7;18229:18;;;;;;;;;;;;;;;;18222:25;;18136:119;;;:::o;32974:121::-;33039:4;33063:14;:24;33078:8;33063:24;;;;;;;;;;;;;;;;;;;;;;;;;33056:31;;32974:121;;;:::o;17098:87::-;17137:13;17170:7;17163:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17098:87;:::o;32621:109::-;32672:7;32699:23;;32692:30;;32621:109;:::o;20479:269::-;20572:4;20589:129;20598:12;:10;:12::i;:::-;20612:7;20621:96;20660:15;20621:96;;;;;;;;;;;;;;;;;:11;:25;20633:12;:10;:12::i;:::-;20621:25;;;;;;;;;;;;;;;:34;20647:7;20621:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20589:8;:129::i;:::-;20736:4;20729:11;;20479:269;;;;:::o;33888:715::-;33974:4;33994:14;:26;34009:10;33994:26;;;;;;;;;;;;;;;;;;;;;;;;;:55;;;;34024:14;:25;34039:9;34024:25;;;;;;;;;;;;;;;;;;;;;;;;;33994:55;33990:91;;;34071:5;34059:17;;:8;;;;;;;;;;;:17;;;34051:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33990:91;34092:19;34114:6;34092:28;;34174:29;34206:23;34224:4;34206:13;34217:1;34206:6;:10;;:13;;;;:::i;:::-;:17;;:23;;;;:::i;:::-;34174:55;;34274:1;34244:32;;:18;;;;;;;;;;;:32;;;;:57;;;;;34293:8;;;;;;;;;;;34280:21;;:9;:21;;;;34244:57;34240:300;;;34318:57;34333:18;;;;;;;;;;;34353:21;34318:14;:57::i;:::-;;34416:50;34444:21;34416:23;;:27;;:50;;;;:::i;:::-;34390:23;:76;;;;34495:33;34506:21;34495:6;:10;;:33;;;;:::i;:::-;34481:47;;34240:300;34557:38;34572:9;34583:11;34557:14;:38::i;:::-;34550:45;;;;33888:715;;;;:::o;18706:151::-;18795:7;18822:11;:18;18834:5;18822:18;;;;;;;;;;;;;;;:27;18841:7;18822:27;;;;;;;;;;;;;;;;18815:34;;18706:151;;;;:::o;35719:419::-;34763:12;:10;:12::i;:::-;34752:23;;:7;:5;:7::i;:::-;:23;;;:50;;;;34790:12;:10;:12::i;:::-;34779:23;;:7;:5;:7::i;:::-;:23;;;34752:50;34744:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35873:1:::1;35844:31;;:17;:31;;;;:65;;;;;35907:1;35879:30;;:16;:30;;;;35844:65;35836:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:17;35958:16;;:36;;;;;;;;;;;;;;;;;;36023:16;36005:15;;:34;;;;;;;;;;;;;;;;;;36081:1;36056:27;;:13;;;;;;;;;;;:27;;;36052:79;;;36100:19;:17;:19::i;:::-;36052:79;35719:419:::0;;:::o;32854:112::-;14805:12;:10;:12::i;:::-;14795:22;;:6;;;;;;;;;;:22;;;14787:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32953:5:::1;32926:14;:24;32941:8;32926:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;32854:112:::0;:::o;4749:181::-;4807:7;4827:9;4843:1;4839;:5;4827:17;;4868:1;4863;:6;;4855:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4921:1;4914:8;;;4749:181;;;;:::o;1471:106::-;1524:15;1559:10;1552:17;;1471:106;:::o;22957:344::-;23076:1;23059:19;;:5;:19;;;;23051:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23157:1;23138:21;;:7;:21;;;;23130:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23239:6;23209:11;:18;23221:5;23209:18;;;;;;;;;;;;;;;:27;23228:7;23209:27;;;;;;;;;;;;;;;:36;;;;23277:7;23261:32;;23270:5;23261:32;;;23286:6;23261:32;;;;;;;;;;;;;;;;;;22957:344;;;:::o;5893:471::-;5951:7;6201:1;6196;:6;6192:47;;;6226:1;6219:8;;;;6192:47;6251:9;6267:1;6263;:5;6251:17;;6296:1;6291;6287;:5;;;;;;:10;6279:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6355:1;6348:8;;;5893:471;;;;;:::o;6772:132::-;6830:7;6857:39;6861:1;6864;6857:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6850:46;;6772:132;;;;:::o;19647:321::-;19753:4;19770:36;19780:6;19788:9;19799:6;19770:9;:36::i;:::-;19817:121;19826:6;19834:12;:10;:12::i;:::-;19848:89;19886:6;19848:89;;;;;;;;;;;;;;;;;:11;:19;19860:6;19848:19;;;;;;;;;;;;;;;:33;19868:12;:10;:12::i;:::-;19848:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;19817:8;:121::i;:::-;19956:4;19949:11;;19647:321;;;;;:::o;5144:136::-;5202:7;5229:43;5233:1;5236;5229:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5222:50;;5144:136;;;;:::o;22105:414::-;22208:1;22189:21;;:7;:21;;;;22181:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22259:49;22280:7;22297:1;22301:6;22259:20;:49::i;:::-;22340:68;22363:6;22340:68;;;;;;;;;;;;;;;;;:9;:18;22350:7;22340:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;22319:9;:18;22329:7;22319:18;;;;;;;;;;;;;;;:89;;;;22434:24;22451:6;22434:12;;:16;;:24;;;;:::i;:::-;22419:12;:39;;;;22500:1;22474:37;;22483:7;22474:37;;;22504:6;22474:37;;;;;;;;;;;;;;;;;;22105:414;;:::o;30520:81::-;30560:7;30587:6;;;;;;;;;;;30580:13;;30520:81;:::o;14581:::-;14621:7;14648:6;;;;;;;;;;;14641:13;;14581:81;:::o;5514:192::-;5600:7;5633:1;5628;:6;;5636:12;5620:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5660:9;5676:1;5672;:5;5660:17;;5697:1;5690:8;;;5514:192;;;;;:::o;18468:175::-;18554:4;18571:42;18581:12;:10;:12::i;:::-;18595:9;18606:6;18571:9;:42::i;:::-;18631:4;18624:11;;18468:175;;;;:::o;7332:278::-;7418:7;7450:1;7446;:5;7453:12;7438:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7477:9;7493:1;7489;:5;;;;;;7477:17;;7601:1;7594:8;;;7332:278;;;;;:::o;21238:535::-;21362:1;21344:20;;:6;:20;;;;21336:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21446:1;21425:23;;:9;:23;;;;21417:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21499:47;21520:6;21528:9;21539:6;21499:20;:47::i;:::-;21577:71;21599:6;21577:71;;;;;;;;;;;;;;;;;:9;:17;21587:6;21577:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21557:9;:17;21567:6;21557:17;;;;;;;;;;;;;;;:91;;;;21682:32;21707:6;21682:9;:20;21692:9;21682:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21659:9;:20;21669:9;21659:20;;;;;;;;;;;;;;;:55;;;;21747:9;21730:35;;21739:6;21730:35;;;21758:6;21730:35;;;;;;;;;;;;;;;;;;21238:535;;;:::o;24054:92::-;;;;:::o
Swarm Source
ipfs://0bdcab7b0ab1148545376dbbb471abf403f0a6cd331bfdb35b3ab0ec92949371
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.