Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000 KaPLo
Holders
23
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KaPLo
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-01 */ /** KaPLo event Transfer(address indexed from, address indexed to, uint256 value); * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * */ // SPDX-License-Identifier: MIT pragma solidity 0.8.16; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function allPairsLength() external view returns (uint256); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 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 KaPLo is ERC20, Ownable { // TOKENOMICS START ==========================================================> string private _name = "KaPLo"; string private _symbol = "KaPLo"; uint8 private _decimals = 9; uint256 private _supply = 10000000; uint256 public taxForLiquidity = 0; uint256 public taxForMarketing = 25; uint256 public maxTxAmount = 200000 * 10**_decimals; uint256 public maxWalletAmount = 200000 * 10**_decimals; address public marketingWallet = 0xb877eF7d2b0b69d481d9392672732385E4D2C2A7; // TOKENOMICS END ============================================================> IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; uint256 private _numTokensSellToAddToLiquidity = 100000 * 10**_decimals; uint256 private _numTokensSellToAddToETH = 20000 * 10**_decimals; bool inSwapAndLiquify; //test bool inSwapAndLiquifyNewOld; //test 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 changeMarketingWallet(address newWallet) public onlyOwner returns (bool) { marketingWallet = newWallet; return true; } 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; } function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner returns (bool) { maxTxAmount = _maxTxAmount; return true; } function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner returns (bool) { maxWalletAmount = _maxWalletAmount; return true; } function changeMaxWalletAmountNew(uint256 _maxWalletAmount) public onlyOwner returns (bool) { maxWalletAmount = _maxWalletAmount; 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":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmountNew","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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
60c06040526040518060400160405280600581526020017f4b61504c6f000000000000000000000000000000000000000000000000000000815250600690816200004a919062000b39565b506040518060400160405280600581526020017f4b61504c6f0000000000000000000000000000000000000000000000000000008152506007908162000091919062000b39565b506009600860006101000a81548160ff021916908360ff160217905550629896806009556000600a556019600b55600860009054906101000a900460ff16600a620000dd919062000db0565b62030d40620000ed919062000e01565b600c55600860009054906101000a900460ff16600a6200010e919062000db0565b62030d406200011e919062000e01565b600d5573b877ef7d2b0b69d481d9392672732385e4d2c2a7600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55600860009054906101000a900460ff16600a62000199919062000db0565b620186a0620001a9919062000e01565b601155600860009054906101000a900460ff16600a620001ca919062000db0565b614e20620001d9919062000e01565b601255348015620001e957600080fd5b5060068054620001f99062000928565b80601f0160208091040260200160405190810160405280929190818152602001828054620002279062000928565b8015620002785780601f106200024c5761010080835404028352916020019162000278565b820191906000526020600020905b8154815290600101906020018083116200025a57829003601f168201915b5050505050600780546200028c9062000928565b80601f0160208091040260200160405190810160405280929190818152602001828054620002ba9062000928565b80156200030b5780601f10620002df576101008083540402835291602001916200030b565b820191906000526020600020905b815481529060010190602001808311620002ed57829003601f168201915b5050505050816003908162000321919062000b39565b50806004908162000333919062000b39565b505050620003566200034a620006ac60201b60201c565b620006b460201b60201c565b6200039433600860009054906101000a900460ff16600a62000379919062000db0565b60095462000388919062000e01565b6200077a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200041f919062000ecc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000487573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ad919062000ecc565b6040518363ffffffff1660e01b8152600401620004cc92919062000f0f565b6020604051808303816000875af1158015620004ec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000512919062000ecc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016010600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001028565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e39062000f9d565b60405180910390fd5b806002600082825462000800919062000fbf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008b391906200100b565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094157607f821691505b602082108103620009575762000956620008f9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000982565b620009cd868362000982565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1a62000a1462000a0e84620009e5565b620009ef565b620009e5565b9050919050565b6000819050919050565b62000a3683620009f9565b62000a4e62000a458262000a21565b8484546200098f565b825550505050565b600090565b62000a6562000a56565b62000a7281848462000a2b565b505050565b5b8181101562000a9a5762000a8e60008262000a5b565b60018101905062000a78565b5050565b601f82111562000ae95762000ab3816200095d565b62000abe8462000972565b8101602085101562000ace578190505b62000ae662000add8562000972565b83018262000a77565b50505b505050565b600082821c905092915050565b600062000b0e6000198460080262000aee565b1980831691505092915050565b600062000b29838362000afb565b9150826002028217905092915050565b62000b4482620008bf565b67ffffffffffffffff81111562000b605762000b5f620008ca565b5b62000b6c825462000928565b62000b7982828562000a9e565b600060209050601f83116001811462000bb1576000841562000b9c578287015190505b62000ba8858262000b1b565b86555062000c18565b601f19841662000bc1866200095d565b60005b8281101562000beb5784890151825560018201915060208501945060208101905062000bc4565b8683101562000c0b578489015162000c07601f89168262000afb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cae5780860481111562000c865762000c8562000c20565b5b600185161562000c965780820291505b808102905062000ca68562000c4f565b945062000c66565b94509492505050565b60008262000cc9576001905062000d9c565b8162000cd9576000905062000d9c565b816001811462000cf2576002811462000cfd5762000d33565b600191505062000d9c565b60ff84111562000d125762000d1162000c20565b5b8360020a91508482111562000d2c5762000d2b62000c20565b5b5062000d9c565b5060208310610133831016604e8410600b841016171562000d6d5782820a90508381111562000d675762000d6662000c20565b5b62000d9c565b62000d7c848484600162000c5c565b9250905081840481111562000d965762000d9562000c20565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dbd82620009e5565b915062000dca8362000da3565b925062000df97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cb7565b905092915050565b600062000e0e82620009e5565b915062000e1b83620009e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e575762000e5662000c20565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e948262000e67565b9050919050565b62000ea68162000e87565b811462000eb257600080fd5b50565b60008151905062000ec68162000e9b565b92915050565b60006020828403121562000ee55762000ee462000e62565b5b600062000ef58482850162000eb5565b91505092915050565b62000f098162000e87565b82525050565b600060408201905062000f26600083018562000efe565b62000f35602083018462000efe565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f85601f8362000f3c565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b600062000fcc82620009e5565b915062000fd983620009e5565b925082820190508082111562000ff45762000ff362000c20565b5b92915050565b6200100581620009e5565b82525050565b600060208201905062001022600083018462000ffa565b92915050565b60805160a051612bda6200108d6000396000818161080501528181610fbc015281816110110152818161107f01526112c6015260008181610768015281816116d8015281816117b9015281816117e001528181611b1f0152611b460152612bda6000f3fe6080604052600436106101855760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d1146105e3578063dd62ed3e14610620578063f2fde38b1461065d578063f345bd85146106865761018c565b8063a9059cbb1461053e578063aa4bde281461057b578063af8af690146105a65761018c565b806375f0a8741461041857806381bfdcca146104435780638c0b5e22146104805780638da5cb5b146104ab57806395d89b41146104d6578063a457c2d7146105015761018c565b8063395093511161013e57806365cf47a51161011857806365cf47a51461034a578063677daa571461038757806370a08231146103c4578063715018a6146104015761018c565b806339509351146102b757806349bd5a5e146102f4578063527ffabd1461031f5761018c565b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101f957806318160ddd1461022457806323b872dd1461024f578063313ce5671461028c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66106b1565b6040516101b39190611ca5565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611d60565b610743565b6040516101f09190611dbb565b60405180910390f35b34801561020557600080fd5b5061020e610766565b60405161021b9190611e35565b60405180910390f35b34801561023057600080fd5b5061023961078a565b6040516102469190611e5f565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190611e7a565b610794565b6040516102839190611dbb565b60405180910390f35b34801561029857600080fd5b506102a16107c3565b6040516102ae9190611ee9565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190611d60565b6107cc565b6040516102eb9190611dbb565b60405180910390f35b34801561030057600080fd5b50610309610803565b6040516103169190611f13565b60405180910390f35b34801561032b57600080fd5b50610334610827565b6040516103419190611e5f565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190611f2e565b61082d565b60405161037e9190611dbb565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190611f2e565b610847565b6040516103bb9190611dbb565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190611f5b565b610861565b6040516103f89190611e5f565b60405180910390f35b34801561040d57600080fd5b506104166108a9565b005b34801561042457600080fd5b5061042d6108bd565b60405161043a9190611f13565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190611f2e565b6108e3565b6040516104779190611dbb565b60405180910390f35b34801561048c57600080fd5b506104956108fd565b6040516104a29190611e5f565b60405180910390f35b3480156104b757600080fd5b506104c0610903565b6040516104cd9190611f13565b60405180910390f35b3480156104e257600080fd5b506104eb61092d565b6040516104f89190611ca5565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190611d60565b6109bf565b6040516105359190611dbb565b60405180910390f35b34801561054a57600080fd5b5061056560048036038101906105609190611d60565b610a36565b6040516105729190611dbb565b60405180910390f35b34801561058757600080fd5b50610590610a59565b60405161059d9190611e5f565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190611f88565b610a5f565b6040516105da9190611dbb565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190611f5b565b610ad0565b6040516106179190611dbb565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190611fc8565b610b24565b6040516106549190611e5f565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190611f5b565b610bab565b005b34801561069257600080fd5b5061069b610c2e565b6040516106a89190611e5f565b60405180910390f35b6060600380546106c090612037565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90612037565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b60008061074e610c34565b905061075b818585610c3c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60008061079f610c34565b90506107ac858285610e05565b6107b7858585610e91565b60019150509392505050565b60006009905090565b6000806107d7610c34565b90506107f88185856107e98589610b24565b6107f39190612097565b610c3c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b6000610837611419565b81600d8190555060019050919050565b6000610851611419565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b1611419565b6108bb6000611497565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108ed611419565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461093c90612037565b80601f016020809104026020016040519081016040528092919081815260200182805461096890612037565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b6000806109ca610c34565b905060006109d88286610b24565b905083811015610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a149061213d565b60405180910390fd5b610a2a8286868403610c3c565b60019250505092915050565b600080610a41610c34565b9050610a4e818585610e91565b600191505092915050565b600d5481565b6000610a69611419565b60648284610a779190612097565b1115610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906121cf565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610ada611419565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb3611419565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990612261565b60405180910390fd5b610c2b81611497565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca2906122f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612385565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df89190611e5f565b60405180910390a3505050565b6000610e118484610b24565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e8b5781811015610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906123f1565b60405180910390fd5b610e8a8484848403610c3c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690612515565b60405180910390fd5b80610f7984610861565b1015610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906125a7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061105f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110785750601360009054906101000a900460ff16155b15611408577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111cf576000600f546110de30610861565b6110e891906125c7565b905060115481106110ff576110fe60115461155d565b5b601254600f54106111cd5761111560125461161e565b601254600f600082825461112991906125c7565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290612647565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112725750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561127f578190506113f7565b600c548211156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906126d9565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361137057600d5461132384610861565b8361132e9190612097565b111561136f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113669061276b565b60405180910390fd5b5b60006064600b5484611382919061278b565b61138c9190612814565b905060006064600a54856113a0919061278b565b6113aa9190612814565b905080826113b89190612097565b846113c391906125c7565b925081600f60008282546113d79190612097565b925050819055506113f4863083856113ef9190612097565b61189e565b50505b61140284848361189e565b50611414565b61141383838361189e565b5b505050565b611421610c34565b73ffffffffffffffffffffffffffffffffffffffff1661143f610903565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90612891565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826115879190612814565b90506000818361159791906125c7565b905060004790506115a78361161e565b600081476115b591906125c7565b90506115c18382611afe565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516115f4939291906128b1565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611656576116556128e8565b5b6040519080825280602002602001820160405280156116845781602001602082028036833780820191505090505b509050308160008151811061169c5761169b612917565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611741573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611765919061295b565b8160018151811061177957611778612917565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506117de307f000000000000000000000000000000000000000000000000000000000000000084610c3c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261182d9190612097565b6040518663ffffffff1660e01b815260040161184d959493929190612a81565b600060405180830381600087803b15801561186757600080fd5b505af115801561187b573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612515565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f9906125a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611af09190611e5f565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611b44307f000000000000000000000000000000000000000000000000000000000000000084610c3c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b8e610903565b426040518863ffffffff1660e01b8152600401611bb096959493929190612adb565b60606040518083038185885af1158015611bce573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bf39190612b51565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c4f578082015181840152602081019050611c34565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c7782611c15565b611c818185611c20565b9350611c91818560208601611c31565b611c9a81611c5b565b840191505092915050565b60006020820190508181036000830152611cbf8184611c6c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cf782611ccc565b9050919050565b611d0781611cec565b8114611d1257600080fd5b50565b600081359050611d2481611cfe565b92915050565b6000819050919050565b611d3d81611d2a565b8114611d4857600080fd5b50565b600081359050611d5a81611d34565b92915050565b60008060408385031215611d7757611d76611cc7565b5b6000611d8585828601611d15565b9250506020611d9685828601611d4b565b9150509250929050565b60008115159050919050565b611db581611da0565b82525050565b6000602082019050611dd06000830184611dac565b92915050565b6000819050919050565b6000611dfb611df6611df184611ccc565b611dd6565b611ccc565b9050919050565b6000611e0d82611de0565b9050919050565b6000611e1f82611e02565b9050919050565b611e2f81611e14565b82525050565b6000602082019050611e4a6000830184611e26565b92915050565b611e5981611d2a565b82525050565b6000602082019050611e746000830184611e50565b92915050565b600080600060608486031215611e9357611e92611cc7565b5b6000611ea186828701611d15565b9350506020611eb286828701611d15565b9250506040611ec386828701611d4b565b9150509250925092565b600060ff82169050919050565b611ee381611ecd565b82525050565b6000602082019050611efe6000830184611eda565b92915050565b611f0d81611cec565b82525050565b6000602082019050611f286000830184611f04565b92915050565b600060208284031215611f4457611f43611cc7565b5b6000611f5284828501611d4b565b91505092915050565b600060208284031215611f7157611f70611cc7565b5b6000611f7f84828501611d15565b91505092915050565b60008060408385031215611f9f57611f9e611cc7565b5b6000611fad85828601611d4b565b9250506020611fbe85828601611d4b565b9150509250929050565b60008060408385031215611fdf57611fde611cc7565b5b6000611fed85828601611d15565b9250506020611ffe85828601611d15565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061204f57607f821691505b60208210810361206257612061612008565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120a282611d2a565b91506120ad83611d2a565b92508282019050808211156120c5576120c4612068565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612127602583611c20565b9150612132826120cb565b604082019050919050565b600060208201905081810360008301526121568161211a565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b60006121b9602d83611c20565b91506121c48261215d565b604082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061224b602683611c20565b9150612256826121ef565b604082019050919050565b6000602082019050818103600083015261227a8161223e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006122dd602483611c20565b91506122e882612281565b604082019050919050565b6000602082019050818103600083015261230c816122d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061236f602283611c20565b915061237a82612313565b604082019050919050565b6000602082019050818103600083015261239e81612362565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006123db601d83611c20565b91506123e6826123a5565b602082019050919050565b6000602082019050818103600083015261240a816123ce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061246d602583611c20565b915061247882612411565b604082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124ff602383611c20565b915061250a826124a3565b604082019050919050565b6000602082019050818103600083015261252e816124f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612591602683611c20565b915061259c82612535565b604082019050919050565b600060208201905081810360008301526125c081612584565b9050919050565b60006125d282611d2a565b91506125dd83611d2a565b92508282039050818111156125f5576125f4612068565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612631601283611c20565b915061263c826125fb565b602082019050919050565b6000602082019050818103600083015261266081612624565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006126c3603983611c20565b91506126ce82612667565b604082019050919050565b600060208201905081810360008301526126f2816126b6565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612755603683611c20565b9150612760826126f9565b604082019050919050565b6000602082019050818103600083015261278481612748565b9050919050565b600061279682611d2a565b91506127a183611d2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127da576127d9612068565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061281f82611d2a565b915061282a83611d2a565b92508261283a576128396127e5565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061287b602083611c20565b915061288682612845565b602082019050919050565b600060208201905081810360008301526128aa8161286e565b9050919050565b60006060820190506128c66000830186611e50565b6128d36020830185611e50565b6128e06040830184611e50565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061295581611cfe565b92915050565b60006020828403121561297157612970611cc7565b5b600061297f84828501612946565b91505092915050565b6000819050919050565b60006129ad6129a86129a384612988565b611dd6565b611d2a565b9050919050565b6129bd81612992565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129f881611cec565b82525050565b6000612a0a83836129ef565b60208301905092915050565b6000602082019050919050565b6000612a2e826129c3565b612a3881856129ce565b9350612a43836129df565b8060005b83811015612a74578151612a5b88826129fe565b9750612a6683612a16565b925050600181019050612a47565b5085935050505092915050565b600060a082019050612a966000830188611e50565b612aa360208301876129b4565b8181036040830152612ab58186612a23565b9050612ac46060830185611f04565b612ad16080830184611e50565b9695505050505050565b600060c082019050612af06000830189611f04565b612afd6020830188611e50565b612b0a60408301876129b4565b612b1760608301866129b4565b612b246080830185611f04565b612b3160a0830184611e50565b979650505050505050565b600081519050612b4b81611d34565b92915050565b600080600060608486031215612b6a57612b69611cc7565b5b6000612b7886828701612b3c565b9350506020612b8986828701612b3c565b9250506040612b9a86828701612b3c565b915050925092509256fea26469706673582212205da1b085b3af029157849311a4a680ec39558235cccd56e24b7c47e48f68766d64736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101855760003560e01c806375f0a874116100d1578063a9059cbb1161008a578063bb85c6d111610064578063bb85c6d1146105e3578063dd62ed3e14610620578063f2fde38b1461065d578063f345bd85146106865761018c565b8063a9059cbb1461053e578063aa4bde281461057b578063af8af690146105a65761018c565b806375f0a8741461041857806381bfdcca146104435780638c0b5e22146104805780638da5cb5b146104ab57806395d89b41146104d6578063a457c2d7146105015761018c565b8063395093511161013e57806365cf47a51161011857806365cf47a51461034a578063677daa571461038757806370a08231146103c4578063715018a6146104015761018c565b806339509351146102b757806349bd5a5e146102f4578063527ffabd1461031f5761018c565b806306fdde0314610191578063095ea7b3146101bc5780631694505e146101f957806318160ddd1461022457806323b872dd1461024f578063313ce5671461028c5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66106b1565b6040516101b39190611ca5565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611d60565b610743565b6040516101f09190611dbb565b60405180910390f35b34801561020557600080fd5b5061020e610766565b60405161021b9190611e35565b60405180910390f35b34801561023057600080fd5b5061023961078a565b6040516102469190611e5f565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190611e7a565b610794565b6040516102839190611dbb565b60405180910390f35b34801561029857600080fd5b506102a16107c3565b6040516102ae9190611ee9565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190611d60565b6107cc565b6040516102eb9190611dbb565b60405180910390f35b34801561030057600080fd5b50610309610803565b6040516103169190611f13565b60405180910390f35b34801561032b57600080fd5b50610334610827565b6040516103419190611e5f565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190611f2e565b61082d565b60405161037e9190611dbb565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190611f2e565b610847565b6040516103bb9190611dbb565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190611f5b565b610861565b6040516103f89190611e5f565b60405180910390f35b34801561040d57600080fd5b506104166108a9565b005b34801561042457600080fd5b5061042d6108bd565b60405161043a9190611f13565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190611f2e565b6108e3565b6040516104779190611dbb565b60405180910390f35b34801561048c57600080fd5b506104956108fd565b6040516104a29190611e5f565b60405180910390f35b3480156104b757600080fd5b506104c0610903565b6040516104cd9190611f13565b60405180910390f35b3480156104e257600080fd5b506104eb61092d565b6040516104f89190611ca5565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190611d60565b6109bf565b6040516105359190611dbb565b60405180910390f35b34801561054a57600080fd5b5061056560048036038101906105609190611d60565b610a36565b6040516105729190611dbb565b60405180910390f35b34801561058757600080fd5b50610590610a59565b60405161059d9190611e5f565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190611f88565b610a5f565b6040516105da9190611dbb565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190611f5b565b610ad0565b6040516106179190611dbb565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190611fc8565b610b24565b6040516106549190611e5f565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190611f5b565b610bab565b005b34801561069257600080fd5b5061069b610c2e565b6040516106a89190611e5f565b60405180910390f35b6060600380546106c090612037565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90612037565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b60008061074e610c34565b905061075b818585610c3c565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60008061079f610c34565b90506107ac858285610e05565b6107b7858585610e91565b60019150509392505050565b60006009905090565b6000806107d7610c34565b90506107f88185856107e98589610b24565b6107f39190612097565b610c3c565b600191505092915050565b7f0000000000000000000000009c7cafd6c60ea5fb0733d384055f43e1fceca9f781565b600b5481565b6000610837611419565b81600d8190555060019050919050565b6000610851611419565b81600c8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108b1611419565b6108bb6000611497565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006108ed611419565b81600d8190555060019050919050565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461093c90612037565b80601f016020809104026020016040519081016040528092919081815260200182805461096890612037565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b6000806109ca610c34565b905060006109d88286610b24565b905083811015610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a149061213d565b60405180910390fd5b610a2a8286868403610c3c565b60019250505092915050565b600080610a41610c34565b9050610a4e818585610e91565b600191505092915050565b600d5481565b6000610a69611419565b60648284610a779190612097565b1115610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf906121cf565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000610ada611419565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb3611419565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990612261565b60405180910390fd5b610c2b81611497565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca2906122f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612385565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df89190611e5f565b60405180910390a3505050565b6000610e118484610b24565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e8b5781811015610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e74906123f1565b60405180910390fd5b610e8a8484848403610c3c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6690612515565b60405180910390fd5b80610f7984610861565b1015610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906125a7565b60405180910390fd5b7f0000000000000000000000009c7cafd6c60ea5fb0733d384055f43e1fceca9f773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061105f57507f0000000000000000000000009c7cafd6c60ea5fb0733d384055f43e1fceca9f773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156110785750601360009054906101000a900460ff16155b15611408577f0000000000000000000000009c7cafd6c60ea5fb0733d384055f43e1fceca9f773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111cf576000600f546110de30610861565b6110e891906125c7565b905060115481106110ff576110fe60115461155d565b5b601254600f54106111cd5761111560125461161e565b601254600f600082825461112991906125c7565b925050819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290612647565b60405180910390fd5b505b505b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112725750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561127f578190506113f7565b600c548211156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906126d9565b60405180910390fd5b7f0000000000000000000000009c7cafd6c60ea5fb0733d384055f43e1fceca9f773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361137057600d5461132384610861565b8361132e9190612097565b111561136f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113669061276b565b60405180910390fd5b5b60006064600b5484611382919061278b565b61138c9190612814565b905060006064600a54856113a0919061278b565b6113aa9190612814565b905080826113b89190612097565b846113c391906125c7565b925081600f60008282546113d79190612097565b925050819055506113f4863083856113ef9190612097565b61189e565b50505b61140284848361189e565b50611414565b61141383838361189e565b5b505050565b611421610c34565b73ffffffffffffffffffffffffffffffffffffffff1661143f610903565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90612891565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601360006101000a81548160ff02191690831515021790555060006002826115879190612814565b90506000818361159791906125c7565b905060004790506115a78361161e565b600081476115b591906125c7565b90506115c18382611afe565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618482856040516115f4939291906128b1565b60405180910390a1505050506000601360006101000a81548160ff02191690831515021790555050565b6001601360006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611656576116556128e8565b5b6040519080825280602002602001820160405280156116845781602001602082028036833780820191505090505b509050308160008151811061169c5761169b612917565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611741573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611765919061295b565b8160018151811061177957611778612917565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506117de307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c3c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c4261182d9190612097565b6040518663ffffffff1660e01b815260040161184d959493929190612a81565b600060405180830381600087803b15801561186757600080fd5b505af115801561187b573d6000803e3d6000fd5b50505050506000601360006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612515565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f9906125a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611af09190611e5f565b60405180910390a350505050565b6001601360006101000a81548160ff021916908315150217905550611b44307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c3c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080611b8e610903565b426040518863ffffffff1660e01b8152600401611bb096959493929190612adb565b60606040518083038185885af1158015611bce573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bf39190612b51565b5050506000601360006101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c4f578082015181840152602081019050611c34565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c7782611c15565b611c818185611c20565b9350611c91818560208601611c31565b611c9a81611c5b565b840191505092915050565b60006020820190508181036000830152611cbf8184611c6c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cf782611ccc565b9050919050565b611d0781611cec565b8114611d1257600080fd5b50565b600081359050611d2481611cfe565b92915050565b6000819050919050565b611d3d81611d2a565b8114611d4857600080fd5b50565b600081359050611d5a81611d34565b92915050565b60008060408385031215611d7757611d76611cc7565b5b6000611d8585828601611d15565b9250506020611d9685828601611d4b565b9150509250929050565b60008115159050919050565b611db581611da0565b82525050565b6000602082019050611dd06000830184611dac565b92915050565b6000819050919050565b6000611dfb611df6611df184611ccc565b611dd6565b611ccc565b9050919050565b6000611e0d82611de0565b9050919050565b6000611e1f82611e02565b9050919050565b611e2f81611e14565b82525050565b6000602082019050611e4a6000830184611e26565b92915050565b611e5981611d2a565b82525050565b6000602082019050611e746000830184611e50565b92915050565b600080600060608486031215611e9357611e92611cc7565b5b6000611ea186828701611d15565b9350506020611eb286828701611d15565b9250506040611ec386828701611d4b565b9150509250925092565b600060ff82169050919050565b611ee381611ecd565b82525050565b6000602082019050611efe6000830184611eda565b92915050565b611f0d81611cec565b82525050565b6000602082019050611f286000830184611f04565b92915050565b600060208284031215611f4457611f43611cc7565b5b6000611f5284828501611d4b565b91505092915050565b600060208284031215611f7157611f70611cc7565b5b6000611f7f84828501611d15565b91505092915050565b60008060408385031215611f9f57611f9e611cc7565b5b6000611fad85828601611d4b565b9250506020611fbe85828601611d4b565b9150509250929050565b60008060408385031215611fdf57611fde611cc7565b5b6000611fed85828601611d15565b9250506020611ffe85828601611d15565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061204f57607f821691505b60208210810361206257612061612008565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120a282611d2a565b91506120ad83611d2a565b92508282019050808211156120c5576120c4612068565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612127602583611c20565b9150612132826120cb565b604082019050919050565b600060208201905081810360008301526121568161211a565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b60006121b9602d83611c20565b91506121c48261215d565b604082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061224b602683611c20565b9150612256826121ef565b604082019050919050565b6000602082019050818103600083015261227a8161223e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006122dd602483611c20565b91506122e882612281565b604082019050919050565b6000602082019050818103600083015261230c816122d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061236f602283611c20565b915061237a82612313565b604082019050919050565b6000602082019050818103600083015261239e81612362565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006123db601d83611c20565b91506123e6826123a5565b602082019050919050565b6000602082019050818103600083015261240a816123ce565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061246d602583611c20565b915061247882612411565b604082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124ff602383611c20565b915061250a826124a3565b604082019050919050565b6000602082019050818103600083015261252e816124f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612591602683611c20565b915061259c82612535565b604082019050919050565b600060208201905081810360008301526125c081612584565b9050919050565b60006125d282611d2a565b91506125dd83611d2a565b92508282039050818111156125f5576125f4612068565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612631601283611c20565b915061263c826125fb565b602082019050919050565b6000602082019050818103600083015261266081612624565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006126c3603983611c20565b91506126ce82612667565b604082019050919050565b600060208201905081810360008301526126f2816126b6565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612755603683611c20565b9150612760826126f9565b604082019050919050565b6000602082019050818103600083015261278481612748565b9050919050565b600061279682611d2a565b91506127a183611d2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127da576127d9612068565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061281f82611d2a565b915061282a83611d2a565b92508261283a576128396127e5565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061287b602083611c20565b915061288682612845565b602082019050919050565b600060208201905081810360008301526128aa8161286e565b9050919050565b60006060820190506128c66000830186611e50565b6128d36020830185611e50565b6128e06040830184611e50565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061295581611cfe565b92915050565b60006020828403121561297157612970611cc7565b5b600061297f84828501612946565b91505092915050565b6000819050919050565b60006129ad6129a86129a384612988565b611dd6565b611d2a565b9050919050565b6129bd81612992565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6129f881611cec565b82525050565b6000612a0a83836129ef565b60208301905092915050565b6000602082019050919050565b6000612a2e826129c3565b612a3881856129ce565b9350612a43836129df565b8060005b83811015612a74578151612a5b88826129fe565b9750612a6683612a16565b925050600181019050612a47565b5085935050505092915050565b600060a082019050612a966000830188611e50565b612aa360208301876129b4565b8181036040830152612ab58186612a23565b9050612ac46060830185611f04565b612ad16080830184611e50565b9695505050505050565b600060c082019050612af06000830189611f04565b612afd6020830188611e50565b612b0a60408301876129b4565b612b1760608301866129b4565b612b246080830185611f04565b612b3160a0830184611e50565b979650505050505050565b600081519050612b4b81611d34565b92915050565b600080600060608486031215612b6a57612b69611cc7565b5b6000612b7886828701612b3c565b9350506020612b8986828701612b3c565b9250506040612b9a86828701612b3c565b915050925092509256fea26469706673582212205da1b085b3af029157849311a4a680ec39558235cccd56e24b7c47e48f68766d64736f6c63430008100033
Deployed Bytecode Sourcemap
28789:7461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18507:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20781:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29437:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19645:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21605:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19488:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23321:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29495:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29106:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36009:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35613:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18672:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15766:103;;;;;;;;;;;;;:::i;:::-;;29268:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35803:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29148:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15118:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18331:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22405:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20225:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29206:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35213:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35023:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19818:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16024:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29065:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18507:102;18563:13;18596:5;18589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18507:102;:::o;20781:244::-;20902:4;20924:13;20940:12;:10;:12::i;:::-;20924:28;;20963:32;20972:5;20979:7;20988:6;20963:8;:32::i;:::-;21013:4;21006:11;;;20781:244;;;;:::o;29437:51::-;;;:::o;19645:110::-;19708:7;19735:12;;19728:19;;19645:110;:::o;21605:297::-;21738:4;21755:15;21773:12;:10;:12::i;:::-;21755:30;;21796:38;21812:4;21818:7;21827:6;21796:15;:38::i;:::-;21845:27;21855:4;21861:2;21865:6;21845:9;:27::i;:::-;21890:4;21883:11;;;21605:297;;;;;:::o;19488:92::-;19546:5;19571:1;19564:8;;19488:92;:::o;23321:272::-;23438:4;23460:13;23476:12;:10;:12::i;:::-;23460:28;;23499:64;23508:5;23515:7;23552:10;23524:25;23534:5;23541:7;23524:9;:25::i;:::-;:38;;;;:::i;:::-;23499:8;:64::i;:::-;23581:4;23574:11;;;23321:272;;;;:::o;29495:38::-;;;:::o;29106:35::-;;;;:::o;36009:201::-;36122:4;15004:13;:11;:13::i;:::-;36162:16:::1;36144:15;:34;;;;36198:4;36191:11;;36009:201:::0;;;:::o;35613:182::-;35715:4;15004:13;:11;:13::i;:::-;35751:12:::1;35737:11;:26;;;;35783:4;35776:11;;35613:182:::0;;;:::o;18672:177::-;18791:7;18823:9;:18;18833:7;18823:18;;;;;;;;;;;;;;;;18816:25;;18672:177;;;:::o;15766:103::-;15004:13;:11;:13::i;:::-;15831:30:::1;15858:1;15831:18;:30::i;:::-;15766:103::o:0;29268:75::-;;;;;;;;;;;;;:::o;35803:198::-;35913:4;15004:13;:11;:13::i;:::-;35953:16:::1;35935:15;:34;;;;35989:4;35982:11;;35803:198:::0;;;:::o;29148:51::-;;;;:::o;15118:87::-;15164:7;15191:6;;;;;;;;;;;15184:13;;15118:87;:::o;18331:106::-;18389:13;18422:7;18415:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18331:106;:::o;22405:507::-;22527:4;22549:13;22565:12;:10;:12::i;:::-;22549:28;;22588:24;22615:25;22625:5;22632:7;22615:9;:25::i;:::-;22588:52;;22693:15;22673:16;:35;;22651:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22809:60;22818:5;22825:7;22853:15;22834:16;:34;22809:8;:60::i;:::-;22900:4;22893:11;;;;22405:507;;;;:::o;20225:236::-;20342:4;20364:13;20380:12;:10;:12::i;:::-;20364:28;;20403;20413:5;20420:2;20424:6;20403:9;:28::i;:::-;20449:4;20442:11;;;20225:236;;;;:::o;29206:55::-;;;;:::o;35213:392::-;35361:4;15004:13;:11;:13::i;:::-;35430:3:::1;35409:16;35392;:33;;;;:::i;:::-;35391:42;;35383:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;35512:16;35494:15;:34;;;;35557:16;35539:15;:34;;;;35593:4;35586:11;;35213:392:::0;;;;:::o;35023:182::-;35126:4;15004:13;:11;:13::i;:::-;35166:9:::1;35148:15;;:27;;;;;;;;;;;;;;;;;;35193:4;35186:11;;35023:182:::0;;;:::o;19818:201::-;19952:7;19984:11;:18;19996:5;19984:18;;;;;;;;;;;;;;;:27;20003:7;19984:27;;;;;;;;;;;;;;;;19977:34;;19818:201;;;;:::o;16024:238::-;15004:13;:11;:13::i;:::-;16147:1:::1;16127:22;;:8;:22;;::::0;16105:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16226:28;16245:8;16226:18;:28::i;:::-;16024:238:::0;:::o;29065:34::-;;;;:::o;13911:98::-;13964:7;13991:10;13984:17;;13911:98;:::o;25628:380::-;25781:1;25764:19;;:5;:19;;;25756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25862:1;25843:21;;:7;:21;;;25835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25946:6;25916:11;:18;25928:5;25916:18;;;;;;;;;;;;;;;:27;25935:7;25916:27;;;;;;;;;;;;;;;:36;;;;25984:7;25968:32;;25977:5;25968:32;;;25993:6;25968:32;;;;;;:::i;:::-;;;;;;;;25628:380;;;:::o;26299:502::-;26434:24;26461:25;26471:5;26478:7;26461:9;:25::i;:::-;26434:52;;26521:17;26501:16;:37;26497:297;;26601:6;26581:16;:26;;26555:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26716:51;26725:5;26732:7;26760:6;26741:16;:25;26716:8;:51::i;:::-;26497:297;26423:378;26299:502;;;:::o;31474:2149::-;31588:1;31572:18;;:4;:18;;;31564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31665:1;31651:16;;:2;:16;;;31643:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31745:6;31726:15;31736:4;31726:9;:15::i;:::-;:25;;31718:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31820:13;31812:21;;:4;:21;;;:44;;;;31843:13;31837:19;;:2;:19;;;31812:44;31811:67;;;;;31862:16;;;;;;;;;;;31861:17;31811:67;31807:1809;;;31907:13;31899:21;;:4;:21;;;31895:686;;31941:32;32003:18;;31976:24;31994:4;31976:9;:24::i;:::-;:45;;;;:::i;:::-;31941:80;;32072:30;;32044:24;:58;32040:154;;32127:47;32143:30;;32127:15;:47::i;:::-;32040:154;32240:24;;32217:18;;32216:48;32212:354;;32289:43;32307:24;;32289:17;:43::i;:::-;32377:24;;32355:18;;:46;;;;;;;:::i;:::-;;;;;;;;32424:9;32444:15;;;;;;;;;;;32436:29;;:52;32466:21;32436:52;;;;;;;;;;;;;;;;;;;;;;;32424:64;;32519:4;32511:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;32266:300;32212:354;31922:659;31895:686;32597:22;32638:18;:24;32657:4;32638:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32666:18;:22;32685:2;32666:22;;;;;;;;;;;;;;;;;;;;;;;;;32638:50;32634:839;;;32726:6;32709:23;;32634:839;;;32805:11;;32795:6;:21;;32787:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32908:13;32900:21;;:4;:21;;;32897:178;;32981:15;;32963:13;32973:2;32963:9;:13::i;:::-;32954:6;:22;;;;:::i;:::-;32953:43;;32945:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32897:178;33095:22;33150:3;33131:15;;33122:6;:24;;;;:::i;:::-;33121:32;;;;:::i;:::-;33095:59;;33173:22;33228:3;33209:15;;33200:6;:24;;;;:::i;:::-;33199:32;;;;:::i;:::-;33173:59;;33295:14;33278;:31;;;;:::i;:::-;33268:6;:42;;;;:::i;:::-;33251:59;;33351:14;33329:18;;:36;;;;;;;:::i;:::-;;;;;;;;33386:71;33402:4;33416;33441:14;33424;:31;;;;:::i;:::-;33386:15;:71::i;:::-;32768:705;;32634:839;33487:41;33503:4;33509:2;33513:14;33487:15;:41::i;:::-;31880:1660;31807:1809;;;33571:33;33587:4;33593:2;33597:6;33571:15;:33::i;:::-;31807:1809;31474:2149;;;:::o;15283:132::-;15358:12;:10;:12::i;:::-;15347:23;;:7;:5;:7::i;:::-;:23;;;15339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15283:132::o;16422:191::-;16496:16;16515:6;;;;;;;;;;;16496:25;;16541:8;16532:6;;:17;;;;;;;;;;;;;;;;;;16596:8;16565:40;;16586:8;16565:40;;;;;;;;;;;;16485:128;16422:191;:::o;33631:474::-;30070:4;30051:16;;:23;;;;;;;;;;;;;;;;;;33717:12:::1;33756:1;33733:20;:24;;;;:::i;:::-;33717:41;;33769:17;33813:4;33790:20;:27;;;;:::i;:::-;33769:49;;33831:22;33856:21;33831:46;;33890:23;33908:4;33890:17;:23::i;:::-;33926:18;33972:14;33948:21;:38;;;;:::i;:::-;33926:61;;34000:36;34014:9;34025:10;34000:13;:36::i;:::-;34054:43;34069:4;34075:10;34087:9;34054:43;;;;;;;;:::i;:::-;;;;;;;;33706:399;;;;30116:5:::0;30097:16;;:24;;;;;;;;;;;;;;;;;;33631:474;:::o;34113:496::-;30070:4;30051:16;;:23;;;;;;;;;;;;;;;;;;34192:21:::1;34230:1;34216:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34192:40;;34261:4;34243;34248:1;34243:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;34287:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34277:4;34282:1;34277:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;34322:62;34339:4;34354:15;34372:11;34322:8;:62::i;:::-;34397:15;:66;;;34478:11;34504:1;34520:4;34547;34586:3;34568:15;:21;;;;:::i;:::-;34397:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34181:428;30116:5:::0;30097:16;;:24;;;;;;;;;;;;;;;;;;34113:496;:::o;26809:776::-;26956:1;26940:18;;:4;:18;;;26932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27033:1;27019:16;;:2;:16;;;27011:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27088:19;27110:9;:15;27120:4;27110:15;;;;;;;;;;;;;;;;27088:37;;27173:6;27158:11;:21;;27136:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;27313:6;27299:11;:20;27281:9;:15;27291:4;27281:15;;;;;;;;;;;;;;;:38;;;;27516:6;27499:9;:13;27509:2;27499:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27566:2;27551:26;;27560:4;27551:26;;;27570:6;27551:26;;;;;;:::i;:::-;;;;;;;;26921:664;26809:776;;;:::o;34617:398::-;30070:4;30051:16;;:23;;;;;;;;;;;;;;;;;;34734:62:::1;34751:4;34766:15;34784:11;34734:8;:62::i;:::-;34809:15;:31;;;34848:9;34881:4;34901:11;34927:1;34943::::0;34959:7:::1;:5;:7::i;:::-;34981:15;34809:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30116:5:::0;30097:16;;:24;;;;;;;;;;;;;;;;;;34617: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:118::-;5913:24;5931:5;5913:24;:::i;:::-;5908:3;5901:37;5826:118;;:::o;5950:222::-;6043:4;6081:2;6070:9;6066:18;6058:26;;6094:71;6162:1;6151:9;6147:17;6138:6;6094:71;:::i;:::-;5950:222;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:::-;6572:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:119;;;6627:79;;:::i;:::-;6589:119;6747:1;6772:53;6817:7;6808:6;6797:9;6793:22;6772:53;:::i;:::-;6762:63;;6718:117;6513:329;;;;:::o;6848:474::-;6916:6;6924;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:53;7169:7;7160:6;7149:9;7145:22;7124:53;:::i;:::-;7114:63;;7070:117;7226:2;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7197:118;6848:474;;;;;:::o;7328:::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:224::-;8843:34;8839:1;8831:6;8827:14;8820:58;8912:7;8907:2;8899:6;8895:15;8888:32;8703:224;:::o;8933:366::-;9075:3;9096:67;9160:2;9155:3;9096:67;:::i;:::-;9089:74;;9172:93;9261:3;9172:93;:::i;:::-;9290:2;9285:3;9281:12;9274:19;;8933:366;;;:::o;9305:419::-;9471:4;9509:2;9498:9;9494:18;9486:26;;9558:9;9552:4;9548:20;9544:1;9533:9;9529:17;9522:47;9586:131;9712:4;9586:131;:::i;:::-;9578:139;;9305:419;;;:::o;9730:232::-;9870:34;9866:1;9858:6;9854:14;9847:58;9939:15;9934:2;9926:6;9922:15;9915:40;9730:232;:::o;9968:366::-;10110:3;10131:67;10195:2;10190:3;10131:67;:::i;:::-;10124:74;;10207:93;10296:3;10207:93;:::i;:::-;10325:2;10320:3;10316:12;10309:19;;9968:366;;;:::o;10340:419::-;10506:4;10544:2;10533:9;10529:18;10521:26;;10593:9;10587:4;10583:20;10579:1;10568:9;10564:17;10557:47;10621:131;10747:4;10621:131;:::i;:::-;10613:139;;10340:419;;;:::o;10765:225::-;10905:34;10901:1;10893:6;10889:14;10882:58;10974:8;10969:2;10961:6;10957:15;10950:33;10765:225;:::o;10996:366::-;11138:3;11159:67;11223:2;11218:3;11159:67;:::i;:::-;11152:74;;11235:93;11324:3;11235:93;:::i;:::-;11353:2;11348:3;11344:12;11337:19;;10996:366;;;:::o;11368:419::-;11534:4;11572:2;11561:9;11557:18;11549:26;;11621:9;11615:4;11611:20;11607:1;11596:9;11592:17;11585:47;11649:131;11775:4;11649:131;:::i;:::-;11641:139;;11368:419;;;:::o;11793:223::-;11933:34;11929:1;11921:6;11917:14;11910:58;12002:6;11997:2;11989:6;11985:15;11978:31;11793:223;:::o;12022:366::-;12164:3;12185:67;12249:2;12244:3;12185:67;:::i;:::-;12178:74;;12261:93;12350:3;12261:93;:::i;:::-;12379:2;12374:3;12370:12;12363:19;;12022:366;;;:::o;12394:419::-;12560:4;12598:2;12587:9;12583:18;12575:26;;12647:9;12641:4;12637:20;12633:1;12622:9;12618:17;12611:47;12675:131;12801:4;12675:131;:::i;:::-;12667:139;;12394:419;;;:::o;12819:221::-;12959:34;12955:1;12947:6;12943:14;12936:58;13028:4;13023:2;13015:6;13011:15;13004:29;12819:221;:::o;13046:366::-;13188:3;13209:67;13273:2;13268:3;13209:67;:::i;:::-;13202:74;;13285:93;13374:3;13285:93;:::i;:::-;13403:2;13398:3;13394:12;13387:19;;13046:366;;;:::o;13418:419::-;13584:4;13622:2;13611:9;13607:18;13599:26;;13671:9;13665:4;13661:20;13657:1;13646:9;13642:17;13635:47;13699:131;13825:4;13699:131;:::i;:::-;13691:139;;13418:419;;;:::o;13843:179::-;13983:31;13979:1;13971:6;13967:14;13960:55;13843:179;:::o;14028:366::-;14170:3;14191:67;14255:2;14250:3;14191:67;:::i;:::-;14184:74;;14267:93;14356:3;14267:93;:::i;:::-;14385:2;14380:3;14376:12;14369:19;;14028:366;;;:::o;14400:419::-;14566:4;14604:2;14593:9;14589:18;14581:26;;14653:9;14647:4;14643:20;14639:1;14628:9;14624:17;14617:47;14681:131;14807:4;14681:131;:::i;:::-;14673:139;;14400:419;;;:::o;14825:224::-;14965:34;14961:1;14953:6;14949:14;14942:58;15034:7;15029:2;15021:6;15017:15;15010:32;14825:224;:::o;15055:366::-;15197:3;15218:67;15282:2;15277:3;15218:67;:::i;:::-;15211:74;;15294:93;15383:3;15294:93;:::i;:::-;15412:2;15407:3;15403:12;15396:19;;15055:366;;;:::o;15427:419::-;15593:4;15631:2;15620:9;15616:18;15608:26;;15680:9;15674:4;15670:20;15666:1;15655:9;15651:17;15644:47;15708:131;15834:4;15708:131;:::i;:::-;15700:139;;15427:419;;;:::o;15852:222::-;15992:34;15988:1;15980:6;15976:14;15969:58;16061:5;16056:2;16048:6;16044:15;16037:30;15852:222;:::o;16080:366::-;16222:3;16243:67;16307:2;16302:3;16243:67;:::i;:::-;16236:74;;16319:93;16408:3;16319:93;:::i;:::-;16437:2;16432:3;16428:12;16421:19;;16080:366;;;:::o;16452:419::-;16618:4;16656:2;16645:9;16641:18;16633:26;;16705:9;16699:4;16695:20;16691:1;16680:9;16676:17;16669:47;16733:131;16859:4;16733:131;:::i;:::-;16725:139;;16452:419;;;:::o;16877:225::-;17017:34;17013:1;17005:6;17001:14;16994:58;17086:8;17081:2;17073:6;17069:15;17062:33;16877:225;:::o;17108:366::-;17250:3;17271:67;17335:2;17330:3;17271:67;:::i;:::-;17264:74;;17347:93;17436:3;17347:93;:::i;:::-;17465:2;17460:3;17456:12;17449:19;;17108:366;;;:::o;17480:419::-;17646:4;17684:2;17673:9;17669:18;17661:26;;17733:9;17727:4;17723:20;17719:1;17708:9;17704:17;17697:47;17761:131;17887:4;17761:131;:::i;:::-;17753:139;;17480:419;;;:::o;17905:194::-;17945:4;17965:20;17983:1;17965:20;:::i;:::-;17960:25;;17999:20;18017:1;17999:20;:::i;:::-;17994:25;;18043:1;18040;18036:9;18028:17;;18067:1;18061:4;18058:11;18055:37;;;18072:18;;:::i;:::-;18055:37;17905:194;;;;:::o;18105:168::-;18245:20;18241:1;18233:6;18229:14;18222:44;18105:168;:::o;18279:366::-;18421:3;18442:67;18506:2;18501:3;18442:67;:::i;:::-;18435:74;;18518:93;18607:3;18518:93;:::i;:::-;18636:2;18631:3;18627:12;18620:19;;18279:366;;;:::o;18651:419::-;18817:4;18855:2;18844:9;18840:18;18832:26;;18904:9;18898:4;18894:20;18890:1;18879:9;18875:17;18868:47;18932:131;19058:4;18932:131;:::i;:::-;18924:139;;18651:419;;;:::o;19076:244::-;19216:34;19212:1;19204:6;19200:14;19193:58;19285:27;19280:2;19272:6;19268:15;19261:52;19076:244;:::o;19326:366::-;19468:3;19489:67;19553:2;19548:3;19489:67;:::i;:::-;19482:74;;19565:93;19654:3;19565:93;:::i;:::-;19683:2;19678:3;19674:12;19667:19;;19326:366;;;:::o;19698:419::-;19864:4;19902:2;19891:9;19887:18;19879:26;;19951:9;19945:4;19941:20;19937:1;19926:9;19922:17;19915:47;19979:131;20105:4;19979:131;:::i;:::-;19971:139;;19698:419;;;:::o;20123:241::-;20263:34;20259:1;20251:6;20247:14;20240:58;20332:24;20327:2;20319:6;20315:15;20308:49;20123:241;:::o;20370:366::-;20512:3;20533:67;20597:2;20592:3;20533:67;:::i;:::-;20526:74;;20609:93;20698:3;20609:93;:::i;:::-;20727:2;20722:3;20718:12;20711:19;;20370:366;;;:::o;20742:419::-;20908:4;20946:2;20935:9;20931:18;20923:26;;20995:9;20989:4;20985:20;20981:1;20970:9;20966:17;20959:47;21023:131;21149:4;21023:131;:::i;:::-;21015:139;;20742:419;;;:::o;21167:348::-;21207:7;21230:20;21248:1;21230:20;:::i;:::-;21225:25;;21264:20;21282:1;21264:20;:::i;:::-;21259:25;;21452:1;21384:66;21380:74;21377:1;21374:81;21369:1;21362:9;21355:17;21351:105;21348:131;;;21459:18;;:::i;:::-;21348:131;21507:1;21504;21500:9;21489:20;;21167:348;;;;:::o;21521:180::-;21569:77;21566:1;21559:88;21666:4;21663:1;21656:15;21690:4;21687:1;21680:15;21707:185;21747:1;21764:20;21782:1;21764:20;:::i;:::-;21759:25;;21798:20;21816:1;21798:20;:::i;:::-;21793:25;;21837:1;21827:35;;21842:18;;:::i;:::-;21827:35;21884:1;21881;21877:9;21872:14;;21707:185;;;;:::o;21898:182::-;22038:34;22034:1;22026:6;22022:14;22015:58;21898:182;:::o;22086:366::-;22228:3;22249:67;22313:2;22308:3;22249:67;:::i;:::-;22242:74;;22325:93;22414:3;22325:93;:::i;:::-;22443:2;22438:3;22434:12;22427:19;;22086:366;;;:::o;22458:419::-;22624:4;22662:2;22651:9;22647:18;22639:26;;22711:9;22705:4;22701:20;22697:1;22686:9;22682:17;22675:47;22739:131;22865:4;22739:131;:::i;:::-;22731:139;;22458:419;;;:::o;22883:442::-;23032:4;23070:2;23059:9;23055:18;23047:26;;23083:71;23151:1;23140:9;23136:17;23127:6;23083:71;:::i;:::-;23164:72;23232:2;23221:9;23217:18;23208:6;23164:72;:::i;:::-;23246;23314:2;23303:9;23299:18;23290:6;23246:72;:::i;:::-;22883:442;;;;;;:::o;23331:180::-;23379:77;23376:1;23369:88;23476:4;23473:1;23466:15;23500:4;23497:1;23490:15;23517:180;23565:77;23562:1;23555:88;23662:4;23659:1;23652:15;23686:4;23683:1;23676:15;23703:143;23760:5;23791:6;23785:13;23776:22;;23807:33;23834:5;23807:33;:::i;:::-;23703:143;;;;:::o;23852:351::-;23922:6;23971:2;23959:9;23950:7;23946:23;23942:32;23939:119;;;23977:79;;:::i;:::-;23939:119;24097:1;24122:64;24178:7;24169:6;24158:9;24154:22;24122:64;:::i;:::-;24112:74;;24068:128;23852:351;;;;:::o;24209:85::-;24254:7;24283:5;24272:16;;24209:85;;;:::o;24300:158::-;24358:9;24391:61;24409:42;24418:32;24444:5;24418:32;:::i;:::-;24409:42;:::i;:::-;24391:61;:::i;:::-;24378:74;;24300:158;;;:::o;24464:147::-;24559:45;24598:5;24559:45;:::i;:::-;24554:3;24547:58;24464:147;;:::o;24617:114::-;24684:6;24718:5;24712:12;24702:22;;24617:114;;;:::o;24737:184::-;24836:11;24870:6;24865:3;24858:19;24910:4;24905:3;24901:14;24886:29;;24737:184;;;;:::o;24927:132::-;24994:4;25017:3;25009:11;;25047:4;25042:3;25038:14;25030:22;;24927:132;;;:::o;25065:108::-;25142:24;25160:5;25142:24;:::i;:::-;25137:3;25130:37;25065:108;;:::o;25179:179::-;25248:10;25269:46;25311:3;25303:6;25269:46;:::i;:::-;25347:4;25342:3;25338:14;25324:28;;25179:179;;;;:::o;25364:113::-;25434:4;25466;25461:3;25457:14;25449:22;;25364:113;;;:::o;25513:732::-;25632:3;25661:54;25709:5;25661:54;:::i;:::-;25731:86;25810:6;25805:3;25731:86;:::i;:::-;25724:93;;25841:56;25891:5;25841:56;:::i;:::-;25920:7;25951:1;25936:284;25961:6;25958:1;25955:13;25936:284;;;26037:6;26031:13;26064:63;26123:3;26108:13;26064:63;:::i;:::-;26057:70;;26150:60;26203:6;26150:60;:::i;:::-;26140:70;;25996:224;25983:1;25980;25976:9;25971:14;;25936:284;;;25940:14;26236:3;26229:10;;25637:608;;;25513:732;;;;:::o;26251:831::-;26514:4;26552:3;26541:9;26537:19;26529:27;;26566:71;26634:1;26623:9;26619:17;26610:6;26566:71;:::i;:::-;26647:80;26723:2;26712:9;26708:18;26699:6;26647:80;:::i;:::-;26774:9;26768:4;26764:20;26759:2;26748:9;26744:18;26737:48;26802:108;26905:4;26896:6;26802:108;:::i;:::-;26794:116;;26920:72;26988:2;26977:9;26973:18;26964:6;26920:72;:::i;:::-;27002:73;27070:3;27059:9;27055:19;27046:6;27002:73;:::i;:::-;26251:831;;;;;;;;:::o;27088:807::-;27337:4;27375:3;27364:9;27360:19;27352:27;;27389:71;27457:1;27446:9;27442:17;27433:6;27389:71;:::i;:::-;27470:72;27538:2;27527:9;27523:18;27514:6;27470:72;:::i;:::-;27552:80;27628:2;27617:9;27613:18;27604:6;27552:80;:::i;:::-;27642;27718:2;27707:9;27703:18;27694:6;27642:80;:::i;:::-;27732:73;27800:3;27789:9;27785:19;27776:6;27732:73;:::i;:::-;27815;27883:3;27872:9;27868:19;27859:6;27815:73;:::i;:::-;27088:807;;;;;;;;;:::o;27901:143::-;27958:5;27989:6;27983:13;27974:22;;28005:33;28032:5;28005:33;:::i;:::-;27901:143;;;;:::o;28050:663::-;28138:6;28146;28154;28203:2;28191:9;28182:7;28178:23;28174:32;28171:119;;;28209:79;;:::i;:::-;28171:119;28329:1;28354:64;28410:7;28401:6;28390:9;28386:22;28354:64;:::i;:::-;28344:74;;28300:128;28467:2;28493:64;28549:7;28540:6;28529:9;28525:22;28493:64;:::i;:::-;28483:74;;28438:129;28606:2;28632:64;28688:7;28679:6;28668:9;28664:22;28632:64;:::i;:::-;28622:74;;28577:129;28050:663;;;;;:::o
Swarm Source
ipfs://5da1b085b3af029157849311a4a680ec39558235cccd56e24b7c47e48f68766d
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.