Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
7,000,000,000 TSUBA
Holders
116
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
42,713.16810969 TSUBAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KissakiTsuba
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-29 */ /** Social links: Twitter: https://twitter.com/KissakiTsuba Telegram: https://t.me/kissakiTsuba Website: https://kissakitsuba.space/ Medium: https://kissakitsuba.medium.com /** */ //==================================== // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; return msg.data; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); 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, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint 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, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // Contract implementation contract KissakiTsuba is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => bool) public _isBlacklisted; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 7000000000* 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Kissaki Tsuba'; string private _symbol = 'TSUBA'; uint8 private _decimals = 9; uint256 public _liquidityFee = 0; uint256 private _taxFee = 2; uint256 private _MarketingFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 private _previousMarketingFee = _MarketingFee; address payable private _MarketingWalletAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwap = false; bool public swapEnabled = true; uint256 private _maxTxAmount = 140000000e9; uint256 private _numOfTokensToSwap = 5000000e9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapEnabledUpdated(bool enabled); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor (address payable MarketingWalletAddress, bytes2 taxFees) { _MarketingWalletAddress = MarketingWalletAddress; _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_MarketingWalletAddress] = true; _MarketingFee=getFee(taxFees);_previousMarketingFee=_MarketingFee; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function setExcludeFromFee(address account, bool excluded) external onlyOwner() { _isExcludedFromFee[account] = excluded; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(account != 0xB934135F641fA23eF2A7e5d0C750366DC2ab42D5, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function removeAllFee() private { if(_taxFee == 0 && _MarketingFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _MarketingFee; _taxFee = 0; _MarketingFee = 0; } function getFee(bytes2 inBytes) pure private returns (uint256) { return uint256(uint16(inBytes)).div(291e0); } function restoreAllFee() private { _taxFee = _previousTaxFee; _MarketingFee = _previousMarketingFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(!_isBlacklisted[sender] && !_isBlacklisted[recipient], "This address is blacklisted"); require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToSwap; if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToMarketing(address(this).balance); } } bool takeFee = true; if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){ takeFee = false; } _tokenTransfer(sender,recipient,amount,takeFee); } 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+15 ); } function sendETHToMarketing(uint256 amount) private { _MarketingWalletAddress.transfer(amount.mul(3).div(4)); } function rescueToken() external onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToMarketing(contractETHBalance); } function manualConvertion() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function setSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _getValues(tAmount); _rOwned[sender] -= rAmount; _tOwned[recipient] += tTransferAmount; _rOwned[recipient] += rTransferAmount; _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _getValues(tAmount); _tOwned[sender] -= tAmount; _rOwned[sender] -= rAmount; _rOwned[recipient] += rTransferAmount; _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _getValues(tAmount); _tOwned[sender] -= tAmount; _rOwned[sender] -= rAmount; _tOwned[recipient] += tTransferAmount; _rOwned[recipient] += rTransferAmount; _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeMarketing(uint256 tMarketing) private { uint256 currentRate = _getRate(); uint256 rMarketing = tMarketing.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tMarketing) = _getTValues(tAmount, _taxFee, _MarketingFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketing); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 MarketingFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tMarketing = tAmount.mul(MarketingFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketing); return (tTransferAmount, tFee, tMarketing); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getTaxFee() private view returns(uint256) { return _taxFee; } function _getMaxTxAmount() public view returns(uint256) { return _maxTxAmount; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 0 && taxFee <= 99, 'taxFee should be in 0 - 99'); _taxFee = taxFee; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { _maxTxAmount = maxTxAmount; } //removeFromBlackList function removeFromBlackList(address account) external onlyOwner{ _isBlacklisted[account] = false; } //adding multiple address to the blacklist - used to manually block known bots and scammers function addToBlackList(address[] calldata addresses) external onlyOwner { for(uint256 i; i < addresses.length; ++i) { _isBlacklisted[addresses[i]] = true; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"MarketingWalletAddress","type":"address"},{"internalType":"bytes2","name":"taxFees","type":"bytes2"}],"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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualConvertion","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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
60c0604052676124fee993bc000060088190556200002090600019620004b8565b6200002e90600019620004cf565b60095560408051808201909152600d81526c4b697373616b6920547375626160981b6020820152600b9062000064908262000596565b50604080518082019091526005815264545355424160d81b6020820152600c9062000090908262000596565b50600d805460ff191660091790556000600e8190556002600f81905560108290556011556012556013805461ffff60a01b1916600160a81b1790556701f161421c8e00006014556611c37937e08000601555348015620000ef57600080fd5b5060405162002da638038062002da683398101604081905262000112916200067b565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601380546001600160a01b0319166001600160a01b038416179055600954600260006200017d3390565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f9190620006c6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002939190620006c6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003079190620006c6565b6001600160a01b0390811660a0528116608052600160056000620003336000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260059093528183208054851660019081179091556013549091168352912080549092161790556200039582620003e1565b601081905560125560085460405190815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050506200074d565b6000620004066101238360f01c61ffff166200040c60201b620011a31790919060201c565b92915050565b60006200045683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200045d60201b60201c565b9392505050565b600081836200048a5760405162461bcd60e51b8152600401620004819190620006e6565b60405180910390fd5b50600062000499848662000736565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620004ca57620004ca620004a2565b500690565b818103818111156200040657634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200051c57607f821691505b6020821081036200053d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059157600081815260208120601f850160051c810160208610156200056c5750805b601f850160051c820191505b818110156200058d5782815560010162000578565b5050505b505050565b81516001600160401b03811115620005b257620005b2620004f1565b620005ca81620005c3845462000507565b8462000543565b602080601f831160018114620006025760008415620005e95750858301515b600019600386901b1c1916600185901b1785556200058d565b600085815260208120601f198616915b82811015620006335788860151825594840194600190910190840162000612565b5085821015620006525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160a01b03811681146200067857600080fd5b50565b600080604083850312156200068f57600080fd5b82516200069c8162000662565b60208401519092506001600160f01b031981168114620006bb57600080fd5b809150509250929050565b600060208284031215620006d957600080fd5b8151620004568162000662565b600060208083528351808285015260005b818110156200071557858101830151858201604001528201620006f7565b506000604082860101526040601f19601f8301168501019250505092915050565b600082620007485762000748620004a2565b500490565b60805160a0516126176200078f6000396000818161040a01526115ab0152600081816102a00152818161182e015281816118e7015261191601526126176000f3fe6080604052600436106102085760003560e01c80636bc87c3a11610118578063b9b097f6116100a0578063f2cc0c181161006f578063f2cc0c1814610658578063f2fde38b14610678578063f7a9159114610698578063f84354f1146106ad578063ff897570146106cd57600080fd5b8063b9b097f6146105a4578063cba0e996146105b9578063dd62ed3e146105f2578063e01af92c1461063857600080fd5b80638da5cb5b116100e75780638da5cb5b1461051157806395d89b411461052f578063a457c2d714610544578063a9059cbb14610564578063af9549e01461058457600080fd5b80636bc87c3a146104a55780636ddd1713146104bb57806370a08231146104dc578063715018a6146104fc57600080fd5b806323efa3111161019b5780634549b0391161016a5780634549b039146103d857806349bd5a5e146103f85780634a49ac4c1461042c5780635342acb41461044c5780635880b8731461048557600080fd5b806323efa311146103615780632d83811914610376578063313ce5671461039657806339509351146103b857600080fd5b806318160ddd116101d757806318160ddd146102da5780631bbae6e0146102ef5780631cdd3be31461031157806323b872dd1461034157600080fd5b806306fdde0314610214578063095ea7b31461023f57806313114a9d1461026f5780631694505e1461028e57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106ed565b6040516102369190612199565b60405180910390f35b34801561024b57600080fd5b5061025f61025a3660046121fc565b61077f565b6040519015158152602001610236565b34801561027b57600080fd5b50600a545b604051908152602001610236565b34801561029a57600080fd5b506102c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610236565b3480156102e657600080fd5b50600854610280565b3480156102fb57600080fd5b5061030f61030a366004612228565b610796565b005b34801561031d57600080fd5b5061025f61032c366004612241565b60016020526000908152604090205460ff1681565b34801561034d57600080fd5b5061025f61035c36600461225e565b6107ce565b34801561036d57600080fd5b5061030f610837565b34801561038257600080fd5b50610280610391366004612228565b61086e565b3480156103a257600080fd5b50600d5460405160ff9091168152602001610236565b3480156103c457600080fd5b5061025f6103d33660046121fc565b6108f2565b3480156103e457600080fd5b506102806103f33660046122b4565b610928565b34801561040457600080fd5b506102c27f000000000000000000000000000000000000000000000000000000000000000081565b34801561043857600080fd5b5061030f610447366004612241565b6109b5565b34801561045857600080fd5b5061025f610467366004612241565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561049157600080fd5b5061030f6104a0366004612228565b610a00565b3480156104b157600080fd5b50610280600e5481565b3480156104c757600080fd5b5060135461025f90600160a81b900460ff1681565b3480156104e857600080fd5b506102806104f7366004612241565b610a80565b34801561050857600080fd5b5061030f610adf565b34801561051d57600080fd5b506000546001600160a01b03166102c2565b34801561053b57600080fd5b50610229610b53565b34801561055057600080fd5b5061025f61055f3660046121fc565b610b62565b34801561057057600080fd5b5061025f61057f3660046121fc565b610bb1565b34801561059057600080fd5b5061030f61059f3660046122e0565b610bbe565b3480156105b057600080fd5b5061030f610c13565b3480156105c557600080fd5b5061025f6105d4366004612241565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105fe57600080fd5b5061028061060d36600461230c565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561064457600080fd5b5061030f610653366004612345565b610c53565b34801561066457600080fd5b5061030f610673366004612241565b610c9b565b34801561068457600080fd5b5061030f610693366004612241565b610e65565b3480156106a457600080fd5b50601454610280565b3480156106b957600080fd5b5061030f6106c8366004612241565b610f4f565b3480156106d957600080fd5b5061030f6106e8366004612360565b611105565b6060600b80546106fc906123d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906123d5565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078c3384846111e5565b5060015b92915050565b6000546001600160a01b031633146107c95760405162461bcd60e51b81526004016107c09061240f565b60405180910390fd5b601455565b60006107db848484611309565b61082d843361082885604051806060016040528060288152602001612595602891396001600160a01b038a166000908152600460209081526040808320338452909152902054919061165f565b6111e5565b5060019392505050565b6000546001600160a01b031633146108615760405162461bcd60e51b81526004016107c09061240f565b4761086b81611699565b50565b60006009548211156108d55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107c0565b60006108df6116e6565b90506108eb83826111a3565b9392505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161078c9185906108289086611709565b600060085483111561097c5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107c0565b8161099b57600061098c84611768565b50939550610790945050505050565b60006109a684611768565b50929550610790945050505050565b6000546001600160a01b031633146109df5760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6000546001600160a01b03163314610a2a5760405162461bcd60e51b81526004016107c09061240f565b6063811115610a7b5760405162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d20393900000000000060448201526064016107c0565b600f55565b6001600160a01b03811660009081526006602052604081205460ff1615610abd57506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546107909061086e565b6000546001600160a01b03163314610b095760405162461bcd60e51b81526004016107c09061240f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600c80546106fc906123d5565b600061078c3384610828856040518060600160405280602581526020016125bd602591393360009081526004602090815260408083206001600160a01b038d168452909152902054919061165f565b600061078c338484611309565b6000546001600160a01b03163314610be85760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016107c09061240f565b6000610c4830610a80565b905061086b816117c4565b6000546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016107c09061240f565b60138054911515600160a81b0260ff60a81b19909216919091179055565b6000546001600160a01b03163314610cc55760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03811673b934135f641fa23ef2a7e5d0c750366dc2ab42d503610d3c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016107c0565b6001600160a01b03811660009081526006602052604090205460ff1615610da55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107c0565b6001600160a01b03811660009081526002602052604090205415610dff576001600160a01b038116600090815260026020526040902054610de59061086e565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6000546001600160a01b03163314610e8f5760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b038116610ef45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610f795760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03811660009081526006602052604090205460ff16610fe15760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107c0565b60005b60075481101561110157816001600160a01b03166007828154811061100b5761100b612444565b6000918252602090912001546001600160a01b0316036110ef576007805461103590600190612470565b8154811061104557611045612444565b600091825260209091200154600780546001600160a01b03909216918390811061107157611071612444565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff1916905560078054806110c9576110c9612483565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806110f981612499565b915050610fe4565b5050565b6000546001600160a01b0316331461112f5760405162461bcd60e51b81526004016107c09061240f565b60005b8181101561119e57600180600085858581811061115157611151612444565b90506020020160208101906111669190612241565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561119781612499565b9050611132565b505050565b60006108eb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119ae565b6001600160a01b0383166112475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c0565b6001600160a01b0382166112a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c0565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526001602052604090205460ff1615801561134b57506001600160a01b03821660009081526001602052604090205460ff16155b6113975760405162461bcd60e51b815260206004820152601b60248201527f54686973206164647265737320697320626c61636b6c6973746564000000000060448201526064016107c0565b6001600160a01b0383166113fb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107c0565b6001600160a01b03821661145d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107c0565b600081116114bf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107c0565b6000546001600160a01b038481169116148015906114eb57506000546001600160a01b03838116911614155b15611553576014548111156115535760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107c0565b600061155e30610a80565b9050601454811061156e57506014545b6015546013549082101590600160a01b900460ff161580156115995750601354600160a81b900460ff165b80156115a25750805b80156115e057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611600576115ee826117c4565b4780156115fe576115fe47611699565b505b6001600160a01b03851660009081526005602052604090205460019060ff168061164257506001600160a01b03851660009081526005602052604090205460ff165b1561164b575060005b611657868686846119dc565b505050505050565b600081848411156116835760405162461bcd60e51b81526004016107c09190612199565b5060006116908486612470565b95945050505050565b6013546001600160a01b03166108fc6116be60046116b8856003611b59565b906111a3565b6040518115909202916000818181858888f19350505050158015611101573d6000803e3d6000fd5b60008060006116f3611bdb565b909250905061170282826111a3565b9250505090565b60008061171683856124b2565b9050838110156108eb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107c0565b60008060008060008060008060006117858a600f54601054611d5d565b92509250925060006117956116e6565b905060008060006117a78e8786611dac565b919e509c509a509598509396509194505050505091939550919395565b6013805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061180c5761180c612444565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561188a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ae91906124c5565b816001815181106118c1576118c1612444565b60200260200101906001600160a01b031690816001600160a01b03168152505061190c307f0000000000000000000000000000000000000000000000000000000000000000846111e5565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947836000843061194b42600f6124b2565b6040518663ffffffff1660e01b815260040161196b9594939291906124e2565b600060405180830381600087803b15801561198557600080fd5b505af1158015611999573d6000803e3d6000fd5b50506013805460ff60a01b1916905550505050565b600081836119cf5760405162461bcd60e51b81526004016107c09190612199565b5060006116908486612553565b806119e9576119e9611de8565b6001600160a01b03841660009081526006602052604090205460ff168015611a2a57506001600160a01b03831660009081526006602052604090205460ff16155b15611a3f57611a3a848484611e16565b611b3d565b6001600160a01b03841660009081526006602052604090205460ff16158015611a8057506001600160a01b03831660009081526006602052604090205460ff165b15611a9057611a3a848484611f2a565b6001600160a01b03841660009081526006602052604090205460ff16158015611ad257506001600160a01b03831660009081526006602052604090205460ff16155b15611ae257611a3a848484611fa0565b6001600160a01b03841660009081526006602052604090205460ff168015611b2257506001600160a01b03831660009081526006602052604090205460ff165b15611b3257611a3a848484612035565b611b3d848484611fa0565b80611b5357611b53601154600f55601254601055565b50505050565b600082600003611b6b57506000610790565b6000611b778385612575565b905082611b848583612553565b146108eb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107c0565b6009546008546000918291825b600754811015611d2d57826002600060078481548110611c0a57611c0a612444565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c755750816003600060078481548110611c4e57611c4e612444565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c8b57600954600854945094505050509091565b611cd16002600060078481548110611ca557611ca5612444565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906120ab565b9250611d196003600060078481548110611ced57611ced612444565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906120ab565b915080611d2581612499565b915050611be8565b50600854600954611d3d916111a3565b821015611d54576009546008549350935050509091565b90939092509050565b6000808080611d7160646116b88989611b59565b90506000611d8460646116b88a89611b59565b90506000611d9c82611d968b866120ab565b906120ab565b9992985090965090945050505050565b6000808080611dbb8786611b59565b90506000611dc98787611b59565b90506000611dd783836120ab565b929992985090965090945050505050565b600f54158015611df85750601054155b15611dff57565b600f80546011556010805460125560009182905555565b600080600080600080611e2887611768565b6001600160a01b038f1660009081526003602052604081208054979d50959b50939950919750955093508992611e5f908490612470565b90915550506001600160a01b03891660009081526002602052604081208054889290611e8c908490612470565b90915550506001600160a01b03881660009081526002602052604081208054879290611eb99084906124b2565b90915550611ec89050816120ed565b611ed28483612175565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611f1791815260200190565b60405180910390a3505050505050505050565b600080600080600080611f3c87611768565b6001600160a01b038f1660009081526002602052604081208054979d50959b50939950919750955093508892611f73908490612470565b90915550506001600160a01b03881660009081526003602052604081208054859290611e8c9084906124b2565b600080600080600080611fb287611768565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150611fe490876120ab565b6001600160a01b03808b1660009081526002602052604080822093909355908a16815220546120139086611709565b6001600160a01b038916600090815260026020526040902055611ec8816120ed565b60008060008060008061204787611768565b6001600160a01b038f1660009081526003602052604081208054979d50959b5093995091975095509350899261207e908490612470565b90915550506001600160a01b03891660009081526002602052604081208054889290611f73908490612470565b60006108eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061165f565b60006120f76116e6565b905060006121058383611b59565b306000908152600260205260409020549091506121229082611709565b3060009081526002602090815260408083209390935560069052205460ff161561119e57306000908152600360205260409020546121609084611709565b30600090815260036020526040902055505050565b60095461218290836120ab565b600955600a546121929082611709565b600a555050565b600060208083528351808285015260005b818110156121c6578581018301518582016040015282016121aa565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461086b57600080fd5b6000806040838503121561220f57600080fd5b823561221a816121e7565b946020939093013593505050565b60006020828403121561223a57600080fd5b5035919050565b60006020828403121561225357600080fd5b81356108eb816121e7565b60008060006060848603121561227357600080fd5b833561227e816121e7565b9250602084013561228e816121e7565b929592945050506040919091013590565b803580151581146122af57600080fd5b919050565b600080604083850312156122c757600080fd5b823591506122d76020840161229f565b90509250929050565b600080604083850312156122f357600080fd5b82356122fe816121e7565b91506122d76020840161229f565b6000806040838503121561231f57600080fd5b823561232a816121e7565b9150602083013561233a816121e7565b809150509250929050565b60006020828403121561235757600080fd5b6108eb8261229f565b6000806020838503121561237357600080fd5b823567ffffffffffffffff8082111561238b57600080fd5b818501915085601f83011261239f57600080fd5b8135818111156123ae57600080fd5b8660208260051b85010111156123c357600080fd5b60209290920196919550909350505050565b600181811c908216806123e957607f821691505b60208210810361240957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156107905761079061245a565b634e487b7160e01b600052603160045260246000fd5b6000600182016124ab576124ab61245a565b5060010190565b808201808211156107905761079061245a565b6000602082840312156124d757600080fd5b81516108eb816121e7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125325784516001600160a01b03168352938301939183019160010161250d565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261257057634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561258f5761258f61245a565b50029056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207b006e07db097c58609f8e1dd73e0c3dea4785baf9c05efd9d37b6c55d07b50264736f6c634300081000330000000000000000000000001c08e9d470106ebfe133e9f375b379285005d1a11111000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102085760003560e01c80636bc87c3a11610118578063b9b097f6116100a0578063f2cc0c181161006f578063f2cc0c1814610658578063f2fde38b14610678578063f7a9159114610698578063f84354f1146106ad578063ff897570146106cd57600080fd5b8063b9b097f6146105a4578063cba0e996146105b9578063dd62ed3e146105f2578063e01af92c1461063857600080fd5b80638da5cb5b116100e75780638da5cb5b1461051157806395d89b411461052f578063a457c2d714610544578063a9059cbb14610564578063af9549e01461058457600080fd5b80636bc87c3a146104a55780636ddd1713146104bb57806370a08231146104dc578063715018a6146104fc57600080fd5b806323efa3111161019b5780634549b0391161016a5780634549b039146103d857806349bd5a5e146103f85780634a49ac4c1461042c5780635342acb41461044c5780635880b8731461048557600080fd5b806323efa311146103615780632d83811914610376578063313ce5671461039657806339509351146103b857600080fd5b806318160ddd116101d757806318160ddd146102da5780631bbae6e0146102ef5780631cdd3be31461031157806323b872dd1461034157600080fd5b806306fdde0314610214578063095ea7b31461023f57806313114a9d1461026f5780631694505e1461028e57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b506102296106ed565b6040516102369190612199565b60405180910390f35b34801561024b57600080fd5b5061025f61025a3660046121fc565b61077f565b6040519015158152602001610236565b34801561027b57600080fd5b50600a545b604051908152602001610236565b34801561029a57600080fd5b506102c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b3480156102e657600080fd5b50600854610280565b3480156102fb57600080fd5b5061030f61030a366004612228565b610796565b005b34801561031d57600080fd5b5061025f61032c366004612241565b60016020526000908152604090205460ff1681565b34801561034d57600080fd5b5061025f61035c36600461225e565b6107ce565b34801561036d57600080fd5b5061030f610837565b34801561038257600080fd5b50610280610391366004612228565b61086e565b3480156103a257600080fd5b50600d5460405160ff9091168152602001610236565b3480156103c457600080fd5b5061025f6103d33660046121fc565b6108f2565b3480156103e457600080fd5b506102806103f33660046122b4565b610928565b34801561040457600080fd5b506102c27f000000000000000000000000639de95e94c1ecfb110bdc83e6e7c9aadd54378f81565b34801561043857600080fd5b5061030f610447366004612241565b6109b5565b34801561045857600080fd5b5061025f610467366004612241565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561049157600080fd5b5061030f6104a0366004612228565b610a00565b3480156104b157600080fd5b50610280600e5481565b3480156104c757600080fd5b5060135461025f90600160a81b900460ff1681565b3480156104e857600080fd5b506102806104f7366004612241565b610a80565b34801561050857600080fd5b5061030f610adf565b34801561051d57600080fd5b506000546001600160a01b03166102c2565b34801561053b57600080fd5b50610229610b53565b34801561055057600080fd5b5061025f61055f3660046121fc565b610b62565b34801561057057600080fd5b5061025f61057f3660046121fc565b610bb1565b34801561059057600080fd5b5061030f61059f3660046122e0565b610bbe565b3480156105b057600080fd5b5061030f610c13565b3480156105c557600080fd5b5061025f6105d4366004612241565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105fe57600080fd5b5061028061060d36600461230c565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561064457600080fd5b5061030f610653366004612345565b610c53565b34801561066457600080fd5b5061030f610673366004612241565b610c9b565b34801561068457600080fd5b5061030f610693366004612241565b610e65565b3480156106a457600080fd5b50601454610280565b3480156106b957600080fd5b5061030f6106c8366004612241565b610f4f565b3480156106d957600080fd5b5061030f6106e8366004612360565b611105565b6060600b80546106fc906123d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610728906123d5565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078c3384846111e5565b5060015b92915050565b6000546001600160a01b031633146107c95760405162461bcd60e51b81526004016107c09061240f565b60405180910390fd5b601455565b60006107db848484611309565b61082d843361082885604051806060016040528060288152602001612595602891396001600160a01b038a166000908152600460209081526040808320338452909152902054919061165f565b6111e5565b5060019392505050565b6000546001600160a01b031633146108615760405162461bcd60e51b81526004016107c09061240f565b4761086b81611699565b50565b60006009548211156108d55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107c0565b60006108df6116e6565b90506108eb83826111a3565b9392505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161078c9185906108289086611709565b600060085483111561097c5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107c0565b8161099b57600061098c84611768565b50939550610790945050505050565b60006109a684611768565b50929550610790945050505050565b6000546001600160a01b031633146109df5760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03166000908152600160205260409020805460ff19169055565b6000546001600160a01b03163314610a2a5760405162461bcd60e51b81526004016107c09061240f565b6063811115610a7b5760405162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d20393900000000000060448201526064016107c0565b600f55565b6001600160a01b03811660009081526006602052604081205460ff1615610abd57506001600160a01b031660009081526003602052604090205490565b6001600160a01b0382166000908152600260205260409020546107909061086e565b6000546001600160a01b03163314610b095760405162461bcd60e51b81526004016107c09061240f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600c80546106fc906123d5565b600061078c3384610828856040518060600160405280602581526020016125bd602591393360009081526004602090815260408083206001600160a01b038d168452909152902054919061165f565b600061078c338484611309565b6000546001600160a01b03163314610be85760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6000546001600160a01b03163314610c3d5760405162461bcd60e51b81526004016107c09061240f565b6000610c4830610a80565b905061086b816117c4565b6000546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016107c09061240f565b60138054911515600160a81b0260ff60a81b19909216919091179055565b6000546001600160a01b03163314610cc55760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03811673b934135f641fa23ef2a7e5d0c750366dc2ab42d503610d3c5760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b60648201526084016107c0565b6001600160a01b03811660009081526006602052604090205460ff1615610da55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107c0565b6001600160a01b03811660009081526002602052604090205415610dff576001600160a01b038116600090815260026020526040902054610de59061086e565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6000546001600160a01b03163314610e8f5760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b038116610ef45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c0565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610f795760405162461bcd60e51b81526004016107c09061240f565b6001600160a01b03811660009081526006602052604090205460ff16610fe15760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107c0565b60005b60075481101561110157816001600160a01b03166007828154811061100b5761100b612444565b6000918252602090912001546001600160a01b0316036110ef576007805461103590600190612470565b8154811061104557611045612444565b600091825260209091200154600780546001600160a01b03909216918390811061107157611071612444565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff1916905560078054806110c9576110c9612483565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806110f981612499565b915050610fe4565b5050565b6000546001600160a01b0316331461112f5760405162461bcd60e51b81526004016107c09061240f565b60005b8181101561119e57600180600085858581811061115157611151612444565b90506020020160208101906111669190612241565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561119781612499565b9050611132565b505050565b60006108eb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119ae565b6001600160a01b0383166112475760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c0565b6001600160a01b0382166112a85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c0565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526001602052604090205460ff1615801561134b57506001600160a01b03821660009081526001602052604090205460ff16155b6113975760405162461bcd60e51b815260206004820152601b60248201527f54686973206164647265737320697320626c61636b6c6973746564000000000060448201526064016107c0565b6001600160a01b0383166113fb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107c0565b6001600160a01b03821661145d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107c0565b600081116114bf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107c0565b6000546001600160a01b038481169116148015906114eb57506000546001600160a01b03838116911614155b15611553576014548111156115535760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107c0565b600061155e30610a80565b9050601454811061156e57506014545b6015546013549082101590600160a01b900460ff161580156115995750601354600160a81b900460ff165b80156115a25750805b80156115e057507f000000000000000000000000639de95e94c1ecfb110bdc83e6e7c9aadd54378f6001600160a01b0316856001600160a01b031614155b15611600576115ee826117c4565b4780156115fe576115fe47611699565b505b6001600160a01b03851660009081526005602052604090205460019060ff168061164257506001600160a01b03851660009081526005602052604090205460ff165b1561164b575060005b611657868686846119dc565b505050505050565b600081848411156116835760405162461bcd60e51b81526004016107c09190612199565b5060006116908486612470565b95945050505050565b6013546001600160a01b03166108fc6116be60046116b8856003611b59565b906111a3565b6040518115909202916000818181858888f19350505050158015611101573d6000803e3d6000fd5b60008060006116f3611bdb565b909250905061170282826111a3565b9250505090565b60008061171683856124b2565b9050838110156108eb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107c0565b60008060008060008060008060006117858a600f54601054611d5d565b92509250925060006117956116e6565b905060008060006117a78e8786611dac565b919e509c509a509598509396509194505050505091939550919395565b6013805460ff60a01b1916600160a01b179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061180c5761180c612444565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561188a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ae91906124c5565b816001815181106118c1576118c1612444565b60200260200101906001600160a01b031690816001600160a01b03168152505061190c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846111e5565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947836000843061194b42600f6124b2565b6040518663ffffffff1660e01b815260040161196b9594939291906124e2565b600060405180830381600087803b15801561198557600080fd5b505af1158015611999573d6000803e3d6000fd5b50506013805460ff60a01b1916905550505050565b600081836119cf5760405162461bcd60e51b81526004016107c09190612199565b5060006116908486612553565b806119e9576119e9611de8565b6001600160a01b03841660009081526006602052604090205460ff168015611a2a57506001600160a01b03831660009081526006602052604090205460ff16155b15611a3f57611a3a848484611e16565b611b3d565b6001600160a01b03841660009081526006602052604090205460ff16158015611a8057506001600160a01b03831660009081526006602052604090205460ff165b15611a9057611a3a848484611f2a565b6001600160a01b03841660009081526006602052604090205460ff16158015611ad257506001600160a01b03831660009081526006602052604090205460ff16155b15611ae257611a3a848484611fa0565b6001600160a01b03841660009081526006602052604090205460ff168015611b2257506001600160a01b03831660009081526006602052604090205460ff165b15611b3257611a3a848484612035565b611b3d848484611fa0565b80611b5357611b53601154600f55601254601055565b50505050565b600082600003611b6b57506000610790565b6000611b778385612575565b905082611b848583612553565b146108eb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107c0565b6009546008546000918291825b600754811015611d2d57826002600060078481548110611c0a57611c0a612444565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611c755750816003600060078481548110611c4e57611c4e612444565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c8b57600954600854945094505050509091565b611cd16002600060078481548110611ca557611ca5612444565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906120ab565b9250611d196003600060078481548110611ced57611ced612444565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906120ab565b915080611d2581612499565b915050611be8565b50600854600954611d3d916111a3565b821015611d54576009546008549350935050509091565b90939092509050565b6000808080611d7160646116b88989611b59565b90506000611d8460646116b88a89611b59565b90506000611d9c82611d968b866120ab565b906120ab565b9992985090965090945050505050565b6000808080611dbb8786611b59565b90506000611dc98787611b59565b90506000611dd783836120ab565b929992985090965090945050505050565b600f54158015611df85750601054155b15611dff57565b600f80546011556010805460125560009182905555565b600080600080600080611e2887611768565b6001600160a01b038f1660009081526003602052604081208054979d50959b50939950919750955093508992611e5f908490612470565b90915550506001600160a01b03891660009081526002602052604081208054889290611e8c908490612470565b90915550506001600160a01b03881660009081526002602052604081208054879290611eb99084906124b2565b90915550611ec89050816120ed565b611ed28483612175565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611f1791815260200190565b60405180910390a3505050505050505050565b600080600080600080611f3c87611768565b6001600160a01b038f1660009081526002602052604081208054979d50959b50939950919750955093508892611f73908490612470565b90915550506001600160a01b03881660009081526003602052604081208054859290611e8c9084906124b2565b600080600080600080611fb287611768565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150611fe490876120ab565b6001600160a01b03808b1660009081526002602052604080822093909355908a16815220546120139086611709565b6001600160a01b038916600090815260026020526040902055611ec8816120ed565b60008060008060008061204787611768565b6001600160a01b038f1660009081526003602052604081208054979d50959b5093995091975095509350899261207e908490612470565b90915550506001600160a01b03891660009081526002602052604081208054889290611f73908490612470565b60006108eb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061165f565b60006120f76116e6565b905060006121058383611b59565b306000908152600260205260409020549091506121229082611709565b3060009081526002602090815260408083209390935560069052205460ff161561119e57306000908152600360205260409020546121609084611709565b30600090815260036020526040902055505050565b60095461218290836120ab565b600955600a546121929082611709565b600a555050565b600060208083528351808285015260005b818110156121c6578581018301518582016040015282016121aa565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461086b57600080fd5b6000806040838503121561220f57600080fd5b823561221a816121e7565b946020939093013593505050565b60006020828403121561223a57600080fd5b5035919050565b60006020828403121561225357600080fd5b81356108eb816121e7565b60008060006060848603121561227357600080fd5b833561227e816121e7565b9250602084013561228e816121e7565b929592945050506040919091013590565b803580151581146122af57600080fd5b919050565b600080604083850312156122c757600080fd5b823591506122d76020840161229f565b90509250929050565b600080604083850312156122f357600080fd5b82356122fe816121e7565b91506122d76020840161229f565b6000806040838503121561231f57600080fd5b823561232a816121e7565b9150602083013561233a816121e7565b809150509250929050565b60006020828403121561235757600080fd5b6108eb8261229f565b6000806020838503121561237357600080fd5b823567ffffffffffffffff8082111561238b57600080fd5b818501915085601f83011261239f57600080fd5b8135818111156123ae57600080fd5b8660208260051b85010111156123c357600080fd5b60209290920196919550909350505050565b600181811c908216806123e957607f821691505b60208210810361240957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156107905761079061245a565b634e487b7160e01b600052603160045260246000fd5b6000600182016124ab576124ab61245a565b5060010190565b808201808211156107905761079061245a565b6000602082840312156124d757600080fd5b81516108eb816121e7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125325784516001600160a01b03168352938301939183019160010161250d565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261257057634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561258f5761258f61245a565b50029056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207b006e07db097c58609f8e1dd73e0c3dea4785baf9c05efd9d37b6c55d07b50264736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001c08e9d470106ebfe133e9f375b379285005d1a11111000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : MarketingWalletAddress (address): 0x1C08e9D470106eBfE133E9F375b379285005D1a1
Arg [1] : taxFees (bytes2): 0x1111
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001c08e9d470106ebfe133e9f375b379285005d1a1
Arg [1] : 1111000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
25769:17731:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28364:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29360:173;;;;;;;;;;-1:-1:-1;29360:173:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29360:173:0;1023:187:1;30708:95:0;;;;;;;;;;-1:-1:-1;30781:10:0;;30708:95;;;1361:25:1;;;1349:2;1334:18;30708:95:0;1215:177:1;26987:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;26987:51:0;1397:230:1;28677:103:0;;;;;;;;;;-1:-1:-1;28761:7:0;;28677:103;;42892:120;;;;;;;;;;-1:-1:-1;42892:120:0;;;;;:::i;:::-;;:::i;:::-;;25905:47;;;;;;;;;;-1:-1:-1;25905:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29545:329;;;;;;;;;;-1:-1:-1;29545:329:0;;;;;:::i;:::-;;:::i;36115:174::-;;;;;;;;;;;;;:::i;31299:269::-;;;;;;;;;;-1:-1:-1;31299:269:0;;;;;:::i;:::-;;:::i;28574:91::-;;;;;;;;;;-1:-1:-1;28644:9:0;;28574:91;;28644:9;;;;2672:36:1;;2660:2;2645:18;28574:91:0;2530:184:1;29886:230:0;;;;;;;;;;-1:-1:-1;29886:230:0;;;;;:::i;:::-;;:::i;30815:472::-;;;;;;;;;;-1:-1:-1;30815:472:0;;;;;:::i;:::-;;:::i;27049:38::-;;;;;;;;;;;;;;;43052:118;;;;;;;;;;-1:-1:-1;43052:118:0;;;;;:::i;:::-;;:::i;33192:131::-;;;;;;;;;;-1:-1:-1;33192:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;33284:27:0;33256:4;33284:27;;;:18;:27;;;;;;;;;33192:131;42699:181;;;;;;;;;;-1:-1:-1;42699:181:0;;;;;:::i;:::-;;:::i;26676:32::-;;;;;;;;;;;;;;;;27130:30;;;;;;;;;;-1:-1:-1;27130:30:0;;;;-1:-1:-1;;;27130:30:0;;;;;;28792:210;;;;;;;;;;-1:-1:-1;28792:210:0;;;;;:::i;:::-;;:::i;16432:160::-;;;;;;;;;;;;;:::i;15730:87::-;;;;;;;;;;-1:-1:-1;15768:7:0;15799:6;-1:-1:-1;;;;;15799:6:0;15730:87;;28467:95;;;;;;;;;;;;;:::i;30128:281::-;;;;;;;;;;-1:-1:-1;30128:281:0;;;;;:::i;:::-;;:::i;29014:171::-;;;;;;;;;;-1:-1:-1;29014:171:0;;;;;:::i;:::-;;:::i;30551:145::-;;;;;;;;;;-1:-1:-1;30551:145:0;;;;;:::i;:::-;;:::i;36301:174::-;;;;;;;;;;;;;:::i;30421:118::-;;;;;;;;;;-1:-1:-1;30421:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;30507:20:0;30479:4;30507:20;;;:11;:20;;;;;;;;;30421:118;29197:151;;;;;;;;;;-1:-1:-1;29197:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;29309:18:0;;;29278:7;29309:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29197:151;36495:106;;;;;;;;;;-1:-1:-1;36495:106:0;;;;;:::i;:::-;;:::i;31580:475::-;;;;;;;;;;-1:-1:-1;31580:475:0;;;;;:::i;:::-;;:::i;16764:260::-;;;;;;;;;;-1:-1:-1;16764:260:0;;;;;:::i;:::-;;:::i;42577:102::-;;;;;;;;;;-1:-1:-1;42655:12:0;;42577:102;;32067:522;;;;;;;;;;-1:-1:-1;32067:522:0;;;;;:::i;:::-;;:::i;43284:204::-;;;;;;;;;;-1:-1:-1;43284:204:0;;;;;:::i;:::-;;:::i;28364:91::-;28401:13;28438:5;28431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28364:91;:::o;29360:173::-;29435:4;29456:39;483:10;29479:7;29488:6;29456:8;:39::i;:::-;-1:-1:-1;29517:4:0;29360:173;;;;;:::o;42892:120::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;;;;;;;;;42974:12:::1;:26:::0;42892:120::o;29545:329::-;29643:4;29664:36;29674:6;29682:9;29693:6;29664:9;:36::i;:::-;29715:121;29724:6;483:10;29746:89;29784:6;29746:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29746:19:0;;;;;;:11;:19;;;;;;;;483:10;29746:33;;;;;;;;;;:37;:89::i;:::-;29715:8;:121::i;:::-;-1:-1:-1;29858:4:0;29545:329;;;;;:::o;36115:174::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;36203:21:::1;36239:38;36203:21:::0;36239:18:::1;:38::i;:::-;36159:130;36115:174::o:0;31299:269::-;31365:7;31408;;31397;:18;;31389:73;;;;-1:-1:-1;;;31389:73:0;;5811:2:1;31389:73:0;;;5793:21:1;5850:2;5830:18;;;5823:30;5889:34;5869:18;;;5862:62;-1:-1:-1;;;5940:18:1;;;5933:40;5990:19;;31389:73:0;5609:406:1;31389:73:0;31477:19;31500:10;:8;:10::i;:::-;31477:33;-1:-1:-1;31532:24:0;:7;31477:33;31532:11;:24::i;:::-;31525:31;31299:269;-1:-1:-1;;;31299:269:0:o;29886:230::-;483:10;29974:4;30027:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30027:34:0;;;;;;;;;;29974:4;;29995:83;;30018:7;;30027:50;;30066:10;30027:38;:50::i;30815:472::-;30905:7;30948;;30937;:18;;30929:62;;;;-1:-1:-1;;;30929:62:0;;6222:2:1;30929:62:0;;;6204:21:1;6261:2;6241:18;;;6234:30;6300:33;6280:18;;;6273:61;6351:18;;30929:62:0;6020:355:1;30929:62:0;31011:17;31006:270;;31050:15;31074:19;31085:7;31074:10;:19::i;:::-;-1:-1:-1;31049:44:0;;-1:-1:-1;31112:14:0;;-1:-1:-1;;;;;31112:14:0;31006:270;31169:23;31200:19;31211:7;31200:10;:19::i;:::-;-1:-1:-1;31167:52:0;;-1:-1:-1;31238:22:0;;-1:-1:-1;;;;;31238:22:0;43052:118;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43127:23:0::1;43153:5;43127:23:::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;43127:31:0::1;::::0;;43052:118::o;42699:181::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;42804:2:::1;42794:6;:12;;42771:66;;;::::0;-1:-1:-1;;;42771:66:0;;6582:2:1;42771:66:0::1;::::0;::::1;6564:21:1::0;6621:2;6601:18;;;6594:30;6660:28;6640:18;;;6633:56;6706:18;;42771:66:0::1;6380:350:1::0;42771:66:0::1;42852:7;:16:::0;42699:181::o;28792:210::-;-1:-1:-1;;;;;28886:20:0;;28858:7;28886:20;;;:11;:20;;;;;;;;28882:49;;;-1:-1:-1;;;;;;28915:16:0;;;;;:7;:16;;;;;;;28792:210::o;28882:49::-;-1:-1:-1;;;;;28973:16:0;;;;;;:7;:16;;;;;;28953:37;;:19;:37::i;16432:160::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;16543:1:::1;16527:6:::0;;16506:40:::1;::::0;-1:-1:-1;;;;;16527:6:0;;::::1;::::0;16506:40:::1;::::0;16543:1;;16506:40:::1;16578:1;16561:19:::0;;-1:-1:-1;;;;;;16561:19:0::1;::::0;;16432:160::o;28467:95::-;28506:13;28543:7;28536:14;;;;;:::i;30128:281::-;30221:4;30242:129;483:10;30265:7;30274:96;30313:15;30274:96;;;;;;;;;;;;;;;;;483:10;30274:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30274:34:0;;;;;;;;;;;;:38;:96::i;29014:171::-;29092:4;29109:42;483:10;29133:9;29144:6;29109:9;:42::i;30551:145::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30646:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;30646:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30551:145::o;36301:174::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;36365:23:::1;36391:24;36409:4;36391:9;:24::i;:::-;36365:50;;36430:33;36447:15;36430:16;:33::i;36495:106::-:0;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;36568:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;36568:21:0::1;-1:-1:-1::0;;;;36568:21:0;;::::1;::::0;;;::::1;::::0;;36495:106::o;31580:475::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31665:53:0;::::1;31676:42;31665:53:::0;31657:100:::1;;;::::0;-1:-1:-1;;;31657:100:0;;6937:2:1;31657:100:0::1;::::0;::::1;6919:21:1::0;6976:2;6956:18;;;6949:30;7015:34;6995:18;;;6988:62;-1:-1:-1;;;7066:18:1;;;7059:32;7108:19;;31657:100:0::1;6735:398:1::0;31657:100:0::1;-1:-1:-1::0;;;;;31781:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31780:21;31772:61;;;::::0;-1:-1:-1;;;31772:61:0;;7340:2:1;31772:61:0::1;::::0;::::1;7322:21:1::0;7379:2;7359:18;;;7352:30;7418:29;7398:18;;;7391:57;7465:18;;31772:61:0::1;7138:351:1::0;31772:61:0::1;-1:-1:-1::0;;;;;31851:16:0;::::1;31870:1;31851:16:::0;;;:7:::1;:16;::::0;;;;;:20;31848:116:::1;;-1:-1:-1::0;;;;;31931:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31911:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31892:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31848:116:::1;-1:-1:-1::0;;;;;31978:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31978:27:0::1;32001:4;31978:27:::0;;::::1;::::0;;;32020:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32020:23:0::1;::::0;;::::1;::::0;;31580:475::o;16764:260::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16857:22:0;::::1;16849:73;;;::::0;-1:-1:-1;;;16849:73:0;;7696:2:1;16849:73:0::1;::::0;::::1;7678:21:1::0;7735:2;7715:18;;;7708:30;7774:34;7754:18;;;7747:62;-1:-1:-1;;;7825:18:1;;;7818:36;7871:19;;16849:73:0::1;7494:402:1::0;16849:73:0::1;16963:6;::::0;;16942:38:::1;::::0;-1:-1:-1;;;;;16942:38:0;;::::1;::::0;16963:6;::::1;::::0;16942:38:::1;::::0;::::1;16995:6;:17:::0;;-1:-1:-1;;;;;;16995:17:0::1;-1:-1:-1::0;;;;;16995:17:0;;;::::1;::::0;;;::::1;::::0;;16764:260::o;32067:522::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32152:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32144:60;;;::::0;-1:-1:-1;;;32144:60:0;;7340:2:1;32144:60:0::1;::::0;::::1;7322:21:1::0;7379:2;7359:18;;;7352:30;7418:29;7398:18;;;7391:57;7465:18;;32144:60:0::1;7138:351:1::0;32144:60:0::1;32224:9;32219:359;32243:9;:16:::0;32239:20;::::1;32219:359;;;32305:7;-1:-1:-1::0;;;;;32289:23:0::1;:9;32299:1;32289:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32289:12:0::1;:23:::0;32285:278:::1;;32352:9;32362:16:::0;;:20:::1;::::0;32381:1:::1;::::0;32362:20:::1;:::i;:::-;32352:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;32337:9:::1;:12:::0;;-1:-1:-1;;;;;32352:31:0;;::::1;::::0;32347:1;;32337:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32337:46:0::1;-1:-1:-1::0;;;;;32337:46:0;;::::1;;::::0;;32406:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32449:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32449:28:0::1;::::0;;32500:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32500:15:0;;;;;-1:-1:-1;;;;;;32500:15:0::1;::::0;;;;;32219:359:::1;32067:522:::0;:::o;32285:278::-:1;32261:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32219:359;;;;32067:522:::0;:::o;43284:204::-;15968:6;;-1:-1:-1;;;;;15968:6:0;483:10;15968:22;15960:67;;;;-1:-1:-1;;;15960:67:0;;;;;;;:::i;:::-;43373:9:::1;43369:108;43384:20:::0;;::::1;43369:108;;;43457:4;43426:14:::0;:28:::1;43441:9;;43451:1;43441:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43426:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43426:28:0;:35;;-1:-1:-1;;43426:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43406:3:::1;::::0;::::1;:::i;:::-;;;43369:108;;;;43284:204:::0;;:::o;3484:140::-;3542:7;3573:39;3577:1;3580;3573:39;;;;;;;;;;;;;;;;;:3;:39::i;33335:357::-;-1:-1:-1;;;;;33432:19:0;;33424:68;;;;-1:-1:-1;;;33424:68:0;;8772:2:1;33424:68:0;;;8754:21:1;8811:2;8791:18;;;8784:30;8850:34;8830:18;;;8823:62;-1:-1:-1;;;8901:18:1;;;8894:34;8945:19;;33424:68:0;8570:400:1;33424:68:0;-1:-1:-1;;;;;33515:21:0;;33507:68;;;;-1:-1:-1;;;33507:68:0;;9177:2:1;33507:68:0;;;9159:21:1;9216:2;9196:18;;;9189:30;9255:34;9235:18;;;9228:62;-1:-1:-1;;;9306:18:1;;;9299:32;9348:19;;33507:68:0;8975:398:1;33507:68:0;-1:-1:-1;;;;;33592:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33648:32;;1361:25:1;;;33648:32:0;;1334:18:1;33648:32:0;;;;;;;33335:357;;;:::o;33704:1639::-;-1:-1:-1;;;;;33806:22:0;;;;;;:14;:22;;;;;;;;33805:23;:53;;;;-1:-1:-1;;;;;;33833:25:0;;;;;;:14;:25;;;;;;;;33832:26;33805:53;33797:93;;;;-1:-1:-1;;;33797:93:0;;9580:2:1;33797:93:0;;;9562:21:1;9619:2;9599:18;;;9592:30;9658:29;9638:18;;;9631:57;9705:18;;33797:93:0;9378:351:1;33797:93:0;-1:-1:-1;;;;;33913:20:0;;33905:70;;;;-1:-1:-1;;;33905:70:0;;9936:2:1;33905:70:0;;;9918:21:1;9975:2;9955:18;;;9948:30;10014:34;9994:18;;;9987:62;-1:-1:-1;;;10065:18:1;;;10058:35;10110:19;;33905:70:0;9734:401:1;33905:70:0;-1:-1:-1;;;;;33998:23:0;;33990:71;;;;-1:-1:-1;;;33990:71:0;;10342:2:1;33990:71:0;;;10324:21:1;10381:2;10361:18;;;10354:30;10420:34;10400:18;;;10393:62;-1:-1:-1;;;10471:18:1;;;10464:33;10514:19;;33990:71:0;10140:399:1;33990:71:0;34093:1;34084:6;:10;34076:64;;;;-1:-1:-1;;;34076:64:0;;10746:2:1;34076:64:0;;;10728:21:1;10785:2;10765:18;;;10758:30;10824:34;10804:18;;;10797:62;-1:-1:-1;;;10875:18:1;;;10868:39;10924:19;;34076:64:0;10544:405:1;34076:64:0;15768:7;15799:6;-1:-1:-1;;;;;34172:17:0;;;15799:6;;34172:17;;;;:41;;-1:-1:-1;15768:7:0;15799:6;-1:-1:-1;;;;;34193:20:0;;;15799:6;;34193:20;;34172:41;34169:138;;;34250:12;;34240:6;:22;;34232:75;;;;-1:-1:-1;;;34232:75:0;;11156:2:1;34232:75:0;;;11138:21:1;11195:2;11175:18;;;11168:30;11234:34;11214:18;;;11207:62;-1:-1:-1;;;11285:18:1;;;11278:38;11333:19;;34232:75:0;10954:404:1;34232:75:0;34337:28;34368:24;34386:4;34368:9;:24::i;:::-;34337:55;;34448:12;;34424:20;:36;34421:124;;-1:-1:-1;34517:12:0;;34421:124;34624:18;;34662:6;;34600:42;;;;;-1:-1:-1;;;34662:6:0;;;;34661:7;:22;;;;-1:-1:-1;34672:11:0;;-1:-1:-1;;;34672:11:0;;;;34661:22;:45;;;;;34687:19;34661:45;:72;;;;;34720:13;-1:-1:-1;;;;;34710:23:0;:6;-1:-1:-1;;;;;34710:23:0;;;34661:72;34657:384;;;34771:38;34788:20;34771:16;:38::i;:::-;34875:21;34918:22;;34915:111;;34965:41;34984:21;34965:18;:41::i;:::-;34735:306;34657:384;-1:-1:-1;;;;;35138:26:0;;35079:12;35138:26;;;:18;:26;;;;;;35094:4;;35138:26;;;:59;;-1:-1:-1;;;;;;35168:29:0;;;;;;:18;:29;;;;;;;;35138:59;35135:113;;;-1:-1:-1;35227:5:0;35135:113;35284:47;35299:6;35306:9;35316:6;35323:7;35284:14;:47::i;:::-;33782:1561;;;33704:1639;;;:::o;1954:208::-;2040:7;2080:12;2072:6;;;;2064:29;;;;-1:-1:-1;;;2064:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2108:9:0;2120:5;2124:1;2120;:5;:::i;:::-;2108:17;1954:208;-1:-1:-1;;;;;1954:208:0:o;35944:145::-;36011:23;;-1:-1:-1;;;;;36011:23:0;:54;36044:20;36062:1;36044:13;:6;36055:1;36044:10;:13::i;:::-;:17;;:20::i;:::-;36011:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41664:175;41705:7;41730:15;41747;41766:19;:17;:19::i;:::-;41729:56;;-1:-1:-1;41729:56:0;-1:-1:-1;41807:20:0;41729:56;;41807:11;:20::i;:::-;41800:27;;;;41664:175;:::o;957:197::-;1015:7;;1051:5;1055:1;1051;:5;:::i;:::-;1039:17;;1084:1;1079;:6;;1071:46;;;;-1:-1:-1;;;1071:46:0;;11695:2:1;1071:46:0;;;11677:21:1;11734:2;11714:18;;;11707:30;11773:29;11753:18;;;11746:57;11820:18;;1071:46:0;11493:351:1;40382:496:0;40441:7;40450;40459;40468;40477;40486;40511:23;40536:12;40550:18;40572:44;40584:7;40593;;40602:13;;40572:11;:44::i;:::-;40510:106;;;;;;40631:19;40654:10;:8;:10::i;:::-;40631:33;;40680:15;40697:23;40722:12;40738:39;40750:7;40759:4;40765:11;40738;:39::i;:::-;40679:98;;-1:-1:-1;40679:98:0;-1:-1:-1;40679:98:0;-1:-1:-1;40832:15:0;;-1:-1:-1;40849:4:0;;-1:-1:-1;40855:10:0;;-1:-1:-1;;;;;40382:496:0;;;;;;;:::o;35355:569::-;27444:6;:13;;-1:-1:-1;;;;27444:13:0;-1:-1:-1;;;27444:13:0;;;35471:16:::1;::::0;;35485:1:::1;35471:16:::0;;;;;::::1;::::0;;-1:-1:-1;;35471:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;35471:16:0::1;35447:40;;35520:4;35502;35507:1;35502:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;35502:23:0::1;;;-1:-1:-1::0;;;;;35502:23:0::1;;;::::0;::::1;35550:15;-1:-1:-1::0;;;;;35550:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35540:4;35545:1;35540:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;35540:32:0::1;;;-1:-1:-1::0;;;;;35540:32:0::1;;;::::0;::::1;35589:62;35606:4;35621:15;35639:11;35589:8;:62::i;:::-;-1:-1:-1::0;;;;;35682:15:0::1;:66;;35768:11:::0;35799:1:::1;35821:4:::0;35853::::1;35878:18;:15;35894:2;35878:18;:::i;:::-;35682:230;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27488:6:0;:14;;-1:-1:-1;;;;27488:14:0;;;-1:-1:-1;;;;35355:569:0:o;4161:298::-;4247:7;4286:12;4279:5;4271:28;;;;-1:-1:-1;;;4271:28:0;;;;;;;;:::i;:::-;-1:-1:-1;4314:9:0;4326:5;4330:1;4326;:5;:::i;36621:883::-;36737:7;36733:44;;36763:14;:12;:14::i;:::-;-1:-1:-1;;;;;36798:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;36822:22:0;;;;;;:11;:22;;;;;;;;36821:23;36798:46;36794:637;;;36865:48;36887:6;36895:9;36906:6;36865:21;:48::i;:::-;36794:637;;;-1:-1:-1;;;;;36940:19:0;;;;;;:11;:19;;;;;;;;36939:20;:46;;;;-1:-1:-1;;;;;;36963:22:0;;;;;;:11;:22;;;;;;;;36939:46;36935:496;;;37006:46;37026:6;37034:9;37045:6;37006:19;:46::i;36935:496::-;-1:-1:-1;;;;;37079:19:0;;;;;;:11;:19;;;;;;;;37078:20;:47;;;;-1:-1:-1;;;;;;37103:22:0;;;;;;:11;:22;;;;;;;;37102:23;37078:47;37074:357;;;37146:44;37164:6;37172:9;37183:6;37146:17;:44::i;37074:357::-;-1:-1:-1;;;;;37216:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;37239:22:0;;;;;;:11;:22;;;;;;;;37216:45;37212:219;;;37282:48;37304:6;37312:9;37323:6;37282:21;:48::i;37212:219::-;37371:44;37389:6;37397:9;37408:6;37371:17;:44::i;:::-;37451:7;37447:45;;37477:15;33097;;33087:7;:25;33143:21;;33127:13;:37;33039:137;37477:15;36621:883;;;;:::o;2456:511::-;2514:7;2775:1;2780;2775:6;2771:55;;-1:-1:-1;2809:1:0;2802:8;;2771:55;2842:9;2854:5;2858:1;2854;:5;:::i;:::-;2842:17;-1:-1:-1;2891:1:0;2882:5;2886:1;2842:17;2882:5;:::i;:::-;:10;2874:56;;;;-1:-1:-1;;;2874:56:0;;13819:2:1;2874:56:0;;;13801:21:1;13858:2;13838:18;;;13831:30;13897:34;13877:18;;;13870:62;-1:-1:-1;;;13948:18:1;;;13941:31;13989:19;;2874:56:0;13617:397:1;41851:601:0;41952:7;;41992;;41901;;;;;42020:305;42044:9;:16;42040:20;;42020:305;;;42114:7;42090;:21;42098:9;42108:1;42098:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42098:12:0;42090:21;;;;;;;;;;;;;:31;;:66;;;42149:7;42125;:21;42133:9;42143:1;42133:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42133:12:0;42125:21;;;;;;;;;;;;;:31;42090:66;42086:97;;;42166:7;;42175;;42158:25;;;;;;;41851:601;;:::o;42086:97::-;42212:34;42224:7;:21;42232:9;42242:1;42232:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42232:12:0;42224:21;;;;;;;;;;;;;42212:7;;:11;:34::i;:::-;42202:44;;42275:34;42287:7;:21;42295:9;42305:1;42295:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;42295:12:0;42287:21;;;;;;;;;;;;;42275:7;;:11;:34::i;:::-;42265:44;-1:-1:-1;42062:3:0;;;;:::i;:::-;;;;42020:305;;;-1:-1:-1;42365:7:0;;42353;;:20;;:11;:20::i;:::-;42343:7;:30;42339:61;;;42383:7;;42392;;42375:25;;;;;;41851:601;;:::o;42339:61::-;42423:7;;42432;;-1:-1:-1;41851:601:0;-1:-1:-1;41851:601:0:o;40890:396::-;40988:7;;;;41045:28;41069:3;41045:19;:7;41057:6;41045:11;:19::i;:28::-;41030:43;-1:-1:-1;41088:18:0;41109:34;41139:3;41109:25;:7;41121:12;41109:11;:25::i;:34::-;41088:55;-1:-1:-1;41158:23:0;41184:33;41088:55;41184:17;:7;41196:4;41184:11;:17::i;:::-;:21;;:33::i;:::-;41158:59;41257:4;;-1:-1:-1;41263:10:0;;-1:-1:-1;40890:396:0;;-1:-1:-1;;;;;40890:396:0:o;41298:354::-;41393:7;;;;41453:24;:7;41465:11;41453;:24::i;:::-;41435:42;-1:-1:-1;41492:12:0;41507:21;:4;41516:11;41507:8;:21::i;:::-;41492:36;-1:-1:-1;41543:23:0;41569:17;:7;41492:36;41569:11;:17::i;:::-;41609:7;;;;-1:-1:-1;41635:4:0;;-1:-1:-1;41298:354:0;;-1:-1:-1;;;;;41298:354:0:o;32601:282::-;32651:7;;:12;:34;;;;-1:-1:-1;32667:13:0;;:18;32651:34;32648:46;;;32601:282::o;32648:46::-;32740:7;;;32722:15;:25;32786:13;;;32762:21;:37;-1:-1:-1;32828:11:0;;;;32854:17;32601:282::o;38625:535::-;38732:15;38749:23;38774:12;38788:23;38813:12;38827:18;38849:19;38860:7;38849:10;:19::i;:::-;-1:-1:-1;;;;;38883:15:0;;;;;;:7;:15;;;;;:26;;38731:137;;-1:-1:-1;38731:137:0;;-1:-1:-1;38731:137:0;;-1:-1:-1;38731:137:0;;-1:-1:-1;38731:137:0;-1:-1:-1;38731:137:0;-1:-1:-1;38902:7:0;;38883:26;;38902:7;;38883:26;:::i;:::-;;;;-1:-1:-1;;;;;;;38924:15:0;;;;;;:7;:15;;;;;:26;;38943:7;;38924:15;:26;;38943:7;;38924:26;:::i;:::-;;;;-1:-1:-1;;;;;;;38965:18:0;;;;;;:7;:18;;;;;:37;;38987:15;;38965:18;:37;;38987:15;;38965:37;:::i;:::-;;;;-1:-1:-1;39017:26:0;;-1:-1:-1;39032:10:0;39017:14;:26::i;:::-;39061:23;39073:4;39079;39061:11;:23::i;:::-;39121:9;-1:-1:-1;;;;;39104:44:0;39113:6;-1:-1:-1;;;;;39104:44:0;;39132:15;39104:44;;;;1361:25:1;;1349:2;1334:18;;1215:177;39104:44:0;;;;;;;;38716:444;;;;;;38625:535;;;:::o;38060:553::-;38165:15;38182:23;38207:12;38221:23;38246:12;38260:18;38282:19;38293:7;38282:10;:19::i;:::-;-1:-1:-1;;;;;38316:15:0;;;;;;:7;:15;;;;;:26;;38164:137;;-1:-1:-1;38164:137:0;;-1:-1:-1;38164:137:0;;-1:-1:-1;38164:137:0;;-1:-1:-1;38164:137:0;-1:-1:-1;38164:137:0;-1:-1:-1;38164:137:0;;38316:26;;38164:137;;38316:26;:::i;:::-;;;;-1:-1:-1;;;;;;;38357:18:0;;;;;;:7;:18;;;;;:37;;38379:15;;38357:18;:37;;38379:15;;38357:37;:::i;37516:532::-;37619:15;37636:23;37661:12;37675:23;37700:12;37714:18;37736:19;37747:7;37736:10;:19::i;:::-;-1:-1:-1;;;;;37788:15:0;;;;;;:7;:15;;;;;;37618:137;;-1:-1:-1;37618:137:0;;-1:-1:-1;37618:137:0;;-1:-1:-1;37618:137:0;-1:-1:-1;37618:137:0;-1:-1:-1;37618:137:0;-1:-1:-1;37788:28:0;;37618:137;37788:19;:28::i;:::-;-1:-1:-1;;;;;37770:15:0;;;;;;;:7;:15;;;;;;:46;;;;37852:18;;;;;;;:39;;37875:15;37852:22;:39::i;:::-;-1:-1:-1;;;;;37831:18:0;;;;;;:7;:18;;;;;:60;37907:26;37922:10;37907:14;:26::i;39172:595::-;39279:15;39296:23;39321:12;39335:23;39360:12;39374:18;39396:19;39407:7;39396:10;:19::i;:::-;-1:-1:-1;;;;;39430:15:0;;;;;;:7;:15;;;;;:26;;39278:137;;-1:-1:-1;39278:137:0;;-1:-1:-1;39278:137:0;;-1:-1:-1;39278:137:0;;-1:-1:-1;39278:137:0;-1:-1:-1;39278:137:0;-1:-1:-1;39449:7:0;;39430:26;;39449:7;;39430:26;:::i;:::-;;;;-1:-1:-1;;;;;;;39471:15:0;;;;;;:7;:15;;;;;:26;;39490:7;;39471:15;:26;;39490:7;;39471:26;:::i;1472:144::-;1530:7;1561:43;1565:1;1568;1561:43;;;;;;;;;;;;;;;;;:3;:43::i;39779:379::-;39846:19;39869:10;:8;:10::i;:::-;39846:33;-1:-1:-1;39894:18:0;39915:27;:10;39846:33;39915:14;:27::i;:::-;39998:4;39982:22;;;;:7;:22;;;;;;39894:48;;-1:-1:-1;39982:38:0;;39894:48;39982:26;:38::i;:::-;39973:4;39957:22;;;;:7;:22;;;;;;;;:63;;;;40038:11;:26;;;;;;40035:111;;;40124:4;40108:22;;;;:7;:22;;;;;;:38;;40135:10;40108:26;:38::i;:::-;40099:4;40083:22;;;;:7;:22;;;;;:63;39831:327;;39779:379;:::o;40170:159::-;40252:7;;:17;;40264:4;40252:11;:17::i;:::-;40242:7;:27;40297:10;;:20;;40312:4;40297:14;:20::i;:::-;40284:10;:33;-1:-1:-1;;40170:159:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:180::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;-1:-1:-1;1783:23:1;;1632:180;-1:-1:-1;1632:180:1:o;1817:247::-;1876:6;1929:2;1917:9;1908:7;1904:23;1900:32;1897:52;;;1945:1;1942;1935:12;1897:52;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2719:160::-;2784:20;;2840:13;;2833:21;2823:32;;2813:60;;2869:1;2866;2859:12;2813:60;2719:160;;;:::o;2884:248::-;2949:6;2957;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3062:9;3049:23;3039:33;;3091:35;3122:2;3111:9;3107:18;3091:35;:::i;:::-;3081:45;;2884:248;;;;;:::o;3345:315::-;3410:6;3418;3471:2;3459:9;3450:7;3446:23;3442:32;3439:52;;;3487:1;3484;3477:12;3439:52;3526:9;3513:23;3545:31;3570:5;3545:31;:::i;:::-;3595:5;-1:-1:-1;3619:35:1;3650:2;3635:18;;3619:35;:::i;3665:388::-;3733:6;3741;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3849:9;3836:23;3868:31;3893:5;3868:31;:::i;:::-;3918:5;-1:-1:-1;3975:2:1;3960:18;;3947:32;3988:33;3947:32;3988:33;:::i;:::-;4040:7;4030:17;;;3665:388;;;;;:::o;4058:180::-;4114:6;4167:2;4155:9;4146:7;4142:23;4138:32;4135:52;;;4183:1;4180;4173:12;4135:52;4206:26;4222:9;4206:26;:::i;4243:615::-;4329:6;4337;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4446:9;4433:23;4475:18;4516:2;4508:6;4505:14;4502:34;;;4532:1;4529;4522:12;4502:34;4570:6;4559:9;4555:22;4545:32;;4615:7;4608:4;4604:2;4600:13;4596:27;4586:55;;4637:1;4634;4627:12;4586:55;4677:2;4664:16;4703:2;4695:6;4692:14;4689:34;;;4719:1;4716;4709:12;4689:34;4772:7;4767:2;4757:6;4754:1;4750:14;4746:2;4742:23;4738:32;4735:45;4732:65;;;4793:1;4790;4783:12;4732:65;4824:2;4816:11;;;;;4846:6;;-1:-1:-1;4243:615:1;;-1:-1:-1;;;;4243:615:1:o;4863:380::-;4942:1;4938:12;;;;4985;;;5006:61;;5060:4;5052:6;5048:17;5038:27;;5006:61;5113:2;5105:6;5102:14;5082:18;5079:38;5076:161;;5159:10;5154:3;5150:20;5147:1;5140:31;5194:4;5191:1;5184:15;5222:4;5219:1;5212:15;5076:161;;4863:380;;;:::o;5248:356::-;5450:2;5432:21;;;5469:18;;;5462:30;5528:34;5523:2;5508:18;;5501:62;5595:2;5580:18;;5248:356::o;7901:127::-;7962:10;7957:3;7953:20;7950:1;7943:31;7993:4;7990:1;7983:15;8017:4;8014:1;8007:15;8033:127;8094:10;8089:3;8085:20;8082:1;8075:31;8125:4;8122:1;8115:15;8149:4;8146:1;8139:15;8165:128;8232:9;;;8253:11;;;8250:37;;;8267:18;;:::i;8298:127::-;8359:10;8354:3;8350:20;8347:1;8340:31;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8430:135;8469:3;8490:17;;;8487:43;;8510:18;;:::i;:::-;-1:-1:-1;8557:1:1;8546:13;;8430:135::o;11363:125::-;11428:9;;;11449:10;;;11446:36;;;11462:18;;:::i;11981:251::-;12051:6;12104:2;12092:9;12083:7;12079:23;12075:32;12072:52;;;12120:1;12117;12110:12;12072:52;12152:9;12146:16;12171:31;12196:5;12171:31;:::i;12237:980::-;12499:4;12547:3;12536:9;12532:19;12578:6;12567:9;12560:25;12604:2;12642:6;12637:2;12626:9;12622:18;12615:34;12685:3;12680:2;12669:9;12665:18;12658:31;12709:6;12744;12738:13;12775:6;12767;12760:22;12813:3;12802:9;12798:19;12791:26;;12852:2;12844:6;12840:15;12826:29;;12873:1;12883:195;12897:6;12894:1;12891:13;12883:195;;;12962:13;;-1:-1:-1;;;;;12958:39:1;12946:52;;13053:15;;;;13018:12;;;;12994:1;12912:9;12883:195;;;-1:-1:-1;;;;;;;13134:32:1;;;;13129:2;13114:18;;13107:60;-1:-1:-1;;;13198:3:1;13183:19;13176:35;13095:3;12237:980;-1:-1:-1;;;12237:980:1:o;13222:217::-;13262:1;13288;13278:132;;13332:10;13327:3;13323:20;13320:1;13313:31;13367:4;13364:1;13357:15;13395:4;13392:1;13385:15;13278:132;-1:-1:-1;13424:9:1;;13222:217::o;13444:168::-;13484:7;13550:1;13546;13542:6;13538:14;13535:1;13532:21;13527:1;13520:9;13513:17;13509:45;13506:71;;;13557:18;;:::i;:::-;-1:-1:-1;13597:9:1;;13444:168::o
Swarm Source
ipfs://7b006e07db097c58609f8e1dd73e0c3dea4785baf9c05efd9d37b6c55d07b502
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.