ERC-20
Overview
Max Total Supply
8,000,000 ASANA
Holders
4
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
85.898424717 ASANAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Asana
Compiler Version
v0.8.8+commit.dddeac2f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-02 */ /** *Submitted for verification at Etherscan.io on 2022-09-02 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.8; 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 9; } /** * @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 Asana is ERC20, Ownable { // TOKENOMICS START ==========================================================> string private _name = "Asana Token"; string private _symbol = "ASANA"; uint8 private _decimals = 9; uint256 private _supply = 8000000; uint256 public taxForLiquidity = 1; uint256 public taxForMarketing = 1; uint256 public maxTxAmount = 120000 * 10**_decimals; uint256 public maxWalletAmount = 120000 * 10**_decimals; address public marketingWallet = 0xEE1aa3E77f8b9Ca92D1541EA151fd990eeeB8121; // TOKENOMICS END ============================================================> IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; uint256 private _numTokensSellToAddToLiquidity = 60000 * 10**_decimals; uint256 private _numTokensSellToAddToETH = 60000 * 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(_name, _symbol) { _mint(msg.sender, (_supply * 10**_decimals)); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal 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) { uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves; if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) { _swapAndLiquify(_numTokensSellToAddToLiquidity); } if ((_marketingReserves) >= _numTokensSellToAddToETH) { _swapTokensForEth(_numTokensSellToAddToETH); _marketingReserves -= _numTokensSellToAddToETH; 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 * taxForMarketing) / 100); uint256 liquidityShare = ((amount * taxForLiquidity) / 100); transferAmount = amount - (marketingShare + liquidityShare); _marketingReserves += marketingShare; super._transfer(from, address(this), (marketingShare + liquidityShare)); } 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 changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing) public onlyOwner returns (bool) { require((_taxForLiquidity+_taxForMarketing) <= 100, "ERC20: total tax must not be greater than 100"); taxForLiquidity = _taxForLiquidity; taxForMarketing = _taxForMarketing; return true; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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
60c06040526040518060400160405280600b81526020017f4173616e6120546f6b656e000000000000000000000000000000000000000000815250600690805190602001906200005192919062000914565b506040518060400160405280600581526020017f4153414e41000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f92919062000914565b506009600860006101000a81548160ff021916908360ff160217905550627a12006009556001600a556001600b55600860009054906101000a900460ff16600a620000eb919062000b5e565b6201d4c0620000fb919062000baf565b600c55600860009054906101000a900460ff16600a6200011c919062000b5e565b6201d4c06200012c919062000baf565b600d5573ee1aa3e77f8b9ca92d1541ea151fd990eeeb8121600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55600860009054906101000a900460ff16600a620001a7919062000b5e565b61ea60620001b6919062000baf565b601155600860009054906101000a900460ff16600a620001d7919062000b5e565b61ea60620001e6919062000baf565b601255348015620001f657600080fd5b5060068054620002069062000c3f565b80601f0160208091040260200160405190810160405280929190818152602001828054620002349062000c3f565b8015620002855780601f10620002595761010080835404028352916020019162000285565b820191906000526020600020905b8154815290600101906020018083116200026757829003601f168201915b505050505060078054620002999062000c3f565b80601f0160208091040260200160405190810160405280929190818152602001828054620002c79062000c3f565b8015620003185780601f10620002ec5761010080835404028352916020019162000318565b820191906000526020600020905b815481529060010190602001808311620002fa57829003601f168201915b505050505081600390805190602001906200033592919062000914565b5080600490805190602001906200034e92919062000914565b50505062000371620003656200070060201b60201c565b6200070860201b60201c565b620003af33600860009054906101000a900460ff16600a62000394919062000b5e565b600954620003a3919062000baf565b620007ce60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040f57600080fd5b505afa15801562000424573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044a919062000cdf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620004ad57600080fd5b505afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000cdf565b6040518363ffffffff1660e01b81526004016200050792919062000d22565b602060405180830381600087803b1580156200052257600080fd5b505af115801562000537573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200055d919062000cdf565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060016010600060805160601c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000e5d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008389062000db0565b60405180910390fd5b806002600082825462000855919062000dd2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000908919062000e40565b60405180910390a35050565b828054620009229062000c3f565b90600052602060002090601f01602090048101928262000946576000855562000992565b82601f106200096157805160ff191683800117855562000992565b8280016001018555821562000992579182015b828111156200099157825182559160200191906001019062000974565b5b509050620009a19190620009a5565b5090565b5b80821115620009c0576000816000905550600101620009a6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a525780860481111562000a2a5762000a29620009c4565b5b600185161562000a3a5780820291505b808102905062000a4a85620009f3565b945062000a0a565b94509492505050565b60008262000a6d576001905062000b40565b8162000a7d576000905062000b40565b816001811462000a96576002811462000aa15762000ad7565b600191505062000b40565b60ff84111562000ab65762000ab5620009c4565b5b8360020a91508482111562000ad05762000acf620009c4565b5b5062000b40565b5060208310610133831016604e8410600b841016171562000b115782820a90508381111562000b0b5762000b0a620009c4565b5b62000b40565b62000b20848484600162000a00565b9250905081840481111562000b3a5762000b39620009c4565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000b6b8262000b47565b915062000b788362000b51565b925062000ba77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a5b565b905092915050565b600062000bbc8262000b47565b915062000bc98362000b47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c055762000c04620009c4565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c5857607f821691505b6020821081141562000c6f5762000c6e62000c10565b5b50919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ca78262000c7a565b9050919050565b62000cb98162000c9a565b811462000cc557600080fd5b50565b60008151905062000cd98162000cae565b92915050565b60006020828403121562000cf85762000cf762000c75565b5b600062000d088482850162000cc8565b91505092915050565b62000d1c8162000c9a565b82525050565b600060408201905062000d39600083018562000d11565b62000d48602083018462000d11565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d98601f8362000d4f565b915062000da58262000d60565b602082019050919050565b6000602082019050818103600083015262000dcb8162000d89565b9050919050565b600062000ddf8262000b47565b915062000dec8362000b47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e245762000e23620009c4565b5b828201905092915050565b62000e3a8162000b47565b82525050565b600060208201905062000e57600083018462000e2f565b92915050565b60805160601c60a05160601c612a1d62000ec8600039600081816106c501528181610ddf01528181610e3401528181610ea201526110e9015260008181610628015281816114fc015281816115ec0152818161161301528181611954015261197b0152612a1d6000f3fe6080604052600436106101395760003560e01c806375f0a874116100ab578063a9059cbb1161006f578063a9059cbb1461043b578063aa4bde2814610478578063af8af690146104a3578063dd62ed3e146104e0578063f2fde38b1461051d578063f345bd851461054657610140565b806375f0a874146103525780638c0b5e221461037d5780638da5cb5b146103a857806395d89b41146103d3578063a457c2d7146103fe57610140565b8063313ce567116100fd578063313ce56714610240578063395093511461026b57806349bd5a5e146102a8578063527ffabd146102d357806370a08231146102fe578063715018a61461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610571565b6040516101679190611af2565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611bad565b610603565b6040516101a49190611c08565b60405180910390f35b3480156101b957600080fd5b506101c2610626565b6040516101cf9190611c82565b60405180910390f35b3480156101e457600080fd5b506101ed61064a565b6040516101fa9190611cac565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190611cc7565b610654565b6040516102379190611c08565b60405180910390f35b34801561024c57600080fd5b50610255610683565b6040516102629190611d36565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190611bad565b61068c565b60405161029f9190611c08565b60405180910390f35b3480156102b457600080fd5b506102bd6106c3565b6040516102ca9190611d60565b60405180910390f35b3480156102df57600080fd5b506102e86106e7565b6040516102f59190611cac565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611d7b565b6106ed565b6040516103329190611cac565b60405180910390f35b34801561034757600080fd5b50610350610735565b005b34801561035e57600080fd5b50610367610749565b6040516103749190611d60565b60405180910390f35b34801561038957600080fd5b5061039261076f565b60405161039f9190611cac565b60405180910390f35b3480156103b457600080fd5b506103bd610775565b6040516103ca9190611d60565b60405180910390f35b3480156103df57600080fd5b506103e861079f565b6040516103f59190611af2565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190611bad565b610831565b6040516104329190611c08565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190611bad565b6108a8565b60405161046f9190611c08565b60405180910390f35b34801561048457600080fd5b5061048d6108cb565b60405161049a9190611cac565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190611da8565b6108d1565b6040516104d79190611c08565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190611de8565b610942565b6040516105149190611cac565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611d7b565b6109c9565b005b34801561055257600080fd5b5061055b610a4d565b6040516105689190611cac565b60405180910390f35b60606003805461058090611e57565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611e57565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b60008061060e610a53565b905061061b818585610a5b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061065f610a53565b905061066c858285610c26565b610677858585610cb2565b60019150509392505050565b60006009905090565b600080610697610a53565b90506106b88185856106a98589610942565b6106b39190611eb8565b610a5b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073d61123d565b61074760006112bb565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107ae90611e57565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90611e57565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b60008061083c610a53565b9050600061084a8286610942565b90508381101561088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690611f80565b60405180910390fd5b61089c8286868403610a5b565b60019250505092915050565b6000806108b3610a53565b90506108c0818585610cb2565b600191505092915050565b600d5481565b60006108db61123d565b606482846108e99190611eb8565b111561092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190612012565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d161123d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906120a4565b60405180910390fd5b610a4a816112bb565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290612136565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906121c8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c199190611cac565b60405180910390a3505050565b6000610c328484610942565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cac5781811015610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590612234565b60405180910390fd5b610cab8484848403610a5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d19906122c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612358565b60405180910390fd5b80610d9c846106ed565b1015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd4906123ea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e8257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610e9b5750601360009054906101000a900460ff16155b1561122c577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ff2576000600f54610f01306106ed565b610f0b919061240a565b90506011548110610f2257610f21601154611381565b5b601254600f5410610ff057610f38601254611442565b601254600f6000828254610f4c919061240a565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe59061248a565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110955750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110a25781905061121b565b600c548211156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061251c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561119457600d54611147846106ed565b836111529190611eb8565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906125ae565b60405180910390fd5b5b60006064600b54846111a691906125ce565b6111b09190612657565b905060006064600a54856111c491906125ce565b6111ce9190612657565b905080826111dc9190611eb8565b846111e7919061240a565b925081600f60008282546111fb9190611eb8565b92505081905550611218863083856112139190611eb8565b6116d1565b50505b6112268484836116d1565b50611238565b6112378383836116d1565b5b505050565b611245610a53565b73ffffffffffffffffffffffffffffffffffffffff16611263610775565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906126d4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826113ab9190612657565b9050600081836113bb919061240a565b905060004790506113cb83611442565b600081476113d9919061240a565b90506113e58382611933565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611418939291906126f4565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561147a5761147961272b565b5b6040519080825280602002602001820160405280156114a85781602001602082028036833780820191505090505b50905030816000815181106114c0576114bf61275a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561156057600080fd5b505afa158015611574573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611598919061279e565b816001815181106115ac576115ab61275a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611611307f000000000000000000000000000000000000000000000000000000000000000084610a5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426116609190611eb8565b6040518663ffffffff1660e01b81526004016116809594939291906128c4565b600060405180830381600087803b15801561169a57600080fd5b505af11580156116ae573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611738906122c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890612358565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906123ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119259190611cac565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611979307f000000000000000000000000000000000000000000000000000000000000000084610a5b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806119c3610775565b426040518863ffffffff1660e01b81526004016119e59695949392919061291e565b6060604051808303818588803b1580156119fe57600080fd5b505af1158015611a12573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611a379190612994565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a93578082015181840152602081019050611a78565b83811115611aa2576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ac482611a59565b611ace8185611a64565b9350611ade818560208601611a75565b611ae781611aa8565b840191505092915050565b60006020820190508181036000830152611b0c8184611ab9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b4482611b19565b9050919050565b611b5481611b39565b8114611b5f57600080fd5b50565b600081359050611b7181611b4b565b92915050565b6000819050919050565b611b8a81611b77565b8114611b9557600080fd5b50565b600081359050611ba781611b81565b92915050565b60008060408385031215611bc457611bc3611b14565b5b6000611bd285828601611b62565b9250506020611be385828601611b98565b9150509250929050565b60008115159050919050565b611c0281611bed565b82525050565b6000602082019050611c1d6000830184611bf9565b92915050565b6000819050919050565b6000611c48611c43611c3e84611b19565b611c23565b611b19565b9050919050565b6000611c5a82611c2d565b9050919050565b6000611c6c82611c4f565b9050919050565b611c7c81611c61565b82525050565b6000602082019050611c976000830184611c73565b92915050565b611ca681611b77565b82525050565b6000602082019050611cc16000830184611c9d565b92915050565b600080600060608486031215611ce057611cdf611b14565b5b6000611cee86828701611b62565b9350506020611cff86828701611b62565b9250506040611d1086828701611b98565b9150509250925092565b600060ff82169050919050565b611d3081611d1a565b82525050565b6000602082019050611d4b6000830184611d27565b92915050565b611d5a81611b39565b82525050565b6000602082019050611d756000830184611d51565b92915050565b600060208284031215611d9157611d90611b14565b5b6000611d9f84828501611b62565b91505092915050565b60008060408385031215611dbf57611dbe611b14565b5b6000611dcd85828601611b98565b9250506020611dde85828601611b98565b9150509250929050565b60008060408385031215611dff57611dfe611b14565b5b6000611e0d85828601611b62565b9250506020611e1e85828601611b62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e6f57607f821691505b60208210811415611e8357611e82611e28565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec382611b77565b9150611ece83611b77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f02611e89565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f6a602583611a64565b9150611f7582611f0e565b604082019050919050565b60006020820190508181036000830152611f9981611f5d565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611ffc602d83611a64565b915061200782611fa0565b604082019050919050565b6000602082019050818103600083015261202b81611fef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061208e602683611a64565b915061209982612032565b604082019050919050565b600060208201905081810360008301526120bd81612081565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612120602483611a64565b915061212b826120c4565b604082019050919050565b6000602082019050818103600083015261214f81612113565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b2602283611a64565b91506121bd82612156565b604082019050919050565b600060208201905081810360008301526121e1816121a5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061221e601d83611a64565b9150612229826121e8565b602082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122b0602583611a64565b91506122bb82612254565b604082019050919050565b600060208201905081810360008301526122df816122a3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612342602383611a64565b915061234d826122e6565b604082019050919050565b6000602082019050818103600083015261237181612335565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123d4602683611a64565b91506123df82612378565b604082019050919050565b60006020820190508181036000830152612403816123c7565b9050919050565b600061241582611b77565b915061242083611b77565b92508282101561243357612432611e89565b5b828203905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612474601283611a64565b915061247f8261243e565b602082019050919050565b600060208201905081810360008301526124a381612467565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612506603983611a64565b9150612511826124aa565b604082019050919050565b60006020820190508181036000830152612535816124f9565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612598603683611a64565b91506125a38261253c565b604082019050919050565b600060208201905081810360008301526125c78161258b565b9050919050565b60006125d982611b77565b91506125e483611b77565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561261d5761261c611e89565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061266282611b77565b915061266d83611b77565b92508261267d5761267c612628565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126be602083611a64565b91506126c982612688565b602082019050919050565b600060208201905081810360008301526126ed816126b1565b9050919050565b60006060820190506127096000830186611c9d565b6127166020830185611c9d565b6127236040830184611c9d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061279881611b4b565b92915050565b6000602082840312156127b4576127b3611b14565b5b60006127c284828501612789565b91505092915050565b6000819050919050565b60006127f06127eb6127e6846127cb565b611c23565b611b77565b9050919050565b612800816127d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61283b81611b39565b82525050565b600061284d8383612832565b60208301905092915050565b6000602082019050919050565b600061287182612806565b61287b8185612811565b935061288683612822565b8060005b838110156128b757815161289e8882612841565b97506128a983612859565b92505060018101905061288a565b5085935050505092915050565b600060a0820190506128d96000830188611c9d565b6128e660208301876127f7565b81810360408301526128f88186612866565b90506129076060830185611d51565b6129146080830184611c9d565b9695505050505050565b600060c0820190506129336000830189611d51565b6129406020830188611c9d565b61294d60408301876127f7565b61295a60608301866127f7565b6129676080830185611d51565b61297460a0830184611c9d565b979650505050505050565b60008151905061298e81611b81565b92915050565b6000806000606084860312156129ad576129ac611b14565b5b60006129bb8682870161297f565b93505060206129cc8682870161297f565b92505060406129dd8682870161297f565b915050925092509256fea26469706673582212201cca7a874cc3d4d443bbe84786fc97b845dd69040292520afbf1be987d59ca1364736f6c63430008080033
Deployed Bytecode
0x6080604052600436106101395760003560e01c806375f0a874116100ab578063a9059cbb1161006f578063a9059cbb1461043b578063aa4bde2814610478578063af8af690146104a3578063dd62ed3e146104e0578063f2fde38b1461051d578063f345bd851461054657610140565b806375f0a874146103525780638c0b5e221461037d5780638da5cb5b146103a857806395d89b41146103d3578063a457c2d7146103fe57610140565b8063313ce567116100fd578063313ce56714610240578063395093511461026b57806349bd5a5e146102a8578063527ffabd146102d357806370a08231146102fe578063715018a61461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610571565b6040516101679190611af2565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611bad565b610603565b6040516101a49190611c08565b60405180910390f35b3480156101b957600080fd5b506101c2610626565b6040516101cf9190611c82565b60405180910390f35b3480156101e457600080fd5b506101ed61064a565b6040516101fa9190611cac565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190611cc7565b610654565b6040516102379190611c08565b60405180910390f35b34801561024c57600080fd5b50610255610683565b6040516102629190611d36565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190611bad565b61068c565b60405161029f9190611c08565b60405180910390f35b3480156102b457600080fd5b506102bd6106c3565b6040516102ca9190611d60565b60405180910390f35b3480156102df57600080fd5b506102e86106e7565b6040516102f59190611cac565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611d7b565b6106ed565b6040516103329190611cac565b60405180910390f35b34801561034757600080fd5b50610350610735565b005b34801561035e57600080fd5b50610367610749565b6040516103749190611d60565b60405180910390f35b34801561038957600080fd5b5061039261076f565b60405161039f9190611cac565b60405180910390f35b3480156103b457600080fd5b506103bd610775565b6040516103ca9190611d60565b60405180910390f35b3480156103df57600080fd5b506103e861079f565b6040516103f59190611af2565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190611bad565b610831565b6040516104329190611c08565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190611bad565b6108a8565b60405161046f9190611c08565b60405180910390f35b34801561048457600080fd5b5061048d6108cb565b60405161049a9190611cac565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190611da8565b6108d1565b6040516104d79190611c08565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190611de8565b610942565b6040516105149190611cac565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190611d7b565b6109c9565b005b34801561055257600080fd5b5061055b610a4d565b6040516105689190611cac565b60405180910390f35b60606003805461058090611e57565b80601f01602080910402602001604051908101604052809291908181526020018280546105ac90611e57565b80156105f95780601f106105ce576101008083540402835291602001916105f9565b820191906000526020600020905b8154815290600101906020018083116105dc57829003601f168201915b5050505050905090565b60008061060e610a53565b905061061b818585610a5b565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061065f610a53565b905061066c858285610c26565b610677858585610cb2565b60019150509392505050565b60006009905090565b600080610697610a53565b90506106b88185856106a98589610942565b6106b39190611eb8565b610a5b565b600191505092915050565b7f0000000000000000000000002bcf41881cfddfeb406e56f451b2d49438dd693c81565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073d61123d565b61074760006112bb565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107ae90611e57565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90611e57565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b60008061083c610a53565b9050600061084a8286610942565b90508381101561088f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088690611f80565b60405180910390fd5b61089c8286868403610a5b565b60019250505092915050565b6000806108b3610a53565b90506108c0818585610cb2565b600191505092915050565b600d5481565b60006108db61123d565b606482846108e99190611eb8565b111561092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190612012565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109d161123d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906120a4565b60405180910390fd5b610a4a816112bb565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290612136565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906121c8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c199190611cac565b60405180910390a3505050565b6000610c328484610942565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cac5781811015610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590612234565b60405180910390fd5b610cab8484848403610a5b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d19906122c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990612358565b60405180910390fd5b80610d9c846106ed565b1015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd4906123ea565b60405180910390fd5b7f0000000000000000000000002bcf41881cfddfeb406e56f451b2d49438dd693c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e8257507f0000000000000000000000002bcf41881cfddfeb406e56f451b2d49438dd693c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610e9b5750601360009054906101000a900460ff16155b1561122c577f0000000000000000000000002bcf41881cfddfeb406e56f451b2d49438dd693c73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ff2576000600f54610f01306106ed565b610f0b919061240a565b90506011548110610f2257610f21601154611381565b5b601254600f5410610ff057610f38601254611442565b601254600f6000828254610f4c919061240a565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe59061248a565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110955750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110a25781905061121b565b600c548211156110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061251c565b60405180910390fd5b7f0000000000000000000000002bcf41881cfddfeb406e56f451b2d49438dd693c73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561119457600d54611147846106ed565b836111529190611eb8565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906125ae565b60405180910390fd5b5b60006064600b54846111a691906125ce565b6111b09190612657565b905060006064600a54856111c491906125ce565b6111ce9190612657565b905080826111dc9190611eb8565b846111e7919061240a565b925081600f60008282546111fb9190611eb8565b92505081905550611218863083856112139190611eb8565b6116d1565b50505b6112268484836116d1565b50611238565b6112378383836116d1565b5b505050565b611245610a53565b73ffffffffffffffffffffffffffffffffffffffff16611263610775565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906126d4565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826113ab9190612657565b9050600081836113bb919061240a565b905060004790506113cb83611442565b600081476113d9919061240a565b90506113e58382611933565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611418939291906126f4565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561147a5761147961272b565b5b6040519080825280602002602001820160405280156114a85781602001602082028036833780820191505090505b50905030816000815181106114c0576114bf61275a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561156057600080fd5b505afa158015611574573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611598919061279e565b816001815181106115ac576115ab61275a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611611307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a5b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426116609190611eb8565b6040518663ffffffff1660e01b81526004016116809594939291906128c4565b600060405180830381600087803b15801561169a57600080fd5b505af11580156116ae573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611738906122c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890612358565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906123ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119259190611cac565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611979307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a5b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806119c3610775565b426040518863ffffffff1660e01b81526004016119e59695949392919061291e565b6060604051808303818588803b1580156119fe57600080fd5b505af1158015611a12573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611a379190612994565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a93578082015181840152602081019050611a78565b83811115611aa2576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ac482611a59565b611ace8185611a64565b9350611ade818560208601611a75565b611ae781611aa8565b840191505092915050565b60006020820190508181036000830152611b0c8184611ab9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b4482611b19565b9050919050565b611b5481611b39565b8114611b5f57600080fd5b50565b600081359050611b7181611b4b565b92915050565b6000819050919050565b611b8a81611b77565b8114611b9557600080fd5b50565b600081359050611ba781611b81565b92915050565b60008060408385031215611bc457611bc3611b14565b5b6000611bd285828601611b62565b9250506020611be385828601611b98565b9150509250929050565b60008115159050919050565b611c0281611bed565b82525050565b6000602082019050611c1d6000830184611bf9565b92915050565b6000819050919050565b6000611c48611c43611c3e84611b19565b611c23565b611b19565b9050919050565b6000611c5a82611c2d565b9050919050565b6000611c6c82611c4f565b9050919050565b611c7c81611c61565b82525050565b6000602082019050611c976000830184611c73565b92915050565b611ca681611b77565b82525050565b6000602082019050611cc16000830184611c9d565b92915050565b600080600060608486031215611ce057611cdf611b14565b5b6000611cee86828701611b62565b9350506020611cff86828701611b62565b9250506040611d1086828701611b98565b9150509250925092565b600060ff82169050919050565b611d3081611d1a565b82525050565b6000602082019050611d4b6000830184611d27565b92915050565b611d5a81611b39565b82525050565b6000602082019050611d756000830184611d51565b92915050565b600060208284031215611d9157611d90611b14565b5b6000611d9f84828501611b62565b91505092915050565b60008060408385031215611dbf57611dbe611b14565b5b6000611dcd85828601611b98565b9250506020611dde85828601611b98565b9150509250929050565b60008060408385031215611dff57611dfe611b14565b5b6000611e0d85828601611b62565b9250506020611e1e85828601611b62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e6f57607f821691505b60208210811415611e8357611e82611e28565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611ec382611b77565b9150611ece83611b77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f02611e89565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f6a602583611a64565b9150611f7582611f0e565b604082019050919050565b60006020820190508181036000830152611f9981611f5d565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611ffc602d83611a64565b915061200782611fa0565b604082019050919050565b6000602082019050818103600083015261202b81611fef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061208e602683611a64565b915061209982612032565b604082019050919050565b600060208201905081810360008301526120bd81612081565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612120602483611a64565b915061212b826120c4565b604082019050919050565b6000602082019050818103600083015261214f81612113565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121b2602283611a64565b91506121bd82612156565b604082019050919050565b600060208201905081810360008301526121e1816121a5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061221e601d83611a64565b9150612229826121e8565b602082019050919050565b6000602082019050818103600083015261224d81612211565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122b0602583611a64565b91506122bb82612254565b604082019050919050565b600060208201905081810360008301526122df816122a3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612342602383611a64565b915061234d826122e6565b604082019050919050565b6000602082019050818103600083015261237181612335565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123d4602683611a64565b91506123df82612378565b604082019050919050565b60006020820190508181036000830152612403816123c7565b9050919050565b600061241582611b77565b915061242083611b77565b92508282101561243357612432611e89565b5b828203905092915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612474601283611a64565b915061247f8261243e565b602082019050919050565b600060208201905081810360008301526124a381612467565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612506603983611a64565b9150612511826124aa565b604082019050919050565b60006020820190508181036000830152612535816124f9565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612598603683611a64565b91506125a38261253c565b604082019050919050565b600060208201905081810360008301526125c78161258b565b9050919050565b60006125d982611b77565b91506125e483611b77565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561261d5761261c611e89565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061266282611b77565b915061266d83611b77565b92508261267d5761267c612628565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126be602083611a64565b91506126c982612688565b602082019050919050565b600060208201905081810360008301526126ed816126b1565b9050919050565b60006060820190506127096000830186611c9d565b6127166020830185611c9d565b6127236040830184611c9d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061279881611b4b565b92915050565b6000602082840312156127b4576127b3611b14565b5b60006127c284828501612789565b91505092915050565b6000819050919050565b60006127f06127eb6127e6846127cb565b611c23565b611b77565b9050919050565b612800816127d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61283b81611b39565b82525050565b600061284d8383612832565b60208301905092915050565b6000602082019050919050565b600061287182612806565b61287b8185612811565b935061288683612822565b8060005b838110156128b757815161289e8882612841565b97506128a983612859565b92505060018101905061288a565b5085935050505092915050565b600060a0820190506128d96000830188611c9d565b6128e660208301876127f7565b81810360408301526128f88186612866565b90506129076060830185611d51565b6129146080830184611c9d565b9695505050505050565b600060c0820190506129336000830189611d51565b6129406020830188611c9d565b61294d60408301876127f7565b61295a60608301866127f7565b6129676080830185611d51565b61297460a0830184611c9d565b979650505050505050565b60008151905061298e81611b81565b92915050565b6000806000606084860312156129ad576129ac611b14565b5b60006129bb8682870161297f565b93505060206129cc8682870161297f565b92505060406129dd8682870161297f565b915050925092509256fea26469706673582212201cca7a874cc3d4d443bbe84786fc97b845dd69040292520afbf1be987d59ca1364736f6c63430008080033
Deployed Bytecode Sourcemap
28214:6611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17933:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20207:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28866:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19071:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18914:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22747:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28924:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28536:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18098:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15192:103;;;;;;;;;;;;;:::i;:::-;;28697:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28577:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17757:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21831:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19651:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28635:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34393:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19244:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15450:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28495:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17933:102;17989:13;18022:5;18015:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17933:102;:::o;20207:244::-;20328:4;20350:13;20366:12;:10;:12::i;:::-;20350:28;;20389:32;20398:5;20405:7;20414:6;20389:8;:32::i;:::-;20439:4;20432:11;;;20207:244;;;;:::o;28866:51::-;;;:::o;19071:110::-;19134:7;19161:12;;19154:19;;19071:110;:::o;21031:297::-;21164:4;21181:15;21199:12;:10;:12::i;:::-;21181:30;;21222:38;21238:4;21244:7;21253:6;21222:15;:38::i;:::-;21271:27;21281:4;21287:2;21291:6;21271:9;:27::i;:::-;21316:4;21309:11;;;21031:297;;;;;:::o;18914:92::-;18972:5;18997:1;18990:8;;18914:92;:::o;22747:272::-;22864:4;22886:13;22902:12;:10;:12::i;:::-;22886:28;;22925:64;22934:5;22941:7;22978:10;22950:25;22960:5;22967:7;22950:9;:25::i;:::-;:38;;;;:::i;:::-;22925:8;:64::i;:::-;23007:4;23000:11;;;22747:272;;;;:::o;28924:38::-;;;:::o;28536:34::-;;;;:::o;18098:177::-;18217:7;18249:9;:18;18259:7;18249:18;;;;;;;;;;;;;;;;18242:25;;18098:177;;;:::o;15192:103::-;14430:13;:11;:13::i;:::-;15257:30:::1;15284:1;15257:18;:30::i;:::-;15192:103::o:0;28697:75::-;;;;;;;;;;;;;:::o;28577:51::-;;;;:::o;14544:87::-;14590:7;14617:6;;;;;;;;;;;14610:13;;14544:87;:::o;17757:106::-;17815:13;17848:7;17841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17757:106;:::o;21831:507::-;21953:4;21975:13;21991:12;:10;:12::i;:::-;21975:28;;22014:24;22041:25;22051:5;22058:7;22041:9;:25::i;:::-;22014:52;;22119:15;22099:16;:35;;22077:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22235:60;22244:5;22251:7;22279:15;22260:16;:34;22235:8;:60::i;:::-;22326:4;22319:11;;;;21831:507;;;;:::o;19651:236::-;19768:4;19790:13;19806:12;:10;:12::i;:::-;19790:28;;19829;19839:5;19846:2;19850:6;19829:9;:28::i;:::-;19875:4;19868:11;;;19651:236;;;;:::o;28635:55::-;;;;:::o;34393:392::-;34541:4;14430:13;:11;:13::i;:::-;34610:3:::1;34589:16;34572;:33;;;;:::i;:::-;34571:42;;34563:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;34692:16;34674:15;:34;;;;34737:16;34719:15;:34;;;;34773:4;34766:11;;34393:392:::0;;;;:::o;19244:201::-;19378:7;19410:11;:18;19422:5;19410:18;;;;;;;;;;;;;;;:27;19429:7;19410:27;;;;;;;;;;;;;;;;19403:34;;19244:201;;;;:::o;15450:238::-;14430:13;:11;:13::i;:::-;15573:1:::1;15553:22;;:8;:22;;;;15531:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;15652:28;15671:8;15652:18;:28::i;:::-;15450:238:::0;:::o;28495:34::-;;;;:::o;13337:98::-;13390:7;13417:10;13410:17;;13337:98;:::o;25054:380::-;25207:1;25190:19;;:5;:19;;;;25182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25288:1;25269:21;;:7;:21;;;;25261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25372:6;25342:11;:18;25354:5;25342:18;;;;;;;;;;;;;;;:27;25361:7;25342:27;;;;;;;;;;;;;;;:36;;;;25410:7;25394:32;;25403:5;25394:32;;;25419:6;25394:32;;;;;;:::i;:::-;;;;;;;;25054:380;;;:::o;25725:502::-;25860:24;25887:25;25897:5;25904:7;25887:9;:25::i;:::-;25860:52;;25947:17;25927:16;:37;25923:297;;26027:6;26007:16;:26;;25981:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26142:51;26151:5;26158:7;26186:6;26167:16;:25;26142:8;:51::i;:::-;25923:297;25849:378;25725:502;;;:::o;30844:2149::-;30958:1;30942:18;;:4;:18;;;;30934:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31035:1;31021:16;;:2;:16;;;;31013:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31115:6;31096:15;31106:4;31096:9;:15::i;:::-;:25;;31088:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31190:13;31182:21;;:4;:21;;;:44;;;;31213:13;31207:19;;:2;:19;;;31182:44;31181:67;;;;;31232:16;;;;;;;;;;;31231:17;31181:67;31177:1809;;;31277:13;31269:21;;:4;:21;;;31265:686;;31311:32;31373:18;;31346:24;31364:4;31346:9;:24::i;:::-;:45;;;;:::i;:::-;31311:80;;31442:30;;31414:24;:58;31410:154;;31497:47;31513:30;;31497:15;:47::i;:::-;31410:154;31610:24;;31587:18;;31586:48;31582:354;;31659:43;31677:24;;31659:17;:43::i;:::-;31747:24;;31725:18;;:46;;;;;;;:::i;:::-;;;;;;;;31794:9;31814:15;;;;;;;;;;;31806:29;;:52;31836:21;31806:52;;;;;;;;;;;;;;;;;;;;;;;31794:64;;31889:4;31881:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;31636:300;31582:354;31292:659;31265:686;31967:22;32008:18;:24;32027:4;32008:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32036:18;:22;32055:2;32036:22;;;;;;;;;;;;;;;;;;;;;;;;;32008:50;32004:839;;;32096:6;32079:23;;32004:839;;;32175:11;;32165:6;:21;;32157:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32278:13;32270:21;;:4;:21;;;32267:178;;;32351:15;;32333:13;32343:2;32333:9;:13::i;:::-;32324:6;:22;;;;:::i;:::-;32323:43;;32315:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32267:178;32465:22;32520:3;32501:15;;32492:6;:24;;;;:::i;:::-;32491:32;;;;:::i;:::-;32465:59;;32543:22;32598:3;32579:15;;32570:6;:24;;;;:::i;:::-;32569:32;;;;:::i;:::-;32543:59;;32665:14;32648;:31;;;;:::i;:::-;32638:6;:42;;;;:::i;:::-;32621:59;;32721:14;32699:18;;:36;;;;;;;:::i;:::-;;;;;;;;32756:71;32772:4;32786;32811:14;32794;:31;;;;:::i;:::-;32756:15;:71::i;:::-;32138:705;;32004:839;32857:41;32873:4;32879:2;32883:14;32857:15;:41::i;:::-;31250:1660;31177:1809;;;32941:33;32957:4;32963:2;32967:6;32941:15;:33::i;:::-;31177:1809;30844:2149;;;:::o;14709:132::-;14784:12;:10;:12::i;:::-;14773:23;;:7;:5;:7::i;:::-;:23;;;14765:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14709:132::o;15848:191::-;15922:16;15941:6;;;;;;;;;;;15922:25;;15967:8;15958:6;;:17;;;;;;;;;;;;;;;;;;16022:8;15991:40;;16012:8;15991:40;;;;;;;;;;;;15911:128;15848:191;:::o;33001:474::-;29440:4;29421:16;;:23;;;;;;;;;;;;;;;;;;33087:12:::1;33126:1;33103:20;:24;;;;:::i;:::-;33087:41;;33139:17;33183:4;33160:20;:27;;;;:::i;:::-;33139:49;;33201:22;33226:21;33201:46;;33260:23;33278:4;33260:17;:23::i;:::-;33296:18;33342:14;33318:21;:38;;;;:::i;:::-;33296:61;;33370:36;33384:9;33395:10;33370:13;:36::i;:::-;33424:43;33439:4;33445:10;33457:9;33424:43;;;;;;;;:::i;:::-;;;;;;;;33076:399;;;;29486:5:::0;29467:16;;:24;;;;;;;;;;;;;;;;;;33001:474;:::o;33483:496::-;29440:4;29421:16;;:23;;;;;;;;;;;;;;;;;;33562:21:::1;33600:1;33586:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33562:40;;33631:4;33613;33618:1;33613:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33657:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33647:4;33652:1;33647:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33692:62;33709:4;33724:15;33742:11;33692:8;:62::i;:::-;33767:15;:66;;;33848:11;33874:1;33890:4;33917;33956:3;33938:15;:21;;;;:::i;:::-;33767:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33551:428;29486:5:::0;29467:16;;:24;;;;;;;;;;;;;;;;;;33483:496;:::o;26235:776::-;26382:1;26366:18;;:4;:18;;;;26358:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26459:1;26445:16;;:2;:16;;;;26437:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26514:19;26536:9;:15;26546:4;26536:15;;;;;;;;;;;;;;;;26514:37;;26599:6;26584:11;:21;;26562:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26739:6;26725:11;:20;26707:9;:15;26717:4;26707:15;;;;;;;;;;;;;;;:38;;;;26942:6;26925:9;:13;26935:2;26925:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26992:2;26977:26;;26986:4;26977:26;;;26996:6;26977:26;;;;;;:::i;:::-;;;;;;;;26347:664;26235:776;;;:::o;33987:398::-;29440:4;29421:16;;:23;;;;;;;;;;;;;;;;;;34104:62:::1;34121:4;34136:15;34154:11;34104:8;:62::i;:::-;34179:15;:31;;;34218:9;34251:4;34271:11;34297:1;34313::::0;34329:7:::1;:5;:7::i;:::-;34351:15;34179:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29486:5:::0;29467:16;;:24;;;;;;;;;;;;;;;;;;33987:398;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:60::-;3522:3;3543:5;3536:12;;3494:60;;;:::o;3560:142::-;3610:9;3643:53;3661:34;3670:24;3688:5;3670:24;:::i;:::-;3661:34;:::i;:::-;3643:53;:::i;:::-;3630:66;;3560:142;;;:::o;3708:126::-;3758:9;3791:37;3822:5;3791:37;:::i;:::-;3778:50;;3708:126;;;:::o;3840:152::-;3916:9;3949:37;3980:5;3949:37;:::i;:::-;3936:50;;3840:152;;;:::o;3998:183::-;4111:63;4168:5;4111:63;:::i;:::-;4106:3;4099:76;3998:183;;:::o;4187:274::-;4306:4;4344:2;4333:9;4329:18;4321:26;;4357:97;4451:1;4440:9;4436:17;4427:6;4357:97;:::i;:::-;4187:274;;;;:::o;4467:118::-;4554:24;4572:5;4554:24;:::i;:::-;4549:3;4542:37;4467:118;;:::o;4591:222::-;4684:4;4722:2;4711:9;4707:18;4699:26;;4735:71;4803:1;4792:9;4788:17;4779:6;4735:71;:::i;:::-;4591:222;;;;:::o;4819:619::-;4896:6;4904;4912;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;5214:2;5240:53;5285:7;5276:6;5265:9;5261:22;5240:53;:::i;:::-;5230:63;;5185:118;5342:2;5368:53;5413:7;5404:6;5393:9;5389:22;5368:53;:::i;:::-;5358:63;;5313:118;4819:619;;;;;:::o;5444:86::-;5479:7;5519:4;5512:5;5508:16;5497:27;;5444:86;;;:::o;5536:112::-;5619:22;5635:5;5619:22;:::i;:::-;5614:3;5607:35;5536:112;;:::o;5654:214::-;5743:4;5781:2;5770:9;5766:18;5758:26;;5794:67;5858:1;5847:9;5843:17;5834:6;5794:67;:::i;:::-;5654:214;;;;:::o;5874:118::-;5961:24;5979:5;5961:24;:::i;:::-;5956:3;5949:37;5874:118;;:::o;5998:222::-;6091:4;6129:2;6118:9;6114:18;6106:26;;6142:71;6210:1;6199:9;6195:17;6186:6;6142:71;:::i;:::-;5998:222;;;;:::o;6226:329::-;6285:6;6334:2;6322:9;6313:7;6309:23;6305:32;6302:119;;;6340:79;;:::i;:::-;6302:119;6460:1;6485:53;6530:7;6521:6;6510:9;6506:22;6485:53;:::i;:::-;6475:63;;6431:117;6226:329;;;;:::o;6561:474::-;6629:6;6637;6686:2;6674:9;6665:7;6661:23;6657:32;6654:119;;;6692:79;;:::i;:::-;6654:119;6812:1;6837:53;6882:7;6873:6;6862:9;6858:22;6837:53;:::i;:::-;6827:63;;6783:117;6939:2;6965:53;7010:7;7001:6;6990:9;6986:22;6965:53;:::i;:::-;6955:63;;6910:118;6561:474;;;;;:::o;7041:::-;7109:6;7117;7166:2;7154:9;7145:7;7141:23;7137:32;7134:119;;;7172:79;;:::i;:::-;7134:119;7292:1;7317:53;7362:7;7353:6;7342:9;7338:22;7317:53;:::i;:::-;7307:63;;7263:117;7419:2;7445:53;7490:7;7481:6;7470:9;7466:22;7445:53;:::i;:::-;7435:63;;7390:118;7041:474;;;;;:::o;7521:180::-;7569:77;7566:1;7559:88;7666:4;7663:1;7656:15;7690:4;7687:1;7680:15;7707:320;7751:6;7788:1;7782:4;7778:12;7768:22;;7835:1;7829:4;7825:12;7856:18;7846:81;;7912:4;7904:6;7900:17;7890:27;;7846:81;7974:2;7966:6;7963:14;7943:18;7940:38;7937:84;;;7993:18;;:::i;:::-;7937:84;7758:269;7707:320;;;:::o;8033:180::-;8081:77;8078:1;8071:88;8178:4;8175:1;8168:15;8202:4;8199:1;8192:15;8219:305;8259:3;8278:20;8296:1;8278:20;:::i;:::-;8273:25;;8312:20;8330:1;8312:20;:::i;:::-;8307:25;;8466:1;8398:66;8394:74;8391:1;8388:81;8385:107;;;8472:18;;:::i;:::-;8385:107;8516:1;8513;8509:9;8502:16;;8219:305;;;;:::o;8530:224::-;8670:34;8666:1;8658:6;8654:14;8647:58;8739:7;8734:2;8726:6;8722:15;8715:32;8530:224;:::o;8760:366::-;8902:3;8923:67;8987:2;8982:3;8923:67;:::i;:::-;8916:74;;8999:93;9088:3;8999:93;:::i;:::-;9117:2;9112:3;9108:12;9101:19;;8760:366;;;:::o;9132:419::-;9298:4;9336:2;9325:9;9321:18;9313:26;;9385:9;9379:4;9375:20;9371:1;9360:9;9356:17;9349:47;9413:131;9539:4;9413:131;:::i;:::-;9405:139;;9132:419;;;:::o;9557:232::-;9697:34;9693:1;9685:6;9681:14;9674:58;9766:15;9761:2;9753:6;9749:15;9742:40;9557:232;:::o;9795:366::-;9937:3;9958:67;10022:2;10017:3;9958:67;:::i;:::-;9951:74;;10034:93;10123:3;10034:93;:::i;:::-;10152:2;10147:3;10143:12;10136:19;;9795:366;;;:::o;10167:419::-;10333:4;10371:2;10360:9;10356:18;10348:26;;10420:9;10414:4;10410:20;10406:1;10395:9;10391:17;10384:47;10448:131;10574:4;10448:131;:::i;:::-;10440:139;;10167:419;;;:::o;10592:225::-;10732:34;10728:1;10720:6;10716:14;10709:58;10801:8;10796:2;10788:6;10784:15;10777:33;10592:225;:::o;10823:366::-;10965:3;10986:67;11050:2;11045:3;10986:67;:::i;:::-;10979:74;;11062:93;11151:3;11062:93;:::i;:::-;11180:2;11175:3;11171:12;11164:19;;10823:366;;;:::o;11195:419::-;11361:4;11399:2;11388:9;11384:18;11376:26;;11448:9;11442:4;11438:20;11434:1;11423:9;11419:17;11412:47;11476:131;11602:4;11476:131;:::i;:::-;11468:139;;11195:419;;;:::o;11620:223::-;11760:34;11756:1;11748:6;11744:14;11737:58;11829:6;11824:2;11816:6;11812:15;11805:31;11620:223;:::o;11849:366::-;11991:3;12012:67;12076:2;12071:3;12012:67;:::i;:::-;12005:74;;12088:93;12177:3;12088:93;:::i;:::-;12206:2;12201:3;12197:12;12190:19;;11849:366;;;:::o;12221:419::-;12387:4;12425:2;12414:9;12410:18;12402:26;;12474:9;12468:4;12464:20;12460:1;12449:9;12445:17;12438:47;12502:131;12628:4;12502:131;:::i;:::-;12494:139;;12221:419;;;:::o;12646:221::-;12786:34;12782:1;12774:6;12770:14;12763:58;12855:4;12850:2;12842:6;12838:15;12831:29;12646:221;:::o;12873:366::-;13015:3;13036:67;13100:2;13095:3;13036:67;:::i;:::-;13029:74;;13112:93;13201:3;13112:93;:::i;:::-;13230:2;13225:3;13221:12;13214:19;;12873:366;;;:::o;13245:419::-;13411:4;13449:2;13438:9;13434:18;13426:26;;13498:9;13492:4;13488:20;13484:1;13473:9;13469:17;13462:47;13526:131;13652:4;13526:131;:::i;:::-;13518:139;;13245:419;;;:::o;13670:179::-;13810:31;13806:1;13798:6;13794:14;13787:55;13670:179;:::o;13855:366::-;13997:3;14018:67;14082:2;14077:3;14018:67;:::i;:::-;14011:74;;14094:93;14183:3;14094:93;:::i;:::-;14212:2;14207:3;14203:12;14196:19;;13855:366;;;:::o;14227:419::-;14393:4;14431:2;14420:9;14416:18;14408:26;;14480:9;14474:4;14470:20;14466:1;14455:9;14451:17;14444:47;14508:131;14634:4;14508:131;:::i;:::-;14500:139;;14227:419;;;:::o;14652:224::-;14792:34;14788:1;14780:6;14776:14;14769:58;14861:7;14856:2;14848:6;14844:15;14837:32;14652:224;:::o;14882:366::-;15024:3;15045:67;15109:2;15104:3;15045:67;:::i;:::-;15038:74;;15121:93;15210:3;15121:93;:::i;:::-;15239:2;15234:3;15230:12;15223:19;;14882:366;;;:::o;15254:419::-;15420:4;15458:2;15447:9;15443:18;15435:26;;15507:9;15501:4;15497:20;15493:1;15482:9;15478:17;15471:47;15535:131;15661:4;15535:131;:::i;:::-;15527:139;;15254:419;;;:::o;15679:222::-;15819:34;15815:1;15807:6;15803:14;15796:58;15888:5;15883:2;15875:6;15871:15;15864:30;15679:222;:::o;15907:366::-;16049:3;16070:67;16134:2;16129:3;16070:67;:::i;:::-;16063:74;;16146:93;16235:3;16146:93;:::i;:::-;16264:2;16259:3;16255:12;16248:19;;15907:366;;;:::o;16279:419::-;16445:4;16483:2;16472:9;16468:18;16460:26;;16532:9;16526:4;16522:20;16518:1;16507:9;16503:17;16496:47;16560:131;16686:4;16560:131;:::i;:::-;16552:139;;16279:419;;;:::o;16704:225::-;16844:34;16840:1;16832:6;16828:14;16821:58;16913:8;16908:2;16900:6;16896:15;16889:33;16704:225;:::o;16935:366::-;17077:3;17098:67;17162:2;17157:3;17098:67;:::i;:::-;17091:74;;17174:93;17263:3;17174:93;:::i;:::-;17292:2;17287:3;17283:12;17276:19;;16935:366;;;:::o;17307:419::-;17473:4;17511:2;17500:9;17496:18;17488:26;;17560:9;17554:4;17550:20;17546:1;17535:9;17531:17;17524:47;17588:131;17714:4;17588:131;:::i;:::-;17580:139;;17307:419;;;:::o;17732:191::-;17772:4;17792:20;17810:1;17792:20;:::i;:::-;17787:25;;17826:20;17844:1;17826:20;:::i;:::-;17821:25;;17865:1;17862;17859:8;17856:34;;;17870:18;;:::i;:::-;17856:34;17915:1;17912;17908:9;17900:17;;17732:191;;;;:::o;17929:168::-;18069:20;18065:1;18057:6;18053:14;18046:44;17929:168;:::o;18103:366::-;18245:3;18266:67;18330:2;18325:3;18266:67;:::i;:::-;18259:74;;18342:93;18431:3;18342:93;:::i;:::-;18460:2;18455:3;18451:12;18444:19;;18103:366;;;:::o;18475:419::-;18641:4;18679:2;18668:9;18664:18;18656:26;;18728:9;18722:4;18718:20;18714:1;18703:9;18699:17;18692:47;18756:131;18882:4;18756:131;:::i;:::-;18748:139;;18475:419;;;:::o;18900:244::-;19040:34;19036:1;19028:6;19024:14;19017:58;19109:27;19104:2;19096:6;19092:15;19085:52;18900:244;:::o;19150:366::-;19292:3;19313:67;19377:2;19372:3;19313:67;:::i;:::-;19306:74;;19389:93;19478:3;19389:93;:::i;:::-;19507:2;19502:3;19498:12;19491:19;;19150:366;;;:::o;19522:419::-;19688:4;19726:2;19715:9;19711:18;19703:26;;19775:9;19769:4;19765:20;19761:1;19750:9;19746:17;19739:47;19803:131;19929:4;19803:131;:::i;:::-;19795:139;;19522:419;;;:::o;19947:241::-;20087:34;20083:1;20075:6;20071:14;20064:58;20156:24;20151:2;20143:6;20139:15;20132:49;19947:241;:::o;20194:366::-;20336:3;20357:67;20421:2;20416:3;20357:67;:::i;:::-;20350:74;;20433:93;20522:3;20433:93;:::i;:::-;20551:2;20546:3;20542:12;20535:19;;20194:366;;;:::o;20566:419::-;20732:4;20770:2;20759:9;20755:18;20747:26;;20819:9;20813:4;20809:20;20805:1;20794:9;20790:17;20783:47;20847:131;20973:4;20847:131;:::i;:::-;20839:139;;20566:419;;;:::o;20991:348::-;21031:7;21054:20;21072:1;21054:20;:::i;:::-;21049:25;;21088:20;21106:1;21088:20;:::i;:::-;21083:25;;21276:1;21208:66;21204:74;21201:1;21198:81;21193:1;21186:9;21179:17;21175:105;21172:131;;;21283:18;;:::i;:::-;21172:131;21331:1;21328;21324:9;21313:20;;20991:348;;;;:::o;21345:180::-;21393:77;21390:1;21383:88;21490:4;21487:1;21480:15;21514:4;21511:1;21504:15;21531:185;21571:1;21588:20;21606:1;21588:20;:::i;:::-;21583:25;;21622:20;21640:1;21622:20;:::i;:::-;21617:25;;21661:1;21651:35;;21666:18;;:::i;:::-;21651:35;21708:1;21705;21701:9;21696:14;;21531:185;;;;:::o;21722:182::-;21862:34;21858:1;21850:6;21846:14;21839:58;21722:182;:::o;21910:366::-;22052:3;22073:67;22137:2;22132:3;22073:67;:::i;:::-;22066:74;;22149:93;22238:3;22149:93;:::i;:::-;22267:2;22262:3;22258:12;22251:19;;21910:366;;;:::o;22282:419::-;22448:4;22486:2;22475:9;22471:18;22463:26;;22535:9;22529:4;22525:20;22521:1;22510:9;22506:17;22499:47;22563:131;22689:4;22563:131;:::i;:::-;22555:139;;22282:419;;;:::o;22707:442::-;22856:4;22894:2;22883:9;22879:18;22871:26;;22907:71;22975:1;22964:9;22960:17;22951:6;22907:71;:::i;:::-;22988:72;23056:2;23045:9;23041:18;23032:6;22988:72;:::i;:::-;23070;23138:2;23127:9;23123:18;23114:6;23070:72;:::i;:::-;22707:442;;;;;;:::o;23155:180::-;23203:77;23200:1;23193:88;23300:4;23297:1;23290:15;23324:4;23321:1;23314:15;23341:180;23389:77;23386:1;23379:88;23486:4;23483:1;23476:15;23510:4;23507:1;23500:15;23527:143;23584:5;23615:6;23609:13;23600:22;;23631:33;23658:5;23631:33;:::i;:::-;23527:143;;;;:::o;23676:351::-;23746:6;23795:2;23783:9;23774:7;23770:23;23766:32;23763:119;;;23801:79;;:::i;:::-;23763:119;23921:1;23946:64;24002:7;23993:6;23982:9;23978:22;23946:64;:::i;:::-;23936:74;;23892:128;23676:351;;;;:::o;24033:85::-;24078:7;24107:5;24096:16;;24033:85;;;:::o;24124:158::-;24182:9;24215:61;24233:42;24242:32;24268:5;24242:32;:::i;:::-;24233:42;:::i;:::-;24215:61;:::i;:::-;24202:74;;24124:158;;;:::o;24288:147::-;24383:45;24422:5;24383:45;:::i;:::-;24378:3;24371:58;24288:147;;:::o;24441:114::-;24508:6;24542:5;24536:12;24526:22;;24441:114;;;:::o;24561:184::-;24660:11;24694:6;24689:3;24682:19;24734:4;24729:3;24725:14;24710:29;;24561:184;;;;:::o;24751:132::-;24818:4;24841:3;24833:11;;24871:4;24866:3;24862:14;24854:22;;24751:132;;;:::o;24889:108::-;24966:24;24984:5;24966:24;:::i;:::-;24961:3;24954:37;24889:108;;:::o;25003:179::-;25072:10;25093:46;25135:3;25127:6;25093:46;:::i;:::-;25171:4;25166:3;25162:14;25148:28;;25003:179;;;;:::o;25188:113::-;25258:4;25290;25285:3;25281:14;25273:22;;25188:113;;;:::o;25337:732::-;25456:3;25485:54;25533:5;25485:54;:::i;:::-;25555:86;25634:6;25629:3;25555:86;:::i;:::-;25548:93;;25665:56;25715:5;25665:56;:::i;:::-;25744:7;25775:1;25760:284;25785:6;25782:1;25779:13;25760:284;;;25861:6;25855:13;25888:63;25947:3;25932:13;25888:63;:::i;:::-;25881:70;;25974:60;26027:6;25974:60;:::i;:::-;25964:70;;25820:224;25807:1;25804;25800:9;25795:14;;25760:284;;;25764:14;26060:3;26053:10;;25461:608;;;25337:732;;;;:::o;26075:831::-;26338:4;26376:3;26365:9;26361:19;26353:27;;26390:71;26458:1;26447:9;26443:17;26434:6;26390:71;:::i;:::-;26471:80;26547:2;26536:9;26532:18;26523:6;26471:80;:::i;:::-;26598:9;26592:4;26588:20;26583:2;26572:9;26568:18;26561:48;26626:108;26729:4;26720:6;26626:108;:::i;:::-;26618:116;;26744:72;26812:2;26801:9;26797:18;26788:6;26744:72;:::i;:::-;26826:73;26894:3;26883:9;26879:19;26870:6;26826:73;:::i;:::-;26075:831;;;;;;;;:::o;26912:807::-;27161:4;27199:3;27188:9;27184:19;27176:27;;27213:71;27281:1;27270:9;27266:17;27257:6;27213:71;:::i;:::-;27294:72;27362:2;27351:9;27347:18;27338:6;27294:72;:::i;:::-;27376:80;27452:2;27441:9;27437:18;27428:6;27376:80;:::i;:::-;27466;27542:2;27531:9;27527:18;27518:6;27466:80;:::i;:::-;27556:73;27624:3;27613:9;27609:19;27600:6;27556:73;:::i;:::-;27639;27707:3;27696:9;27692:19;27683:6;27639:73;:::i;:::-;26912:807;;;;;;;;;:::o;27725:143::-;27782:5;27813:6;27807:13;27798:22;;27829:33;27856:5;27829:33;:::i;:::-;27725:143;;;;:::o;27874:663::-;27962:6;27970;27978;28027:2;28015:9;28006:7;28002:23;27998:32;27995:119;;;28033:79;;:::i;:::-;27995:119;28153:1;28178:64;28234:7;28225:6;28214:9;28210:22;28178:64;:::i;:::-;28168:74;;28124:128;28291:2;28317:64;28373:7;28364:6;28353:9;28349:22;28317:64;:::i;:::-;28307:74;;28262:129;28430:2;28456:64;28512:7;28503:6;28492:9;28488:22;28456:64;:::i;:::-;28446:74;;28401:129;27874:663;;;;;:::o
Swarm Source
ipfs://1cca7a874cc3d4d443bbe84786fc97b845dd69040292520afbf1be987d59ca13
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.