ERC-20
Overview
Max Total Supply
9,733.761106326407656729 OVLD
Holders
21
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
95.065253415015865827 OVLDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OVLD
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-17 */ // SPDX-License-Identifier: unlicensed /** *OVLD is designed to be sustainable, maximising its value by ever increasing token price, and it encourages users to be active by offering exceptional rewards *> 1% tax on every Transaction will be distributed to $OVLD holders *> 6% tax on every Transaction will be distributed to $OVLD LP providers *> 1% tax on every Transaction will be burned *> Max 1998 OVLD per Transaction *> 9999 Max Supply, 9599 Uniswap Liquidity, 400 Marketing * Website: Will come with the instalment of the second token * Telegram: https://t.me/OverloadFinance */ pragma solidity ^0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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; } } /** * @dev Collection of functions related to the address type */ 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); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { 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; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // pragma solidity >=0.5.0; 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; } // pragma solidity >=0.5.0; 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; } // pragma solidity >=0.6.2; 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); } // pragma solidity >=0.6.2; 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 OVLD is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; 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; address private _burnPool = 0x0000000000000000000000000000000000000000; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 9999 * 10**18; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _tBurnTotal; string private _name = "Overload Finance"; string private _symbol = "OVLD"; uint8 private _decimals = 18; //2% uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; //0% uint256 public _burnFee = 1; uint256 private _previousBurnFee = _burnFee; //Total 6% => 6% goes to liquidity providers and 0% are added to liquidity pool uint256 public _liquidityFee = 6; uint256 private _previousLiquidityFee = _liquidityFee; //means 100% from total collected liquidity(6% on every Transfer) will be used to rewarded liquidity providers uint256 public _lpRewardFromLiquidity = 100; //3% uint256 public _maxTxAmount = 1998 * 10**18; //tracks the total amount of token rewarded to liquidity providers uint256 public totalLiquidityProviderRewards; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool public BurnLpTokensEnabled = false; uint256 public TotalBurnedLpTokens; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 private minTokensBeforeSwap = 8; event RewardLiquidityProviders(uint256 tokenAmount); // event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; 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 isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function totalBurn() public view returns (uint256) { return _tBurnTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } 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 excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, '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 includeInReward(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 _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 from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { //calculate lp rewards uint256 lpRewardAmount = contractTokenBalance.mul(_lpRewardFromLiquidity).div(10**2); //distribute rewards _rewardLiquidityProviders(lpRewardAmount); //add liquidity swapAndLiquify(contractTokenBalance.sub(lpRewardAmount)); //burn lp tokens, hence locking the liquidity forever if(BurnLpTokensEnabled) burnLpTokens(); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function burnLpTokens() private { IUniswapV2Pair _token = IUniswapV2Pair(uniswapV2Pair); uint256 amount = _token.balanceOf(address(this)); TotalBurnedLpTokens = TotalBurnedLpTokens.add(amount); _token.transfer(_burnPool, amount); } function LpTokenBalance() public view returns (uint256) { IUniswapV2Pair token = IUniswapV2Pair(uniswapV2Pair); uint256 amount = token.balanceOf(address(this)); return amount; } function withDrawLpTokens() public onlyOwner { // IUniswapV2ERC20 token = IUniswapV2ERC20(_token); IUniswapV2Pair token = IUniswapV2Pair(uniswapV2Pair); uint256 amount = token.balanceOf(address(this)); require(amount > 0, "Not enough LP tokens available to withdraw"); token.transfer(owner(), amount); } // function withdrawTokens() public onlyOwner { // uint256 amount = balanceOf(address(this)); // require(amount > 0, "Not enough tokens available to withdraw"); // _tokenTransfer(address(this),owner(),amount,false); // } // function withdrawWETH() public onlyOwner { // IUniswapV2Pair token = IUniswapV2Pair(uniswapV2Pair); // uint256 amount = token.balanceOf(address(this)); // require(amount > 0, "Not enough liquidity available to remove and swap that for WETH"); // // approve token transfer to cover all possible scenarios // token.approve(address(uniswapV2Router), amount); // // add the liquidity // uniswapV2Router.removeLiquidity( // address(this), // uniswapV2Router.WETH(), // amount, // 0, // slippage is unavoidable // 0, // slippage is unavoidable // owner(), // block.timestamp // ); // } //this method is responsible for taking all fee, if takeFee is true 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 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getValues(tAmount); uint256 rBurn = tBurn.mul(currentRate); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, rBurn, tFee, tBurn); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private { _rTotal = _rTotal.sub(rFee).sub(rBurn); _tFeeTotal = _tFeeTotal.add(tFee); _tBurnTotal = _tBurnTotal.add(tBurn); _tTotal = _tTotal.sub(tBurn); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tBurn, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tBurn = calculateBurnFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn).sub(tLiquidity); return (tTransferAmount, tFee, tBurn, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rBurn = tBurn.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rLiquidity); 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 _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _rewardLiquidityProviders(uint256 liquidityRewards) private { // avoid fee calling _tokenTransfer with false _tokenTransfer(address(this), uniswapV2Pair, liquidityRewards,false); IUniswapV2Pair(uniswapV2Pair).sync(); totalLiquidityProviderRewards = totalLiquidityProviderRewards.add(liquidityRewards); emit RewardLiquidityProviders(liquidityRewards); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateBurnFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_burnFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _burnFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousBurnFee = _burnFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _burnFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _burnFee = _previousBurnFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setBurnFeePercent(uint256 burnFee) external onlyOwner() { _burnFee = burnFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setLpRewardFromLiquidityPercent(uint256 percent) external onlyOwner() { _lpRewardFromLiquidity = percent; } function setMaxTxPercent(uint256 maxTxPercent, uint256 maxTxDecimals) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**(uint256(maxTxDecimals) + 2) ); } function setBurnLpTokenEnabled(bool value) external onlyOwner() { BurnLpTokensEnabled = value; } // function setMinTokensBeforeSwapPercent(uint256 _minTokensBeforeSwapPercent, uint256 _minTokensBeforeSwapDecimal) public onlyOwner{ // minTokensBeforeSwap = _tTotal.mul(_minTokensBeforeSwapPercent).div( // 10**(uint256(_minTokensBeforeSwapDecimal) + 2) // ); // emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap); // } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"BurnLpTokensEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LpTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalBurnedLpTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lpRewardFromLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBurnFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setBurnLpTokenEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setLpRewardFromLiquidityPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"},{"internalType":"uint256","name":"maxTxDecimals","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"totalBurn","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":"totalLiquidityProviderRewards","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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withDrawLpTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069021e0c0013070adc0000600a55600a54600019816200006257fe5b0660001903600b556040518060400160405280601081526020017f4f7665726c6f61642046696e616e636500000000000000000000000000000000815250600e9080519060200190620000b792919062000662565b506040518060400160405280600481526020017f4f564c4400000000000000000000000000000000000000000000000000000000815250600f90805190602001906200010592919062000662565b506012601060006101000a81548160ff021916908360ff1602179055506001601155601154601255600160135560135460145560066015556015546016556064601755686c4fd1ee246e7800006018556000601a60006101000a81548160ff0219169083151502179055506000601c60016101000a81548160ff0219169083151502179055506008601d553480156200019d57600080fd5b506000620001b06200063160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600b5460036000620002656200063160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030357600080fd5b505afa15801562000318573d6000803e3d6000fd5b505050506040513d60208110156200032f57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a357600080fd5b505afa158015620003b8573d6000803e3d6000fd5b505050506040513d6020811015620003cf57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200044a57600080fd5b505af11580156200045f573d6000803e3d6000fd5b505050506040513d60208110156200047657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200050a6200063960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005c36200063160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a35062000708565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a557805160ff1916838001178555620006d6565b82800160010185558215620006d6579182015b82811115620006d5578251825591602001919060010190620006b8565b5b509050620006e59190620006e9565b5090565b5b8082111562000704576000816000905550600101620006ea565b5090565b60805160601c60a05160601c615bc76200076960003980611d75528061239c5280612b72528061384a5280613ce65280613d0f5280613ec852508061124752806148ae528061499a52806149c15280614acc5280614af35250615bc76000f3fe6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f000000000000000000000000000000000000000000000000000000000000000083600061407d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f0000000000000000000000000000000000000000000000000000000000000000905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000000000000000000000000000000000000000000000846133dd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ef93dc33d809f485a36b29b0e9d874eb6da6f313f78c68b41287875d3d86410f64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102975760003560e01c80636bc87c3a1161015a578063a9059cbb116100c1578063cea269581161007a578063cea2695814610dfa578063da12e6b814610e35578063dd46706414610e62578063dd62ed3e14610e9d578063ea2f0b3714610f22578063f2fde38b14610f735761029e565b8063a9059cbb14610cb4578063b6c5232414610d25578063c0b0fda214610d50578063c365c69014610d7b578063c49b9a8014610da6578063c802688314610de35761029e565b80638da5cb5b116101135780638da5cb5b14610af55780638ee88c5314610b3657806395d89b4114610b71578063a3b798db14610c01578063a457c2d714610c2c578063a69df4b514610c9d5761029e565b80636bc87c3a1461099157806370a08231146109bc578063715018a614610a2157806376a8477514610a385780637d1db4a514610a6357806388f8202014610a8e5761029e565b80633b124fe7116101fe5780634549b039116101b75780634549b039146107e557806349bd5a5e146108405780634a74bb02146108815780634d430154146108ae57806352390c02146108d95780635342acb41461092a5761029e565b80633b124fe7146106835780633bd5d173146106ae5780633c9f861d146106e95780633f3cf56c1461071457806342b3ff1b14610759578063437823ec146107945761029e565b806318160ddd1161025057806318160ddd1461048857806323b872dd146104b35780632d83811914610544578063313ce567146105935780633685d419146105c157806339509351146106125761029e565b806303c72c6b146102a3578063061c82d0146102e057806306fdde031461031b578063095ea7b3146103ab57806313114a9d1461041c5780631694505e146104475761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102de600480360360208110156102c657600080fd5b81019080803515159060200190929190505050610fc4565b005b3480156102ec57600080fd5b506103196004803603602081101561030357600080fd5b81019080803590602001909291905050506110a9565b005b34801561032757600080fd5b5061033061117b565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610370578082015181840152602081019050610355565b50505050905090810190601f16801561039d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b757600080fd5b50610404600480360360408110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061121d565b60405180821515815260200191505060405180910390f35b34801561042857600080fd5b5061043161123b565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c611245565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561049457600080fd5b5061049d611269565b6040518082815260200191505060405180910390f35b3480156104bf57600080fd5b5061052c600480360360608110156104d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611273565b60405180821515815260200191505060405180910390f35b34801561055057600080fd5b5061057d6004803603602081101561056757600080fd5b810190808035906020019092919050505061134c565b6040518082815260200191505060405180910390f35b34801561059f57600080fd5b506105a86113d0565b604051808260ff16815260200191505060405180910390f35b3480156105cd57600080fd5b50610610600480360360208110156105e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113e7565b005b34801561061e57600080fd5b5061066b6004803603604081101561063557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611771565b60405180821515815260200191505060405180910390f35b34801561068f57600080fd5b50610698611824565b6040518082815260200191505060405180910390f35b3480156106ba57600080fd5b506106e7600480360360208110156106d157600080fd5b810190808035906020019092919050505061182a565b005b3480156106f557600080fd5b506106fe6119bc565b6040518082815260200191505060405180910390f35b34801561072057600080fd5b506107576004803603604081101561073757600080fd5b8101908080359060200190929190803590602001909291905050506119c6565b005b34801561076557600080fd5b506107926004803603602081101561077c57600080fd5b8101908080359060200190929190505050611ac5565b005b3480156107a057600080fd5b506107e3600480360360208110156107b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b97565b005b3480156107f157600080fd5b5061082a6004803603604081101561080857600080fd5b8101908080359060200190929190803515159060200190929190505050611cba565b6040518082815260200191505060405180910390f35b34801561084c57600080fd5b50610855611d73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088d57600080fd5b50610896611d97565b60405180821515815260200191505060405180910390f35b3480156108ba57600080fd5b506108c3611daa565b6040518082815260200191505060405180910390f35b3480156108e557600080fd5b50610928600480360360208110156108fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db0565b005b34801561093657600080fd5b506109796004803603602081101561094d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120ca565b60405180821515815260200191505060405180910390f35b34801561099d57600080fd5b506109a6612120565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b50610a0b600480360360208110156109df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612126565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a36612211565b005b348015610a4457600080fd5b50610a4d612397565b6040518082815260200191505060405180910390f35b348015610a6f57600080fd5b50610a7861246b565b6040518082815260200191505060405180910390f35b348015610a9a57600080fd5b50610add60048036036020811015610ab157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612471565b60405180821515815260200191505060405180910390f35b348015610b0157600080fd5b50610b0a6124c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b4257600080fd5b50610b6f60048036036020811015610b5957600080fd5b81019080803590602001909291905050506124f0565b005b348015610b7d57600080fd5b50610b866125c2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bc6578082015181840152602081019050610bab565b50505050905090810190601f168015610bf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c0d57600080fd5b50610c16612664565b6040518082815260200191505060405180910390f35b348015610c3857600080fd5b50610c8560048036036040811015610c4f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061266a565b60405180821515815260200191505060405180910390f35b348015610ca957600080fd5b50610cb2612737565b005b348015610cc057600080fd5b50610d0d60048036036040811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612954565b60405180821515815260200191505060405180910390f35b348015610d3157600080fd5b50610d3a612972565b6040518082815260200191505060405180910390f35b348015610d5c57600080fd5b50610d6561297c565b6040518082815260200191505060405180910390f35b348015610d8757600080fd5b50610d90612982565b6040518082815260200191505060405180910390f35b348015610db257600080fd5b50610de160048036036020811015610dc957600080fd5b81019080803515159060200190929190505050612988565b005b348015610def57600080fd5b50610df8612aa6565b005b348015610e0657600080fd5b50610e3360048036036020811015610e1d57600080fd5b8101908080359060200190929190505050612d4a565b005b348015610e4157600080fd5b50610e4a612e1c565b60405180821515815260200191505060405180910390f35b348015610e6e57600080fd5b50610e9b60048036036020811015610e8557600080fd5b8101908080359060200190929190505050612e2f565b005b348015610ea957600080fd5b50610f0c60048036036040811015610ec057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613020565b6040518082815260200191505060405180910390f35b348015610f2e57600080fd5b50610f7160048036036020811015610f4557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130a7565b005b348015610f7f57600080fd5b50610fc260048036036020811015610f9657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131ca565b005b610fcc6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601a60006101000a81548160ff02191690831515021790555050565b6110b16133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060118190555050565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112135780601f106111e857610100808354040283529160200191611213565b820191906000526020600020905b8154815290600101906020018083116111f657829003601f168201915b5050505050905090565b600061123161122a6133d5565b84846133dd565b6001905092915050565b6000600c54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600a54905090565b60006112808484846135d4565b6113418461128c6133d5565b61133c85604051806060016040528060288152602001615a8460289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112f26133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b600190509392505050565b6000600b548211156113a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061599f602a913960400191505060405180910390fd5b60006113b3613aab565b90506113c88184613ad690919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b6113ef6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561176d578173ffffffffffffffffffffffffffffffffffffffff16600882815481106115a257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611760576008600160088054905003815481106115fe57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061163657fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061172657fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561176d565b8080600101915050611571565b5050565b600061181a61177e6133d5565b84611815856005600061178f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b6133dd565b6001905092915050565b60115481565b60006118346133d5565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b1e602c913960400191505060405180910390fd5b60006118e483613ba8565b505050505050905061193e81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061199681600b54613c1090919063ffffffff16565b600b819055506119b183600c54613b2090919063ffffffff16565b600c81905550505050565b6000600d54905090565b6119ce6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a8e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611abb60028201600a0a611aad84600a54613c5a90919063ffffffff16565b613ad690919063ffffffff16565b6018819055505050565b611acd6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060178190555050565b611b9f6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a54831115611d34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611d55576000611d4484613ba8565b505050505050905080915050611d6d565b6000611d6084613ba8565b5050505050915050809150505b92915050565b7f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd81565b601c60019054906101000a900460ff1681565b60175481565b611db86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561200c57611fc8600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121c157600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061220c565b612209600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461134c565b90505b919050565b6122196133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000807f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561242657600080fd5b505afa15801561243a573d6000803e3d6000fd5b505050506040513d602081101561245057600080fd5b81019080805190602001909291905050509050809250505090565b60185481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6124f86133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060158190555050565b6060600f8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561265a5780601f1061262f5761010080835404028352916020019161265a565b820191906000526020600020905b81548152906001019060200180831161263d57829003601f168201915b5050505050905090565b601b5481565b600061272d6126776133d5565b8461272885604051806060016040528060258152602001615b6d60259139600560006126a16133d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139eb9092919063ffffffff16565b6133dd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615b4a6023913960400191505060405180910390fd5b6002544211612854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006129686129616133d5565b84846135d4565b6001905092915050565b6000600254905090565b60135481565b60195481565b6129906133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601c60016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612aae6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bfc57600080fd5b505afa158015612c10573d6000803e3d6000fd5b505050506040513d6020811015612c2657600080fd5b8101908080519060200190929190505050905060008111612c92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615a11602a913960400191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612cb66124c7565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d0a57600080fd5b505af1158015612d1e573d6000803e3d6000fd5b505050506040513d6020811015612d3457600080fd5b8101908080519060200190929190505050505050565b612d526133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b601a60009054906101000a900460ff1681565b612e376133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6130af6133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461316f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6131d26133d5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806159c96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613463576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615afa6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159ef6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561365a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615ad56025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061597c6023913960400191505060405180910390fd5b60008111613739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615aac6029913960400191505060405180910390fd5b6137416124c7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137af575061377f6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156138105760185481111561380f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615a3b6028913960400191505060405180910390fd5b5b600061381b30612126565b90506000601d5482101590508080156138415750601c60009054906101000a900460ff16155b801561389957507f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156138b15750601c60019054906101000a900460ff165b156139265760006138e060646138d260175486613c5a90919063ffffffff16565b613ad690919063ffffffff16565b90506138eb81613ce0565b6139066139018285613c1090919063ffffffff16565b613de2565b601a60009054906101000a900460ff161561392457613923613ec4565b5b505b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806139cd5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d757600090505b6139e38686868461407d565b505050505050565b6000838311158290613a98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a5d578082015181840152602081019050613a42565b50505050905090810190601f168015613a8a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613ab861438e565b91509150613acf8183613ad690919063ffffffff16565b9250505090565b6000613b1883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061461f565b905092915050565b600080828401905083811015613b9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000806000613bc28c6146e5565b93509350935093506000806000613be38f878787613bde613aab565b614764565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b6000613c5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506139eb565b905092915050565b600080831415613c6d5760009050613cda565b6000828402905082848281613c7e57fe5b0414613cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615a636021913960400191505060405180910390fd5b809150505b92915050565b613d0d307f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd83600061407d565b7f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613d7557600080fd5b505af1158015613d89573d6000803e3d6000fd5b50505050613da281601954613b2090919063ffffffff16565b6019819055507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6001601c60006101000a81548160ff0219169083151502179055506000613e13600283613ad690919063ffffffff16565b90506000613e2a8284613c1090919063ffffffff16565b90506000479050613e3a83614818565b6000613e4f8247613c1090919063ffffffff16565b9050613e5b8382614ac6565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601c60006101000a81548160ff02191690831515021790555050565b60007f000000000000000000000000d81e2396f21145b12f2dcaf4d16cfe34a714a6bd905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f5257600080fd5b505afa158015613f66573d6000803e3d6000fd5b505050506040513d6020811015613f7c57600080fd5b81019080805190602001909291905050509050613fa481601b54613b2090919063ffffffff16565b601b819055508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561403d57600080fd5b505af1158015614051573d6000803e3d6000fd5b505050506040513d602081101561406757600080fd5b8101908080519060200190929190505050505050565b8061408b5761408a614c10565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561412e5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156141435761413e848484614c72565b61437a565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156141e65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156141fb576141f6848484614efe565b614379565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561429f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156142b4576142af84848461518a565b614378565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143565750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561436b57614366848484615381565b614377565b61437684848461518a565b5b5b5b5b80614388576143876156a2565b5b50505050565b6000806000600b5490506000600a54905060005b6008805490508110156145e2578260036000600884815481106143c157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806144a8575081600460006008848154811061444057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156144bf57600b54600a549450945050505061461b565b61454860036000600884815481106144d357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613c1090919063ffffffff16565b92506145d3600460006008848154811061455e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613c1090919063ffffffff16565b915080806001019150506143a2565b506145fa600a54600b54613ad690919063ffffffff16565b82101561461257600b54600a5493509350505061461b565b81819350935050505b9091565b600080831182906146cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614690578082015181840152602081019050614675565b50505050905090810190601f1680156146bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146d757fe5b049050809150509392505050565b60008060008060006146f6866156bf565b90506000614703876156f0565b9050600061471088615721565b9050600061474b8261473d8561472f888e613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b9050808484849750975097509750505050509193509193565b60008060008061477d858a613c5a90919063ffffffff16565b90506000614794868a613c5a90919063ffffffff16565b905060006147ab878a613c5a90919063ffffffff16565b905060006147c2888a613c5a90919063ffffffff16565b905060006147fd826147ef856147e1888a613c1090919063ffffffff16565b613c1090919063ffffffff16565b613c1090919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6060600267ffffffffffffffff8111801561483257600080fd5b506040519080825280602002602001820160405280156148615781602001602082028036833780820191505090505b509050308160008151811061487257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561491257600080fd5b505afa158015614926573d6000803e3d6000fd5b505050506040513d602081101561493c57600080fd5b81019080805190602001909291905050508160018151811061495a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506149bf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015614a81578082015181840152602081019050614a66565b505050509050019650505050505050600060405180830381600087803b158015614aaa57600080fd5b505af1158015614abe573d6000803e3d6000fd5b505050505050565b614af1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846133dd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614bb957600080fd5b505af1158015614bcd573d6000803e3d6000fd5b50505050506040513d6060811015614be457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614c2457506000601354145b8015614c3257506000601554145b15614c3c57614c70565b6011546012819055506013546014819055506015546016819055506000601181905550600060138190555060006015819055505b565b6000614c7c613aab565b90506000806000806000806000614c9289613ba8565b96509650965096509650965096506000614cb58984613c5a90919063ffffffff16565b9050614d098a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d9e88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e3387600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e7f82615752565b614e8b868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000614f08613aab565b90506000806000806000806000614f1e89613ba8565b96509650965096509650965096506000614f418984613c5a90919063ffffffff16565b9050614f9588600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061502a85600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150bf87600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061510b82615752565b615117868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b6000615194613aab565b905060008060008060008060006151aa89613ba8565b965096509650965096509650965060006151cd8984613c5a90919063ffffffff16565b905061522188600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506152b687600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061530282615752565b61530e868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b600061538b613aab565b905060008060008060008060006153a189613ba8565b965096509650965096509650965060006153c48984613c5a90919063ffffffff16565b90506154188a600460008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154ad88600360008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c1090919063ffffffff16565b600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061554285600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155d787600360008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061562382615752565b61562f868286866158f7565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040518082815260200191505060405180910390a3505050505050505050505050565b601254601181905550601454601381905550601654601581905550565b60006156e960646156db60115485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061571a606461570c60135485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061574b606461573d60155485613c5a90919063ffffffff16565b613ad690919063ffffffff16565b9050919050565b600061575c613aab565b905060006157738284613c5a90919063ffffffff16565b90506157c781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156158f2576158ae83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b2090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61591e8361591086600b54613c1090919063ffffffff16565b613c1090919063ffffffff16565b600b8190555061593982600c54613b2090919063ffffffff16565b600c8190555061595481600d54613b2090919063ffffffff16565b600d8190555061596f81600a54613c1090919063ffffffff16565b600a819055505050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734e6f7420656e6f756768204c5020746f6b656e7320617661696c61626c6520746f2077697468647261775472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ef93dc33d809f485a36b29b0e9d874eb6da6f313f78c68b41287875d3d86410f64736f6c634300060c0033
Deployed Bytecode Sourcemap
26326:23623:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49180:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48460:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29455:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30367:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31488:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27963:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29732:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30536:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32515:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29641:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33231:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30857:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27213:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31683:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31587:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48956:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48818:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48215:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32069:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28021:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28193:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27712:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32776:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48080:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27491:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29835:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16921:148;;;;;;;;;;;;;:::i;:::-;;38444:219;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27778:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31360:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16278:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48684:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29546:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28118:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31083:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17931:293;;;;;;;;;;;;;:::i;:::-;;30041:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17476:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27310:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27906:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49677:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38671:373;;;;;;;;;;;;;:::i;:::-;;48570:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28072:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17641:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30216:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48338:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17224:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49180:110;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49277:5:::1;49255:19;;:27;;;;;;;;;;;;;;;;;;49180:110:::0;:::o;48460:98::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48544:6:::1;48534:7;:16;;;;48460:98:::0;:::o;29455:83::-;29492:13;29525:5;29518:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29455:83;:::o;30367:161::-;30442:4;30459:39;30468:12;:10;:12::i;:::-;30482:7;30491:6;30459:8;:39::i;:::-;30516:4;30509:11;;30367:161;;;;:::o;31488:87::-;31530:7;31557:10;;31550:17;;31488:87;:::o;27963:51::-;;;:::o;29732:95::-;29785:7;29812;;29805:14;;29732:95;:::o;30536:313::-;30634:4;30651:36;30661:6;30669:9;30680:6;30651:9;:36::i;:::-;30698:121;30707:6;30715:12;:10;:12::i;:::-;30729:89;30767:6;30729:89;;;;;;;;;;;;;;;;;:11;:19;30741:6;30729:19;;;;;;;;;;;;;;;:33;30749:12;:10;:12::i;:::-;30729:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30698:8;:121::i;:::-;30837:4;30830:11;;30536:313;;;;;:::o;32515:253::-;32581:7;32620;;32609;:18;;32601:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32685:19;32708:10;:8;:10::i;:::-;32685:33;;32736:24;32748:11;32736:7;:11;;:24;;;;:::i;:::-;32729:31;;;32515:253;;;:::o;29641:83::-;29682:5;29707:9;;;;;;;;;;;29700:16;;29641:83;:::o;33231:479::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33313:11:::1;:20;33325:7;33313:20;;;;;;;;;;;;;;;;;;;;;;;;;33305:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33381:9;33376:327;33400:9;:16;;;;33396:1;:20;33376:327;;;33458:7;33442:23;;:9;33452:1;33442:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;33438:254;;;33501:9;33530:1;33511:9;:16;;;;:20;33501:31;;;;;;;;;;;;;;;;;;;;;;;;;33486:9;33496:1;33486:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33570:1;33551:7;:16;33559:7;33551:16;;;;;;;;;;;;;;;:20;;;;33613:5;33590:11;:20;33602:7;33590:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;33637:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33671:5;;33438:254;33418:3;;;;;;;33376:327;;;;33231:479:::0;:::o;30857:218::-;30945:4;30962:83;30971:12;:10;:12::i;:::-;30985:7;30994:50;31033:10;30994:11;:25;31006:12;:10;:12::i;:::-;30994:25;;;;;;;;;;;;;;;:34;31020:7;30994:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30962:8;:83::i;:::-;31063:4;31056:11;;30857:218;;;;:::o;27213:26::-;;;;:::o;31683:378::-;31735:14;31752:12;:10;:12::i;:::-;31735:29;;31784:11;:19;31796:6;31784:19;;;;;;;;;;;;;;;;;;;;;;;;;31783:20;31775:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31864:15;31889:19;31900:7;31889:10;:19::i;:::-;31863:45;;;;;;;;31937:28;31957:7;31937;:15;31945:6;31937:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31919:7;:15;31927:6;31919:15;;;;;;;;;;;;;;;:46;;;;31986:20;31998:7;31986;;:11;;:20;;;;:::i;:::-;31976:7;:30;;;;32030:23;32045:7;32030:10;;:14;;:23;;;;:::i;:::-;32017:10;:36;;;;31683:378;;;:::o;31587:88::-;31629:7;31656:11;;31649:18;;31587:88;:::o;48956:212::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49073:87:::1;49147:1;49130:13;49122:26;49117:2;:32;49073:25;49085:12;49073:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;49058:12;:102;;;;48956:212:::0;;:::o;48818:130::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48933:7:::1;48908:22;:32;;;;48818:130:::0;:::o;48215:111::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48314:4:::1;48284:18;:27;48303:7;48284:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;48215:111:::0;:::o;32069:438::-;32159:7;32198;;32187;:18;;32179:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32257:17;32252:248;;32292:15;32317:19;32328:7;32317:10;:19::i;:::-;32291:45;;;;;;;;32358:7;32351:14;;;;;32252:248;32400:23;32432:19;32443:7;32432:10;:19::i;:::-;32398:53;;;;;;;;32473:15;32466:22;;;32069:438;;;;;:::o;28021:38::-;;;:::o;28193:41::-;;;;;;;;;;;;;:::o;27712:43::-;;;;:::o;32776:447::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32973:11:::1;:20;32985:7;32973:20;;;;;;;;;;;;;;;;;;;;;;;;;32972:21;32964:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33058:1;33039:7;:16;33047:7;33039:16;;;;;;;;;;;;;;;;:20;33036:108;;;33095:37;33115:7;:16;33123:7;33115:16;;;;;;;;;;;;;;;;33095:19;:37::i;:::-;33076:7;:16;33084:7;33076:16;;;;;;;;;;;;;;;:56;;;;33036:108;33177:4;33154:11;:20;33166:7;33154:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;33192:9;33207:7;33192:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32776:447:::0;:::o;48080:123::-;48144:4;48168:18;:27;48187:7;48168:27;;;;;;;;;;;;;;;;;;;;;;;;;48161:34;;48080:123;;;:::o;27491:32::-;;;;:::o;29835:198::-;29901:7;29925:11;:20;29937:7;29925:20;;;;;;;;;;;;;;;;;;;;;;;;;29921:49;;;29954:7;:16;29962:7;29954:16;;;;;;;;;;;;;;;;29947:23;;;;29921:49;29988:37;30008:7;:16;30016:7;30008:16;;;;;;;;;;;;;;;;29988:19;:37::i;:::-;29981:44;;29835:198;;;;:::o;16921:148::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17028:1:::1;16991:40;;17012:6;::::0;::::1;;;;;;;;16991:40;;;;;;;;;;;;17059:1;17042:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16921:148::o:0;38444:219::-;38491:7;38511:20;38549:13;38511:52;;38574:14;38591:5;:15;;;38615:4;38591:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38574:47;;38649:6;38642:13;;;;38444:219;:::o;27778:43::-;;;;:::o;31360:120::-;31428:4;31452:11;:20;31464:7;31452:20;;;;;;;;;;;;;;;;;;;;;;;;;31445:27;;31360:120;;;:::o;16278:79::-;16316:7;16343:6;;;;;;;;;;;16336:13;;16278:79;:::o;48684:122::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48786:12:::1;48770:13;:28;;;;48684:122:::0;:::o;29546:87::-;29585:13;29618:7;29611:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29546:87;:::o;28118:34::-;;;;:::o;31083:269::-;31176:4;31193:129;31202:12;:10;:12::i;:::-;31216:7;31225:96;31264:15;31225:96;;;;;;;;;;;;;;;;;:11;:25;31237:12;:10;:12::i;:::-;31225:25;;;;;;;;;;;;;;;:34;31251:7;31225:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31193:8;:129::i;:::-;31340:4;31333:11;;31083:269;;;;:::o;17931:293::-;18001:10;17983:28;;:14;;;;;;;;;;;:28;;;17975:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18076:9;;18070:3;:15;18062:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18167:14;;;;;;;;;;;18138:44;;18159:6;;;;;;;;;;18138:44;;;;;;;;;;;;18202:14;;;;;;;;;;;18193:6;;:23;;;;;;;;;;;;;;;;;;17931:293::o;30041:167::-;30119:4;30136:42;30146:12;:10;:12::i;:::-;30160:9;30171:6;30136:9;:42::i;:::-;30196:4;30189:11;;30041:167;;;;:::o;17476:89::-;17521:7;17548:9;;17541:16;;17476:89;:::o;27310:27::-;;;;:::o;27906:44::-;;;;:::o;49677:171::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49778:8:::1;49754:21;;:32;;;;;;;;;;;;;;;;;;49802:38;49831:8;49802:38;;;;;;;;;;;;;;;;;;;;49677:171:::0;:::o;38671:373::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38788:20:::1;38826:13;38788:52;;38851:14;38868:5;:15;;;38892:4;38868:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;38851:47;;38936:1;38927:6;:10;38919:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39005:5;:14;;;39020:7;:5;:7::i;:::-;39029:6;39005:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;16560:1;;38671:373::o:0;48570:102::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48657:7:::1;48646:8;:18;;;;48570:102:::0;:::o;28072:39::-;;;;;;;;;;;;;:::o;17641:214::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17722:6:::1;::::0;::::1;;;;;;;;17705:14;;:23;;;;;;;;;;;;;;;;;;17756:1;17739:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17787:4;17781:3;:10;17769:9;:22;;;;17844:1;17807:40;;17828:6;::::0;::::1;;;;;;;;17807:40;;;;;;;;;;;;17641:214:::0;:::o;30216:143::-;30297:7;30324:11;:18;30336:5;30324:18;;;;;;;;;;;;;;;:27;30343:7;30324:27;;;;;;;;;;;;;;;;30317:34;;30216:143;;;;:::o;48338:110::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48435:5:::1;48405:18;:27;48424:7;48405:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;48338:110:::0;:::o;17224:244::-;16500:12;:10;:12::i;:::-;16490:22;;:6;;;;;;;;;;:22;;;16482:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17333:1:::1;17313:22;;:8;:22;;;;17305:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17423:8;17394:38;;17415:6;::::0;::::1;;;;;;;;17394:38;;;;;;;;;;;;17452:8;17443:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;17224:244:::0;:::o;669:106::-;722:15;757:10;750:17;;669:106;:::o;33718:337::-;33828:1;33811:19;;:5;:19;;;;33803:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33909:1;33890:21;;:7;:21;;;;33882:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33993:6;33963:11;:18;33975:5;33963:18;;;;;;;;;;;;;;;:27;33982:7;33963:27;;;;;;;;;;;;;;;:36;;;;34031:7;34015:32;;34024:5;34015:32;;;34040:6;34015:32;;;;;;;;;;;;;;;;;;33718:337;;;:::o;34063:1976::-;34201:1;34185:18;;:4;:18;;;;34177:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34278:1;34264:16;;:2;:16;;;;34256:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34348:1;34339:6;:10;34331:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34417:7;:5;:7::i;:::-;34409:15;;:4;:15;;;;:32;;;;;34434:7;:5;:7::i;:::-;34428:13;;:2;:13;;;;34409:32;34406:125;;;34474:12;;34464:6;:22;;34456:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34406:125;34826:28;34857:24;34875:4;34857:9;:24::i;:::-;34826:55;;34892:24;34943:19;;34919:20;:43;;34892:70;;34991:19;:53;;;;;35028:16;;;;;;;;;;;35027:17;34991:53;:91;;;;;35069:13;35061:21;;:4;:21;;;;34991:91;:129;;;;;35099:21;;;;;;;;;;;34991:129;34973:633;;;35183:22;35208:59;35261:5;35208:48;35233:22;;35208:20;:24;;:48;;;;:::i;:::-;:52;;:59;;;;:::i;:::-;35183:84;;35316:41;35342:14;35316:25;:41::i;:::-;35401:56;35416:40;35441:14;35416:20;:24;;:40;;;;:::i;:::-;35401:14;:56::i;:::-;35542:19;;;;;;;;;;;35539:55;;;35580:14;:12;:14::i;:::-;35539:55;34973:633;;35687:12;35702:4;35687:19;;35814:18;:24;35833:4;35814:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;35842:18;:22;35861:2;35842:22;;;;;;;;;;;;;;;;;;;;;;;;;35814:50;35811:96;;;35890:5;35880:15;;35811:96;35993:38;36008:4;36013:2;36016:6;36023:7;35993:14;:38::i;:::-;34063:1976;;;;;;:::o;5485:192::-;5571:7;5604:1;5599;:6;;5607:12;5591:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5631:9;5647:1;5643;:5;5631:17;;5668:1;5661:8;;;5485:192;;;;;:::o;45519:163::-;45560:7;45581:15;45598;45617:19;:17;:19::i;:::-;45580:56;;;;45654:20;45666:7;45654;:11;;:20;;;;:::i;:::-;45647:27;;;;45519:163;:::o;6883:132::-;6941:7;6968:39;6972:1;6975;6968:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6961:46;;6883:132;;;;:::o;4582:181::-;4640:7;4660:9;4676:1;4672;:5;4660:17;;4701:1;4696;:6;;4688:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4754:1;4747:8;;;4582:181;;;;:::o;44125:457::-;44184:7;44193;44202;44211;44220;44229;44238;44259:23;44284:12;44298:13;44313:18;44335:20;44347:7;44335:11;:20::i;:::-;44258:97;;;;;;;;44367:15;44384:23;44409:12;44425:57;44437:7;44446:4;44452:5;44459:10;44471;:8;:10::i;:::-;44425:11;:57::i;:::-;44366:116;;;;;;44501:7;44510:15;44527:4;44533:15;44550:4;44556:5;44563:10;44493:81;;;;;;;;;;;;;;;;;;;;;44125:457;;;;;;;;;:::o;5046:136::-;5104:7;5131:43;5135:1;5138;5131:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5124:50;;5046:136;;;;:::o;5936:471::-;5994:7;6244:1;6239;:6;6235:47;;;6269:1;6262:8;;;;6235:47;6294:9;6310:1;6306;:5;6294:17;;6339:1;6334;6330;:5;;;;;;:10;6322:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6398:1;6391:8;;;5936:471;;;;;:::o;46630:411::-;46766:68;46789:4;46796:13;46811:16;46828:5;46766:14;:68::i;:::-;46860:13;46845:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46924:51;46958:16;46924:29;;:33;;:51;;;;:::i;:::-;46892:29;:83;;;;46991:42;47016:16;46991:42;;;;;;;;;;;;;;;;;;46630:411;:::o;36047:985::-;28667:4;28648:16;;:23;;;;;;;;;;;;;;;;;;36183:12:::1;36198:27;36223:1;36198:20;:24;;:27;;;;:::i;:::-;36183:42;;36236:17;36256:30;36281:4;36256:20;:24;;:30;;;;:::i;:::-;36236:50;;36564:22;36589:21;36564:46;;36655:22;36672:4;36655:16;:22::i;:::-;36808:18;36829:41;36855:14;36829:21;:25;;:41;;;;:::i;:::-;36808:62;;36920:35;36933:9;36944:10;36920:12;:35::i;:::-;36981:43;36996:4;37002:10;37014:9;36981:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28682:1;;;;28713:5:::0;28694:16;;:24;;;;;;;;;;;;;;;;;;36047:985;:::o;38164:272::-;38207:21;38246:13;38207:53;;38271:14;38288:6;:16;;;38313:4;38288:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38271:48;;38352:31;38376:6;38352:19;;:23;;:31;;;;:::i;:::-;38330:19;:53;;;;38394:6;:15;;;38410:9;;;;;;;;;;;38421:6;38394:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38164:272;;:::o;40181:834::-;40292:7;40288:40;;40314:14;:12;:14::i;:::-;40288:40;40353:11;:19;40365:6;40353:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;40377:11;:22;40389:9;40377:22;;;;;;;;;;;;;;;;;;;;;;;;;40376:23;40353:46;40349:597;;;40416:48;40438:6;40446:9;40457:6;40416:21;:48::i;:::-;40349:597;;;40487:11;:19;40499:6;40487:19;;;;;;;;;;;;;;;;;;;;;;;;;40486:20;:46;;;;;40510:11;:22;40522:9;40510:22;;;;;;;;;;;;;;;;;;;;;;;;;40486:46;40482:464;;;40549:46;40569:6;40577:9;40588:6;40549:19;:46::i;:::-;40482:464;;;40618:11;:19;40630:6;40618:19;;;;;;;;;;;;;;;;;;;;;;;;;40617:20;:47;;;;;40642:11;:22;40654:9;40642:22;;;;;;;;;;;;;;;;;;;;;;;;;40641:23;40617:47;40613:333;;;40681:44;40699:6;40707:9;40718:6;40681:17;:44::i;:::-;40613:333;;;40747:11;:19;40759:6;40747:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;40770:11;:22;40782:9;40770:22;;;;;;;;;;;;;;;;;;;;;;;;;40747:45;40743:203;;;40809:48;40831:6;40839:9;40850:6;40809:21;:48::i;:::-;40743:203;;;40890:44;40908:6;40916:9;40927:6;40890:17;:44::i;:::-;40743:203;40613:333;40482:464;40349:597;40970:7;40966:41;;40992:15;:13;:15::i;:::-;40966:41;40181:834;;;;:::o;45690:561::-;45740:7;45749;45769:15;45787:7;;45769:25;;45805:15;45823:7;;45805:25;;45852:9;45847:289;45871:9;:16;;;;45867:1;:20;45847:289;;;45937:7;45913;:21;45921:9;45931:1;45921:12;;;;;;;;;;;;;;;;;;;;;;;;;45913:21;;;;;;;;;;;;;;;;:31;:66;;;;45972:7;45948;:21;45956:9;45966:1;45956:12;;;;;;;;;;;;;;;;;;;;;;;;;45948:21;;;;;;;;;;;;;;;;:31;45913:66;45909:97;;;45989:7;;45998;;45981:25;;;;;;;;;45909:97;46031:34;46043:7;:21;46051:9;46061:1;46051:12;;;;;;;;;;;;;;;;;;;;;;;;;46043:21;;;;;;;;;;;;;;;;46031:7;:11;;:34;;;;:::i;:::-;46021:44;;46090:34;46102:7;:21;46110:9;46120:1;46110:12;;;;;;;;;;;;;;;;;;;;;;;;;46102:21;;;;;;;;;;;;;;;;46090:7;:11;;:34;;;;:::i;:::-;46080:44;;45889:3;;;;;;;45847:289;;;;46160:20;46172:7;;46160;;:11;;:20;;;;:::i;:::-;46150:7;:30;46146:61;;;46190:7;;46199;;46182:25;;;;;;;;46146:61;46226:7;46235;46218:25;;;;;;45690:561;;;:::o;7511:278::-;7597:7;7629:1;7625;:5;7632:12;7617:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7656:9;7672:1;7668;:5;;;;;;7656:17;;7780:1;7773:8;;;7511:278;;;;;:::o;44590:409::-;44650:7;44659;44668;44677;44697:12;44712:24;44728:7;44712:15;:24::i;:::-;44697:39;;44747:13;44763:25;44780:7;44763:16;:25::i;:::-;44747:41;;44799:18;44820:30;44842:7;44820:21;:30::i;:::-;44799:51;;44861:23;44887:44;44920:10;44887:28;44909:5;44887:17;44899:4;44887:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;44861:70;;44950:15;44967:4;44973:5;44980:10;44942:49;;;;;;;;;;;;44590:409;;;;;:::o;45007:504::-;45137:7;45146;45155;45175:15;45193:24;45205:11;45193:7;:11;;:24;;;;:::i;:::-;45175:42;;45228:12;45243:21;45252:11;45243:4;:8;;:21;;;;:::i;:::-;45228:36;;45275:13;45291:22;45301:11;45291:5;:9;;:22;;;;:::i;:::-;45275:38;;45324:18;45345:27;45360:11;45345:10;:14;;:27;;;;:::i;:::-;45324:48;;45383:23;45409:44;45442:10;45409:28;45431:5;45409:17;45421:4;45409:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:44;;;;:::i;:::-;45383:70;;45472:7;45481:15;45498:4;45464:39;;;;;;;;;;;45007:504;;;;;;;;;:::o;37040:589::-;37166:21;37204:1;37190:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37166:40;;37235:4;37217;37222:1;37217:7;;;;;;;;;;;;;:23;;;;;;;;;;;37261:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37251:4;37256:1;37251:7;;;;;;;;;;;;;:32;;;;;;;;;;;37296:62;37313:4;37328:15;37346:11;37296:8;:62::i;:::-;37397:15;:66;;;37478:11;37504:1;37548:4;37575;37595:15;37397:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37040:589;;:::o;37637:519::-;37785:62;37802:4;37817:15;37835:11;37785:8;:62::i;:::-;37890:15;:31;;;37929:9;37962:4;37982:11;38008:1;38051;38102:4;38122:15;37890:258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37637:519;;:::o;47565:328::-;47622:1;47611:7;;:12;:29;;;;;47639:1;47627:8;;:13;47611:29;:51;;;;;47661:1;47644:13;;:18;47611:51;47608:63;;;47664:7;;47608:63;47709:7;;47691:15;:25;;;;47746:8;;47727:16;:27;;;;47789:13;;47765:21;:37;;;;47833:1;47823:7;:11;;;;47856:1;47845:8;:12;;;;47884:1;47868:13;:17;;;;47565:328;:::o;42373:689::-;42475:19;42498:10;:8;:10::i;:::-;42475:33;;42520:15;42537:23;42562:12;42576:23;42601:12;42615:13;42630:18;42652:19;42663:7;42652:10;:19::i;:::-;42519:152;;;;;;;;;;;;;;42682:13;42699:22;42709:11;42699:5;:9;;:22;;;;:::i;:::-;42682:39;;42750:28;42770:7;42750;:15;42758:6;42750:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42732:7;:15;42740:6;42732:15;;;;;;;;;;;;;;;:46;;;;42807:28;42827:7;42807;:15;42815:6;42807:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42789:7;:15;42797:6;42789:15;;;;;;;;;;;;;;;:46;;;;42867:39;42890:15;42867:7;:18;42875:9;42867:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42846:7;:18;42854:9;42846:18;;;;;;;;;;;;;;;:60;;;;42920:26;42935:10;42920:14;:26::i;:::-;42957:37;42969:4;42975:5;42982:4;42988:5;42957:11;:37::i;:::-;43027:9;43010:44;;43019:6;43010:44;;;43038:15;43010:44;;;;;;;;;;;;;;;;;;42373:689;;;;;;;;;;;;:::o;41656:709::-;41756:19;41779:10;:8;:10::i;:::-;41756:33;;41801:15;41818:23;41843:12;41857:23;41882:12;41896:13;41911:18;41933:19;41944:7;41933:10;:19::i;:::-;41800:152;;;;;;;;;;;;;;41963:13;41980:22;41990:11;41980:5;:9;;:22;;;;:::i;:::-;41963:39;;42031:28;42051:7;42031;:15;42039:6;42031:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42013:7;:15;42021:6;42013:15;;;;;;;;;;;;;;;:46;;;;42091:39;42114:15;42091:7;:18;42099:9;42091:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42070:7;:18;42078:9;42070:18;;;;;;;;;;;;;;;:60;;;;42162:39;42185:15;42162:7;:18;42170:9;42162:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42141:7;:18;42149:9;42141:18;;;;;;;;;;;;;;;:60;;;;42223:26;42238:10;42223:14;:26::i;:::-;42260:37;42272:4;42278:5;42285:4;42291:5;42260:11;:37::i;:::-;42330:9;42313:44;;42322:6;42313:44;;;42341:15;42313:44;;;;;;;;;;;;;;;;;;41656:709;;;;;;;;;;;;:::o;41023:625::-;41121:19;41144:10;:8;:10::i;:::-;41121:33;;41166:15;41183:23;41208:12;41222:23;41247:12;41261:13;41276:18;41298:19;41309:7;41298:10;:19::i;:::-;41165:152;;;;;;;;;;;;;;41328:13;41345:22;41355:11;41345:5;:9;;:22;;;;:::i;:::-;41328:39;;41396:28;41416:7;41396;:15;41404:6;41396:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41378:7;:15;41386:6;41378:15;;;;;;;;;;;;;;;:46;;;;41456:39;41479:15;41456:7;:18;41464:9;41456:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41435:7;:18;41443:9;41435:18;;;;;;;;;;;;;;;:60;;;;41506:26;41521:10;41506:14;:26::i;:::-;41543:37;41555:4;41561:5;41568:4;41574:5;41543:11;:37::i;:::-;41613:9;41596:44;;41605:6;41596:44;;;41624:15;41596:44;;;;;;;;;;;;;;;;;;41023:625;;;;;;;;;;;;:::o;43070:765::-;43172:19;43195:10;:8;:10::i;:::-;43172:33;;43217:15;43234:23;43259:12;43273:23;43298:12;43312:13;43327:18;43349:19;43360:7;43349:10;:19::i;:::-;43216:152;;;;;;;;;;;;;;43379:13;43396:22;43406:11;43396:5;:9;;:22;;;;:::i;:::-;43379:39;;43447:28;43467:7;43447;:15;43455:6;43447:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43429:7;:15;43437:6;43429:15;;;;;;;;;;;;;;;:46;;;;43504:28;43524:7;43504;:15;43512:6;43504:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43486:7;:15;43494:6;43486:15;;;;;;;;;;;;;;;:46;;;;43564:39;43587:15;43564:7;:18;43572:9;43564:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43543:7;:18;43551:9;43543:18;;;;;;;;;;;;;;;:60;;;;43635:39;43658:15;43635:7;:18;43643:9;43635:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43614:7;:18;43622:9;43614:18;;;;;;;;;;;;;;;:60;;;;43693:26;43708:10;43693:14;:26::i;:::-;43730:37;43742:4;43748:5;43755:4;43761:5;43730:11;:37::i;:::-;43800:9;43783:44;;43792:6;43783:44;;;43811:15;43783:44;;;;;;;;;;;;;;;;;;43070:765;;;;;;;;;;;;:::o;47905:163::-;47959:15;;47949:7;:25;;;;47996:16;;47985:8;:27;;;;48039:21;;48023:13;:37;;;;47905:163::o;47053:154::-;47117:7;47144:55;47183:5;47144:20;47156:7;;47144;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;47137:62;;47053:154;;;:::o;47219:156::-;47284:7;47311:56;47351:5;47311:21;47323:8;;47311:7;:11;;:21;;;;:::i;:::-;:25;;:56;;;;:::i;:::-;47304:63;;47219:156;;;:::o;47387:166::-;47457:7;47484:61;47529:5;47484:26;47496:13;;47484:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;47477:68;;47387:166;;;:::o;46263:355::-;46326:19;46349:10;:8;:10::i;:::-;46326:33;;46370:18;46391:27;46406:11;46391:10;:14;;:27;;;;:::i;:::-;46370:48;;46454:38;46481:10;46454:7;:22;46470:4;46454:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;46429:7;:22;46445:4;46429:22;;;;;;;;;;;;;;;:63;;;;46506:11;:26;46526:4;46506:26;;;;;;;;;;;;;;;;;;;;;;;;;46503:107;;;46572:38;46599:10;46572:7;:22;46588:4;46572:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;46547:7;:22;46563:4;46547:22;;;;;;;;;;;;;;;:63;;;;46503:107;46263:355;;;:::o;43843:274::-;43951:28;43973:5;43951:17;43963:4;43951:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;43941:7;:38;;;;44003:20;44018:4;44003:10;;:14;;:20;;;;:::i;:::-;43990:10;:33;;;;44048:22;44064:5;44048:11;;:15;;:22;;;;:::i;:::-;44034:11;:36;;;;44091:18;44103:5;44091:7;;:11;;:18;;;;:::i;:::-;44081:7;:28;;;;43843:274;;;;:::o
Swarm Source
ipfs://ef93dc33d809f485a36b29b0e9d874eb6da6f313f78c68b41287875d3d86410f
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.