ERC-20
MEME
Overview
Max Total Supply
1,000,000,000,000 FROGZ
Holders
206 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.832270301 FROGZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
thefrog
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Solidity version specified pragma solidity ^0.8.21; // Importing necessary contracts and interfaces import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; // SafeMath library for secure arithmetic operations library SafeMath { // Safe addition function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } // Safe subtraction function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } // Safe subtraction with error message function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } // Safe multiplication function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } // Safe division function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } // Safe division with error message function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; return c; } } // Interface for the Uniswap V2 Factory contract interface IUniswapV2Factory { function getPair(address tokenA, address tokenB) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); } // Main contract definition contract thefrog is Context, IERC20, Ownable { using SafeMath for uint256; // Mapping to track token balances of users mapping (address => uint256) private _balances; uint256 private devFees; uint256 private liquidityFees; // Mapping to track allowed token transfers between users mapping (address => mapping (address => uint256)) private _allowances; // Various contract parameters and settings uint8 private constant _decimals = 9; uint256 private constant _totalSupply = 1000000000000 * 10**_decimals; string private constant _name = unicode"the frog"; string private constant _symbol = unicode"FROGZ"; uint256 public maxTx = 0; uint256 public maxWallet = 0; bool private limitsInPlace = true; // Contract fees and settings uint256 private taxFee = 3; uint8 private constant liquifyPercentage = 35; uint8 private constant devPercentage = 65; uint256 public _taxSwapThreshold = 5000000000 * 10**_decimals; uint256 public _maxTaxSwap = 5000000000 * 10**_decimals; address payable private devWallet = payable(0x8e675fE593e3ee733671AFf4256AF6feAf3f4dDF); address payable private liquidityWallet = payable(0xF62d96b6652750e5879553EcBBac6962197eB9Fb); //Fee liquiditation prevention parameters uint256 public lastFeeBlock = 0; uint public feesThisBlock = 0; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private uniswapPairSet = false; bool private inSwap = false; bool private swapEnabled = false; // Modifier to lock token swaps while they are being executed modifier lockTheSwap { inSwap = true; _; inSwap = false; } // Contract constructor constructor () { _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); } // Private function to handle transfers and apply fees function transferAndBuild(address from, address to, uint256 amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 taxAmount = 0; // Calculate tax amount if it's not a transaction from or to the owner if (from != owner() && to != owner()) { uint currentblock = block.number; taxAmount = amount.mul(taxFee).div(100); //If limits are in place for tx amount and wallet, check those if (limitsInPlace && from == uniswapV2Pair && to != address(uniswapV2Router) && to != address(devWallet) && to != address(liquidityWallet)) { require(amount <= maxTx, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= maxWallet, "Exceeds the maxWalletSize."); } uint256 contractTokenBalance = balanceOf(address(this)); // Check if the token is eligible for liquidity swap if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold) { if(checkLiquifyEligibility(currentblock)){ //Swap tokens for ETH swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap))); // Transfer ETH to the dev wallet if balance exceeds a threshold devWallet.transfer(address(this).balance); } } } // Apply tax and transfer tokens if (taxAmount > 0) { // Transfer thefrog tokens to the liquidity wallet uint256 liquifyAmount = getLiquifyAmount(taxAmount); _balances[liquidityWallet] = _balances[liquidityWallet].add(liquifyAmount); emit Transfer(from, liquidityWallet, liquifyAmount); //Store the rest of the tokens on the contract for dev fees to be sold uint256 devAmount = getDevAmount(taxAmount); _balances[address(this)] = _balances[address(this)].add(devAmount); emit Transfer(from, address(this), devAmount); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } // Function to calculate the dev fee function getDevAmount(uint256 tokenAmount) private pure returns (uint256) { return tokenAmount.mul(devPercentage).div(100); } // Function to calculate the liquidity fee function getLiquifyAmount(uint256 tokenAmount) private pure returns (uint256) { return tokenAmount.mul(liquifyPercentage).div(100); } // Function to get the minimum of two numbers function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } // Function to swap tokens for ETH on the Uniswap V2 Router function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } // Function to check if the token can be swapped for liquidity // This limits the possibility of fees triggering too often function checkLiquifyEligibility(uint currentblock) private returns (bool) { require(currentblock >= lastFeeBlock, "Blockchain state invalid"); if (inSwap) { return false; } else if (currentblock > lastFeeBlock) { lastFeeBlock = currentblock; feesThisBlock = 0; return true; } else { if (feesThisBlock < 2) { feesThisBlock += 1; return true; } else { return false; } } } // Function to update trading limits and settings function SetFrogSettingz(bool _limitsInPlace, uint256 _maxTxPercentage, uint256 _maxWalletPercentage, bool _swapEnabled) external onlyOwner { require(_maxTxPercentage > 1, "Max tx must be set to at least 1"); require(_maxWalletPercentage > 1, "Max wallet must be set to at least 1"); limitsInPlace = _limitsInPlace; maxTx = _totalSupply.mul(_maxTxPercentage).div(100); maxWallet = _totalSupply.mul(_maxWalletPercentage).div(100); swapEnabled = _swapEnabled; } // Implementation of ERC20 allowance function function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } // Implementation of ERC20 approve function function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } // Internal function to approve token spending function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // Implementation of ERC20 transfer function function transfer(address recipient, uint256 amount) public override returns (bool) { transferAndBuild(_msgSender(), recipient, amount); return true; } // Implementation of ERC20 transferFrom function function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { transferAndBuild(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } // ERC20 name function function name() public pure returns (string memory) { return _name; } // ERC20 symbol function function symbol() public pure returns (string memory) { return _symbol; } // ERC20 decimals function function decimals() public pure returns (uint8) { return _decimals; } // ERC20 totalSupply function function totalSupply() public pure override returns (uint256) { return _totalSupply; } // ERC20 balanceOf function function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } // Fallback function to accept ETH receive() external payable {} }
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; }
// 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 (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); } }
// 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); }
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 // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"bool","name":"_limitsInPlace","type":"bool"},{"internalType":"uint256","name":"_maxTxPercentage","type":"uint256"},{"internalType":"uint256","name":"_maxWalletPercentage","type":"uint256"},{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"SetFrogSettingz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"feesThisBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastFeeBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040525f6005555f600655600160075f6101000a81548160ff02191690831515021790555060036008556009600a6200003b91906200071e565b64012a05f2006200004d91906200076e565b6009556009600a6200006091906200071e565b64012a05f2006200007291906200076e565b600a55738e675fe593e3ee733671aff4256af6feaf3f4ddf600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f62d96b6652750e5879553ecbbac6962197eb9fb600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600d555f600e555f601060146101000a81548160ff0219169083151502179055505f601060156101000a81548160ff0219169083151502179055505f601060166101000a81548160ff0219169083151502179055503480156200017f575f80fd5b50620001a062000194620004c460201b60201c565b620004cb60201b60201c565b6009600a620001b091906200071e565b64e8d4a51000620001c291906200076e565b60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a6200026291906200071e565b64e8d4a510006200027491906200076e565b604051620002839190620007c9565b60405180910390a3737a250d5630b4cf539739df2c5dacb4c659f2488d600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200034a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000370919062000849565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200041d919062000849565b6040518363ffffffff1660e01b81526004016200043c9291906200088a565b6020604051808303815f875af115801562000459573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200047f919062000849565b60105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620008b5565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200061657808604811115620005ee57620005ed6200058c565b5b6001851615620005fe5780820291505b80810290506200060e85620005b9565b9450620005ce565b94509492505050565b5f8262000630576001905062000702565b816200063f575f905062000702565b8160018114620006585760028114620006635762000699565b600191505062000702565b60ff8411156200067857620006776200058c565b5b8360020a9150848211156200069257620006916200058c565b5b5062000702565b5060208310610133831016604e8410600b8410161715620006d35782820a905083811115620006cd57620006cc6200058c565b5b62000702565b620006e28484846001620005c5565b92509050818404811115620006fc57620006fb6200058c565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f6200072a8262000709565b9150620007378362000712565b9250620007667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200061f565b905092915050565b5f6200077a8262000709565b9150620007878362000709565b9250828202620007978162000709565b91508282048414831517620007b157620007b06200058c565b5b5092915050565b620007c38162000709565b82525050565b5f602082019050620007de5f830184620007b8565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200081382620007e8565b9050919050565b620008258162000807565b811462000830575f80fd5b50565b5f8151905062000843816200081a565b92915050565b5f60208284031215620008615762000860620007e4565b5b5f620008708482850162000833565b91505092915050565b620008848162000807565b82525050565b5f6040820190506200089f5f83018562000879565b620008ae602083018462000879565b9392505050565b612a8780620008c35f395ff3fe608060405260043610610117575f3560e01c80637437681e1161009f578063bf474bed11610063578063bf474bed146103a0578063dd62ed3e146103ca578063e4275bc114610406578063f2fde38b14610430578063f8b45b05146104585761011e565b80637437681e146102be5780638da5cb5b146102e8578063918d032c1461031257806395d89b411461033a578063a9059cbb146103645761011e565b80631a0a2e14116100e65780631a0a2e14146101dc57806323b872dd14610206578063313ce5671461024257806370a082311461026c578063715018a6146102a85761011e565b806306fdde0314610122578063095ea7b31461014c5780630faee56f1461018857806318160ddd146101b25761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b50610136610482565b6040516101439190611bc8565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d9190611c79565b6104bf565b60405161017f9190611cd1565b60405180910390f35b348015610193575f80fd5b5061019c6104dc565b6040516101a99190611cf9565b60405180910390f35b3480156101bd575f80fd5b506101c66104e2565b6040516101d39190611cf9565b60405180910390f35b3480156101e7575f80fd5b506101f0610506565b6040516101fd9190611cf9565b60405180910390f35b348015610211575f80fd5b5061022c60048036038101906102279190611d12565b61050c565b6040516102399190611cd1565b60405180910390f35b34801561024d575f80fd5b506102566105e0565b6040516102639190611d7d565b60405180910390f35b348015610277575f80fd5b50610292600480360381019061028d9190611d96565b6105e8565b60405161029f9190611cf9565b60405180910390f35b3480156102b3575f80fd5b506102bc61062e565b005b3480156102c9575f80fd5b506102d2610641565b6040516102df9190611cf9565b60405180910390f35b3480156102f3575f80fd5b506102fc610647565b6040516103099190611dd0565b60405180910390f35b34801561031d575f80fd5b5061033860048036038101906103339190611e13565b61066e565b005b348015610345575f80fd5b5061034e6107c7565b60405161035b9190611bc8565b60405180910390f35b34801561036f575f80fd5b5061038a60048036038101906103859190611c79565b610804565b6040516103979190611cd1565b60405180910390f35b3480156103ab575f80fd5b506103b4610821565b6040516103c19190611cf9565b60405180910390f35b3480156103d5575f80fd5b506103f060048036038101906103eb9190611e77565b610827565b6040516103fd9190611cf9565b60405180910390f35b348015610411575f80fd5b5061041a6108a9565b6040516104279190611cf9565b60405180910390f35b34801561043b575f80fd5b5061045660048036038101906104519190611d96565b6108af565b005b348015610463575f80fd5b5061046c610931565b6040516104799190611cf9565b60405180910390f35b60606040518060400160405280600881526020017f7468652066726f67000000000000000000000000000000000000000000000000815250905090565b5f6104d26104cb610937565b848461093e565b6001905092915050565b600a5481565b5f6009600a6104f19190612011565b64e8d4a51000610501919061205b565b905090565b600e5481565b5f610518848484610b01565b6105d584610524610937565b6105d085604051806060016040528060288152602001612a2a6028913960045f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610587610937565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546114359092919063ffffffff16565b61093e565b600190509392505050565b5f6009905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610636611497565b61063f5f611515565b565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610676611497565b600183116106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b0906120e6565b60405180910390fd5b600182116106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f390612174565b60405180910390fd5b8360075f6101000a81548160ff021916908315150217905550610758606461074a856009600a61072c9190612011565b64e8d4a5100061073c919061205b565b6115d690919063ffffffff16565b61164d90919063ffffffff16565b6005819055506107a16064610793846009600a6107759190612011565b64e8d4a51000610785919061205b565b6115d690919063ffffffff16565b61164d90919063ffffffff16565b60068190555080601060166101000a81548160ff02191690831515021790555050505050565b60606040518060400160405280600581526020017f46524f475a000000000000000000000000000000000000000000000000000000815250905090565b5f610817610810610937565b8484610b01565b6001905092915050565b60095481565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600d5481565b6108b7611497565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90612202565b60405180910390fd5b61092e81611515565b50565b60065481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a390612290565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a119061231e565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610af49190611cf9565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906123ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd49061243a565b60405180910390fd5b5f8111610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906124c8565b60405180910390fd5b5f610c28610647565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610c965750610c66610647565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611012575f439050610cc76064610cb9600854866115d690919063ffffffff16565b61164d90919063ffffffff16565b915060075f9054906101000a900460ff168015610d30575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015610d895750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610de25750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610e3b5750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610ede57600554831115610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90612530565b60405180910390fd5b60065483610e92866105e8565b610e9c919061254e565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed4906125cb565b60405180910390fd5b5b5f610ee8306105e8565b9050601060159054906101000a900460ff16158015610f53575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015610f6b5750601060169054906101000a900460ff165b8015610f78575060095481115b1561100f57610f8682611696565b1561100e57610fa8610fa385610f9e84600a54611750565b611750565b611768565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561100c573d5f803e3d5ffd5b505b5b50505b5f811115611284575f611024826119d3565b90506110978160015f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a0590919063ffffffff16565b60015f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111779190611cf9565b60405180910390a35f61118983611a62565b90506111db8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a0590919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112799190611cf9565b60405180910390a350505b6112d48260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a9490919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061137761132b8284611a9490919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a0590919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61141a8486611a9490919063ffffffff16565b6040516114279190611cf9565b60405180910390a350505050565b5f83831115829061147c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114739190611bc8565b60405180910390fd5b505f838561148a91906125e9565b9050809150509392505050565b61149f610937565b73ffffffffffffffffffffffffffffffffffffffff166114bd610647565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90612666565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8083036115e6575f9050611647565b5f82846115f3919061205b565b905082848261160291906126b1565b14611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990612751565b60405180910390fd5b809150505b92915050565b5f61168e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611add565b905092915050565b5f600d548210156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d3906127b9565b60405180910390fd5b601060159054906101000a900460ff16156116f9575f905061174b565b600d5482111561171a5781600d819055505f600e819055506001905061174b565b6002600e541015611747576001600e5f828254611737919061254e565b925050819055506001905061174b565b5f90505b919050565b5f81831161175e5782611760565b815b905092915050565b6001601060156101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561179f5761179e6127d7565b5b6040519080825280602002602001820160405280156117cd5781602001602082028036833780820191505090505b50905030815f815181106117e4576117e3612804565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611888573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ac9190612845565b816001815181106118c0576118bf612804565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061192630600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461093e565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611988959493929190612969565b5f604051808303815f87803b15801561199f575f80fd5b505af11580156119b1573d5f803e3d5ffd5b50505050505f601060156101000a81548160ff02191690831515021790555050565b5f6119fe60646119f0602360ff16856115d690919063ffffffff16565b61164d90919063ffffffff16565b9050919050565b5f808284611a13919061254e565b905083811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612a0b565b60405180910390fd5b8091505092915050565b5f611a8d6064611a7f604160ff16856115d690919063ffffffff16565b61164d90919063ffffffff16565b9050919050565b5f611ad583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611435565b905092915050565b5f8083118290611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a9190611bc8565b60405180910390fd5b505f8385611b3191906126b1565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b75578082015181840152602081019050611b5a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b9a82611b3e565b611ba48185611b48565b9350611bb4818560208601611b58565b611bbd81611b80565b840191505092915050565b5f6020820190508181035f830152611be08184611b90565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c1582611bec565b9050919050565b611c2581611c0b565b8114611c2f575f80fd5b50565b5f81359050611c4081611c1c565b92915050565b5f819050919050565b611c5881611c46565b8114611c62575f80fd5b50565b5f81359050611c7381611c4f565b92915050565b5f8060408385031215611c8f57611c8e611be8565b5b5f611c9c85828601611c32565b9250506020611cad85828601611c65565b9150509250929050565b5f8115159050919050565b611ccb81611cb7565b82525050565b5f602082019050611ce45f830184611cc2565b92915050565b611cf381611c46565b82525050565b5f602082019050611d0c5f830184611cea565b92915050565b5f805f60608486031215611d2957611d28611be8565b5b5f611d3686828701611c32565b9350506020611d4786828701611c32565b9250506040611d5886828701611c65565b9150509250925092565b5f60ff82169050919050565b611d7781611d62565b82525050565b5f602082019050611d905f830184611d6e565b92915050565b5f60208284031215611dab57611daa611be8565b5b5f611db884828501611c32565b91505092915050565b611dca81611c0b565b82525050565b5f602082019050611de35f830184611dc1565b92915050565b611df281611cb7565b8114611dfc575f80fd5b50565b5f81359050611e0d81611de9565b92915050565b5f805f8060808587031215611e2b57611e2a611be8565b5b5f611e3887828801611dff565b9450506020611e4987828801611c65565b9350506040611e5a87828801611c65565b9250506060611e6b87828801611dff565b91505092959194509250565b5f8060408385031215611e8d57611e8c611be8565b5b5f611e9a85828601611c32565b9250506020611eab85828601611c32565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611f3757808604811115611f1357611f12611eb5565b5b6001851615611f225780820291505b8081029050611f3085611ee2565b9450611ef7565b94509492505050565b5f82611f4f576001905061200a565b81611f5c575f905061200a565b8160018114611f725760028114611f7c57611fab565b600191505061200a565b60ff841115611f8e57611f8d611eb5565b5b8360020a915084821115611fa557611fa4611eb5565b5b5061200a565b5060208310610133831016604e8410600b8410161715611fe05782820a905083811115611fdb57611fda611eb5565b5b61200a565b611fed8484846001611eee565b9250905081840481111561200457612003611eb5565b5b81810290505b9392505050565b5f61201b82611c46565b915061202683611d62565b92506120537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f40565b905092915050565b5f61206582611c46565b915061207083611c46565b925082820261207e81611c46565b9150828204841483151761209557612094611eb5565b5b5092915050565b7f4d6178207478206d7573742062652073657420746f206174206c6561737420315f82015250565b5f6120d0602083611b48565b91506120db8261209c565b602082019050919050565b5f6020820190508181035f8301526120fd816120c4565b9050919050565b7f4d61782077616c6c6574206d7573742062652073657420746f206174206c65615f8201527f7374203100000000000000000000000000000000000000000000000000000000602082015250565b5f61215e602483611b48565b915061216982612104565b604082019050919050565b5f6020820190508181035f83015261218b81612152565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6121ec602683611b48565b91506121f782612192565b604082019050919050565b5f6020820190508181035f830152612219816121e0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61227a602483611b48565b915061228582612220565b604082019050919050565b5f6020820190508181035f8301526122a78161226e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612308602283611b48565b9150612313826122ae565b604082019050919050565b5f6020820190508181035f830152612335816122fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612396602583611b48565b91506123a18261233c565b604082019050919050565b5f6020820190508181035f8301526123c38161238a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612424602383611b48565b915061242f826123ca565b604082019050919050565b5f6020820190508181035f83015261245181612418565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6124b2602983611b48565b91506124bd82612458565b604082019050919050565b5f6020820190508181035f8301526124df816124a6565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f61251a601983611b48565b9150612525826124e6565b602082019050919050565b5f6020820190508181035f8301526125478161250e565b9050919050565b5f61255882611c46565b915061256383611c46565b925082820190508082111561257b5761257a611eb5565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f6125b5601a83611b48565b91506125c082612581565b602082019050919050565b5f6020820190508181035f8301526125e2816125a9565b9050919050565b5f6125f382611c46565b91506125fe83611c46565b925082820390508181111561261657612615611eb5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612650602083611b48565b915061265b8261261c565b602082019050919050565b5f6020820190508181035f83015261267d81612644565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6126bb82611c46565b91506126c683611c46565b9250826126d6576126d5612684565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61273b602183611b48565b9150612746826126e1565b604082019050919050565b5f6020820190508181035f8301526127688161272f565b9050919050565b7f426c6f636b636861696e20737461746520696e76616c696400000000000000005f82015250565b5f6127a3601883611b48565b91506127ae8261276f565b602082019050919050565b5f6020820190508181035f8301526127d081612797565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061283f81611c1c565b92915050565b5f6020828403121561285a57612859611be8565b5b5f61286784828501612831565b91505092915050565b5f819050919050565b5f819050919050565b5f61289c61289761289284612870565b612879565b611c46565b9050919050565b6128ac81612882565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6128e481611c0b565b82525050565b5f6128f583836128db565b60208301905092915050565b5f602082019050919050565b5f612917826128b2565b61292181856128bc565b935061292c836128cc565b805f5b8381101561295c57815161294388826128ea565b975061294e83612901565b92505060018101905061292f565b5085935050505092915050565b5f60a08201905061297c5f830188611cea565b61298960208301876128a3565b818103604083015261299b818661290d565b90506129aa6060830185611dc1565b6129b76080830184611cea565b9695505050505050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6129f5601b83611b48565b9150612a00826129c1565b602082019050919050565b5f6020820190508181035f830152612a22816129e9565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204c4d8afbf0f4fa5450ebd90b619692a8e3a37bd1e2d7c107ddefbb6cd56ffbf864736f6c63430008150033
Deployed Bytecode
0x608060405260043610610117575f3560e01c80637437681e1161009f578063bf474bed11610063578063bf474bed146103a0578063dd62ed3e146103ca578063e4275bc114610406578063f2fde38b14610430578063f8b45b05146104585761011e565b80637437681e146102be5780638da5cb5b146102e8578063918d032c1461031257806395d89b411461033a578063a9059cbb146103645761011e565b80631a0a2e14116100e65780631a0a2e14146101dc57806323b872dd14610206578063313ce5671461024257806370a082311461026c578063715018a6146102a85761011e565b806306fdde0314610122578063095ea7b31461014c5780630faee56f1461018857806318160ddd146101b25761011e565b3661011e57005b5f80fd5b34801561012d575f80fd5b50610136610482565b6040516101439190611bc8565b60405180910390f35b348015610157575f80fd5b50610172600480360381019061016d9190611c79565b6104bf565b60405161017f9190611cd1565b60405180910390f35b348015610193575f80fd5b5061019c6104dc565b6040516101a99190611cf9565b60405180910390f35b3480156101bd575f80fd5b506101c66104e2565b6040516101d39190611cf9565b60405180910390f35b3480156101e7575f80fd5b506101f0610506565b6040516101fd9190611cf9565b60405180910390f35b348015610211575f80fd5b5061022c60048036038101906102279190611d12565b61050c565b6040516102399190611cd1565b60405180910390f35b34801561024d575f80fd5b506102566105e0565b6040516102639190611d7d565b60405180910390f35b348015610277575f80fd5b50610292600480360381019061028d9190611d96565b6105e8565b60405161029f9190611cf9565b60405180910390f35b3480156102b3575f80fd5b506102bc61062e565b005b3480156102c9575f80fd5b506102d2610641565b6040516102df9190611cf9565b60405180910390f35b3480156102f3575f80fd5b506102fc610647565b6040516103099190611dd0565b60405180910390f35b34801561031d575f80fd5b5061033860048036038101906103339190611e13565b61066e565b005b348015610345575f80fd5b5061034e6107c7565b60405161035b9190611bc8565b60405180910390f35b34801561036f575f80fd5b5061038a60048036038101906103859190611c79565b610804565b6040516103979190611cd1565b60405180910390f35b3480156103ab575f80fd5b506103b4610821565b6040516103c19190611cf9565b60405180910390f35b3480156103d5575f80fd5b506103f060048036038101906103eb9190611e77565b610827565b6040516103fd9190611cf9565b60405180910390f35b348015610411575f80fd5b5061041a6108a9565b6040516104279190611cf9565b60405180910390f35b34801561043b575f80fd5b5061045660048036038101906104519190611d96565b6108af565b005b348015610463575f80fd5b5061046c610931565b6040516104799190611cf9565b60405180910390f35b60606040518060400160405280600881526020017f7468652066726f67000000000000000000000000000000000000000000000000815250905090565b5f6104d26104cb610937565b848461093e565b6001905092915050565b600a5481565b5f6009600a6104f19190612011565b64e8d4a51000610501919061205b565b905090565b600e5481565b5f610518848484610b01565b6105d584610524610937565b6105d085604051806060016040528060288152602001612a2a6028913960045f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610587610937565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546114359092919063ffffffff16565b61093e565b600190509392505050565b5f6009905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610636611497565b61063f5f611515565b565b60055481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610676611497565b600183116106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b0906120e6565b60405180910390fd5b600182116106fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f390612174565b60405180910390fd5b8360075f6101000a81548160ff021916908315150217905550610758606461074a856009600a61072c9190612011565b64e8d4a5100061073c919061205b565b6115d690919063ffffffff16565b61164d90919063ffffffff16565b6005819055506107a16064610793846009600a6107759190612011565b64e8d4a51000610785919061205b565b6115d690919063ffffffff16565b61164d90919063ffffffff16565b60068190555080601060166101000a81548160ff02191690831515021790555050505050565b60606040518060400160405280600581526020017f46524f475a000000000000000000000000000000000000000000000000000000815250905090565b5f610817610810610937565b8484610b01565b6001905092915050565b60095481565b5f60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600d5481565b6108b7611497565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90612202565b60405180910390fd5b61092e81611515565b50565b60065481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a390612290565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a119061231e565b60405180910390fd5b8060045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610af49190611cf9565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b66906123ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd49061243a565b60405180910390fd5b5f8111610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906124c8565b60405180910390fd5b5f610c28610647565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610c965750610c66610647565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611012575f439050610cc76064610cb9600854866115d690919063ffffffff16565b61164d90919063ffffffff16565b915060075f9054906101000a900460ff168015610d30575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015610d895750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610de25750600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610e3b5750600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15610ede57600554831115610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90612530565b60405180910390fd5b60065483610e92866105e8565b610e9c919061254e565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed4906125cb565b60405180910390fd5b5b5f610ee8306105e8565b9050601060159054906101000a900460ff16158015610f53575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8015610f6b5750601060169054906101000a900460ff165b8015610f78575060095481115b1561100f57610f8682611696565b1561100e57610fa8610fa385610f9e84600a54611750565b611750565b611768565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561100c573d5f803e3d5ffd5b505b5b50505b5f811115611284575f611024826119d3565b90506110978160015f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a0590919063ffffffff16565b60015f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111779190611cf9565b60405180910390a35f61118983611a62565b90506111db8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a0590919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112799190611cf9565b60405180910390a350505b6112d48260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a9490919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061137761132b8284611a9490919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611a0590919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61141a8486611a9490919063ffffffff16565b6040516114279190611cf9565b60405180910390a350505050565b5f83831115829061147c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114739190611bc8565b60405180910390fd5b505f838561148a91906125e9565b9050809150509392505050565b61149f610937565b73ffffffffffffffffffffffffffffffffffffffff166114bd610647565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90612666565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8083036115e6575f9050611647565b5f82846115f3919061205b565b905082848261160291906126b1565b14611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990612751565b60405180910390fd5b809150505b92915050565b5f61168e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611add565b905092915050565b5f600d548210156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d3906127b9565b60405180910390fd5b601060159054906101000a900460ff16156116f9575f905061174b565b600d5482111561171a5781600d819055505f600e819055506001905061174b565b6002600e541015611747576001600e5f828254611737919061254e565b925050819055506001905061174b565b5f90505b919050565b5f81831161175e5782611760565b815b905092915050565b6001601060156101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561179f5761179e6127d7565b5b6040519080825280602002602001820160405280156117cd5781602001602082028036833780820191505090505b50905030815f815181106117e4576117e3612804565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611888573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ac9190612845565b816001815181106118c0576118bf612804565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061192630600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461093e565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611988959493929190612969565b5f604051808303815f87803b15801561199f575f80fd5b505af11580156119b1573d5f803e3d5ffd5b50505050505f601060156101000a81548160ff02191690831515021790555050565b5f6119fe60646119f0602360ff16856115d690919063ffffffff16565b61164d90919063ffffffff16565b9050919050565b5f808284611a13919061254e565b905083811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612a0b565b60405180910390fd5b8091505092915050565b5f611a8d6064611a7f604160ff16856115d690919063ffffffff16565b61164d90919063ffffffff16565b9050919050565b5f611ad583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611435565b905092915050565b5f8083118290611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a9190611bc8565b60405180910390fd5b505f8385611b3191906126b1565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611b75578082015181840152602081019050611b5a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b9a82611b3e565b611ba48185611b48565b9350611bb4818560208601611b58565b611bbd81611b80565b840191505092915050565b5f6020820190508181035f830152611be08184611b90565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611c1582611bec565b9050919050565b611c2581611c0b565b8114611c2f575f80fd5b50565b5f81359050611c4081611c1c565b92915050565b5f819050919050565b611c5881611c46565b8114611c62575f80fd5b50565b5f81359050611c7381611c4f565b92915050565b5f8060408385031215611c8f57611c8e611be8565b5b5f611c9c85828601611c32565b9250506020611cad85828601611c65565b9150509250929050565b5f8115159050919050565b611ccb81611cb7565b82525050565b5f602082019050611ce45f830184611cc2565b92915050565b611cf381611c46565b82525050565b5f602082019050611d0c5f830184611cea565b92915050565b5f805f60608486031215611d2957611d28611be8565b5b5f611d3686828701611c32565b9350506020611d4786828701611c32565b9250506040611d5886828701611c65565b9150509250925092565b5f60ff82169050919050565b611d7781611d62565b82525050565b5f602082019050611d905f830184611d6e565b92915050565b5f60208284031215611dab57611daa611be8565b5b5f611db884828501611c32565b91505092915050565b611dca81611c0b565b82525050565b5f602082019050611de35f830184611dc1565b92915050565b611df281611cb7565b8114611dfc575f80fd5b50565b5f81359050611e0d81611de9565b92915050565b5f805f8060808587031215611e2b57611e2a611be8565b5b5f611e3887828801611dff565b9450506020611e4987828801611c65565b9350506040611e5a87828801611c65565b9250506060611e6b87828801611dff565b91505092959194509250565b5f8060408385031215611e8d57611e8c611be8565b5b5f611e9a85828601611c32565b9250506020611eab85828601611c32565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611f3757808604811115611f1357611f12611eb5565b5b6001851615611f225780820291505b8081029050611f3085611ee2565b9450611ef7565b94509492505050565b5f82611f4f576001905061200a565b81611f5c575f905061200a565b8160018114611f725760028114611f7c57611fab565b600191505061200a565b60ff841115611f8e57611f8d611eb5565b5b8360020a915084821115611fa557611fa4611eb5565b5b5061200a565b5060208310610133831016604e8410600b8410161715611fe05782820a905083811115611fdb57611fda611eb5565b5b61200a565b611fed8484846001611eee565b9250905081840481111561200457612003611eb5565b5b81810290505b9392505050565b5f61201b82611c46565b915061202683611d62565b92506120537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f40565b905092915050565b5f61206582611c46565b915061207083611c46565b925082820261207e81611c46565b9150828204841483151761209557612094611eb5565b5b5092915050565b7f4d6178207478206d7573742062652073657420746f206174206c6561737420315f82015250565b5f6120d0602083611b48565b91506120db8261209c565b602082019050919050565b5f6020820190508181035f8301526120fd816120c4565b9050919050565b7f4d61782077616c6c6574206d7573742062652073657420746f206174206c65615f8201527f7374203100000000000000000000000000000000000000000000000000000000602082015250565b5f61215e602483611b48565b915061216982612104565b604082019050919050565b5f6020820190508181035f83015261218b81612152565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6121ec602683611b48565b91506121f782612192565b604082019050919050565b5f6020820190508181035f830152612219816121e0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61227a602483611b48565b915061228582612220565b604082019050919050565b5f6020820190508181035f8301526122a78161226e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612308602283611b48565b9150612313826122ae565b604082019050919050565b5f6020820190508181035f830152612335816122fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612396602583611b48565b91506123a18261233c565b604082019050919050565b5f6020820190508181035f8301526123c38161238a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612424602383611b48565b915061242f826123ca565b604082019050919050565b5f6020820190508181035f83015261245181612418565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f6124b2602983611b48565b91506124bd82612458565b604082019050919050565b5f6020820190508181035f8301526124df816124a6565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f61251a601983611b48565b9150612525826124e6565b602082019050919050565b5f6020820190508181035f8301526125478161250e565b9050919050565b5f61255882611c46565b915061256383611c46565b925082820190508082111561257b5761257a611eb5565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f6125b5601a83611b48565b91506125c082612581565b602082019050919050565b5f6020820190508181035f8301526125e2816125a9565b9050919050565b5f6125f382611c46565b91506125fe83611c46565b925082820390508181111561261657612615611eb5565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612650602083611b48565b915061265b8261261c565b602082019050919050565b5f6020820190508181035f83015261267d81612644565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6126bb82611c46565b91506126c683611c46565b9250826126d6576126d5612684565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61273b602183611b48565b9150612746826126e1565b604082019050919050565b5f6020820190508181035f8301526127688161272f565b9050919050565b7f426c6f636b636861696e20737461746520696e76616c696400000000000000005f82015250565b5f6127a3601883611b48565b91506127ae8261276f565b602082019050919050565b5f6020820190508181035f8301526127d081612797565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061283f81611c1c565b92915050565b5f6020828403121561285a57612859611be8565b5b5f61286784828501612831565b91505092915050565b5f819050919050565b5f819050919050565b5f61289c61289761289284612870565b612879565b611c46565b9050919050565b6128ac81612882565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6128e481611c0b565b82525050565b5f6128f583836128db565b60208301905092915050565b5f602082019050919050565b5f612917826128b2565b61292181856128bc565b935061292c836128cc565b805f5b8381101561295c57815161294388826128ea565b975061294e83612901565b92505060018101905061292f565b5085935050505092915050565b5f60a08201905061297c5f830188611cea565b61298960208301876128a3565b818103604083015261299b818661290d565b90506129aa6060830185611dc1565b6129b76080830184611cea565b9695505050505050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6129f5601b83611b48565b9150612a00826129c1565b602082019050919050565b5f6020820190508181035f830152612a22816129e9565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204c4d8afbf0f4fa5450ebd90b619692a8e3a37bd1e2d7c107ddefbb6cd56ffbf864736f6c63430008150033
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.