ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 LARRYDAVID
Holders
20
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
4,265,675,243,687.14712954 LARRYDAVIDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LarryDavid
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-25 */ /** *Submitted for verification at Etherscan.io on 2021-05-24 */ /** *Submitted for verification at Etherscan.io on 2021-05-24 */ // Larry David // t.me/LarryDavidtoken // SPDX-License-Identifier: Unlicensed pragma solidity ^0.6.12; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address 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 Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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; } } /** * @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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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 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 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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } contract LarryDavid is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "LarryDavid"; string private _symbol = "LARRYDAVID"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 3; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address payable public fundAddress = 0xDeC527FB923316E171Ee9569A97c68831E639d12; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool public tradingEnabled = false; uint256 public _maxTxAmount = 5000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _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 deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { require(!_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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } 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 setNumTokensSellToAddToLiquidity(uint256 newNumTokensSellToAddToLiquidity) external onlyOwner() { numTokensSellToAddToLiquidity = newNumTokensSellToAddToLiquidity; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setFundAddress(address payable newFundAddress) external onlyOwner() { fundAddress = newFundAddress; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function enableTrading() external onlyOwner() { tradingEnabled = true; } receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (from != owner() && !tradingEnabled) { require(tradingEnabled, "Trading is not enabled yet"); } uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if (overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled) { contractTokenBalance = numTokensSellToAddToLiquidity; swapAndLiquify(contractTokenBalance); } bool takeFee = true; if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 oneSixth = contractTokenBalance.div(6); uint256 fiveSixths = oneSixth.mul(5); uint256 remainingSixth = contractTokenBalance.sub(fiveSixths); uint256 initialBalance = address(this).balance; swapTokensForEth(fiveSixths); uint256 newBalance = address(this).balance.sub(initialBalance); uint256 liquidityToAdd = newBalance.div(5); addLiquidity(remainingSixth, liquidityToAdd); fundAddress.transfer(address(this).balance); emit SwapAndLiquify(fiveSixths, newBalance, remainingSixth); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","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":[],"name":"enableTrading","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":"fundAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"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":"address payable","name":"newFundAddress","type":"address"}],"name":"setFundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumTokensSellToAddToLiquidity","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405269d3c21bcecceda1000000600755600754600019816200002057fe5b06600019036008556040518060400160405280600a81526020017f4c61727279446176696400000000000000000000000000000000000000000000815250600a9080519060200190620000759291906200066e565b506040518060400160405280600a81526020017f4c41525259444156494400000000000000000000000000000000000000000000815250600b9080519060200190620000c39291906200066e565b506009600c60006101000a81548160ff021916908360ff1602179055506001600d55600d54600e556003600f55600f5460105573dec527fb923316e171ee9569a97c68831e639d12601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160156101000a81548160ff0219169083151502179055506000601160166101000a81548160ff02191690831515021790555069010f0cf064dd59200000601255681b1ae4d6e2ef500000601355348015620001a957600080fd5b506000620001bc6200063d60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060085460016000620002716200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030f57600080fd5b505afa15801562000324573d6000803e3d6000fd5b505050506040513d60208110156200033b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003af57600080fd5b505afa158015620003c4573d6000803e3d6000fd5b505050506040513d6020811015620003db57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200045657600080fd5b505af11580156200046b573d6000803e3d6000fd5b505050506040513d60208110156200048257600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160046000620005166200064560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005cf6200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a35062000714565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b157805160ff1916838001178555620006e2565b82800160010185558215620006e2579182015b82811115620006e1578251825591602001919060010190620006c4565b5b509050620006f19190620006f5565b5090565b5b8082111562000710576000816000905550600101620006f6565b5090565b60805160601c60a05160601c614d726200075c600039806118955280612ebf525080610f775280613bf25280613cde5280613d055280613e105280613e375250614d726000f3fe6080604052600436106102345760003560e01c80635342acb41161012e57806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e14610c4f578063e82bef2914610cd4578063ea2f0b3714610d15578063f0f165af14610d66578063f2fde38b14610da15761023b565b806395d89b4114610a65578063a457c2d714610af5578063a9059cbb14610b66578063c49b9a8014610bd7578063d543dbeb14610c145761023b565b806385dc3004116100f257806385dc30041461091a57806388f820201461096b5780638a8c523c146109d25780638da5cb5b146109e95780638ee88c5314610a2a5761023b565b80635342acb4146107e15780636bc87c3a1461084857806370a0823114610873578063715018a6146108d85780637d1db4a5146108ef5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461069a57806349bd5a5e146106f55780634a74bb02146107365780634ada218b1461076357806352390c02146107905761023b565b80633685d4191461052157806339509351146105725780633b124fe7146105e35780633bd5d1731461060e578063437823ec146106495761023b565b80631694505e116102035780631694505e146103a757806318160ddd146103e857806323b872dd146104135780632d838119146104a4578063313ce567146104f35761023b565b8063061c82d01461024057806306fdde031461027b578063095ea7b31461030b57806313114a9d1461037c5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102796004803603602081101561026357600080fd5b8101908080359060200190929190505050610df2565b005b34801561028757600080fd5b50610290610eab565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d05780820151818401526020810190506102b5565b50505050905090810190601f1680156102fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031757600080fd5b506103646004803603604081101561032e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f4d565b60405180821515815260200191505060405180910390f35b34801561038857600080fd5b50610391610f6b565b6040518082815260200191505060405180910390f35b3480156103b357600080fd5b506103bc610f75565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f457600080fd5b506103fd610f99565b6040518082815260200191505060405180910390f35b34801561041f57600080fd5b5061048c6004803603606081101561043657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b60405180821515815260200191505060405180910390f35b3480156104b057600080fd5b506104dd600480360360208110156104c757600080fd5b810190808035906020019092919050505061107c565b6040518082815260200191505060405180910390f35b3480156104ff57600080fd5b50610508611100565b604051808260ff16815260200191505060405180910390f35b34801561052d57600080fd5b506105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611117565b005b34801561057e57600080fd5b506105cb6004803603604081101561059557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b60405180821515815260200191505060405180910390f35b3480156105ef57600080fd5b506105f861153b565b6040518082815260200191505060405180910390f35b34801561061a57600080fd5b506106476004803603602081101561063157600080fd5b8101908080359060200190929190505050611541565b005b34801561065557600080fd5b506106986004803603602081101561066c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d2565b005b3480156106a657600080fd5b506106df600480360360408110156106bd57600080fd5b81019080803590602001909291908035151590602001909291905050506117dc565b6040518082815260200191505060405180910390f35b34801561070157600080fd5b5061070a611893565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074257600080fd5b5061074b6118b7565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b506107786118ca565b60405180821515815260200191505060405180910390f35b34801561079c57600080fd5b506107df600480360360208110156107b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118dd565b005b3480156107ed57600080fd5b506108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bde565b60405180821515815260200191505060405180910390f35b34801561085457600080fd5b5061085d611c34565b6040518082815260200191505060405180910390f35b34801561087f57600080fd5b506108c26004803603602081101561089657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3a565b6040518082815260200191505060405180910390f35b3480156108e457600080fd5b506108ed611d25565b005b3480156108fb57600080fd5b50610904611e92565b6040518082815260200191505060405180910390f35b34801561092657600080fd5b506109696004803603602081101561093d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e98565b005b34801561097757600080fd5b506109ba6004803603602081101561098e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8b565b60405180821515815260200191505060405180910390f35b3480156109de57600080fd5b506109e7611fe1565b005b3480156109f557600080fd5b506109fe6120ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3657600080fd5b50610a6360048036036020811015610a4d57600080fd5b81019080803590602001909291905050506120d6565b005b348015610a7157600080fd5b50610a7a61218f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aba578082015181840152602081019050610a9f565b50505050905090810190601f168015610ae75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b0157600080fd5b50610b4e60048036036040811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612231565b60405180821515815260200191505060405180910390f35b348015610b7257600080fd5b50610bbf60048036036040811015610b8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fe565b60405180821515815260200191505060405180910390f35b348015610be357600080fd5b50610c1260048036036020811015610bfa57600080fd5b8101908080351515906020019092919050505061231c565b005b348015610c2057600080fd5b50610c4d60048036036020811015610c3757600080fd5b8101908080359060200190929190505050612421565b005b348015610c5b57600080fd5b50610cbe60048036036040811015610c7257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612501565b6040518082815260200191505060405180910390f35b348015610ce057600080fd5b50610ce9612588565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d2157600080fd5b50610d6460048036036020811015610d3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ae565b005b348015610d7257600080fd5b50610d9f60048036036020811015610d8957600080fd5b81019080803590602001909291905050506126b8565b005b348015610dad57600080fd5b50610df060048036036020811015610dc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612771565b005b610dfa612963565b73ffffffffffffffffffffffffffffffffffffffff16610e186120ad565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f435780601f10610f1857610100808354040283529160200191610f43565b820191906000526020600020905b815481529060010190602001808311610f2657829003601f168201915b5050505050905090565b6000610f61610f5a612963565b848461296b565b6001905092915050565b6000600954905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b6000610fb0848484612b62565b61107184610fbc612963565b61106c85604051806060016040528060288152602001614c5260289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611022612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b600190509392505050565b60006008548211156110d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614b97602a913960400191505060405180910390fd5b60006110e36130b9565b90506110f881846130e490919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b61111f612963565b73ffffffffffffffffffffffffffffffffffffffff1661113d6120ad565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600680549050811015611484578173ffffffffffffffffffffffffffffffffffffffff16600682815481106112b957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114775760066001600680549050038154811061131557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061134d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061143d57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611484565b8080600101915050611288565b5050565b6000611531611495612963565b8461152c85600360006114a6612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b61296b565b6001905092915050565b600d5481565b600061154b612963565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614cec602c913960400191505060405180910390fd5b60006115fb836131f5565b5050505050905061165481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116ac8160085461325190919063ffffffff16565b6008819055506116c78360095461316d90919063ffffffff16565b600981905550505050565b6116da612963565b73ffffffffffffffffffffffffffffffffffffffff166116f86120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611876576000611866846131f5565b505050505090508091505061188d565b6000611881846131f5565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160159054906101000a900460ff1681565b601160169054906101000a900460ff1681565b6118e5612963565b73ffffffffffffffffffffffffffffffffffffffff166119036120ad565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b2057611adc600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cd557600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d20565b611d1d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b90505b919050565b611d2d612963565b73ffffffffffffffffffffffffffffffffffffffff16611d4b6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60125481565b611ea0612963565b73ffffffffffffffffffffffffffffffffffffffff16611ebe6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611fe9612963565b73ffffffffffffffffffffffffffffffffffffffff166120076120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160166101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120de612963565b73ffffffffffffffffffffffffffffffffffffffff166120fc6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122275780601f106121fc57610100808354040283529160200191612227565b820191906000526020600020905b81548152906001019060200180831161220a57829003601f168201915b5050505050905090565b60006122f461223e612963565b846122ef85604051806060016040528060258152602001614d186025913960036000612268612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b6001905092915050565b600061231261230b612963565b8484612b62565b6001905092915050565b612324612963565b73ffffffffffffffffffffffffffffffffffffffff166123426120ad565b73ffffffffffffffffffffffffffffffffffffffff16146123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612429612963565b73ffffffffffffffffffffffffffffffffffffffff166124476120ad565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124f860646124ea836007546132d490919063ffffffff16565b6130e490919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6125b6612963565b73ffffffffffffffffffffffffffffffffffffffff166125d46120ad565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6126c0612963565b73ffffffffffffffffffffffffffffffffffffffff166126de6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b612779612963565b73ffffffffffffffffffffffffffffffffffffffff166127976120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614bc16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614cc86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614be76022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614ca36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614b746023913960400191505060405180910390fd5b60008111612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c7a6029913960400191505060405180910390fd5b612ccf6120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d3d5750612d0d6120ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d9e57601254811115612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614c096028913960400191505060405180910390fd5b5b612da66120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dee5750601160169054906101000a900460ff16155b15612e7657601160169054906101000a900460ff16612e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b5b6000612e8130611c3a565b90506012548110612e925760125490505b60006013548210159050808015612eb65750601160149054906101000a900460ff16155b8015612f0e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612f265750601160159054906101000a900460ff165b15612f3a576013549150612f398261335a565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fe15750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612feb57600090505b612ff7868686846134d7565b505050505050565b60008383111582906130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613071578082015181840152602081019050613056565b50505050905090810190601f16801561309e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b60008060006130c66137e8565b915091506130dd81836130e490919063ffffffff16565b9250505090565b600080821161315b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161316457fe5b04905092915050565b6000808284019050838110156131eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061320c8a613a79565b925092509250600080600061322a8d86866132256130b9565b613ad3565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000828211156132c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156132e75760009050613354565b60008284029050828482816132f857fe5b041461334f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614c316021913960400191505060405180910390fd5b809150505b92915050565b6001601160146101000a81548160ff021916908315150217905550600061338b6006836130e490919063ffffffff16565b905060006133a36005836132d490919063ffffffff16565b905060006133ba828561325190919063ffffffff16565b905060004790506133ca83613b5c565b60006133df824761325190919063ffffffff16565b905060006133f76005836130e490919063ffffffff16565b90506134038482613e0a565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561346b573d6000803e3d6000fd5b507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185838660405180848152602001838152602001828152602001935050505060405180910390a15050505050506000601160146101000a81548160ff02191690831515021790555050565b806134e5576134e4613f5b565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135885750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561359d57613598848484613f9e565b6137d4565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136405750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613655576136508484846141fe565b6137d3565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136f95750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561370e5761370984848461445e565b6137d2565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b05750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137c5576137c0848484614629565b6137d1565b6137d084848461445e565b5b5b5b5b806137e2576137e161491e565b5b50505050565b600080600060085490506000600754905060005b600680549050811015613a3c5782600160006006848154811061381b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613902575081600260006006848154811061389a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156139195760085460075494509450505050613a75565b6139a2600160006006848154811061392d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461325190919063ffffffff16565b9250613a2d60026000600684815481106139b857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361325190919063ffffffff16565b915080806001019150506137fc565b50613a546007546008546130e490919063ffffffff16565b821015613a6c57600854600754935093505050613a75565b81819350935050505b9091565b600080600080613a8885614932565b90506000613a9586614963565b90506000613abe82613ab0858a61325190919063ffffffff16565b61325190919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613aec85896132d490919063ffffffff16565b90506000613b0386896132d490919063ffffffff16565b90506000613b1a87896132d490919063ffffffff16565b90506000613b4382613b35858761325190919063ffffffff16565b61325190919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613b7657600080fd5b50604051908082528060200260200182016040528015613ba55781602001602082028036833780820191505090505b5090503081600081518110613bb657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c5657600080fd5b505afa158015613c6a573d6000803e3d6000fd5b505050506040513d6020811015613c8057600080fd5b810190808051906020019092919050505081600181518110613c9e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d03307f00000000000000000000000000000000000000000000000000000000000000008461296b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613dc5578082015181840152602081019050613daa565b505050509050019650505050505050600060405180830381600087803b158015613dee57600080fd5b505af1158015613e02573d6000803e3d6000fd5b505050505050565b613e35307f00000000000000000000000000000000000000000000000000000000000000008461296b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e7f6120ad565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613f0457600080fd5b505af1158015613f18573d6000803e3d6000fd5b50505050506040513d6060811015613f2f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600d54148015613f6f57506000600f54145b15613f7957613f9c565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b600080600080600080613fb0876131f5565b95509550955095509550955061400e87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140a386600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061418481614994565b61418e8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614210876131f5565b95509550955095509550955061426e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061430383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143e481614994565b6143ee8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614470876131f5565b9550955095509550955095506144ce86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061456385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145af81614994565b6145b98483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061463b876131f5565b95509550955095509550955061469987600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061472e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147c383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148a481614994565b6148ae8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b600061495c606461494e600d54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061498d606461497f600f54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061499e6130b9565b905060006149b582846132d490919063ffffffff16565b9050614a0981600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614b3457614af083600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614b4e8260085461325190919063ffffffff16565b600881905550614b698160095461316d90919063ffffffff16565b600981905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220364b70bd8ed8ee8a3fd4612b336e097b93f0728eba9c541bea50624d1bd515c564736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102345760003560e01c80635342acb41161012e57806395d89b41116100ab578063dd62ed3e1161006f578063dd62ed3e14610c4f578063e82bef2914610cd4578063ea2f0b3714610d15578063f0f165af14610d66578063f2fde38b14610da15761023b565b806395d89b4114610a65578063a457c2d714610af5578063a9059cbb14610b66578063c49b9a8014610bd7578063d543dbeb14610c145761023b565b806385dc3004116100f257806385dc30041461091a57806388f820201461096b5780638a8c523c146109d25780638da5cb5b146109e95780638ee88c5314610a2a5761023b565b80635342acb4146107e15780636bc87c3a1461084857806370a0823114610873578063715018a6146108d85780637d1db4a5146108ef5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461069a57806349bd5a5e146106f55780634a74bb02146107365780634ada218b1461076357806352390c02146107905761023b565b80633685d4191461052157806339509351146105725780633b124fe7146105e35780633bd5d1731461060e578063437823ec146106495761023b565b80631694505e116102035780631694505e146103a757806318160ddd146103e857806323b872dd146104135780632d838119146104a4578063313ce567146104f35761023b565b8063061c82d01461024057806306fdde031461027b578063095ea7b31461030b57806313114a9d1461037c5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102796004803603602081101561026357600080fd5b8101908080359060200190929190505050610df2565b005b34801561028757600080fd5b50610290610eab565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102d05780820151818401526020810190506102b5565b50505050905090810190601f1680156102fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561031757600080fd5b506103646004803603604081101561032e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f4d565b60405180821515815260200191505060405180910390f35b34801561038857600080fd5b50610391610f6b565b6040518082815260200191505060405180910390f35b3480156103b357600080fd5b506103bc610f75565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103f457600080fd5b506103fd610f99565b6040518082815260200191505060405180910390f35b34801561041f57600080fd5b5061048c6004803603606081101561043657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fa3565b60405180821515815260200191505060405180910390f35b3480156104b057600080fd5b506104dd600480360360208110156104c757600080fd5b810190808035906020019092919050505061107c565b6040518082815260200191505060405180910390f35b3480156104ff57600080fd5b50610508611100565b604051808260ff16815260200191505060405180910390f35b34801561052d57600080fd5b506105706004803603602081101561054457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611117565b005b34801561057e57600080fd5b506105cb6004803603604081101561059557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611488565b60405180821515815260200191505060405180910390f35b3480156105ef57600080fd5b506105f861153b565b6040518082815260200191505060405180910390f35b34801561061a57600080fd5b506106476004803603602081101561063157600080fd5b8101908080359060200190929190505050611541565b005b34801561065557600080fd5b506106986004803603602081101561066c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d2565b005b3480156106a657600080fd5b506106df600480360360408110156106bd57600080fd5b81019080803590602001909291908035151590602001909291905050506117dc565b6040518082815260200191505060405180910390f35b34801561070157600080fd5b5061070a611893565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074257600080fd5b5061074b6118b7565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b506107786118ca565b60405180821515815260200191505060405180910390f35b34801561079c57600080fd5b506107df600480360360208110156107b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118dd565b005b3480156107ed57600080fd5b506108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bde565b60405180821515815260200191505060405180910390f35b34801561085457600080fd5b5061085d611c34565b6040518082815260200191505060405180910390f35b34801561087f57600080fd5b506108c26004803603602081101561089657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3a565b6040518082815260200191505060405180910390f35b3480156108e457600080fd5b506108ed611d25565b005b3480156108fb57600080fd5b50610904611e92565b6040518082815260200191505060405180910390f35b34801561092657600080fd5b506109696004803603602081101561093d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e98565b005b34801561097757600080fd5b506109ba6004803603602081101561098e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8b565b60405180821515815260200191505060405180910390f35b3480156109de57600080fd5b506109e7611fe1565b005b3480156109f557600080fd5b506109fe6120ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3657600080fd5b50610a6360048036036020811015610a4d57600080fd5b81019080803590602001909291905050506120d6565b005b348015610a7157600080fd5b50610a7a61218f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610aba578082015181840152602081019050610a9f565b50505050905090810190601f168015610ae75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b0157600080fd5b50610b4e60048036036040811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612231565b60405180821515815260200191505060405180910390f35b348015610b7257600080fd5b50610bbf60048036036040811015610b8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122fe565b60405180821515815260200191505060405180910390f35b348015610be357600080fd5b50610c1260048036036020811015610bfa57600080fd5b8101908080351515906020019092919050505061231c565b005b348015610c2057600080fd5b50610c4d60048036036020811015610c3757600080fd5b8101908080359060200190929190505050612421565b005b348015610c5b57600080fd5b50610cbe60048036036040811015610c7257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612501565b6040518082815260200191505060405180910390f35b348015610ce057600080fd5b50610ce9612588565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610d2157600080fd5b50610d6460048036036020811015610d3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ae565b005b348015610d7257600080fd5b50610d9f60048036036020811015610d8957600080fd5b81019080803590602001909291905050506126b8565b005b348015610dad57600080fd5b50610df060048036036020811015610dc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612771565b005b610dfa612963565b73ffffffffffffffffffffffffffffffffffffffff16610e186120ad565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f435780601f10610f1857610100808354040283529160200191610f43565b820191906000526020600020905b815481529060010190602001808311610f2657829003601f168201915b5050505050905090565b6000610f61610f5a612963565b848461296b565b6001905092915050565b6000600954905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b6000610fb0848484612b62565b61107184610fbc612963565b61106c85604051806060016040528060288152602001614c5260289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611022612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b600190509392505050565b60006008548211156110d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614b97602a913960400191505060405180910390fd5b60006110e36130b9565b90506110f881846130e490919063ffffffff16565b915050919050565b6000600c60009054906101000a900460ff16905090565b61111f612963565b73ffffffffffffffffffffffffffffffffffffffff1661113d6120ad565b73ffffffffffffffffffffffffffffffffffffffff16146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600680549050811015611484578173ffffffffffffffffffffffffffffffffffffffff16600682815481106112b957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114775760066001600680549050038154811061131557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166006828154811061134d57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600680548061143d57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611484565b8080600101915050611288565b5050565b6000611531611495612963565b8461152c85600360006114a6612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b61296b565b6001905092915050565b600d5481565b600061154b612963565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614cec602c913960400191505060405180910390fd5b60006115fb836131f5565b5050505050905061165481600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506116ac8160085461325190919063ffffffff16565b6008819055506116c78360095461316d90919063ffffffff16565b600981905550505050565b6116da612963565b73ffffffffffffffffffffffffffffffffffffffff166116f86120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600754831115611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611876576000611866846131f5565b505050505090508091505061188d565b6000611881846131f5565b50505050915050809150505b92915050565b7f000000000000000000000000c259bcc5a6f18d2cea61245b6d5c69465d73555681565b601160159054906101000a900460ff1681565b601160169054906101000a900460ff1681565b6118e5612963565b73ffffffffffffffffffffffffffffffffffffffff166119036120ad565b73ffffffffffffffffffffffffffffffffffffffff161461198c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b2057611adc600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f5481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cd557600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611d20565b611d1d600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461107c565b90505b919050565b611d2d612963565b73ffffffffffffffffffffffffffffffffffffffff16611d4b6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611dd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60125481565b611ea0612963565b73ffffffffffffffffffffffffffffffffffffffff16611ebe6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611fe9612963565b73ffffffffffffffffffffffffffffffffffffffff166120076120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160166101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6120de612963565b73ffffffffffffffffffffffffffffffffffffffff166120fc6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122275780601f106121fc57610100808354040283529160200191612227565b820191906000526020600020905b81548152906001019060200180831161220a57829003601f168201915b5050505050905090565b60006122f461223e612963565b846122ef85604051806060016040528060258152602001614d186025913960036000612268612963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fff9092919063ffffffff16565b61296b565b6001905092915050565b600061231261230b612963565b8484612b62565b6001905092915050565b612324612963565b73ffffffffffffffffffffffffffffffffffffffff166123426120ad565b73ffffffffffffffffffffffffffffffffffffffff16146123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b612429612963565b73ffffffffffffffffffffffffffffffffffffffff166124476120ad565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124f860646124ea836007546132d490919063ffffffff16565b6130e490919063ffffffff16565b60128190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6125b6612963565b73ffffffffffffffffffffffffffffffffffffffff166125d46120ad565b73ffffffffffffffffffffffffffffffffffffffff161461265d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6126c0612963565b73ffffffffffffffffffffffffffffffffffffffff166126de6120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612767576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060138190555050565b612779612963565b73ffffffffffffffffffffffffffffffffffffffff166127976120ad565b73ffffffffffffffffffffffffffffffffffffffff1614612820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614bc16026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614cc86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614be76022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614ca36025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614b746023913960400191505060405180910390fd5b60008111612cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c7a6029913960400191505060405180910390fd5b612ccf6120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d3d5750612d0d6120ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d9e57601254811115612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614c096028913960400191505060405180910390fd5b5b612da66120ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dee5750601160169054906101000a900460ff16155b15612e7657601160169054906101000a900460ff16612e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b5b6000612e8130611c3a565b90506012548110612e925760125490505b60006013548210159050808015612eb65750601160149054906101000a900460ff16155b8015612f0e57507f000000000000000000000000c259bcc5a6f18d2cea61245b6d5c69465d73555673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612f265750601160159054906101000a900460ff165b15612f3a576013549150612f398261335a565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fe15750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612feb57600090505b612ff7868686846134d7565b505050505050565b60008383111582906130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613071578082015181840152602081019050613056565b50505050905090810190601f16801561309e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b60008060006130c66137e8565b915091506130dd81836130e490919063ffffffff16565b9250505090565b600080821161315b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b81838161316457fe5b04905092915050565b6000808284019050838110156131eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080600080600080600080600061320c8a613a79565b925092509250600080600061322a8d86866132256130b9565b613ad3565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b6000828211156132c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156132e75760009050613354565b60008284029050828482816132f857fe5b041461334f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614c316021913960400191505060405180910390fd5b809150505b92915050565b6001601160146101000a81548160ff021916908315150217905550600061338b6006836130e490919063ffffffff16565b905060006133a36005836132d490919063ffffffff16565b905060006133ba828561325190919063ffffffff16565b905060004790506133ca83613b5c565b60006133df824761325190919063ffffffff16565b905060006133f76005836130e490919063ffffffff16565b90506134038482613e0a565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561346b573d6000803e3d6000fd5b507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185838660405180848152602001838152602001828152602001935050505060405180910390a15050505050506000601160146101000a81548160ff02191690831515021790555050565b806134e5576134e4613f5b565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135885750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561359d57613598848484613f9e565b6137d4565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136405750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613655576136508484846141fe565b6137d3565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156136f95750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561370e5761370984848461445e565b6137d2565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b05750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137c5576137c0848484614629565b6137d1565b6137d084848461445e565b5b5b5b5b806137e2576137e161491e565b5b50505050565b600080600060085490506000600754905060005b600680549050811015613a3c5782600160006006848154811061381b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613902575081600260006006848154811061389a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156139195760085460075494509450505050613a75565b6139a2600160006006848154811061392d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461325190919063ffffffff16565b9250613a2d60026000600684815481106139b857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361325190919063ffffffff16565b915080806001019150506137fc565b50613a546007546008546130e490919063ffffffff16565b821015613a6c57600854600754935093505050613a75565b81819350935050505b9091565b600080600080613a8885614932565b90506000613a9586614963565b90506000613abe82613ab0858a61325190919063ffffffff16565b61325190919063ffffffff16565b90508083839550955095505050509193909250565b600080600080613aec85896132d490919063ffffffff16565b90506000613b0386896132d490919063ffffffff16565b90506000613b1a87896132d490919063ffffffff16565b90506000613b4382613b35858761325190919063ffffffff16565b61325190919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff81118015613b7657600080fd5b50604051908082528060200260200182016040528015613ba55781602001602082028036833780820191505090505b5090503081600081518110613bb657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c5657600080fd5b505afa158015613c6a573d6000803e3d6000fd5b505050506040513d6020811015613c8057600080fd5b810190808051906020019092919050505081600181518110613c9e57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d03307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461296b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613dc5578082015181840152602081019050613daa565b505050509050019650505050505050600060405180830381600087803b158015613dee57600080fd5b505af1158015613e02573d6000803e3d6000fd5b505050505050565b613e35307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461296b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613e7f6120ad565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015613f0457600080fd5b505af1158015613f18573d6000803e3d6000fd5b50505050506040513d6060811015613f2f57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600d54148015613f6f57506000600f54145b15613f7957613f9c565b600d54600e81905550600f546010819055506000600d819055506000600f819055505b565b600080600080600080613fb0876131f5565b95509550955095509550955061400e87600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506140a386600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061413885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061418481614994565b61418e8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614210876131f5565b95509550955095509550955061426e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061430383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061439885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506143e481614994565b6143ee8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614470876131f5565b9550955095509550955095506144ce86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061456385600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506145af81614994565b6145b98483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061463b876131f5565b95509550955095509550955061469987600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061472e86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325190919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147c383600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061485885600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148a481614994565b6148ae8483614b39565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600e54600d81905550601054600f81905550565b600061495c606461494e600d54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061498d606461497f600f54856132d490919063ffffffff16565b6130e490919063ffffffff16565b9050919050565b600061499e6130b9565b905060006149b582846132d490919063ffffffff16565b9050614a0981600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614b3457614af083600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d90919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b614b4e8260085461325190919063ffffffff16565b600881905550614b698160095461316d90919063ffffffff16565b600981905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220364b70bd8ed8ee8a3fd4612b336e097b93f0728eba9c541bea50624d1bd515c564736f6c634300060c0033
Deployed Bytecode Sourcemap
29321:17259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36548:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31625:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32537:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33658:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30277:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31902:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32706:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34582:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31811:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35184:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33027:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30093:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33753:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36311:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34138:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30335:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30496:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30543:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34843:333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40757:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30176:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32005:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10743:148;;;;;;;;;;;;;:::i;:::-;;30586:53;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36980:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33530:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37461:86;;;;;;;;;;;;;:::i;:::-;;10092:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36850:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31716:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33253:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32211:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37282:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37112:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32386:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30380:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36430:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36654:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11046:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36548:98;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36632:6:::1;36622:7;:16;;;;36548:98:::0;:::o;31625:83::-;31662:13;31695:5;31688:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31625:83;:::o;32537:161::-;32612:4;32629:39;32638:12;:10;:12::i;:::-;32652:7;32661:6;32629:8;:39::i;:::-;32686:4;32679:11;;32537:161;;;;:::o;33658:87::-;33700:7;33727:10;;33720:17;;33658:87;:::o;30277:51::-;;;:::o;31902:95::-;31955:7;31982;;31975:14;;31902:95;:::o;32706:313::-;32804:4;32821:36;32831:6;32839:9;32850:6;32821:9;:36::i;:::-;32868:121;32877:6;32885:12;:10;:12::i;:::-;32899:89;32937:6;32899:89;;;;;;;;;;;;;;;;;:11;:19;32911:6;32899:19;;;;;;;;;;;;;;;:33;32919:12;:10;:12::i;:::-;32899:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32868:8;:121::i;:::-;33007:4;33000:11;;32706:313;;;;;:::o;34582:253::-;34648:7;34687;;34676;:18;;34668:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34752:19;34775:10;:8;:10::i;:::-;34752:33;;34803:24;34815:11;34803:7;:11;;:24;;;;:::i;:::-;34796:31;;;34582:253;;;:::o;31811:83::-;31852:5;31877:9;;;;;;;;;;;31870:16;;31811:83;:::o;35184:479::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35266:11:::1;:20;35278:7;35266:20;;;;;;;;;;;;;;;;;;;;;;;;;35258:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35334:9;35329:327;35353:9;:16;;;;35349:1;:20;35329:327;;;35411:7;35395:23;;:9;35405:1;35395:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;35391:254;;;35454:9;35483:1;35464:9;:16;;;;:20;35454:31;;;;;;;;;;;;;;;;;;;;;;;;;35439:9;35449:1;35439:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35523:1;35504:7;:16;35512:7;35504:16;;;;;;;;;;;;;;;:20;;;;35566:5;35543:11;:20;35555:7;35543:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;35590:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35624:5;;35391:254;35371:3;;;;;;;35329:327;;;;35184:479:::0;:::o;33027:218::-;33115:4;33132:83;33141:12;:10;:12::i;:::-;33155:7;33164:50;33203:10;33164:11;:25;33176:12;:10;:12::i;:::-;33164:25;;;;;;;;;;;;;;;:34;33190:7;33164:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;33132:8;:83::i;:::-;33233:4;33226:11;;33027:218;;;;:::o;30093:26::-;;;;:::o;33753:377::-;33805:14;33822:12;:10;:12::i;:::-;33805:29;;33854:11;:19;33866:6;33854:19;;;;;;;;;;;;;;;;;;;;;;;;;33853:20;33845:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33934:15;33958:19;33969:7;33958:10;:19::i;:::-;33933:44;;;;;;;34006:28;34026:7;34006;:15;34014:6;34006:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33988:7;:15;33996:6;33988:15;;;;;;;;;;;;;;;:46;;;;34055:20;34067:7;34055;;:11;;:20;;;;:::i;:::-;34045:7;:30;;;;34099:23;34114:7;34099:10;;:14;;:23;;;;:::i;:::-;34086:10;:36;;;;33753:377;;;:::o;36311:111::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36410:4:::1;36380:18;:27;36399:7;36380:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36311:111:::0;:::o;34138:436::-;34228:7;34267;;34256;:18;;34248:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34326:17;34321:246;;34361:15;34385:19;34396:7;34385:10;:19::i;:::-;34360:44;;;;;;;34426:7;34419:14;;;;;34321:246;34468:23;34499:19;34510:7;34499:10;:19::i;:::-;34466:52;;;;;;;34540:15;34533:22;;;34138:436;;;;;:::o;30335:38::-;;;:::o;30496:40::-;;;;;;;;;;;;;:::o;30543:34::-;;;;;;;;;;;;;:::o;34843:333::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34926:11:::1;:20;34938:7;34926:20;;;;;;;;;;;;;;;;;;;;;;;;;34925:21;34917:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;35011:1;34992:7;:16;35000:7;34992:16;;;;;;;;;;;;;;;;:20;34989:108;;;35048:37;35068:7;:16;35076:7;35068:16;;;;;;;;;;;;;;;;35048:19;:37::i;:::-;35029:7;:16;35037:7;35029:16;;;;;;;;;;;;;;;:56;;;;34989:108;35130:4;35107:11;:20;35119:7;35107:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;35145:9;35160:7;35145:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34843:333:::0;:::o;40757:123::-;40821:4;40845:18;:27;40864:7;40845:27;;;;;;;;;;;;;;;;;;;;;;;;;40838:34;;40757:123;;;:::o;30176:32::-;;;;:::o;32005:198::-;32071:7;32095:11;:20;32107:7;32095:20;;;;;;;;;;;;;;;;;;;;;;;;;32091:49;;;32124:7;:16;32132:7;32124:16;;;;;;;;;;;;;;;;32117:23;;;;32091:49;32158:37;32178:7;:16;32186:7;32178:16;;;;;;;;;;;;;;;;32158:19;:37::i;:::-;32151:44;;32005:198;;;;:::o;10743:148::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10850:1:::1;10813:40;;10834:6;::::0;::::1;;;;;;;;10813:40;;;;;;;;;;;;10881:1;10864:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10743:148::o:0;30586:53::-;;;;:::o;36980:124::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37082:14:::1;37068:11;;:28;;;;;;;;;;;;;;;;;;36980:124:::0;:::o;33530:120::-;33598:4;33622:11;:20;33634:7;33622:20;;;;;;;;;;;;;;;;;;;;;;;;;33615:27;;33530:120;;;:::o;37461:86::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37535:4:::1;37518:14;;:21;;;;;;;;;;;;;;;;;;37461:86::o:0;10092:87::-;10138:7;10165:6;;;;;;;;;;;10158:13;;10092:87;:::o;36850:122::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36952:12:::1;36936:13;:28;;;;36850:122:::0;:::o;31716:87::-;31755:13;31788:7;31781:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31716:87;:::o;33253:269::-;33346:4;33363:129;33372:12;:10;:12::i;:::-;33386:7;33395:96;33434:15;33395:96;;;;;;;;;;;;;;;;;:11;:25;33407:12;:10;:12::i;:::-;33395:25;;;;;;;;;;;;;;;:34;33421:7;33395:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33363:8;:129::i;:::-;33510:4;33503:11;;33253:269;;;;:::o;32211:167::-;32289:4;32306:42;32316:12;:10;:12::i;:::-;32330:9;32341:6;32306:9;:42::i;:::-;32366:4;32359:11;;32211:167;;;;:::o;37282:171::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37383:8:::1;37359:21;;:32;;;;;;;;;;;;;;;;;;37407:38;37436:8;37407:38;;;;;;;;;;;;;;;;;;;;37282:171:::0;:::o;37112:162::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37206:60:::1;37250:5;37206:25;37218:12;37206:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;37191:12;:75;;;;37112:162:::0;:::o;32386:143::-;32467:7;32494:11;:18;32506:5;32494:18;;;;;;;;;;;;;;;:27;32513:7;32494:27;;;;;;;;;;;;;;;;32487:34;;32386:143;;;;:::o;30380:79::-;;;;;;;;;;;;;:::o;36430:110::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36527:5:::1;36497:18;:27;36516:7;36497:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36430:110:::0;:::o;36654:188::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36802:32:::1;36770:29;:64;;;;36654:188:::0;:::o;11046:244::-;10323:12;:10;:12::i;:::-;10312:23;;:7;:5;:7::i;:::-;:23;;;10304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11155:1:::1;11135:22;;:8;:22;;;;11127:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11245:8;11216:38;;11237:6;::::0;::::1;;;;;;;;11216:38;;;;;;;;;;;;11274:8;11265:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;11046:244:::0;:::o;8721:106::-;8774:15;8809:10;8802:17;;8721:106;:::o;40888:337::-;40998:1;40981:19;;:5;:19;;;;40973:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41079:1;41060:21;;:7;:21;;;;41052:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41163:6;41133:11;:18;41145:5;41133:18;;;;;;;;;;;;;;;:27;41152:7;41133:27;;;;;;;;;;;;;;;:36;;;;41201:7;41185:32;;41194:5;41185:32;;;41210:6;41185:32;;;;;;;;;;;;;;;;;;40888:337;;;:::o;41233:1322::-;41371:1;41355:18;;:4;:18;;;;41347:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41448:1;41434:16;;:2;:16;;;;41426:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41518:1;41509:6;:10;41501:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41589:7;:5;:7::i;:::-;41581:15;;:4;:15;;;;:32;;;;;41606:7;:5;:7::i;:::-;41600:13;;:2;:13;;;;41581:32;41578:125;;;41646:12;;41636:6;:22;;41628:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41578:125;41728:7;:5;:7::i;:::-;41720:15;;:4;:15;;;;:34;;;;;41740:14;;;;;;;;;;;41739:15;41720:34;41716:120;;;41779:14;;;;;;;;;;;41771:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41716:120;41848:28;41879:24;41897:4;41879:9;:24::i;:::-;41848:55;;41943:12;;41919:20;:36;41916:112;;42004:12;;41981:35;;41916:112;42040:24;42091:29;;42067:20;:53;;42040:80;;42135:19;:40;;;;;42159:16;;;;;;;;;;;42158:17;42135:40;:65;;;;;42187:13;42179:21;;:4;:21;;;;42135:65;:90;;;;;42204:21;;;;;;;;;;;42135:90;42131:226;;;42265:29;;42242:52;;42309:36;42324:20;42309:14;:36::i;:::-;42131:226;42369:12;42384:4;42369:19;;42404:18;:24;42423:4;42404:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;42432:18;:22;42451:2;42432:22;;;;;;;;;;;;;;;;;;;;;;;;;42404:50;42401:96;;;42480:5;42470:15;;42401:96;42509:38;42524:4;42529:2;42532:6;42539:7;42509:14;:38::i;:::-;41233:1322;;;;;;:::o;16828:166::-;16914:7;16947:1;16942;:6;;16950:12;16934:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16985:1;16981;:5;16974:12;;16828:166;;;;;:::o;38949:163::-;38990:7;39011:15;39028;39047:19;:17;:19::i;:::-;39010:56;;;;39084:20;39096:7;39084;:11;;:20;;;;:::i;:::-;39077:27;;;;38949:163;:::o;15578:153::-;15636:7;15668:1;15664;:5;15656:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15722:1;15718;:5;;;;;;15711:12;;15578:153;;;;:::o;14001:179::-;14059:7;14079:9;14095:1;14091;:5;14079:17;;14120:1;14115;:6;;14107:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14171:1;14164:8;;;14001:179;;;;:::o;37747:419::-;37806:7;37815;37824;37833;37842;37851;37872:23;37897:12;37911:18;37933:20;37945:7;37933:11;:20::i;:::-;37871:82;;;;;;37965:15;37982:23;38007:12;38023:50;38035:7;38044:4;38050:10;38062;:8;:10::i;:::-;38023:11;:50::i;:::-;37964:109;;;;;;38092:7;38101:15;38118:4;38124:15;38141:4;38147:10;38084:74;;;;;;;;;;;;;;;;;;37747:419;;;;;;;:::o;14463:158::-;14521:7;14554:1;14549;:6;;14541:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14612:1;14608;:5;14601:12;;14463:158;;;;:::o;14880:220::-;14938:7;14967:1;14962;:6;14958:20;;;14977:1;14970:8;;;;14958:20;14989:9;15005:1;15001;:5;14989:17;;15034:1;15029;15025;:5;;;;;;:10;15017:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15091:1;15084:8;;;14880:220;;;;;:::o;42563:671::-;31034:4;31015:16;;:23;;;;;;;;;;;;;;;;;;42648:16:::1;42667:27;42692:1;42667:20;:24;;:27;;;;:::i;:::-;42648:46;;42705:18;42726:15;42739:1;42726:8;:12;;:15;;;;:::i;:::-;42705:36;;42752:22;42777:36;42802:10;42777:20;:24;;:36;;;;:::i;:::-;42752:61;;42826:22;42851:21;42826:46;;42885:28;42902:10;42885:16;:28::i;:::-;42926:18;42947:41;42973:14;42947:21;:25;;:41;;;;:::i;:::-;42926:62;;42999:22;43024:17;43039:1;43024:10;:14;;:17;;;;:::i;:::-;42999:42;;43054:44;43067:14;43083;43054:12;:44::i;:::-;43111:11;;;;;;;;;;;:20;;:43;43132:21;43111:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43172:54;43187:10;43199;43211:14;43172:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31049:1;;;;;;31080:5:::0;31061:16;;:24;;;;;;;;;;;;;;;;;;42563:671;:::o;44095:818::-;44206:7;44202:40;;44228:14;:12;:14::i;:::-;44202:40;44259:11;:19;44271:6;44259:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;44283:11;:22;44295:9;44283:22;;;;;;;;;;;;;;;;;;;;;;;;;44282:23;44259:46;44255:597;;;44322:48;44344:6;44352:9;44363:6;44322:21;:48::i;:::-;44255:597;;;44393:11;:19;44405:6;44393:19;;;;;;;;;;;;;;;;;;;;;;;;;44392:20;:46;;;;;44416:11;:22;44428:9;44416:22;;;;;;;;;;;;;;;;;;;;;;;;;44392:46;44388:464;;;44455:46;44475:6;44483:9;44494:6;44455:19;:46::i;:::-;44388:464;;;44524:11;:19;44536:6;44524:19;;;;;;;;;;;;;;;;;;;;;;;;;44523:20;:47;;;;;44548:11;:22;44560:9;44548:22;;;;;;;;;;;;;;;;;;;;;;;;;44547:23;44523:47;44519:333;;;44587:44;44605:6;44613:9;44624:6;44587:17;:44::i;:::-;44519:333;;;44653:11;:19;44665:6;44653:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;44676:11;:22;44688:9;44676:22;;;;;;;;;;;;;;;;;;;;;;;;;44653:45;44649:203;;;44715:48;44737:6;44745:9;44756:6;44715:21;:48::i;:::-;44649:203;;;44796:44;44814:6;44822:9;44833:6;44796:17;:44::i;:::-;44649:203;44519:333;44388:464;44255:597;44868:7;44864:41;;44890:15;:13;:15::i;:::-;44864:41;44095:818;;;;:::o;39120:555::-;39170:7;39179;39199:15;39217:7;;39199:25;;39235:15;39253:7;;39235:25;;39276:9;39271:289;39295:9;:16;;;;39291:1;:20;39271:289;;;39361:7;39337;:21;39345:9;39355:1;39345:12;;;;;;;;;;;;;;;;;;;;;;;;;39337:21;;;;;;;;;;;;;;;;:31;:66;;;;39396:7;39372;:21;39380:9;39390:1;39380:12;;;;;;;;;;;;;;;;;;;;;;;;;39372:21;;;;;;;;;;;;;;;;:31;39337:66;39333:97;;;39413:7;;39422;;39405:25;;;;;;;;;39333:97;39455:34;39467:7;:21;39475:9;39485:1;39475:12;;;;;;;;;;;;;;;;;;;;;;;;;39467:21;;;;;;;;;;;;;;;;39455:7;:11;;:34;;;;:::i;:::-;39445:44;;39514:34;39526:7;:21;39534:9;39544:1;39534:12;;;;;;;;;;;;;;;;;;;;;;;;;39526:21;;;;;;;;;;;;;;;;39514:7;:11;;:34;;;;:::i;:::-;39504:44;;39313:3;;;;;;;39271:289;;;;39584:20;39596:7;;39584;;:11;;:20;;;;:::i;:::-;39574:7;:30;39570:61;;;39614:7;;39623;;39606:25;;;;;;;;39570:61;39650:7;39659;39642:25;;;;;;39120:555;;;:::o;38174:330::-;38234:7;38243;38252;38272:12;38287:24;38303:7;38287:15;:24::i;:::-;38272:39;;38322:18;38343:30;38365:7;38343:21;:30::i;:::-;38322:51;;38384:23;38410:33;38432:10;38410:17;38422:4;38410:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38384:59;;38462:15;38479:4;38485:10;38454:42;;;;;;;;;38174:330;;;;;:::o;38512:429::-;38627:7;38636;38645;38665:15;38683:24;38695:11;38683:7;:11;;:24;;;;:::i;:::-;38665:42;;38718:12;38733:21;38742:11;38733:4;:8;;:21;;;;:::i;:::-;38718:36;;38765:18;38786:27;38801:11;38786:10;:14;;:27;;;;:::i;:::-;38765:48;;38824:23;38850:33;38872:10;38850:17;38862:4;38850:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;38824:59;;38902:7;38911:15;38928:4;38894:39;;;;;;;;;;38512:429;;;;;;;;:::o;43242:475::-;43308:21;43346:1;43332:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43308:40;;43377:4;43359;43364:1;43359:7;;;;;;;;;;;;;:23;;;;;;;;;;;43403:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43393:4;43398:1;43393:7;;;;;;;;;;;;;:32;;;;;;;;;;;43438:62;43455:4;43470:15;43488:11;43438:8;:62::i;:::-;43513:15;:66;;;43594:11;43620:1;43636:4;43663;43683:15;43513:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43242:475;;:::o;43725:362::-;43806:62;43823:4;43838:15;43856:11;43806:8;:62::i;:::-;43881:15;:31;;;43920:9;43953:4;43973:11;43999:1;44015;44031:7;:5;:7::i;:::-;44053:15;43881:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43725:362;;:::o;40382:234::-;40439:1;40428:7;;:12;:34;;;;;40461:1;40444:13;;:18;40428:34;40425:46;;;40464:7;;40425:46;40501:7;;40483:15;:25;;;;40543:13;;40519:21;:37;;;;40579:1;40569:7;:11;;;;40607:1;40591:13;:17;;;;40382:234;:::o;46014:563::-;46117:15;46134:23;46159:12;46173:23;46198:12;46212:18;46234:19;46245:7;46234:10;:19::i;:::-;46116:137;;;;;;;;;;;;46282:28;46302:7;46282;:15;46290:6;46282:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46264:7;:15;46272:6;46264:15;;;;;;;;;;;;;;;:46;;;;46339:28;46359:7;46339;:15;46347:6;46339:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46321:7;:15;46329:6;46321:15;;;;;;;;;;;;;;;:46;;;;46399:39;46422:15;46399:7;:18;46407:9;46399:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;46378:7;:18;46386:9;46378:18;;;;;;;;;;;;;;;:60;;;;46449:26;46464:10;46449:14;:26::i;:::-;46486:23;46498:4;46504;46486:11;:23::i;:::-;46542:9;46525:44;;46534:6;46525:44;;;46553:15;46525:44;;;;;;;;;;;;;;;;;;46014:563;;;;;;;;;:::o;45431:575::-;45532:15;45549:23;45574:12;45588:23;45613:12;45627:18;45649:19;45660:7;45649:10;:19::i;:::-;45531:137;;;;;;;;;;;;45697:28;45717:7;45697;:15;45705:6;45697:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45679:7;:15;45687:6;45679:15;;;;;;;;;;;;;;;:46;;;;45757:39;45780:15;45757:7;:18;45765:9;45757:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45736:7;:18;45744:9;45736:18;;;;;;;;;;;;;;;:60;;;;45828:39;45851:15;45828:7;:18;45836:9;45828:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45807:7;:18;45815:9;45807:18;;;;;;;;;;;;;;;:60;;;;45878:26;45893:10;45878:14;:26::i;:::-;45915:23;45927:4;45933;45915:11;:23::i;:::-;45971:9;45954:44;;45963:6;45954:44;;;45982:15;45954:44;;;;;;;;;;;;;;;;;;45431:575;;;;;;;;;:::o;44921:502::-;45020:15;45037:23;45062:12;45076:23;45101:12;45115:18;45137:19;45148:7;45137:10;:19::i;:::-;45019:137;;;;;;;;;;;;45185:28;45205:7;45185;:15;45193:6;45185:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45167:7;:15;45175:6;45167:15;;;;;;;;;;;;;;;:46;;;;45245:39;45268:15;45245:7;:18;45253:9;45245:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45224:7;:18;45232:9;45224:18;;;;;;;;;;;;;;;:60;;;;45295:26;45310:10;45295:14;:26::i;:::-;45332:23;45344:4;45350;45332:11;:23::i;:::-;45388:9;45371:44;;45380:6;45371:44;;;45399:15;45371:44;;;;;;;;;;;;;;;;;;44921:502;;;;;;;;;:::o;35669:634::-;35772:15;35789:23;35814:12;35828:23;35853:12;35867:18;35889:19;35900:7;35889:10;:19::i;:::-;35771:137;;;;;;;;;;;;35937:28;35957:7;35937;:15;35945:6;35937:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35919:7;:15;35927:6;35919:15;;;;;;;;;;;;;;;:46;;;;35994:28;36014:7;35994;:15;36002:6;35994:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35976:7;:15;35984:6;35976:15;;;;;;;;;;;;;;;:46;;;;36054:39;36077:15;36054:7;:18;36062:9;36054:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;36033:7;:18;36041:9;36033:18;;;;;;;;;;;;;;;:60;;;;36125:39;36148:15;36125:7;:18;36133:9;36125:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;36104:7;:18;36112:9;36104:18;;;;;;;;;;;;;;;:60;;;;36175:26;36190:10;36175:14;:26::i;:::-;36212:23;36224:4;36230;36212:11;:23::i;:::-;36268:9;36251:44;;36260:6;36251:44;;;36279:15;36251:44;;;;;;;;;;;;;;;;;;35669:634;;;;;;;;;:::o;40624:125::-;40678:15;;40668:7;:25;;;;40720:21;;40704:13;:37;;;;40624:125::o;40046:154::-;40110:7;40137:55;40176:5;40137:20;40149:7;;40137;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;40130:62;;40046:154;;;:::o;40208:166::-;40278:7;40305:61;40350:5;40305:26;40317:13;;40305:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;40298:68;;40208:166;;;:::o;39683:355::-;39746:19;39769:10;:8;:10::i;:::-;39746:33;;39790:18;39811:27;39826:11;39811:10;:14;;:27;;;;:::i;:::-;39790:48;;39874:38;39901:10;39874:7;:22;39890:4;39874:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39849:7;:22;39865:4;39849:22;;;;;;;;;;;;;;;:63;;;;39926:11;:26;39946:4;39926:26;;;;;;;;;;;;;;;;;;;;;;;;;39923:107;;;39992:38;40019:10;39992:7;:22;40008:4;39992:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39967:7;:22;39983:4;39967:22;;;;;;;;;;;;;;;:63;;;;39923:107;39683:355;;;:::o;37592:147::-;37670:17;37682:4;37670:7;;:11;;:17;;;;:::i;:::-;37660:7;:27;;;;37711:20;37726:4;37711:10;;:14;;:20;;;;:::i;:::-;37698:10;:33;;;;37592:147;;:::o
Swarm Source
ipfs://364b70bd8ed8ee8a3fd4612b336e097b93f0728eba9c541bea50624d1bd515c5
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.