ERC-20
Overview
Max Total Supply
1,000,000,000 FAM
Holders
104
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.037871498965213974 FAMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FamShares
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-29 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.16; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function allPairsLength() external view returns (uint256); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut( uint256 amountIn, address[] calldata path ) external view returns (uint256[] memory amounts); function getAmountsIn( uint256 amountOut, address[] calldata path ) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @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); } /** * @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 decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } /** * @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; } } /** * @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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } /** * @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]. * * 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 ) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @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 ) external 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 ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 ) external 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 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 ) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** @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"); _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); } /** * @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"); 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); } /** * @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); } } } 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"); 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); } } /** * @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]. * * 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 FamShares is ERC20, Ownable { uint8 private _decimals = 18; uint256 public taxFee; uint256 public maxTxAmount; uint256 public maxWalletAmount; address public marketingWallet; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; uint256 public _numTokensSellToAddToETH = 100_000 * 10 ** _decimals; bool inSwapAndLiquify; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() ERC20("FamShares", "FAM") { address router; if (block.chainid == 56) { router = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // BSC Pancake Mainnet Router } else if (block.chainid == 97) { router = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // BSC Pancake Testnet Router } else if (block.chainid == 1 || block.chainid == 5) { router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH Uniswap Mainnet % Testnet } else { revert(); } IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( router ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; taxFee = 2; maxTxAmount = 20_000_000 * 10 ** _decimals; maxWalletAmount = 20_000_000 * 10 ** _decimals; marketingWallet = 0xEf82e9B4635516Ca79398a976E6967D815Cdf837; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = true; _mint(msg.sender, (1_000_000_000 * 10 ** _decimals)); } /** * @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 override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance" ); if ( (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify ) { if (from != uniswapV2Pair) { if (balanceOf(address(this)) >= _numTokensSellToAddToETH) { _swapTokensForEth(balanceOf(address(this))); bool sent = payable(marketingWallet).send( address(this).balance ); require(sent, "Failed to send ETH"); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require( amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount" ); if (from == uniswapV2Pair) { require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } uint256 marketingShare = ((amount * taxFee) / 100); transferAmount = amount - marketingShare; _marketingReserves += marketingShare; super._transfer(from, address(this), marketingShare); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } 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 + 300) ); } function _addLiquidity( uint256 tokenAmount, uint256 ethAmount ) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function changeMarketingWallet(address newWallet) public onlyOwner { marketingWallet = newWallet; } function changeTaxFee(uint256 _taxFee) public onlyOwner { require( _taxFee <= 100, "ERC20: total tax must not be greater than 100" ); taxFee = _taxFee; } function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner { maxTxAmount = _maxTxAmount; } function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { maxWalletAmount = _maxWalletAmount; } function changeNumberTokenSellToAddToETH(uint256 _num) public onlyOwner { _numTokensSellToAddToETH = _num; } 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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":[],"name":"_numTokensSellToAddToETH","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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"changeNumberTokenSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxFee","type":"uint256"}],"name":"changeTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526012600560146101000a81548160ff021916908360ff1602179055506000600a55600560149054906101000a900460ff16600a62000043919062000957565b620186a0620000539190620009a8565b600c553480156200006357600080fd5b506040518060400160405280600981526020017f46616d53686172657300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46414d00000000000000000000000000000000000000000000000000000000008152508160039081620000e1919062000c63565b508060049081620000f3919062000c63565b505050620001166200010a620005aa60201b60201c565b620005b260201b60201c565b6000603846036200013e577310ed43c718714eb63d5aa57b78b54704e256024e90506200019e565b60614603620001645773d99d1c33f9fc3444f8101754abc46c52416550d190506200019d565b6001461480620001745750600546145b156200019757737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019c565b600080fd5b5b5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000215919062000db4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a3919062000db4565b6040518363ffffffff1660e01b8152600401620002c292919062000df7565b6020604051808303816000875af1158015620002e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000308919062000db4565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506002600681905550600560149054906101000a900460ff16600a62000395919062000957565b6301312d00620003a69190620009a8565b600781905550600560149054906101000a900460ff16600a620003ca919062000957565b6301312d00620003db9190620009a8565b60088190555073ef82e9b4635516ca79398a976e6967d815cdf837600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005a233600560149054906101000a900460ff16600a62000585919062000957565b633b9aca00620005969190620009a8565b6200067860201b60201c565b505062000f10565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e19062000e85565b60405180910390fd5b8060026000828254620006fe919062000ea7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007b1919062000ef3565b60405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200084b57808604811115620008235762000822620007bd565b5b6001851615620008335780820291505b80810290506200084385620007ec565b945062000803565b94509492505050565b60008262000866576001905062000939565b8162000876576000905062000939565b81600181146200088f57600281146200089a57620008d0565b600191505062000939565b60ff841115620008af57620008ae620007bd565b5b8360020a915084821115620008c957620008c8620007bd565b5b5062000939565b5060208310610133831016604e8410600b84101617156200090a5782820a905083811115620009045762000903620007bd565b5b62000939565b620009198484846001620007f9565b92509050818404811115620009335762000932620007bd565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620009648262000940565b915062000971836200094a565b9250620009a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000854565b905092915050565b6000620009b58262000940565b9150620009c28362000940565b9250828202620009d28162000940565b91508282048414831517620009ec57620009eb620007bd565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7557607f821691505b60208210810362000a8b5762000a8a62000a2d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab6565b62000b01868362000ab6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b4462000b3e62000b388462000940565b62000b19565b62000940565b9050919050565b6000819050919050565b62000b608362000b23565b62000b7862000b6f8262000b4b565b84845462000ac3565b825550505050565b600090565b62000b8f62000b80565b62000b9c81848462000b55565b505050565b5b8181101562000bc45762000bb860008262000b85565b60018101905062000ba2565b5050565b601f82111562000c135762000bdd8162000a91565b62000be88462000aa6565b8101602085101562000bf8578190505b62000c1062000c078562000aa6565b83018262000ba1565b50505b505050565b600082821c905092915050565b600062000c386000198460080262000c18565b1980831691505092915050565b600062000c53838362000c25565b9150826002028217905092915050565b62000c6e82620009f3565b67ffffffffffffffff81111562000c8a5762000c89620009fe565b5b62000c96825462000a5c565b62000ca382828562000bc8565b600060209050601f83116001811462000cdb576000841562000cc6578287015190505b62000cd2858262000c45565b86555062000d42565b601f19841662000ceb8662000a91565b60005b8281101562000d155784890151825560018201915060208501945060208101905062000cee565b8683101562000d35578489015162000d31601f89168262000c25565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d7c8262000d4f565b9050919050565b62000d8e8162000d6f565b811462000d9a57600080fd5b50565b60008151905062000dae8162000d83565b92915050565b60006020828403121562000dcd5762000dcc62000d4a565b5b600062000ddd8482850162000d9d565b91505092915050565b62000df18162000d6f565b82525050565b600060408201905062000e0e600083018562000de6565b62000e1d602083018462000de6565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e6d601f8362000e24565b915062000e7a8262000e35565b602082019050919050565b6000602082019050818103600083015262000ea08162000e5e565b9050919050565b600062000eb48262000940565b915062000ec18362000940565b925082820190508082111562000edc5762000edb620007bd565b5b92915050565b62000eed8162000940565b82525050565b600060208201905062000f0a600083018462000ee2565b92915050565b60805160a05161279762000f67600039600081816107a101528181610f1d01528181610f7201528181610fe001526111e801526000818161070401528181611504015281816115e5015261160c01526127976000f3fe6080604052600436106101855760003560e01c806381bfdcca116100d1578063a9059cbb1161008a578063d7fdd19f11610064578063d7fdd19f14610593578063dd62ed3e146105bc578063eac05ab5146105f9578063f2fde38b146106245761018c565b8063a9059cbb14610502578063aa4bde281461053f578063bb85c6d11461056a5761018c565b806381bfdcca146103f05780638c0b5e22146104195780638da5cb5b1461044457806395d89b411461046f578063a071dcf41461049a578063a457c2d7146104c55761018c565b8063395093511161013e578063677daa5711610118578063677daa571461034857806370a0823114610371578063715018a6146103ae57806375f0a874146103c55761018c565b806339509351146102b757806349bd5a5e146102f4578063584e8d2a1461031f5761018c565b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101f957806318160ddd1461022457806323b872dd1461024f578063313ce5671461028c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a661064d565b6040516101b391906119ba565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611a75565b6106df565b6040516101f09190611ad0565b60405180910390f35b34801561020557600080fd5b5061020e610702565b60405161021b9190611b4a565b60405180910390f35b34801561023057600080fd5b50610239610726565b6040516102469190611b74565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190611b8f565b610730565b6040516102839190611ad0565b60405180910390f35b34801561029857600080fd5b506102a161075f565b6040516102ae9190611bfe565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190611a75565b610768565b6040516102eb9190611ad0565b60405180910390f35b34801561030057600080fd5b5061030961079f565b6040516103169190611c28565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190611c43565b6107c3565b005b34801561035457600080fd5b5061036f600480360381019061036a9190611c43565b610819565b005b34801561037d57600080fd5b5061039860048036038101906103939190611c70565b61082b565b6040516103a59190611b74565b60405180910390f35b3480156103ba57600080fd5b506103c3610873565b005b3480156103d157600080fd5b506103da610887565b6040516103e79190611c28565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190611c43565b6108ad565b005b34801561042557600080fd5b5061042e6108bf565b60405161043b9190611b74565b60405180910390f35b34801561045057600080fd5b506104596108c5565b6040516104669190611c28565b60405180910390f35b34801561047b57600080fd5b506104846108ef565b60405161049191906119ba565b60405180910390f35b3480156104a657600080fd5b506104af610981565b6040516104bc9190611b74565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190611a75565b610987565b6040516104f99190611ad0565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190611a75565b6109fe565b6040516105369190611ad0565b60405180910390f35b34801561054b57600080fd5b50610554610a21565b6040516105619190611b74565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190611c70565b610a27565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190611c43565b610a73565b005b3480156105c857600080fd5b506105e360048036038101906105de9190611c9d565b610a85565b6040516105f09190611b74565b60405180910390f35b34801561060557600080fd5b5061060e610b0c565b60405161061b9190611b74565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190611c70565b610b12565b005b60606003805461065c90611d0c565b80601f016020809104026020016040519081016040528092919081815260200182805461068890611d0c565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b5050505050905090565b6000806106ea610b95565b90506106f7818585610b9d565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061073b610b95565b9050610748858285610d66565b610753858585610df2565b60019150509392505050565b60006012905090565b600080610773610b95565b90506107948185856107858589610a85565b61078f9190611d6c565b610b9d565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6107cb611306565b606481111561080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690611e12565b60405180910390fd5b8060068190555050565b610821611306565b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61087b611306565b6108856000611384565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b5611306565b8060088190555050565b60075481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108fe90611d0c565b80601f016020809104026020016040519081016040528092919081815260200182805461092a90611d0c565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b60065481565b600080610992610b95565b905060006109a08286610a85565b9050838110156109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90611ea4565b60405180910390fd5b6109f28286868403610b9d565b60019250505092915050565b600080610a09610b95565b9050610a16818585610df2565b600191505092915050565b60085481565b610a2f611306565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a7b611306565b80600c8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b610b1a611306565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090611f36565b60405180910390fd5b610b9281611384565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390611fc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061205a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d599190611b74565b60405180910390a3505050565b6000610d728484610a85565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dec5781811015610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906120c6565b60405180910390fd5b610deb8484848403610b9d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890612158565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec7906121ea565b60405180910390fd5b80610eda8461082b565b1015610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f129061227c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fc057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610fd95750600d60009054906101000a900460ff16155b156112f5577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110f157600c5461103d3061082b565b106110f05761105361104e3061082b565b61144a565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5906122e8565b60405180910390fd5b505b5b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111945750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111a1578190506112e4565b6007548211156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061237a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611292576008546112458461082b565b836112509190611d6c565b1115611291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112889061240c565b60405180910390fd5b5b60006064600654846112a4919061242c565b6112ae919061249d565b905080836112bc91906124ce565b915080600a60008282546112d09190611d6c565b925050819055506112e28530836116ca565b505b6112ef8484836116ca565b50611301565b6113008383836116ca565b5b505050565b61130e610b95565b73ffffffffffffffffffffffffffffffffffffffff1661132c6108c5565b73ffffffffffffffffffffffffffffffffffffffff1614611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061254e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156114825761148161256e565b5b6040519080825280602002602001820160405280156114b05781602001602082028036833780820191505090505b50905030816000815181106114c8576114c761259d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561156d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159191906125e1565b816001815181106115a5576115a461259d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061160a307f000000000000000000000000000000000000000000000000000000000000000084610b9d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426116599190611d6c565b6040518663ffffffff1660e01b8152600401611679959493929190612707565b600060405180830381600087803b15801561169357600080fd5b505af11580156116a7573d6000803e3d6000fd5b50505050506000600d60006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090612158565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906121ea565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118259061227c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161191c9190611b74565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611964578082015181840152602081019050611949565b60008484015250505050565b6000601f19601f8301169050919050565b600061198c8261192a565b6119968185611935565b93506119a6818560208601611946565b6119af81611970565b840191505092915050565b600060208201905081810360008301526119d48184611981565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a0c826119e1565b9050919050565b611a1c81611a01565b8114611a2757600080fd5b50565b600081359050611a3981611a13565b92915050565b6000819050919050565b611a5281611a3f565b8114611a5d57600080fd5b50565b600081359050611a6f81611a49565b92915050565b60008060408385031215611a8c57611a8b6119dc565b5b6000611a9a85828601611a2a565b9250506020611aab85828601611a60565b9150509250929050565b60008115159050919050565b611aca81611ab5565b82525050565b6000602082019050611ae56000830184611ac1565b92915050565b6000819050919050565b6000611b10611b0b611b06846119e1565b611aeb565b6119e1565b9050919050565b6000611b2282611af5565b9050919050565b6000611b3482611b17565b9050919050565b611b4481611b29565b82525050565b6000602082019050611b5f6000830184611b3b565b92915050565b611b6e81611a3f565b82525050565b6000602082019050611b896000830184611b65565b92915050565b600080600060608486031215611ba857611ba76119dc565b5b6000611bb686828701611a2a565b9350506020611bc786828701611a2a565b9250506040611bd886828701611a60565b9150509250925092565b600060ff82169050919050565b611bf881611be2565b82525050565b6000602082019050611c136000830184611bef565b92915050565b611c2281611a01565b82525050565b6000602082019050611c3d6000830184611c19565b92915050565b600060208284031215611c5957611c586119dc565b5b6000611c6784828501611a60565b91505092915050565b600060208284031215611c8657611c856119dc565b5b6000611c9484828501611a2a565b91505092915050565b60008060408385031215611cb457611cb36119dc565b5b6000611cc285828601611a2a565b9250506020611cd385828601611a2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d2457607f821691505b602082108103611d3757611d36611cdd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d7782611a3f565b9150611d8283611a3f565b9250828201905080821115611d9a57611d99611d3d565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611dfc602d83611935565b9150611e0782611da0565b604082019050919050565b60006020820190508181036000830152611e2b81611def565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e8e602583611935565b9150611e9982611e32565b604082019050919050565b60006020820190508181036000830152611ebd81611e81565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f20602683611935565b9150611f2b82611ec4565b604082019050919050565b60006020820190508181036000830152611f4f81611f13565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fb2602483611935565b9150611fbd82611f56565b604082019050919050565b60006020820190508181036000830152611fe181611fa5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612044602283611935565b915061204f82611fe8565b604082019050919050565b6000602082019050818103600083015261207381612037565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120b0601d83611935565b91506120bb8261207a565b602082019050919050565b600060208201905081810360008301526120df816120a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612142602583611935565b915061214d826120e6565b604082019050919050565b6000602082019050818103600083015261217181612135565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121d4602383611935565b91506121df82612178565b604082019050919050565b60006020820190508181036000830152612203816121c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612266602683611935565b91506122718261220a565b604082019050919050565b6000602082019050818103600083015261229581612259565b9050919050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006122d2601283611935565b91506122dd8261229c565b602082019050919050565b60006020820190508181036000830152612301816122c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612364603983611935565b915061236f82612308565b604082019050919050565b6000602082019050818103600083015261239381612357565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006123f6603683611935565b91506124018261239a565b604082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b600061243782611a3f565b915061244283611a3f565b925082820261245081611a3f565b9150828204841483151761246757612466611d3d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124a882611a3f565b91506124b383611a3f565b9250826124c3576124c261246e565b5b828204905092915050565b60006124d982611a3f565b91506124e483611a3f565b92508282039050818111156124fc576124fb611d3d565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612538602083611935565b915061254382612502565b602082019050919050565b600060208201905081810360008301526125678161252b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506125db81611a13565b92915050565b6000602082840312156125f7576125f66119dc565b5b6000612605848285016125cc565b91505092915050565b6000819050919050565b600061263361262e6126298461260e565b611aeb565b611a3f565b9050919050565b61264381612618565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267e81611a01565b82525050565b60006126908383612675565b60208301905092915050565b6000602082019050919050565b60006126b482612649565b6126be8185612654565b93506126c983612665565b8060005b838110156126fa5781516126e18882612684565b97506126ec8361269c565b9250506001810190506126cd565b5085935050505092915050565b600060a08201905061271c6000830188611b65565b612729602083018761263a565b818103604083015261273b81866126a9565b905061274a6060830185611c19565b6127576080830184611b65565b969550505050505056fea2646970667358221220968833192587287664bfe393d74bfcc4b472e392e2d069d804fb8a088f2d5cf564736f6c63430008140033
Deployed Bytecode
0x6080604052600436106101855760003560e01c806381bfdcca116100d1578063a9059cbb1161008a578063d7fdd19f11610064578063d7fdd19f14610593578063dd62ed3e146105bc578063eac05ab5146105f9578063f2fde38b146106245761018c565b8063a9059cbb14610502578063aa4bde281461053f578063bb85c6d11461056a5761018c565b806381bfdcca146103f05780638c0b5e22146104195780638da5cb5b1461044457806395d89b411461046f578063a071dcf41461049a578063a457c2d7146104c55761018c565b8063395093511161013e578063677daa5711610118578063677daa571461034857806370a0823114610371578063715018a6146103ae57806375f0a874146103c55761018c565b806339509351146102b757806349bd5a5e146102f4578063584e8d2a1461031f5761018c565b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101f957806318160ddd1461022457806323b872dd1461024f578063313ce5671461028c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a661064d565b6040516101b391906119ba565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611a75565b6106df565b6040516101f09190611ad0565b60405180910390f35b34801561020557600080fd5b5061020e610702565b60405161021b9190611b4a565b60405180910390f35b34801561023057600080fd5b50610239610726565b6040516102469190611b74565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190611b8f565b610730565b6040516102839190611ad0565b60405180910390f35b34801561029857600080fd5b506102a161075f565b6040516102ae9190611bfe565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190611a75565b610768565b6040516102eb9190611ad0565b60405180910390f35b34801561030057600080fd5b5061030961079f565b6040516103169190611c28565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190611c43565b6107c3565b005b34801561035457600080fd5b5061036f600480360381019061036a9190611c43565b610819565b005b34801561037d57600080fd5b5061039860048036038101906103939190611c70565b61082b565b6040516103a59190611b74565b60405180910390f35b3480156103ba57600080fd5b506103c3610873565b005b3480156103d157600080fd5b506103da610887565b6040516103e79190611c28565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190611c43565b6108ad565b005b34801561042557600080fd5b5061042e6108bf565b60405161043b9190611b74565b60405180910390f35b34801561045057600080fd5b506104596108c5565b6040516104669190611c28565b60405180910390f35b34801561047b57600080fd5b506104846108ef565b60405161049191906119ba565b60405180910390f35b3480156104a657600080fd5b506104af610981565b6040516104bc9190611b74565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190611a75565b610987565b6040516104f99190611ad0565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190611a75565b6109fe565b6040516105369190611ad0565b60405180910390f35b34801561054b57600080fd5b50610554610a21565b6040516105619190611b74565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190611c70565b610a27565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190611c43565b610a73565b005b3480156105c857600080fd5b506105e360048036038101906105de9190611c9d565b610a85565b6040516105f09190611b74565b60405180910390f35b34801561060557600080fd5b5061060e610b0c565b60405161061b9190611b74565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190611c70565b610b12565b005b60606003805461065c90611d0c565b80601f016020809104026020016040519081016040528092919081815260200182805461068890611d0c565b80156106d55780601f106106aa576101008083540402835291602001916106d5565b820191906000526020600020905b8154815290600101906020018083116106b857829003601f168201915b5050505050905090565b6000806106ea610b95565b90506106f7818585610b9d565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061073b610b95565b9050610748858285610d66565b610753858585610df2565b60019150509392505050565b60006012905090565b600080610773610b95565b90506107948185856107858589610a85565b61078f9190611d6c565b610b9d565b600191505092915050565b7f000000000000000000000000748fde64d9bd7a898b2349936321191f85c4e16081565b6107cb611306565b606481111561080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690611e12565b60405180910390fd5b8060068190555050565b610821611306565b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61087b611306565b6108856000611384565b565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108b5611306565b8060088190555050565b60075481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108fe90611d0c565b80601f016020809104026020016040519081016040528092919081815260200182805461092a90611d0c565b80156109775780601f1061094c57610100808354040283529160200191610977565b820191906000526020600020905b81548152906001019060200180831161095a57829003601f168201915b5050505050905090565b60065481565b600080610992610b95565b905060006109a08286610a85565b9050838110156109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90611ea4565b60405180910390fd5b6109f28286868403610b9d565b60019250505092915050565b600080610a09610b95565b9050610a16818585610df2565b600191505092915050565b60085481565b610a2f611306565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a7b611306565b80600c8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b610b1a611306565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090611f36565b60405180910390fd5b610b9281611384565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0390611fc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061205a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d599190611b74565b60405180910390a3505050565b6000610d728484610a85565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dec5781811015610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd5906120c6565b60405180910390fd5b610deb8484848403610b9d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890612158565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec7906121ea565b60405180910390fd5b80610eda8461082b565b1015610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f129061227c565b60405180910390fd5b7f000000000000000000000000748fde64d9bd7a898b2349936321191f85c4e16073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fc057507f000000000000000000000000748fde64d9bd7a898b2349936321191f85c4e16073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610fd95750600d60009054906101000a900460ff16155b156112f5577f000000000000000000000000748fde64d9bd7a898b2349936321191f85c4e16073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110f157600c5461103d3061082b565b106110f05761105361104e3061082b565b61144a565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5906122e8565b60405180910390fd5b505b5b6000600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111945750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111a1578190506112e4565b6007548211156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061237a565b60405180910390fd5b7f000000000000000000000000748fde64d9bd7a898b2349936321191f85c4e16073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611292576008546112458461082b565b836112509190611d6c565b1115611291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112889061240c565b60405180910390fd5b5b60006064600654846112a4919061242c565b6112ae919061249d565b905080836112bc91906124ce565b915080600a60008282546112d09190611d6c565b925050819055506112e28530836116ca565b505b6112ef8484836116ca565b50611301565b6113008383836116ca565b5b505050565b61130e610b95565b73ffffffffffffffffffffffffffffffffffffffff1661132c6108c5565b73ffffffffffffffffffffffffffffffffffffffff1614611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061254e565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156114825761148161256e565b5b6040519080825280602002602001820160405280156114b05781602001602082028036833780820191505090505b50905030816000815181106114c8576114c761259d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561156d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159191906125e1565b816001815181106115a5576115a461259d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061160a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b9d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426116599190611d6c565b6040518663ffffffff1660e01b8152600401611679959493929190612707565b600060405180830381600087803b15801561169357600080fd5b505af11580156116a7573d6000803e3d6000fd5b50505050506000600d60006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090612158565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906121ea565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561182e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118259061227c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161191c9190611b74565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611964578082015181840152602081019050611949565b60008484015250505050565b6000601f19601f8301169050919050565b600061198c8261192a565b6119968185611935565b93506119a6818560208601611946565b6119af81611970565b840191505092915050565b600060208201905081810360008301526119d48184611981565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a0c826119e1565b9050919050565b611a1c81611a01565b8114611a2757600080fd5b50565b600081359050611a3981611a13565b92915050565b6000819050919050565b611a5281611a3f565b8114611a5d57600080fd5b50565b600081359050611a6f81611a49565b92915050565b60008060408385031215611a8c57611a8b6119dc565b5b6000611a9a85828601611a2a565b9250506020611aab85828601611a60565b9150509250929050565b60008115159050919050565b611aca81611ab5565b82525050565b6000602082019050611ae56000830184611ac1565b92915050565b6000819050919050565b6000611b10611b0b611b06846119e1565b611aeb565b6119e1565b9050919050565b6000611b2282611af5565b9050919050565b6000611b3482611b17565b9050919050565b611b4481611b29565b82525050565b6000602082019050611b5f6000830184611b3b565b92915050565b611b6e81611a3f565b82525050565b6000602082019050611b896000830184611b65565b92915050565b600080600060608486031215611ba857611ba76119dc565b5b6000611bb686828701611a2a565b9350506020611bc786828701611a2a565b9250506040611bd886828701611a60565b9150509250925092565b600060ff82169050919050565b611bf881611be2565b82525050565b6000602082019050611c136000830184611bef565b92915050565b611c2281611a01565b82525050565b6000602082019050611c3d6000830184611c19565b92915050565b600060208284031215611c5957611c586119dc565b5b6000611c6784828501611a60565b91505092915050565b600060208284031215611c8657611c856119dc565b5b6000611c9484828501611a2a565b91505092915050565b60008060408385031215611cb457611cb36119dc565b5b6000611cc285828601611a2a565b9250506020611cd385828601611a2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d2457607f821691505b602082108103611d3757611d36611cdd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d7782611a3f565b9150611d8283611a3f565b9250828201905080821115611d9a57611d99611d3d565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611dfc602d83611935565b9150611e0782611da0565b604082019050919050565b60006020820190508181036000830152611e2b81611def565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e8e602583611935565b9150611e9982611e32565b604082019050919050565b60006020820190508181036000830152611ebd81611e81565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611f20602683611935565b9150611f2b82611ec4565b604082019050919050565b60006020820190508181036000830152611f4f81611f13565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fb2602483611935565b9150611fbd82611f56565b604082019050919050565b60006020820190508181036000830152611fe181611fa5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612044602283611935565b915061204f82611fe8565b604082019050919050565b6000602082019050818103600083015261207381612037565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006120b0601d83611935565b91506120bb8261207a565b602082019050919050565b600060208201905081810360008301526120df816120a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612142602583611935565b915061214d826120e6565b604082019050919050565b6000602082019050818103600083015261217181612135565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006121d4602383611935565b91506121df82612178565b604082019050919050565b60006020820190508181036000830152612203816121c7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612266602683611935565b91506122718261220a565b604082019050919050565b6000602082019050818103600083015261229581612259565b9050919050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006122d2601283611935565b91506122dd8261229c565b602082019050919050565b60006020820190508181036000830152612301816122c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612364603983611935565b915061236f82612308565b604082019050919050565b6000602082019050818103600083015261239381612357565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006123f6603683611935565b91506124018261239a565b604082019050919050565b60006020820190508181036000830152612425816123e9565b9050919050565b600061243782611a3f565b915061244283611a3f565b925082820261245081611a3f565b9150828204841483151761246757612466611d3d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006124a882611a3f565b91506124b383611a3f565b9250826124c3576124c261246e565b5b828204905092915050565b60006124d982611a3f565b91506124e483611a3f565b92508282039050818111156124fc576124fb611d3d565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612538602083611935565b915061254382612502565b602082019050919050565b600060208201905081810360008301526125678161252b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506125db81611a13565b92915050565b6000602082840312156125f7576125f66119dc565b5b6000612605848285016125cc565b91505092915050565b6000819050919050565b600061263361262e6126298461260e565b611aeb565b611a3f565b9050919050565b61264381612618565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267e81611a01565b82525050565b60006126908383612675565b60208301905092915050565b6000602082019050919050565b60006126b482612649565b6126be8185612654565b93506126c983612665565b8060005b838110156126fa5781516126e18882612684565b97506126ec8361269c565b9250506001810190506126cd565b5085935050505092915050565b600060a08201905061271c6000830188611b65565b612729602083018761263a565b818103604083015261273b81866126a9565b905061274a6060830185611c19565b6127576080830184611b65565b969550505050505056fea2646970667358221220968833192587287664bfe393d74bfcc4b472e392e2d069d804fb8a088f2d5cf564736f6c63430008140033
Deployed Bytecode Sourcemap
27868:6970:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17691:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19891:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28088:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18796:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20699:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18638:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22408:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28146:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34201:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34422:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17856:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14950:103;;;;;;;;;;;;;:::i;:::-;;28051:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34541:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27981:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14302:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17515:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27953:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21499:500;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19351:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28014:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34080:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34676:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18969:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28298:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15208:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17691:102;17747:13;17780:5;17773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17691:102;:::o;19891:228::-;20001:4;20018:13;20034:12;:10;:12::i;:::-;20018:28;;20057:32;20066:5;20073:7;20082:6;20057:8;:32::i;:::-;20107:4;20100:11;;;19891:228;;;;:::o;28088:51::-;;;:::o;18796:110::-;18859:7;18886:12;;18879:19;;18796:110;:::o;20699:297::-;20832:4;20849:15;20867:12;:10;:12::i;:::-;20849:30;;20890:38;20906:4;20912:7;20921:6;20890:15;:38::i;:::-;20939:27;20949:4;20955:2;20959:6;20939:9;:27::i;:::-;20984:4;20977:11;;;20699:297;;;;;:::o;18638:93::-;18696:5;18721:2;18714:9;;18638:93;:::o;22408:265::-;22523:4;22540:13;22556:12;:10;:12::i;:::-;22540:28;;22579:64;22588:5;22595:7;22632:10;22604:25;22614:5;22621:7;22604:9;:25::i;:::-;:38;;;;:::i;:::-;22579:8;:64::i;:::-;22661:4;22654:11;;;22408:265;;;;:::o;28146:38::-;;;:::o;34201:213::-;14188:13;:11;:13::i;:::-;34301:3:::1;34290:7;:14;;34268:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;34399:7;34390:6;:16;;;;34201:213:::0;:::o;34422:111::-;14188:13;:11;:13::i;:::-;34513:12:::1;34499:11;:26;;;;34422:111:::0;:::o;17856:143::-;17946:7;17973:9;:18;17983:7;17973:18;;;;;;;;;;;;;;;;17966:25;;17856:143;;;:::o;14950:103::-;14188:13;:11;:13::i;:::-;15015:30:::1;15042:1;15015:18;:30::i;:::-;14950:103::o:0;28051:30::-;;;;;;;;;;;;;:::o;34541:127::-;14188:13;:11;:13::i;:::-;34644:16:::1;34626:15;:34;;;;34541:127:::0;:::o;27981:26::-;;;;:::o;14302:87::-;14348:7;14375:6;;;;;;;;;;;14368:13;;14302:87;:::o;17515:106::-;17573:13;17606:7;17599:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17515:106;:::o;27953:21::-;;;;:::o;21499:500::-;21619:4;21636:13;21652:12;:10;:12::i;:::-;21636:28;;21675:24;21702:25;21712:5;21719:7;21702:9;:25::i;:::-;21675:52;;21780:15;21760:16;:35;;21738:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;21896:60;21905:5;21912:7;21940:15;21921:16;:34;21896:8;:60::i;:::-;21987:4;21980:11;;;;21499:500;;;;:::o;19351:220::-;19457:4;19474:13;19490:12;:10;:12::i;:::-;19474:28;;19513;19523:5;19530:2;19534:6;19513:9;:28::i;:::-;19559:4;19552:11;;;19351:220;;;;:::o;28014:30::-;;;;:::o;34080:113::-;14188:13;:11;:13::i;:::-;34176:9:::1;34158:15;;:27;;;;;;;;;;;;;;;;;;34080:113:::0;:::o;34676:122::-;14188:13;:11;:13::i;:::-;34786:4:::1;34759:24;:31;;;;34676:122:::0;:::o;18969:176::-;19083:7;19110:11;:18;19122:5;19110:18;;;;;;;;;;;;;;;:27;19129:7;19110:27;;;;;;;;;;;;;;;;19103:34;;18969:176;;;;:::o;28298:67::-;;;;:::o;15208:238::-;14188:13;:11;:13::i;:::-;15331:1:::1;15311:22;;:8;:22;;::::0;15289:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15410:28;15429:8;15410:18;:28::i;:::-;15208:238:::0;:::o;13095:98::-;13148:7;13175:10;13168:17;;13095:98;:::o;24708:380::-;24861:1;24844:19;;:5;:19;;;24836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24942:1;24923:21;;:7;:21;;;24915:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25026:6;24996:11;:18;25008:5;24996:18;;;;;;;;;;;;;;;:27;25015:7;24996:27;;;;;;;;;;;;;;;:36;;;;25064:7;25048:32;;25057:5;25048:32;;;25073:6;25048:32;;;;;;:::i;:::-;;;;;;;;24708:380;;;:::o;25379:502::-;25514:24;25541:25;25551:5;25558:7;25541:9;:25::i;:::-;25514:52;;25601:17;25581:16;:37;25577:297;;25681:6;25661:16;:26;;25635:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25796:51;25805:5;25812:7;25840:6;25821:16;:25;25796:8;:51::i;:::-;25577:297;25503:378;25379:502;;;:::o;30735:1943::-;30883:1;30867:18;;:4;:18;;;30859:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30960:1;30946:16;;:2;:16;;;30938:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31054:6;31035:15;31045:4;31035:9;:15::i;:::-;:25;;31013:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;31166:13;31158:21;;:4;:21;;;:44;;;;31189:13;31183:19;;:2;:19;;;31158:44;31157:67;;;;;31208:16;;;;;;;;;;;31207:17;31157:67;31139:1532;;;31263:13;31255:21;;:4;:21;;;31251:398;;31329:24;;31301;31319:4;31301:9;:24::i;:::-;:52;31297:337;;31378:43;31396:24;31414:4;31396:9;:24::i;:::-;31378:17;:43::i;:::-;31444:9;31464:15;;;;;;;;;;;31456:29;;:100;31512:21;31456:100;;;;;;;;;;;;;;;;;;;;;;;31444:112;;31587:4;31579:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;31355:279;31297:337;31251:398;31665:22;31706:18;:24;31725:4;31706:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;31734:18;:22;31753:2;31734:22;;;;;;;;;;;;;;;;;;;;;;;;;31706:50;31702:836;;;31794:6;31777:23;;31702:836;;;31881:11;;31871:6;:21;;31841:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;32024:13;32016:21;;:4;:21;;;32012:253;;32124:15;;32106:13;32116:2;32106:9;:13::i;:::-;32097:6;:22;;;;:::i;:::-;32096:43;;32062:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;32012:253;32285:22;32331:3;32321:6;;32312;:15;;;;:::i;:::-;32311:23;;;;:::i;:::-;32285:50;;32380:14;32371:6;:23;;;;:::i;:::-;32354:40;;32435:14;32413:18;;:36;;;;;;;:::i;:::-;;;;;;;;32470:52;32486:4;32500;32507:14;32470:15;:52::i;:::-;31822:716;31702:836;32552:41;32568:4;32574:2;32578:14;32552:15;:41::i;:::-;31236:1369;31139:1532;;;32626:33;32642:4;32648:2;32652:6;32626:15;:33::i;:::-;31139:1532;30735:1943;;;:::o;14467:132::-;14542:12;:10;:12::i;:::-;14531:23;;:7;:5;:7::i;:::-;:23;;;14523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14467:132::o;15606:191::-;15680:16;15699:6;;;;;;;;;;;15680:25;;15725:8;15716:6;;:17;;;;;;;;;;;;;;;;;;15780:8;15749:40;;15770:8;15749:40;;;;;;;;;;;;15669:128;15606:191;:::o;33168:496::-;28590:4;28571:16;;:23;;;;;;;;;;;;;;;;;;33247:21:::1;33285:1;33271:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33247:40;;33316:4;33298;33303:1;33298:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33342:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33332:4;33337:1;33332:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33377:62;33394:4;33409:15;33427:11;33377:8;:62::i;:::-;33452:15;:66;;;33533:11;33559:1;33575:4;33602;33641:3;33623:15;:21;;;;:::i;:::-;33452:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33236:428;28636:5:::0;28617:16;;:24;;;;;;;;;;;;;;;;;;33168:496;:::o;25889:776::-;26036:1;26020:18;;:4;:18;;;26012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26113:1;26099:16;;:2;:16;;;26091:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26168:19;26190:9;:15;26200:4;26190:15;;;;;;;;;;;;;;;;26168:37;;26253:6;26238:11;:21;;26216:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26393:6;26379:11;:20;26361:9;:15;26371:4;26361:15;;;;;;;;;;;;;;;:38;;;;26596:6;26579:9;:13;26589:2;26579:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26646:2;26631:26;;26640:4;26631:26;;;26650:6;26631:26;;;;;;:::i;:::-;;;;;;;;26001:664;25889:776;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:180::-;7376:77;7373:1;7366:88;7473:4;7470:1;7463:15;7497:4;7494:1;7487:15;7514:320;7558:6;7595:1;7589:4;7585:12;7575:22;;7642:1;7636:4;7632:12;7663:18;7653:81;;7719:4;7711:6;7707:17;7697:27;;7653:81;7781:2;7773:6;7770:14;7750:18;7747:38;7744:84;;7800:18;;:::i;:::-;7744:84;7565:269;7514:320;;;:::o;7840:180::-;7888:77;7885:1;7878:88;7985:4;7982:1;7975:15;8009:4;8006:1;7999:15;8026:191;8066:3;8085:20;8103:1;8085:20;:::i;:::-;8080:25;;8119:20;8137:1;8119:20;:::i;:::-;8114:25;;8162:1;8159;8155:9;8148:16;;8183:3;8180:1;8177:10;8174:36;;;8190:18;;:::i;:::-;8174:36;8026:191;;;;:::o;8223:232::-;8363:34;8359:1;8351:6;8347:14;8340:58;8432:15;8427:2;8419:6;8415:15;8408:40;8223:232;:::o;8461:366::-;8603:3;8624:67;8688:2;8683:3;8624:67;:::i;:::-;8617:74;;8700:93;8789:3;8700:93;:::i;:::-;8818:2;8813:3;8809:12;8802:19;;8461:366;;;:::o;8833:419::-;8999:4;9037:2;9026:9;9022:18;9014:26;;9086:9;9080:4;9076:20;9072:1;9061:9;9057:17;9050:47;9114:131;9240:4;9114:131;:::i;:::-;9106:139;;8833:419;;;:::o;9258:224::-;9398:34;9394:1;9386:6;9382:14;9375:58;9467:7;9462:2;9454:6;9450:15;9443:32;9258:224;:::o;9488:366::-;9630:3;9651:67;9715:2;9710:3;9651:67;:::i;:::-;9644:74;;9727:93;9816:3;9727:93;:::i;:::-;9845:2;9840:3;9836:12;9829:19;;9488:366;;;:::o;9860:419::-;10026:4;10064:2;10053:9;10049:18;10041:26;;10113:9;10107:4;10103:20;10099:1;10088:9;10084:17;10077:47;10141:131;10267:4;10141:131;:::i;:::-;10133:139;;9860:419;;;:::o;10285:225::-;10425:34;10421:1;10413:6;10409:14;10402:58;10494:8;10489:2;10481:6;10477:15;10470:33;10285:225;:::o;10516:366::-;10658:3;10679:67;10743:2;10738:3;10679:67;:::i;:::-;10672:74;;10755:93;10844:3;10755:93;:::i;:::-;10873:2;10868:3;10864:12;10857:19;;10516:366;;;:::o;10888:419::-;11054:4;11092:2;11081:9;11077:18;11069:26;;11141:9;11135:4;11131:20;11127:1;11116:9;11112:17;11105:47;11169:131;11295:4;11169:131;:::i;:::-;11161:139;;10888:419;;;:::o;11313:223::-;11453:34;11449:1;11441:6;11437:14;11430:58;11522:6;11517:2;11509:6;11505:15;11498:31;11313:223;:::o;11542:366::-;11684:3;11705:67;11769:2;11764:3;11705:67;:::i;:::-;11698:74;;11781:93;11870:3;11781:93;:::i;:::-;11899:2;11894:3;11890:12;11883:19;;11542:366;;;:::o;11914:419::-;12080:4;12118:2;12107:9;12103:18;12095:26;;12167:9;12161:4;12157:20;12153:1;12142:9;12138:17;12131:47;12195:131;12321:4;12195:131;:::i;:::-;12187:139;;11914:419;;;:::o;12339:221::-;12479:34;12475:1;12467:6;12463:14;12456:58;12548:4;12543:2;12535:6;12531:15;12524:29;12339:221;:::o;12566:366::-;12708:3;12729:67;12793:2;12788:3;12729:67;:::i;:::-;12722:74;;12805:93;12894:3;12805:93;:::i;:::-;12923:2;12918:3;12914:12;12907:19;;12566:366;;;:::o;12938:419::-;13104:4;13142:2;13131:9;13127:18;13119:26;;13191:9;13185:4;13181:20;13177:1;13166:9;13162:17;13155:47;13219:131;13345:4;13219:131;:::i;:::-;13211:139;;12938:419;;;:::o;13363:179::-;13503:31;13499:1;13491:6;13487:14;13480:55;13363:179;:::o;13548:366::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:419::-;14086:4;14124:2;14113:9;14109:18;14101:26;;14173:9;14167:4;14163:20;14159:1;14148:9;14144:17;14137:47;14201:131;14327:4;14201:131;:::i;:::-;14193:139;;13920:419;;;:::o;14345:224::-;14485:34;14481:1;14473:6;14469:14;14462:58;14554:7;14549:2;14541:6;14537:15;14530:32;14345:224;:::o;14575:366::-;14717:3;14738:67;14802:2;14797:3;14738:67;:::i;:::-;14731:74;;14814:93;14903:3;14814:93;:::i;:::-;14932:2;14927:3;14923:12;14916:19;;14575:366;;;:::o;14947:419::-;15113:4;15151:2;15140:9;15136:18;15128:26;;15200:9;15194:4;15190:20;15186:1;15175:9;15171:17;15164:47;15228:131;15354:4;15228:131;:::i;:::-;15220:139;;14947:419;;;:::o;15372:222::-;15512:34;15508:1;15500:6;15496:14;15489:58;15581:5;15576:2;15568:6;15564:15;15557:30;15372:222;:::o;15600:366::-;15742:3;15763:67;15827:2;15822:3;15763:67;:::i;:::-;15756:74;;15839:93;15928:3;15839:93;:::i;:::-;15957:2;15952:3;15948:12;15941:19;;15600:366;;;:::o;15972:419::-;16138:4;16176:2;16165:9;16161:18;16153:26;;16225:9;16219:4;16215:20;16211:1;16200:9;16196:17;16189:47;16253:131;16379:4;16253:131;:::i;:::-;16245:139;;15972:419;;;:::o;16397:225::-;16537:34;16533:1;16525:6;16521:14;16514:58;16606:8;16601:2;16593:6;16589:15;16582:33;16397:225;:::o;16628:366::-;16770:3;16791:67;16855:2;16850:3;16791:67;:::i;:::-;16784:74;;16867:93;16956:3;16867:93;:::i;:::-;16985:2;16980:3;16976:12;16969:19;;16628:366;;;:::o;17000:419::-;17166:4;17204:2;17193:9;17189:18;17181:26;;17253:9;17247:4;17243:20;17239:1;17228:9;17224:17;17217:47;17281:131;17407:4;17281:131;:::i;:::-;17273:139;;17000:419;;;:::o;17425:168::-;17565:20;17561:1;17553:6;17549:14;17542:44;17425:168;:::o;17599:366::-;17741:3;17762:67;17826:2;17821:3;17762:67;:::i;:::-;17755:74;;17838:93;17927:3;17838:93;:::i;:::-;17956:2;17951:3;17947:12;17940:19;;17599:366;;;:::o;17971:419::-;18137:4;18175:2;18164:9;18160:18;18152:26;;18224:9;18218:4;18214:20;18210:1;18199:9;18195:17;18188:47;18252:131;18378:4;18252:131;:::i;:::-;18244:139;;17971:419;;;:::o;18396:244::-;18536:34;18532:1;18524:6;18520:14;18513:58;18605:27;18600:2;18592:6;18588:15;18581:52;18396:244;:::o;18646:366::-;18788:3;18809:67;18873:2;18868:3;18809:67;:::i;:::-;18802:74;;18885:93;18974:3;18885:93;:::i;:::-;19003:2;18998:3;18994:12;18987:19;;18646:366;;;:::o;19018:419::-;19184:4;19222:2;19211:9;19207:18;19199:26;;19271:9;19265:4;19261:20;19257:1;19246:9;19242:17;19235:47;19299:131;19425:4;19299:131;:::i;:::-;19291:139;;19018:419;;;:::o;19443:241::-;19583:34;19579:1;19571:6;19567:14;19560:58;19652:24;19647:2;19639:6;19635:15;19628:49;19443:241;:::o;19690:366::-;19832:3;19853:67;19917:2;19912:3;19853:67;:::i;:::-;19846:74;;19929:93;20018:3;19929:93;:::i;:::-;20047:2;20042:3;20038:12;20031:19;;19690:366;;;:::o;20062:419::-;20228:4;20266:2;20255:9;20251:18;20243:26;;20315:9;20309:4;20305:20;20301:1;20290:9;20286:17;20279:47;20343:131;20469:4;20343:131;:::i;:::-;20335:139;;20062:419;;;:::o;20487:410::-;20527:7;20550:20;20568:1;20550:20;:::i;:::-;20545:25;;20584:20;20602:1;20584:20;:::i;:::-;20579:25;;20639:1;20636;20632:9;20661:30;20679:11;20661:30;:::i;:::-;20650:41;;20840:1;20831:7;20827:15;20824:1;20821:22;20801:1;20794:9;20774:83;20751:139;;20870:18;;:::i;:::-;20751:139;20535:362;20487:410;;;;:::o;20903:180::-;20951:77;20948:1;20941:88;21048:4;21045:1;21038:15;21072:4;21069:1;21062:15;21089:185;21129:1;21146:20;21164:1;21146:20;:::i;:::-;21141:25;;21180:20;21198:1;21180:20;:::i;:::-;21175:25;;21219:1;21209:35;;21224:18;;:::i;:::-;21209:35;21266:1;21263;21259:9;21254:14;;21089:185;;;;:::o;21280:194::-;21320:4;21340:20;21358:1;21340:20;:::i;:::-;21335:25;;21374:20;21392:1;21374:20;:::i;:::-;21369:25;;21418:1;21415;21411:9;21403:17;;21442:1;21436:4;21433:11;21430:37;;;21447:18;;:::i;:::-;21430:37;21280:194;;;;:::o;21480:182::-;21620:34;21616:1;21608:6;21604:14;21597:58;21480:182;:::o;21668:366::-;21810:3;21831:67;21895:2;21890:3;21831:67;:::i;:::-;21824:74;;21907:93;21996:3;21907:93;:::i;:::-;22025:2;22020:3;22016:12;22009:19;;21668:366;;;:::o;22040:419::-;22206:4;22244:2;22233:9;22229:18;22221:26;;22293:9;22287:4;22283:20;22279:1;22268:9;22264:17;22257:47;22321:131;22447:4;22321:131;:::i;:::-;22313:139;;22040:419;;;:::o;22465:180::-;22513:77;22510:1;22503:88;22610:4;22607:1;22600:15;22634:4;22631:1;22624:15;22651:180;22699:77;22696:1;22689:88;22796:4;22793:1;22786:15;22820:4;22817:1;22810:15;22837:143;22894:5;22925:6;22919:13;22910:22;;22941:33;22968:5;22941:33;:::i;:::-;22837:143;;;;:::o;22986:351::-;23056:6;23105:2;23093:9;23084:7;23080:23;23076:32;23073:119;;;23111:79;;:::i;:::-;23073:119;23231:1;23256:64;23312:7;23303:6;23292:9;23288:22;23256:64;:::i;:::-;23246:74;;23202:128;22986:351;;;;:::o;23343:85::-;23388:7;23417:5;23406:16;;23343:85;;;:::o;23434:158::-;23492:9;23525:61;23543:42;23552:32;23578:5;23552:32;:::i;:::-;23543:42;:::i;:::-;23525:61;:::i;:::-;23512:74;;23434:158;;;:::o;23598:147::-;23693:45;23732:5;23693:45;:::i;:::-;23688:3;23681:58;23598:147;;:::o;23751:114::-;23818:6;23852:5;23846:12;23836:22;;23751:114;;;:::o;23871:184::-;23970:11;24004:6;23999:3;23992:19;24044:4;24039:3;24035:14;24020:29;;23871:184;;;;:::o;24061:132::-;24128:4;24151:3;24143:11;;24181:4;24176:3;24172:14;24164:22;;24061:132;;;:::o;24199:108::-;24276:24;24294:5;24276:24;:::i;:::-;24271:3;24264:37;24199:108;;:::o;24313:179::-;24382:10;24403:46;24445:3;24437:6;24403:46;:::i;:::-;24481:4;24476:3;24472:14;24458:28;;24313:179;;;;:::o;24498:113::-;24568:4;24600;24595:3;24591:14;24583:22;;24498:113;;;:::o;24647:732::-;24766:3;24795:54;24843:5;24795:54;:::i;:::-;24865:86;24944:6;24939:3;24865:86;:::i;:::-;24858:93;;24975:56;25025:5;24975:56;:::i;:::-;25054:7;25085:1;25070:284;25095:6;25092:1;25089:13;25070:284;;;25171:6;25165:13;25198:63;25257:3;25242:13;25198:63;:::i;:::-;25191:70;;25284:60;25337:6;25284:60;:::i;:::-;25274:70;;25130:224;25117:1;25114;25110:9;25105:14;;25070:284;;;25074:14;25370:3;25363:10;;24771:608;;;24647:732;;;;:::o;25385:831::-;25648:4;25686:3;25675:9;25671:19;25663:27;;25700:71;25768:1;25757:9;25753:17;25744:6;25700:71;:::i;:::-;25781:80;25857:2;25846:9;25842:18;25833:6;25781:80;:::i;:::-;25908:9;25902:4;25898:20;25893:2;25882:9;25878:18;25871:48;25936:108;26039:4;26030:6;25936:108;:::i;:::-;25928:116;;26054:72;26122:2;26111:9;26107:18;26098:6;26054:72;:::i;:::-;26136:73;26204:3;26193:9;26189:19;26180:6;26136:73;:::i;:::-;25385:831;;;;;;;;:::o
Swarm Source
ipfs://968833192587287664bfe393d74bfcc4b472e392e2d069d804fb8a088f2d5cf5
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.