ERC-20
Overview
Max Total Supply
9,325.067841785316880332 RFIextreme
Holders
105
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.897727024658048746 RFIextremeValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RFIextreme
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-13 */ // SPDX-License-Identifier: MIT // https://t.me/RFIextreme 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 RFIextreme is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; struct TValues{ uint256 tTransferAmount; uint256 tFee; uint256 tBurn; } struct RValues{ uint256 rate; uint256 rAmount; uint256 rTransferAmount; uint256 tTransferAmount; uint256 rFee; uint256 tFee; uint256 rBurn; } mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 10000 * 10**18; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _tBurnTotal; string private _name = "RFIextreme"; string private _symbol = "RFIextreme"; uint8 private _decimals = 18; uint256 public _taxFee = 10; uint256 private _previousTaxFee = _taxFee; uint256 public _burnFee = 2; uint256 private _previousBurnFee = _burnFee; //No limit uint256 public _maxTxAmount = _tTotal; //locks the contract for any transfers bool public isTransferLocked = true; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; 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"); (,RValues memory values) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(values.rAmount); _rTotal = _rTotal.sub(values.rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); (,RValues memory values) = _getValues(tAmount); if (!deductTransferFee) { return values.rAmount; } else { return values.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(!isTransferLocked || _isExcludedFromFee[from], "Transfer is locked before presale is completed."); 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."); //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); } //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 { (TValues memory tValues, RValues memory rValues) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount); _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount); _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn); emit Transfer(sender, recipient, tValues.tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (TValues memory tValues, RValues memory rValues) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount); _tOwned[recipient] = _tOwned[recipient].add(tValues.tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount); _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn); emit Transfer(sender, recipient, tValues.tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (TValues memory tValues, RValues memory rValues) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount); _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount); _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn); emit Transfer(sender, recipient, tValues.tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (TValues memory tValues, RValues memory rValues) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rValues.rAmount); _tOwned[recipient] = _tOwned[recipient].add(tValues.tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rValues.rTransferAmount); _reflectFee(rValues.rFee, rValues.rBurn, tValues.tFee, tValues.tBurn); emit Transfer(sender, recipient, tValues.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 (TValues memory tValues, RValues memory rValues) { tValues = _getTValues(tAmount); rValues = _getRValues(tAmount,tValues); } function _getTValues(uint256 tAmount) private view returns (TValues memory values) { values.tFee = calculateTaxFee(tAmount); values.tBurn = calculateBurnFee(tAmount); values.tTransferAmount = tAmount.sub(values.tFee).sub(values.tBurn); } function _getRValues(uint256 tAmount, TValues memory tValues) private view returns (RValues memory values) { values.rate = _getRate(); values.rAmount = tAmount.mul(values.rate); values.rFee = tValues.tFee.mul(values.rate); values.rBurn = tValues.tBurn.mul(values.rate); values.rTransferAmount = values.rAmount.sub(values.rFee).sub(values.rBurn); } 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 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 removeAllFee() private { if(_taxFee == 0 && _burnFee == 0) return; _previousTaxFee = _taxFee; _previousBurnFee = _burnFee; _taxFee = 0; _burnFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _burnFee = _previousBurnFee; } 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 setMaxTxPercent(uint256 maxTxPercent, uint256 maxTxDecimals) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**(uint256(maxTxDecimals) + 2) ); } function setIsTransferLocked(bool enabled) public onlyOwner { isTransferLocked = 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":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":"_burnFee","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":[],"name":"isTransferLocked","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":"enabled","type":"bool"}],"name":"setIsTransferLocked","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":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","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":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405269021e19e0c9bab2400000600955600954600019816200002057fe5b0660001903600a556040518060400160405280600a81526020017f52464965787472656d6500000000000000000000000000000000000000000000815250600d908051906020019062000075929190620005e9565b506040518060400160405280600a81526020017f52464965787472656d6500000000000000000000000000000000000000000000815250600e9080519060200190620000c3929190620005e9565b506012600f60006101000a81548160ff021916908360ff160217905550600a60105560105460115560026012556012546013556009546014556001601560006101000a81548160ff0219169083151502179055503480156200012457600080fd5b50600062000137620005b860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a5460036000620001ec620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028a57600080fd5b505afa1580156200029f573d6000803e3d6000fd5b505050506040513d6020811015620002b657600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032a57600080fd5b505afa1580156200033f573d6000803e3d6000fd5b505050506040513d60208110156200035657600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003d157600080fd5b505af1158015620003e6573d6000803e3d6000fd5b505050506040513d6020811015620003fd57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505060016006600062000491620005c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200054a620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200068f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200062c57805160ff19168380011785556200065d565b828001600101855582156200065d579182015b828111156200065c5782518255916020019190600101906200063f565b5b5090506200066c919062000670565b5090565b5b808211156200068b57600081600090555060010162000671565b5090565b60805160601c60a05160601c6148e8620006b960003980611a6652508061100b52506148e86000f3fe6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063cea269581161006f578063cea2695814610beb578063dd46706414610c26578063dd62ed3e14610c61578063ea2f0b3714610ce6578063f2fde38b14610d3757610230565b8063a457c2d714610a9c578063a69df4b514610b0d578063a9059cbb14610b24578063b6c5232414610b95578063c0b0fda214610bc057610230565b80637d1db4a5116100f25780637d1db4a51461090c57806388f82020146109375780638da5cb5b1461099e57806395d89b41146109df578063a01c62f714610a6f57610230565b806352390c02146107d85780635342acb41461082957806370a0823114610890578063715018a6146108f557610230565b8063313ce567116101b15780633c9f861d116101755780633c9f861d1461067b5780633f3cf56c146106a6578063437823ec146106eb5780634549b0391461073c57806349bd5a5e1461079757610230565b8063313ce567146105255780633685d4191461055357806339509351146105a45780633b124fe7146106155780633bd5d1731461064057610230565b806313114a9d116101f857806313114a9d146103ae5780631694505e146103d957806318160ddd1461041a57806323b872dd146104455780632d838119146104d657610230565b80630118b7a514610235578063061c82d01461027257806306fdde03146102ad578063095ea7b31461033d57610230565b3661023057005b600080fd5b34801561024157600080fd5b506102706004803603602081101561025857600080fd5b81019080803515159060200190929190505050610d88565b005b34801561027e57600080fd5b506102ab6004803603602081101561029557600080fd5b8101908080359060200190929190505050610e6d565b005b3480156102b957600080fd5b506102c2610f3f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103025780820151818401526020810190506102e7565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034957600080fd5b506103966004803603604081101561036057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe1565b60405180821515815260200191505060405180910390f35b3480156103ba57600080fd5b506103c3610fff565b6040518082815260200191505060405180910390f35b3480156103e557600080fd5b506103ee611009565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561042657600080fd5b5061042f61102d565b6040518082815260200191505060405180910390f35b34801561045157600080fd5b506104be6004803603606081101561046857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611037565b60405180821515815260200191505060405180910390f35b3480156104e257600080fd5b5061050f600480360360208110156104f957600080fd5b8101908080359060200190929190505050611110565b6040518082815260200191505060405180910390f35b34801561053157600080fd5b5061053a611194565b604051808260ff16815260200191505060405180910390f35b34801561055f57600080fd5b506105a26004803603602081101561057657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ab565b005b3480156105b057600080fd5b506105fd600480360360408110156105c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611535565b60405180821515815260200191505060405180910390f35b34801561062157600080fd5b5061062a6115e8565b6040518082815260200191505060405180910390f35b34801561064c57600080fd5b506106796004803603602081101561066357600080fd5b81019080803590602001909291905050506115ee565b005b34801561068757600080fd5b50610690611789565b6040518082815260200191505060405180910390f35b3480156106b257600080fd5b506106e9600480360360408110156106c957600080fd5b810190808035906020019092919080359060200190929190505050611793565b005b3480156106f757600080fd5b5061073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611892565b005b34801561074857600080fd5b506107816004803603604081101561075f57600080fd5b81019080803590602001909291908035151590602001909291905050506119b5565b6040518082815260200191505060405180910390f35b3480156107a357600080fd5b506107ac611a64565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107e457600080fd5b50610827600480360360208110156107fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a88565b005b34801561083557600080fd5b506108786004803603602081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da2565b60405180821515815260200191505060405180910390f35b34801561089c57600080fd5b506108df600480360360208110156108b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611df8565b6040518082815260200191505060405180910390f35b34801561090157600080fd5b5061090a611ee3565b005b34801561091857600080fd5b50610921612069565b6040518082815260200191505060405180910390f35b34801561094357600080fd5b506109866004803603602081101561095a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206f565b60405180821515815260200191505060405180910390f35b3480156109aa57600080fd5b506109b36120c5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109eb57600080fd5b506109f46120ee565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a34578082015181840152602081019050610a19565b50505050905090810190601f168015610a615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a7b57600080fd5b50610a84612190565b60405180821515815260200191505060405180910390f35b348015610aa857600080fd5b50610af560048036036040811015610abf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121a3565b60405180821515815260200191505060405180910390f35b348015610b1957600080fd5b50610b22612270565b005b348015610b3057600080fd5b50610b7d60048036036040811015610b4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061248d565b60405180821515815260200191505060405180910390f35b348015610ba157600080fd5b50610baa6124ab565b6040518082815260200191505060405180910390f35b348015610bcc57600080fd5b50610bd56124b5565b6040518082815260200191505060405180910390f35b348015610bf757600080fd5b50610c2460048036036020811015610c0e57600080fd5b81019080803590602001909291905050506124bb565b005b348015610c3257600080fd5b50610c5f60048036036020811015610c4957600080fd5b810190808035906020019092919050505061258d565b005b348015610c6d57600080fd5b50610cd060048036036040811015610c8457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061277e565b6040518082815260200191505060405180910390f35b348015610cf257600080fd5b50610d3560048036036020811015610d0957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612805565b005b348015610d4357600080fd5b50610d8660048036036020811015610d5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612928565b005b610d90612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b610e75612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd75780601f10610fac57610100808354040283529160200191610fd7565b820191906000526020600020905b815481529060010190602001808311610fba57829003601f168201915b5050505050905090565b6000610ff5610fee612b33565b8484612b3b565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b6000611044848484612d32565b61110584611050612b33565b611100856040518060600160405280602881526020016147a560289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110b6612b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130eb9092919063ffffffff16565b612b3b565b600190509392505050565b6000600a5482111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806146ea602a913960400191505060405180910390fd5b60006111776131ab565b905061118c81846131d690919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b6111b3612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611531578173ffffffffffffffffffffffffffffffffffffffff166008828154811061136657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611524576008600160088054905003815481106113c257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106113fa57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806114ea57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611531565b8080600101915050611335565b5050565b60006115de611542612b33565b846115d98560056000611553612b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b612b3b565b6001905092915050565b60105481565b60006115f8612b33565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061483f602c913960400191505060405180910390fd5b6116a5614639565b6116ae836132a8565b9150506117078160200151600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117638160200151600a546132d490919063ffffffff16565b600a8190555061177e83600b5461322090919063ffffffff16565b600b81905550505050565b6000600c54905090565b61179b612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61188860028201600a0a61187a8460095461331e90919063ffffffff16565b6131d690919063ffffffff16565b6014819055505050565b61189a612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b611a37614639565b611a40846132a8565b91505082611a55578060200151915050611a5e565b80604001519150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611a90612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611ce457611ca0600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611110565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e9357600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611ede565b611edb600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611110565b90505b919050565b611eeb612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121865780601f1061215b57610100808354040283529160200191612186565b820191906000526020600020905b81548152906001019060200180831161216957829003601f168201915b5050505050905090565b601560009054906101000a900460ff1681565b60006122666121b0612b33565b846122618560405180606001604052806025815260200161488e60259139600560006121da612b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130eb9092919063ffffffff16565b612b3b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061486b6023913960400191505060405180910390fd5b600254421161238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006124a161249a612b33565b8484612d32565b6001905092915050565b6000600254905090565b60125481565b6124c3612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b612595612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61280d612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612930612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147146026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061481b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061473a6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b601560009054906101000a900460ff161580612d975750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806146bb602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147f66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806146986023913960400191505060405180910390fd5b60008111612f51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806147cd6029913960400191505060405180910390fd5b612f596120c5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612fc75750612f976120c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561302857601454811115613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061475c6028913960400191505060405180910390fd5b5b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130cf5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130d957600090505b6130e5848484846133a4565b50505050565b6000838311158290613198576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561315d578082015181840152602081019050613142565b50505050905090810190601f16801561318a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006131b86136b5565b915091506131cf81836131d690919063ffffffff16565b9250505090565b600061321883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613946565b905092915050565b60008082840190508381101561329e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6132b0614676565b6132b8614639565b6132c183613a0c565b91506132cd8383613a73565b9050915091565b600061331683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506130eb565b905092915050565b600080831415613331576000905061339e565b600082840290508284828161334257fe5b0414613399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147846021913960400191505060405180910390fd5b809150505b92915050565b806133b2576133b1613b34565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134555750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561346a57613465848484613b77565b6136a1565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561350d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135225761351d848484613de7565b6136a0565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156135c65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135db576135d684848461405b565b61369f565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561367d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136925761368d848484614236565b61369e565b61369d84848461405b565b5b5b5b5b806136af576136ae61453f565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613909578260036000600884815481106136e857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806137cf575081600460006008848154811061376757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156137e657600a5460095494509450505050613942565b61386f60036000600884815481106137fa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846132d490919063ffffffff16565b92506138fa600460006008848154811061388557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836132d490919063ffffffff16565b915080806001019150506136c9565b50613921600954600a546131d690919063ffffffff16565b82101561393957600a54600954935093505050613942565b81819350935050505b9091565b600080831182906139f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139b757808201518184015260208101905061399c565b50505050905090810190601f1680156139e45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816139fe57fe5b049050809150509392505050565b613a14614676565b613a1d82614553565b816020018181525050613a2f82614584565b816040018181525050613a658160400151613a578360200151856132d490919063ffffffff16565b6132d490919063ffffffff16565b816000018181525050919050565b613a7b614639565b613a836131ab565b816000018181525050613aa381600001518461331e90919063ffffffff16565b816020018181525050613ac78160000151836020015161331e90919063ffffffff16565b816080018181525050613aeb8160000151836040015161331e90919063ffffffff16565b8160c0018181525050613b258160c00151613b17836080015184602001516132d490919063ffffffff16565b6132d490919063ffffffff16565b81604001818152505092915050565b6000601054148015613b4857506000601254145b15613b5257613b75565b601054601181905550601254601381905550600060108190555060006012819055505b565b613b7f614676565b613b87614639565b613b90836132a8565b91509150613be683600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c7f8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d188160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d7781608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b613def614676565b613df7614639565b613e00836132a8565b91509150613e5a8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ef38260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f8c8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613feb81608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b614063614676565b61406b614639565b614074836132a8565b915091506140ce8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141678160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141c681608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b61423e614676565b614246614639565b61424f836132a8565b915091506142a583600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061433e8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143d78260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144708160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144cf81608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b601154601081905550601354601281905550565b600061457d606461456f6010548561331e90919063ffffffff16565b6131d690919063ffffffff16565b9050919050565b60006145ae60646145a06012548561331e90919063ffffffff16565b6131d690919063ffffffff16565b9050919050565b6145dc836145ce86600a546132d490919063ffffffff16565b6132d490919063ffffffff16565b600a819055506145f782600b5461322090919063ffffffff16565b600b8190555061461281600c5461322090919063ffffffff16565b600c8190555061462d816009546132d490919063ffffffff16565b60098190555050505050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060600160405280600081526020016000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e73666572206973206c6f636b6564206265666f72652070726573616c6520697320636f6d706c657465642e416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ebcfcd0345bd33b3083a457a71249d843187d268f5939a280b835cf9861c08e64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102295760003560e01c806352390c0211610123578063a457c2d7116100ab578063cea269581161006f578063cea2695814610beb578063dd46706414610c26578063dd62ed3e14610c61578063ea2f0b3714610ce6578063f2fde38b14610d3757610230565b8063a457c2d714610a9c578063a69df4b514610b0d578063a9059cbb14610b24578063b6c5232414610b95578063c0b0fda214610bc057610230565b80637d1db4a5116100f25780637d1db4a51461090c57806388f82020146109375780638da5cb5b1461099e57806395d89b41146109df578063a01c62f714610a6f57610230565b806352390c02146107d85780635342acb41461082957806370a0823114610890578063715018a6146108f557610230565b8063313ce567116101b15780633c9f861d116101755780633c9f861d1461067b5780633f3cf56c146106a6578063437823ec146106eb5780634549b0391461073c57806349bd5a5e1461079757610230565b8063313ce567146105255780633685d4191461055357806339509351146105a45780633b124fe7146106155780633bd5d1731461064057610230565b806313114a9d116101f857806313114a9d146103ae5780631694505e146103d957806318160ddd1461041a57806323b872dd146104455780632d838119146104d657610230565b80630118b7a514610235578063061c82d01461027257806306fdde03146102ad578063095ea7b31461033d57610230565b3661023057005b600080fd5b34801561024157600080fd5b506102706004803603602081101561025857600080fd5b81019080803515159060200190929190505050610d88565b005b34801561027e57600080fd5b506102ab6004803603602081101561029557600080fd5b8101908080359060200190929190505050610e6d565b005b3480156102b957600080fd5b506102c2610f3f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103025780820151818401526020810190506102e7565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034957600080fd5b506103966004803603604081101561036057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe1565b60405180821515815260200191505060405180910390f35b3480156103ba57600080fd5b506103c3610fff565b6040518082815260200191505060405180910390f35b3480156103e557600080fd5b506103ee611009565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561042657600080fd5b5061042f61102d565b6040518082815260200191505060405180910390f35b34801561045157600080fd5b506104be6004803603606081101561046857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611037565b60405180821515815260200191505060405180910390f35b3480156104e257600080fd5b5061050f600480360360208110156104f957600080fd5b8101908080359060200190929190505050611110565b6040518082815260200191505060405180910390f35b34801561053157600080fd5b5061053a611194565b604051808260ff16815260200191505060405180910390f35b34801561055f57600080fd5b506105a26004803603602081101561057657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ab565b005b3480156105b057600080fd5b506105fd600480360360408110156105c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611535565b60405180821515815260200191505060405180910390f35b34801561062157600080fd5b5061062a6115e8565b6040518082815260200191505060405180910390f35b34801561064c57600080fd5b506106796004803603602081101561066357600080fd5b81019080803590602001909291905050506115ee565b005b34801561068757600080fd5b50610690611789565b6040518082815260200191505060405180910390f35b3480156106b257600080fd5b506106e9600480360360408110156106c957600080fd5b810190808035906020019092919080359060200190929190505050611793565b005b3480156106f757600080fd5b5061073a6004803603602081101561070e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611892565b005b34801561074857600080fd5b506107816004803603604081101561075f57600080fd5b81019080803590602001909291908035151590602001909291905050506119b5565b6040518082815260200191505060405180910390f35b3480156107a357600080fd5b506107ac611a64565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107e457600080fd5b50610827600480360360208110156107fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a88565b005b34801561083557600080fd5b506108786004803603602081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da2565b60405180821515815260200191505060405180910390f35b34801561089c57600080fd5b506108df600480360360208110156108b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611df8565b6040518082815260200191505060405180910390f35b34801561090157600080fd5b5061090a611ee3565b005b34801561091857600080fd5b50610921612069565b6040518082815260200191505060405180910390f35b34801561094357600080fd5b506109866004803603602081101561095a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061206f565b60405180821515815260200191505060405180910390f35b3480156109aa57600080fd5b506109b36120c5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109eb57600080fd5b506109f46120ee565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a34578082015181840152602081019050610a19565b50505050905090810190601f168015610a615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a7b57600080fd5b50610a84612190565b60405180821515815260200191505060405180910390f35b348015610aa857600080fd5b50610af560048036036040811015610abf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121a3565b60405180821515815260200191505060405180910390f35b348015610b1957600080fd5b50610b22612270565b005b348015610b3057600080fd5b50610b7d60048036036040811015610b4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061248d565b60405180821515815260200191505060405180910390f35b348015610ba157600080fd5b50610baa6124ab565b6040518082815260200191505060405180910390f35b348015610bcc57600080fd5b50610bd56124b5565b6040518082815260200191505060405180910390f35b348015610bf757600080fd5b50610c2460048036036020811015610c0e57600080fd5b81019080803590602001909291905050506124bb565b005b348015610c3257600080fd5b50610c5f60048036036020811015610c4957600080fd5b810190808035906020019092919050505061258d565b005b348015610c6d57600080fd5b50610cd060048036036040811015610c8457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061277e565b6040518082815260200191505060405180910390f35b348015610cf257600080fd5b50610d3560048036036020811015610d0957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612805565b005b348015610d4357600080fd5b50610d8660048036036020811015610d5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612928565b005b610d90612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b610e75612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610fd75780601f10610fac57610100808354040283529160200191610fd7565b820191906000526020600020905b815481529060010190602001808311610fba57829003601f168201915b5050505050905090565b6000610ff5610fee612b33565b8484612b3b565b6001905092915050565b6000600b54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600954905090565b6000611044848484612d32565b61110584611050612b33565b611100856040518060600160405280602881526020016147a560289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110b6612b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130eb9092919063ffffffff16565b612b3b565b600190509392505050565b6000600a5482111561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806146ea602a913960400191505060405180910390fd5b60006111776131ab565b905061118c81846131d690919063ffffffff16565b915050919050565b6000600f60009054906101000a900460ff16905090565b6111b3612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611531578173ffffffffffffffffffffffffffffffffffffffff166008828154811061136657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611524576008600160088054905003815481106113c257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106113fa57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806114ea57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611531565b8080600101915050611335565b5050565b60006115de611542612b33565b846115d98560056000611553612b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b612b3b565b6001905092915050565b60105481565b60006115f8612b33565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061483f602c913960400191505060405180910390fd5b6116a5614639565b6116ae836132a8565b9150506117078160200151600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117638160200151600a546132d490919063ffffffff16565b600a8190555061177e83600b5461322090919063ffffffff16565b600b81905550505050565b6000600c54905090565b61179b612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61188860028201600a0a61187a8460095461331e90919063ffffffff16565b6131d690919063ffffffff16565b6014819055505050565b61189a612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611a2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b611a37614639565b611a40846132a8565b91505082611a55578060200151915050611a5e565b80604001519150505b92915050565b7f000000000000000000000000c702eaa0bd40a87527d5e679159b9df79c397a2981565b611a90612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611ce457611ca0600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611110565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e9357600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611ede565b611edb600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611110565b90505b919050565b611eeb612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60145481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121865780601f1061215b57610100808354040283529160200191612186565b820191906000526020600020905b81548152906001019060200180831161216957829003601f168201915b5050505050905090565b601560009054906101000a900460ff1681565b60006122666121b0612b33565b846122618560405180606001604052806025815260200161488e60259139600560006121da612b33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546130eb9092919063ffffffff16565b612b3b565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061486b6023913960400191505060405180910390fd5b600254421161238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006124a161249a612b33565b8484612d32565b6001905092915050565b6000600254905090565b60125481565b6124c3612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612583576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060128190555050565b612595612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612655576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61280d612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612930612b33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806147146026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061481b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061473a6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b601560009054906101000a900460ff161580612d975750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806146bb602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147f66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806146986023913960400191505060405180910390fd5b60008111612f51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806147cd6029913960400191505060405180910390fd5b612f596120c5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612fc75750612f976120c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561302857601454811115613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061475c6028913960400191505060405180910390fd5b5b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130cf5750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130d957600090505b6130e5848484846133a4565b50505050565b6000838311158290613198576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561315d578082015181840152602081019050613142565b50505050905090810190601f16801561318a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060006131b86136b5565b915091506131cf81836131d690919063ffffffff16565b9250505090565b600061321883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613946565b905092915050565b60008082840190508381101561329e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6132b0614676565b6132b8614639565b6132c183613a0c565b91506132cd8383613a73565b9050915091565b600061331683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506130eb565b905092915050565b600080831415613331576000905061339e565b600082840290508284828161334257fe5b0414613399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806147846021913960400191505060405180910390fd5b809150505b92915050565b806133b2576133b1613b34565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134555750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561346a57613465848484613b77565b6136a1565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561350d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135225761351d848484613de7565b6136a0565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156135c65750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135db576135d684848461405b565b61369f565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561367d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136925761368d848484614236565b61369e565b61369d84848461405b565b5b5b5b5b806136af576136ae61453f565b5b50505050565b6000806000600a5490506000600954905060005b600880549050811015613909578260036000600884815481106136e857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806137cf575081600460006008848154811061376757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156137e657600a5460095494509450505050613942565b61386f60036000600884815481106137fa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846132d490919063ffffffff16565b92506138fa600460006008848154811061388557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836132d490919063ffffffff16565b915080806001019150506136c9565b50613921600954600a546131d690919063ffffffff16565b82101561393957600a54600954935093505050613942565b81819350935050505b9091565b600080831182906139f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139b757808201518184015260208101905061399c565b50505050905090810190601f1680156139e45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816139fe57fe5b049050809150509392505050565b613a14614676565b613a1d82614553565b816020018181525050613a2f82614584565b816040018181525050613a658160400151613a578360200151856132d490919063ffffffff16565b6132d490919063ffffffff16565b816000018181525050919050565b613a7b614639565b613a836131ab565b816000018181525050613aa381600001518461331e90919063ffffffff16565b816020018181525050613ac78160000151836020015161331e90919063ffffffff16565b816080018181525050613aeb8160000151836040015161331e90919063ffffffff16565b8160c0018181525050613b258160c00151613b17836080015184602001516132d490919063ffffffff16565b6132d490919063ffffffff16565b81604001818152505092915050565b6000601054148015613b4857506000601254145b15613b5257613b75565b601054601181905550601254601381905550600060108190555060006012819055505b565b613b7f614676565b613b87614639565b613b90836132a8565b91509150613be683600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c7f8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d188160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d7781608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b613def614676565b613df7614639565b613e00836132a8565b91509150613e5a8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ef38260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f8c8160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613feb81608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b614063614676565b61406b614639565b614074836132a8565b915091506140ce8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141678160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141c681608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b61423e614676565b614246614639565b61424f836132a8565b915091506142a583600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061433e8160200151600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132d490919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143d78260000151600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144708160400151600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461322090919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144cf81608001518260c00151846020015185604001516145b5565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84600001516040518082815260200191505060405180910390a35050505050565b601154601081905550601354601281905550565b600061457d606461456f6010548561331e90919063ffffffff16565b6131d690919063ffffffff16565b9050919050565b60006145ae60646145a06012548561331e90919063ffffffff16565b6131d690919063ffffffff16565b9050919050565b6145dc836145ce86600a546132d490919063ffffffff16565b6132d490919063ffffffff16565b600a819055506145f782600b5461322090919063ffffffff16565b600b8190555061461281600c5461322090919063ffffffff16565b600c8190555061462d816009546132d490919063ffffffff16565b60098190555050505050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060600160405280600081526020016000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735472616e73666572206973206c6f636b6564206265666f72652070726573616c6520697320636f6d706c657465642e416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ebcfcd0345bd33b3083a457a71249d843187d268f5939a280b835cf9861c08e64736f6c634300060c0033
Deployed Bytecode Sourcemap
25781:14676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40251:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39791:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28076:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28988:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27250:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28353:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29157:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31095:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28262:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31811:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29478:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26916:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30304:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30208:88;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40021:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39546:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30706:381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27308:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31356:447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39411:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28456:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16376:148;;;;;;;;;;;;;:::i;:::-;;27110:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29981:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15733:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28167:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27202:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29704:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17386:293;;;;;;;;;;;;;:::i;:::-;;28662:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16931:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27004:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39901:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17096:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28837:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39669:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16679:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40251:105;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40341:7:::1;40322:16;;:26;;;;;;;;;;;;;;;;;;40251:105:::0;:::o;39791:98::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39875:6:::1;39865:7;:16;;;;39791:98:::0;:::o;28076:83::-;28113:13;28146:5;28139:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28076:83;:::o;28988:161::-;29063:4;29080:39;29089:12;:10;:12::i;:::-;29103:7;29112:6;29080:8;:39::i;:::-;29137:4;29130:11;;28988:161;;;;:::o;30109:87::-;30151:7;30178:10;;30171:17;;30109:87;:::o;27250:51::-;;;:::o;28353:95::-;28406:7;28433;;28426:14;;28353:95;:::o;29157:313::-;29255:4;29272:36;29282:6;29290:9;29301:6;29272:9;:36::i;:::-;29319:121;29328:6;29336:12;:10;:12::i;:::-;29350:89;29388:6;29350:89;;;;;;;;;;;;;;;;;:11;:19;29362:6;29350:19;;;;;;;;;;;;;;;:33;29370:12;:10;:12::i;:::-;29350:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29319:8;:121::i;:::-;29458:4;29451:11;;29157:313;;;;;:::o;31095:253::-;31161:7;31200;;31189;:18;;31181:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31265:19;31288:10;:8;:10::i;:::-;31265:33;;31316:24;31328:11;31316:7;:11;;:24;;;;:::i;:::-;31309:31;;;31095:253;;;:::o;28262:83::-;28303:5;28328:9;;;;;;;;;;;28321:16;;28262:83;:::o;31811:479::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31893:11:::1;:20;31905:7;31893:20;;;;;;;;;;;;;;;;;;;;;;;;;31885:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31961:9;31956:327;31980:9;:16;;;;31976:1;:20;31956:327;;;32038:7;32022:23;;:9;32032:1;32022:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32018:254;;;32081:9;32110:1;32091:9;:16;;;;:20;32081:31;;;;;;;;;;;;;;;;;;;;;;;;;32066:9;32076:1;32066:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32150:1;32131:7;:16;32139:7;32131:16;;;;;;;;;;;;;;;:20;;;;32193:5;32170:11;:20;32182:7;32170:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32217:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32251:5;;32018:254;31998:3;;;;;;;31956:327;;;;31811:479:::0;:::o;29478:218::-;29566:4;29583:83;29592:12;:10;:12::i;:::-;29606:7;29615:50;29654:10;29615:11;:25;29627:12;:10;:12::i;:::-;29615:25;;;;;;;;;;;;;;;:34;29641:7;29615:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29583:8;:83::i;:::-;29684:4;29677:11;;29478:218;;;;:::o;26916:27::-;;;;:::o;30304:394::-;30356:14;30373:12;:10;:12::i;:::-;30356:29;;30405:11;:19;30417:6;30405:19;;;;;;;;;;;;;;;;;;;;;;;;;30404:20;30396:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30487:21;;:::i;:::-;30512:19;30523:7;30512:10;:19::i;:::-;30485:46;;;30560:35;30580:6;:14;;;30560:7;:15;30568:6;30560:15;;;;;;;;;;;;;;;;:19;;:35;;;;:::i;:::-;30542:7;:15;30550:6;30542:15;;;;;;;;;;;;;;;:53;;;;30616:27;30628:6;:14;;;30616:7;;:11;;:27;;;;:::i;:::-;30606:7;:37;;;;30667:23;30682:7;30667:10;;:14;;:23;;;;:::i;:::-;30654:10;:36;;;;30304:394;;;:::o;30208:88::-;30250:7;30277:11;;30270:18;;30208:88;:::o;40021:212::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40138:87:::1;40212:1;40195:13;40187:26;40182:2;:32;40138:25;40150:12;40138:7;;:11;;:25;;;;:::i;:::-;:29;;:87;;;;:::i;:::-;40123:12;:102;;;;40021:212:::0;;:::o;39546:111::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39645:4:::1;39615:18;:27;39634:7;39615:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;39546:111:::0;:::o;30706:381::-;30796:7;30835;;30824;:18;;30816:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30891:21;;:::i;:::-;30916:19;30927:7;30916:10;:19::i;:::-;30889:46;;;30951:17;30946:134;;30992:6;:14;;;30985:21;;;;;30946:134;31046:6;:22;;;31039:29;;;30706:381;;;;;:::o;27308:38::-;;;:::o;31356:447::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31553:11:::1;:20;31565:7;31553:20;;;;;;;;;;;;;;;;;;;;;;;;;31552:21;31544:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31638:1;31619:7;:16;31627:7;31619:16;;;;;;;;;;;;;;;;:20;31616:108;;;31675:37;31695:7;:16;31703:7;31695:16;;;;;;;;;;;;;;;;31675:19;:37::i;:::-;31656:7;:16;31664:7;31656:16;;;;;;;;;;;;;;;:56;;;;31616:108;31757:4;31734:11;:20;31746:7;31734:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31772:9;31787:7;31772:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31356:447:::0;:::o;39411:123::-;39475:4;39499:18;:27;39518:7;39499:27;;;;;;;;;;;;;;;;;;;;;;;;;39492:34;;39411:123;;;:::o;28456:198::-;28522:7;28546:11;:20;28558:7;28546:20;;;;;;;;;;;;;;;;;;;;;;;;;28542:49;;;28575:7;:16;28583:7;28575:16;;;;;;;;;;;;;;;;28568:23;;;;28542:49;28609:37;28629:7;:16;28637:7;28629:16;;;;;;;;;;;;;;;;28609:19;:37::i;:::-;28602:44;;28456:198;;;;:::o;16376:148::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16483:1:::1;16446:40;;16467:6;::::0;::::1;;;;;;;;16446:40;;;;;;;;;;;;16514:1;16497:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16376:148::o:0;27110:37::-;;;;:::o;29981:120::-;30049:4;30073:11;:20;30085:7;30073:20;;;;;;;;;;;;;;;;;;;;;;;;;30066:27;;29981:120;;;:::o;15733:79::-;15771:7;15798:6;;;;;;;;;;;15791:13;;15733:79;:::o;28167:87::-;28206:13;28239:7;28232:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28167:87;:::o;27202:35::-;;;;;;;;;;;;;:::o;29704:269::-;29797:4;29814:129;29823:12;:10;:12::i;:::-;29837:7;29846:96;29885:15;29846:96;;;;;;;;;;;;;;;;;:11;:25;29858:12;:10;:12::i;:::-;29846:25;;;;;;;;;;;;;;;:34;29872:7;29846:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29814:8;:129::i;:::-;29961:4;29954:11;;29704:269;;;;:::o;17386:293::-;17456:10;17438:28;;:14;;;;;;;;;;;:28;;;17430:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17531:9;;17525:3;:15;17517:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17622:14;;;;;;;;;;;17593:44;;17614:6;;;;;;;;;;17593:44;;;;;;;;;;;;17657:14;;;;;;;;;;;17648:6;;:23;;;;;;;;;;;;;;;;;;17386:293::o;28662:167::-;28740:4;28757:42;28767:12;:10;:12::i;:::-;28781:9;28792:6;28757:9;:42::i;:::-;28817:4;28810:11;;28662:167;;;;:::o;16931:89::-;16976:7;17003:9;;16996:16;;16931:89;:::o;27004:27::-;;;;:::o;39901:102::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39988:7:::1;39977:8;:18;;;;39901:102:::0;:::o;17096:214::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17177:6:::1;::::0;::::1;;;;;;;;17160:14;;:23;;;;;;;;;;;;;;;;;;17211:1;17194:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17242:4;17236:3;:10;17224:9;:22;;;;17299:1;17262:40;;17283:6;::::0;::::1;;;;;;;;17262:40;;;;;;;;;;;;17096:214:::0;:::o;28837:143::-;28918:7;28945:11;:18;28957:5;28945:18;;;;;;;;;;;;;;;:27;28964:7;28945:27;;;;;;;;;;;;;;;;28938:34;;28837:143;;;;:::o;39669:110::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39766:5:::1;39736:18;:27;39755:7;39736:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;39669:110:::0;:::o;16679:244::-;15955:12;:10;:12::i;:::-;15945:22;;:6;;;;;;;;;;:22;;;15937:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16788:1:::1;16768:22;;:8;:22;;;;16760:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16878:8;16849:38;;16870:6;::::0;::::1;;;;;;;;16849:38;;;;;;;;;;;;16907:8;16898:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16679:244:::0;:::o;124:106::-;177:15;212:10;205:17;;124:106;:::o;32298:337::-;32408:1;32391:19;;:5;:19;;;;32383:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32489:1;32470:21;;:7;:21;;;;32462:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32573:6;32543:11;:18;32555:5;32543:18;;;;;;;;;;;;;;;:27;32562:7;32543:27;;;;;;;;;;;;;;;:36;;;;32611:7;32595:32;;32604:5;32595:32;;;32620:6;32595:32;;;;;;;;;;;;;;;;;;32298:337;;;:::o;32643:1010::-;32766:16;;;;;;;;;;;32765:17;:45;;;;32786:18;:24;32805:4;32786:24;;;;;;;;;;;;;;;;;;;;;;;;;32765:45;32757:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32897:1;32881:18;;:4;:18;;;;32873:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32974:1;32960:16;;:2;:16;;;;32952:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33044:1;33035:6;:10;33027:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33113:7;:5;:7::i;:::-;33105:15;;:4;:15;;;;:32;;;;;33130:7;:5;:7::i;:::-;33124:13;;:2;:13;;;;33105:32;33102:125;;;33170:12;;33160:6;:22;;33152:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33102:125;33301:12;33316:4;33301:19;;33428:18;:24;33447:4;33428:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;33456:18;:22;33475:2;33456:22;;;;;;;;;;;;;;;;;;;;;;;;;33428:50;33425:96;;;33504:5;33494:15;;33425:96;33607:38;33622:4;33627:2;33630:6;33637:7;33607:14;:38::i;:::-;32643:1010;;;;:::o;4940:192::-;5026:7;5059:1;5054;:6;;5062:12;5046:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5086:9;5102:1;5098;:5;5086:17;;5123:1;5116:8;;;4940:192;;;;;:::o;37965:163::-;38006:7;38027:15;38044;38063:19;:17;:19::i;:::-;38026:56;;;;38100:20;38112:7;38100;:11;;:20;;;;:::i;:::-;38093:27;;;;37965:163;:::o;6338:132::-;6396:7;6423:39;6427:1;6430;6423:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6416:46;;6338:132;;;;:::o;4037:181::-;4095:7;4115:9;4131:1;4127;:5;4115:17;;4156:1;4151;:6;;4143:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4209:1;4202:8;;;4037:181;;;;:::o;37070:205::-;37129:22;;:::i;:::-;37153;;:::i;:::-;37198:20;37210:7;37198:11;:20::i;:::-;37188:30;;37239:28;37251:7;37259;37239:11;:28::i;:::-;37229:38;;37070:205;;;:::o;4501:136::-;4559:7;4586:43;4590:1;4593;4586:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4579:50;;4501:136;;;;:::o;5391:471::-;5449:7;5699:1;5694;:6;5690:47;;;5724:1;5717:8;;;;5690:47;5749:9;5765:1;5761;:5;5749:17;;5794:1;5789;5785;:5;;;;;;:10;5777:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5853:1;5846:8;;;5391:471;;;;;:::o;33734:834::-;33845:7;33841:40;;33867:14;:12;:14::i;:::-;33841:40;33906:11;:19;33918:6;33906:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;33930:11;:22;33942:9;33930:22;;;;;;;;;;;;;;;;;;;;;;;;;33929:23;33906:46;33902:597;;;33969:48;33991:6;33999:9;34010:6;33969:21;:48::i;:::-;33902:597;;;34040:11;:19;34052:6;34040:19;;;;;;;;;;;;;;;;;;;;;;;;;34039:20;:46;;;;;34063:11;:22;34075:9;34063:22;;;;;;;;;;;;;;;;;;;;;;;;;34039:46;34035:464;;;34102:46;34122:6;34130:9;34141:6;34102:19;:46::i;:::-;34035:464;;;34171:11;:19;34183:6;34171:19;;;;;;;;;;;;;;;;;;;;;;;;;34170:20;:47;;;;;34195:11;:22;34207:9;34195:22;;;;;;;;;;;;;;;;;;;;;;;;;34194:23;34170:47;34166:333;;;34234:44;34252:6;34260:9;34271:6;34234:17;:44::i;:::-;34166:333;;;34300:11;:19;34312:6;34300:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;34323:11;:22;34335:9;34323:22;;;;;;;;;;;;;;;;;;;;;;;;;34300:45;34296:203;;;34362:48;34384:6;34392:9;34403:6;34362:21;:48::i;:::-;34296:203;;;34443:44;34461:6;34469:9;34480:6;34443:17;:44::i;:::-;34296:203;34166:333;34035:464;33902:597;34523:7;34519:41;;34545:15;:13;:15::i;:::-;34519:41;33734:834;;;;:::o;38136:561::-;38186:7;38195;38215:15;38233:7;;38215:25;;38251:15;38269:7;;38251:25;;38298:9;38293:289;38317:9;:16;;;;38313:1;:20;38293:289;;;38383:7;38359;:21;38367:9;38377:1;38367:12;;;;;;;;;;;;;;;;;;;;;;;;;38359:21;;;;;;;;;;;;;;;;:31;:66;;;;38418:7;38394;:21;38402:9;38412:1;38402:12;;;;;;;;;;;;;;;;;;;;;;;;;38394:21;;;;;;;;;;;;;;;;:31;38359:66;38355:97;;;38435:7;;38444;;38427:25;;;;;;;;;38355:97;38477:34;38489:7;:21;38497:9;38507:1;38497:12;;;;;;;;;;;;;;;;;;;;;;;;;38489:21;;;;;;;;;;;;;;;;38477:7;:11;;:34;;;;:::i;:::-;38467:44;;38536:34;38548:7;:21;38556:9;38566:1;38556:12;;;;;;;;;;;;;;;;;;;;;;;;;38548:21;;;;;;;;;;;;;;;;38536:7;:11;;:34;;;;:::i;:::-;38526:44;;38335:3;;;;;;;38293:289;;;;38606:20;38618:7;;38606;;:11;;:20;;;;:::i;:::-;38596:7;:30;38592:61;;;38636:7;;38645;;38628:25;;;;;;;;38592:61;38672:7;38681;38664:25;;;;;;38136:561;;;:::o;6966:278::-;7052:7;7084:1;7080;:5;7087:12;7072:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7111:9;7127:1;7123;:5;;;;;;7111:17;;7235:1;7228:8;;;6966:278;;;;;:::o;37283:269::-;37343:21;;:::i;:::-;37391:24;37407:7;37391:15;:24::i;:::-;37377:6;:11;;:38;;;;;37441:25;37458:7;37441:16;:25::i;:::-;37426:6;:12;;:40;;;;;37502:42;37531:6;:12;;;37502:24;37514:6;:11;;;37502:7;:11;;:24;;;;:::i;:::-;:28;;:42;;;;:::i;:::-;37477:6;:22;;:67;;;;;37283:269;;;:::o;37560:397::-;37644:21;;:::i;:::-;37692:10;:8;:10::i;:::-;37678:6;:11;;:24;;;;;37730;37742:6;:11;;;37730:7;:11;;:24;;;;:::i;:::-;37713:6;:14;;:41;;;;;37779:29;37796:6;:11;;;37779:7;:12;;;:16;;:29;;;;:::i;:::-;37765:6;:11;;:43;;;;;37834:30;37852:6;:11;;;37834:7;:13;;;:17;;:30;;;;:::i;:::-;37819:6;:12;;:45;;;;;37900:49;37936:6;:12;;;37900:31;37919:6;:11;;;37900:6;:14;;;:18;;:31;;;;:::i;:::-;:35;;:49;;;;:::i;:::-;37875:6;:22;;:74;;;;;37560:397;;;;:::o;39042:230::-;39099:1;39088:7;;:12;:29;;;;;39116:1;39104:8;;:13;39088:29;39085:41;;;39119:7;;39085:41;39164:7;;39146:15;:25;;;;39201:8;;39182:16;:27;;;;39240:1;39230:7;:11;;;;39263:1;39252:8;:12;;;;39042:230;:::o;35620:532::-;35723:22;;:::i;:::-;35747;;:::i;:::-;35773:19;35784:7;35773:10;:19::i;:::-;35722:70;;;;35821:28;35841:7;35821;:15;35829:6;35821:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35803:7;:15;35811:6;35803:15;;;;;;;;;;;;;;;:46;;;;35878:36;35898:7;:15;;;35878:7;:15;35886:6;35878:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;35860:7;:15;35868:6;35860:15;;;;;;;;;;;;;;;:54;;;;35946:47;35969:7;:23;;;35946:7;:18;35954:9;35946:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;35925:7;:18;35933:9;35925:18;;;;;;;;;;;;;;;:68;;;;36007:69;36019:7;:12;;;36033:7;:13;;;36048:7;:12;;;36062:7;:13;;;36007:11;:69::i;:::-;36109:9;36092:52;;36101:6;36092:52;;;36120:7;:23;;;36092:52;;;;;;;;;;;;;;;;;;35620:532;;;;;:::o;35052:560::-;35153:22;;:::i;:::-;35177;;:::i;:::-;35203:19;35214:7;35203:10;:19::i;:::-;35152:70;;;;35251:36;35271:7;:15;;;35251:7;:15;35259:6;35251:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;35233:7;:15;35241:6;35233:15;;;;;;;;;;;;;;;:54;;;;35319:47;35342:7;:23;;;35319:7;:18;35327:9;35319:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;35298:7;:18;35306:9;35298:18;;;;;;;;;;;;;;;:68;;;;35398:47;35421:7;:23;;;35398:7;:18;35406:9;35398:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;35377:7;:18;35385:9;35377:18;;;;;;;;;;;;;;;:68;;;;35467:69;35479:7;:12;;;35493:7;:13;;;35508:7;:12;;;35522:7;:13;;;35467:11;:69::i;:::-;35569:9;35552:52;;35561:6;35552:52;;;35580:7;:23;;;35552:52;;;;;;;;;;;;;;;;;;35052:560;;;;;:::o;34576:468::-;34675:22;;:::i;:::-;34699;;:::i;:::-;34725:19;34736:7;34725:10;:19::i;:::-;34674:70;;;;34773:36;34793:7;:15;;;34773:7;:15;34781:6;34773:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;34755:7;:15;34763:6;34755:15;;;;;;;;;;;;;;;:54;;;;34841:47;34864:7;:23;;;34841:7;:18;34849:9;34841:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;34820:7;:18;34828:9;34820:18;;;;;;;;;;;;;;;:68;;;;34899:69;34911:7;:12;;;34925:7;:13;;;34940:7;:12;;;34954:7;:13;;;34899:11;:69::i;:::-;35001:9;34984:52;;34993:6;34984:52;;;35012:7;:23;;;34984:52;;;;;;;;;;;;;;;;;;34576:468;;;;;:::o;36160:616::-;36263:22;;:::i;:::-;36287;;:::i;:::-;36313:19;36324:7;36313:10;:19::i;:::-;36262:70;;;;36361:28;36381:7;36361;:15;36369:6;36361:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;36343:7;:15;36351:6;36343:15;;;;;;;;;;;;;;;:46;;;;36418:36;36438:7;:15;;;36418:7;:15;36426:6;36418:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;36400:7;:15;36408:6;36400:15;;;;;;;;;;;;;;;:54;;;;36486:47;36509:7;:23;;;36486:7;:18;36494:9;36486:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;36465:7;:18;36473:9;36465:18;;;;;;;;;;;;;;;:68;;;;36565:47;36588:7;:23;;;36565:7;:18;36573:9;36565:18;;;;;;;;;;;;;;;;:22;;:47;;;;:::i;:::-;36544:7;:18;36552:9;36544:18;;;;;;;;;;;;;;;:68;;;;36631:69;36643:7;:12;;;36657:7;:13;;;36672:7;:12;;;36686:7;:13;;;36631:11;:69::i;:::-;36733:9;36716:52;;36725:6;36716:52;;;36744:7;:23;;;36716:52;;;;;;;;;;;;;;;;;;36160:616;;;;;:::o;39284:115::-;39338:15;;39328:7;:25;;;;39375:16;;39364:8;:27;;;;39284:115::o;38708:154::-;38772:7;38799:55;38838:5;38799:20;38811:7;;38799;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;38792:62;;38708:154;;;:::o;38874:156::-;38939:7;38966:56;39006:5;38966:21;38978:8;;38966:7;:11;;:21;;;;:::i;:::-;:25;;:56;;;;:::i;:::-;38959:63;;38874:156;;;:::o;36784:274::-;36892:28;36914:5;36892:17;36904:4;36892:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;36882:7;:38;;;;36944:20;36959:4;36944:10;;:14;;:20;;;;:::i;:::-;36931:10;:33;;;;36989:22;37005:5;36989:11;;:15;;:22;;;;:::i;:::-;36975:11;:36;;;;37032:18;37044:5;37032:7;;:11;;:18;;;;:::i;:::-;37022:7;:28;;;;36784:274;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://0ebcfcd0345bd33b3083a457a71249d843187d268f5939a280b835cf9861c08e
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.