ERC-20
Overview
Max Total Supply
100,000,000,000,000 eMaxi
Holders
146
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
11,596,553.547300368 eMaxiValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
eMaxi
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ /** Telegram: https://t.me/eMaxiETH Webiste: http://ethereummaxi.org/ **/ //SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // Contract implementation contract eMaxi 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; // excluded from reward address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; mapping (address => bool) private _isExludedFromTx; mapping (address => bool) private presaleAddresses; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100_000_000_000_000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Ethereum Maxi'; string private _symbol = 'eMaxi'; uint8 private _decimals = 9; uint256 private _taxFee = 2; // 1% reflection fee for every holder and 1% burn for deflation because we love an asset that deflates uint256 private _marketingFee = 0; // 0% marketing uint256 private _liquidityFee = 0; // 0% into liquidity uint256 private _previousTaxFee = _taxFee; uint256 private _previousMarketingFee = _marketingFee; uint256 private _previousLiquidityFee = _liquidityFee; address payable private _marketingWalletAddress = payable(0x13869e8C357a2F257c91d832a70E90B43977b36c); IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify = false; bool public swapAndLiquifyEnabled = true; // Max fee is 1% of the total supply. uint256 private _maxTxAmount = _tTotal / 100; // We will set a minimum amount of tokens to be swapped uint256 private _numTokensSellToAddToLiquidity = 1000000000 * 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); // UniswapV2 for Ethereum network // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // Exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingWalletAddress] = true; _isExludedFromTx[owner()] = true; // BLACKLIST _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true; _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)); _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true; _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)); _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true; _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)); _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true; _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)); _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true; _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)); _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true; _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848)); _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true; _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)); _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true; _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679)); 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 setExcludeFromFee(address account, bool excluded) public onlyOwner() { _isExcludedFromFee[account] = excluded; } 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(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) public 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 addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(account != address(this)); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function removeAllFee() private { if(_taxFee == 0 && _marketingFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _marketingFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _marketingFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingFee = _previousMarketingFee; _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 sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[sender], "You have no power here!"); require(!_isBlackListedBot[recipient], "You have no power here!"); require(!_isBlackListedBot[tx.origin], "You have no power here!"); if(!_isExludedFromTx[sender] && !_isExludedFromTx[recipient]) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity; if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair && !presaleAddresses[sender] && !presaleAddresses[recipient] ) { contractTokenBalance = _numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){ takeFee = false; } //transfer amount, it will take tax and charity fee _tokenTransfer(sender, recipient, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee)); uint256 toLiquify = contractTokenBalance.sub(toMarketing); // split the contract balance into halves uint256 half = toLiquify.div(2); uint256 otherHalf = toLiquify.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH uint256 toSwapForEth = half.add(toMarketing); swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 fromSwap = address(this).balance.sub(initialBalance); uint256 newBalance = fromSwap.mul(half).div(toSwapForEth); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); sendETHToMarketing(fromSwap.sub(newBalance)); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function sendETHToMarketing(uint256 amount) private { _marketingWalletAddress.transfer(amount); } // We are exposing these functions to be able to manual swap and send // in case the token is highly valued and 5M becomes too much function manualSwap() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() public onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToMarketing(contractETHBalance); } function setSwapAndLiquifyEnabled(bool _swapAndLiquifyEnabled) external onlyOwner(){ swapAndLiquifyEnabled = _swapAndLiquifyEnabled; } 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 tMarketingLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _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 tMarketingLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _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 tMarketingLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _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); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeMarketingLiquidity(uint256 tMarketingLiquidity) private { uint256 currentRate = _getRate(); uint256 rMarketingLiquidity = tMarketingLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketingLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketingLiquidity); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidityFee) = _getTValues(tAmount, _taxFee, _marketingFee.add(_liquidityFee)); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingLiquidityFee); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 marketingLiquidityFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tMarketingLiquidityFee = tAmount.mul(marketingLiquidityFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(marketingLiquidityFee); return (tTransferAmount, tFee, tMarketingLiquidityFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getTaxFee() external view returns(uint256) { return _taxFee; } function _getMaxTxAmount() external view returns(uint256) { return _maxTxAmount; } function _getETHBalance() public view returns(uint256 balance) { return address(this).balance; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 1 && taxFee <= 49, 'taxFee should be in 1 - 49'); _taxFee = taxFee; } function _setMarketingFee(uint256 marketingFee) external onlyOwner() { require(marketingFee >= 1 && marketingFee <= 49, 'marketingFee should be in 1 - 11'); _marketingFee = marketingFee; } function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() { require(liquidityFee >= 1 && liquidityFee <= 49, 'liquidityFee should be in 1 - 11'); _liquidityFee = liquidityFee; } function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() { require(numTokensSellToAddToLiquidity >= 10**9 , 'numTokensSellToAddToLiquidity should be greater than total 1e9'); _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity; } // Adjusted to allow for smaller than 1%'s, as low as 0.1% function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**3 // Division by 1000, set to 20 for 2%, set to 2 for 0.2% ); } function recoverTokens(uint256 tokenAmount) external virtual onlyOwner() { _approve(address(this), owner(), tokenAmount); _transfer(address(this), owner(), tokenAmount); } function excludePresaleAddresses(address router, address presale) external onlyOwner { _isExludedFromTx[router] = true; _isExludedFromTx[presale] = true; presaleAddresses[router] = true; presaleAddresses[presale] = true; excludeFromReward(router); excludeFromReward(presale); setExcludeFromFee(router, true); setExcludeFromFee(presale, true); } }
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":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"presale","type":"address"}],"name":"excludePresaleAddresses","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":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapAndLiquifyEnabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","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":[{"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
60c060405269152d02c7e14af6800000600d55600d54600019816200002057fe5b0660001903600e556040518060400160405280600d81526020017f457468657265756d204d61786900000000000000000000000000000000000000815250601090805190602001906200007592919062000e74565b506040518060400160405280600581526020017f654d61786900000000000000000000000000000000000000000000000000000081525060119080519060200190620000c392919062000e74565b506009601260006101000a81548160ff021916908360ff1602179055506002601355600060145560006015556013546016556014546017556015546018557313869e8c357a2f257c91d832a70e90b43977b36c601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601960146101000a81548160ff0219169083151502179055506001601960156101000a81548160ff0219169083151502179055506064600d54816200019957fe5b04601a55670de0b6b3a7640000601b55348015620001b657600080fd5b506000620001c962000e4360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600e54600360006200027e62000e4360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031c57600080fd5b505afa15801562000331573d6000803e3d6000fd5b505050506040513d60208110156200034857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003bc57600080fd5b505afa158015620003d1573d6000803e3d6000fd5b505050506040513d6020811015620003e857600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200046357600080fd5b505af115801562000478573d6000803e3d6000fd5b505050506040513d60208110156200048f57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200052362000e4b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60006200065c62000e4b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600073e031b36b53e53a292a20c5f08fd1658cddf74fce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e031b36b53e53a292a20c5f08fd1658cddf74fce9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073e516bdee55b0b4e9bacaf6285130de15589b134573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e516bdee55b0b4e9bacaf6285130de15589b13459080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073a1cec245c456dd1bd9f2815a6955fef44eb4191b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73a1cec245c456dd1bd9f2815a6955fef44eb4191b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf9573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf959080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073fe76f05dc59fec04184fa0245ad0c3cf9a57b96473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73fe76f05dc59fec04184fa0245ad0c3cf9a57b9649080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073dc81a3450817a58d00f45c86d0368290088db84873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73dc81a3450817a58d00f45c86d0368290088db8489080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007345fd07c63e5c316540f14b2002b085aee78e388173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7345fd07c63e5c316540f14b2002b085aee78e38819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007327f9adb26d532a41d97e00206114e429ad58c67973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7327f9adb26d532a41d97e00206114e429ad58c6799080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000dd562000e4360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600d546040518082815260200191505060405180910390a35062000f1a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000eb757805160ff191683800117855562000ee8565b8280016001018555821562000ee8579182015b8281111562000ee757825182559160200191906001019062000eca565b5b50905062000ef7919062000efb565b5090565b5b8082111562000f1657600081600090555060010162000efc565b5090565b60805160601c60a05160601c615e3462000f6260003980611f2b5280613d975250806111c45280614283528061436f52806143965280614e885280614eaf5250615e346000f3fe60806040526004361061024a5760003560e01c806352390c0211610139578063a52fe9bb116100b6578063d543dbeb1161007a578063d543dbeb14610d26578063dd62ed3e14610d61578063f2fde38b14610de6578063f429389014610e37578063f7a9159114610e4e578063f815a84214610e7957610251565b8063a52fe9bb14610ba5578063a9059cbb14610be0578063af9549e014610c51578063bcd6d44614610cae578063c49b9a8014610ce957610251565b80637ded4d6a116100fd5780637ded4d6a146109ab57806388f82020146109fc5780638da5cb5b14610a6357806395d89b4114610aa4578063a457c2d714610b3457610251565b806352390c021461083c5780635342acb41461088d5780635880b873146108f457806370a082311461092f578063715018a61461099457610251565b806330599fc5116101c75780634303443d1161018b5780634303443d1461070b5780634549b0391461075c57806349bd5a5e146107b75780634a74bb02146107f857806351bc3c851461082557610251565b806330599fc5146105a5578063313ce567146105e05780633685d4191461060e578063395093511461065f5780633bd5d173146106d057610251565b806318160ddd1161020e57806318160ddd146104345780631decaadc1461045f57806323b872dd1461049a5780632d8381191461052b5780632fbff0301461057a57610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d1461035757806313b4a7f4146103825780631694505e146103f357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610ea4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f46565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610f64565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b506103f1600480360360408110156103a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f6e565b005b3480156103ff57600080fd5b506104086111c2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044057600080fd5b506104496111e6565b6040518082815260200191505060405180910390f35b34801561046b57600080fd5b506104986004803603602081101561048257600080fd5b81019080803590602001909291905050506111f0565b005b3480156104a657600080fd5b50610513600480360360608110156104bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061131f565b60405180821515815260200191505060405180910390f35b34801561053757600080fd5b506105646004803603602081101561054e57600080fd5b81019080803590602001909291905050506113f8565b6040518082815260200191505060405180910390f35b34801561058657600080fd5b5061058f61147c565b6040518082815260200191505060405180910390f35b3480156105b157600080fd5b506105de600480360360208110156105c857600080fd5b8101908080359060200190929190505050611486565b005b3480156105ec57600080fd5b506105f5611575565b604051808260ff16815260200191505060405180910390f35b34801561061a57600080fd5b5061065d6004803603602081101561063157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061158c565b005b34801561066b57600080fd5b506106b86004803603604081101561068257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611916565b60405180821515815260200191505060405180910390f35b3480156106dc57600080fd5b50610709600480360360208110156106f357600080fd5b81019080803590602001909291905050506119c9565b005b34801561071757600080fd5b5061075a6004803603602081101561072e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5a565b005b34801561076857600080fd5b506107a16004803603604081101561077f57600080fd5b8101908080359060200190929190803515159060200190929190505050611e72565b6040518082815260200191505060405180910390f35b3480156107c357600080fd5b506107cc611f29565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080457600080fd5b5061080d611f4d565b60405180821515815260200191505060405180910390f35b34801561083157600080fd5b5061083a611f60565b005b34801561084857600080fd5b5061088b6004803603602081101561085f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612041565b005b34801561089957600080fd5b506108dc600480360360208110156108b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123f4565b60405180821515815260200191505060405180910390f35b34801561090057600080fd5b5061092d6004803603602081101561091757600080fd5b810190808035906020019092919050505061244a565b005b34801561093b57600080fd5b5061097e6004803603602081101561095257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125a0565b6040518082815260200191505060405180910390f35b3480156109a057600080fd5b506109a961268b565b005b3480156109b757600080fd5b506109fa600480360360208110156109ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612811565b005b348015610a0857600080fd5b50610a4b60048036036020811015610a1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b56565b60405180821515815260200191505060405180910390f35b348015610a6f57600080fd5b50610a78612bac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ab057600080fd5b50610ab9612bd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610af9578082015181840152602081019050610ade565b50505050905090810190601f168015610b265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4057600080fd5b50610b8d60048036036040811015610b5757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612c77565b60405180821515815260200191505060405180910390f35b348015610bb157600080fd5b50610bde60048036036020811015610bc857600080fd5b8101908080359060200190929190505050612d44565b005b348015610bec57600080fd5b50610c3960048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612e9a565b60405180821515815260200191505060405180910390f35b348015610c5d57600080fd5b50610cac60048036036040811015610c7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612eb8565b005b348015610cba57600080fd5b50610ce760048036036020811015610cd157600080fd5b8101908080359060200190929190505050612fdb565b005b348015610cf557600080fd5b50610d2460048036036020811015610d0c57600080fd5b81019080803515159060200190929190505050613131565b005b348015610d3257600080fd5b50610d5f60048036036020811015610d4957600080fd5b8101908080359060200190929190505050613216565b005b348015610d6d57600080fd5b50610dd060048036036040811015610d8457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613310565b6040518082815260200191505060405180910390f35b348015610df257600080fd5b50610e3560048036036020811015610e0957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613397565b005b348015610e4357600080fd5b50610e4c6135a2565b005b348015610e5a57600080fd5b50610e6361367b565b6040518082815260200191505060405180910390f35b348015610e8557600080fd5b50610e8e613685565b6040518082815260200191505060405180910390f35b606060108054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f3c5780601f10610f1157610100808354040283529160200191610f3c565b820191906000526020600020905b815481529060010190602001808311610f1f57829003601f168201915b5050505050905090565b6000610f5a610f5361368d565b8484613695565b6001905092915050565b6000600f54905090565b610f7661368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061119f82612041565b6111a881612041565b6111b3826001612eb8565b6111be816001612eb8565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600d54905090565b6111f861368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180615d4e603e913960400191505060405180910390fd5b80601b8190555050565b600061132c84848461388c565b6113ed8461133861368d565b6113e885604051806060016040528060288152602001615c9060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061139e61368d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6b9092919063ffffffff16565b613695565b600190509392505050565b6000600e54821115611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615bd5602a913960400191505060405180910390fd5b600061145f61402b565b9050611474818461405690919063ffffffff16565b915050919050565b6000601354905090565b61148e61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115603061155a612bac565b83613695565b6115723061156c612bac565b8361388c565b50565b6000601260009054906101000a900460ff16905090565b61159461368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611912578173ffffffffffffffffffffffffffffffffffffffff166008828154811061174757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611905576008600160088054905003815481106117a357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106117db57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806118cb57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611912565b8080600101915050611716565b5050565b60006119bf61192361368d565b846119ba856005600061193461368d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b613695565b6001905092915050565b60006119d361368d565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615dae602c913960400191505060405180910390fd5b6000611a8383614128565b50505050509050611adc81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b3481600e546141a390919063ffffffff16565b600e81905550611b4f83600f546140a090919063ffffffff16565b600f81905550505050565b611b6261368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615ce16024913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf457600080fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600d54831115611eec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611f0c576000611efc84614128565b5050505050905080915050611f23565b6000611f1784614128565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601960159054906101000a900460ff1681565b611f6861368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612028576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000612033306125a0565b905061203e816141ed565b50565b61204961368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612109576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d8c6022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612336576122f2600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f8565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61245261368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612512576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612524575060318111155b612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060138190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561263b57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612686565b612683600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f8565b90505b919050565b61269361368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61281961368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a80549050811015612b52578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106129cc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b4557600a6001600a805490500381548110612a2857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a8281548110612a6057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a805480612b0b57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612b52565b808060010191505061299b565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060118054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c6d5780601f10612c4257610100808354040283529160200191612c6d565b820191906000526020600020905b815481529060010190602001808311612c5057829003601f168201915b5050505050905090565b6000612d3a612c8461368d565b84612d3585604051806060016040528060258152602001615dda6025913960056000612cae61368d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6b9092919063ffffffff16565b613695565b6001905092915050565b612d4c61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612e1e575060318111155b612e90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060148190555050565b6000612eae612ea761368d565b848461388c565b6001905092915050565b612ec061368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612fe361368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156130b5575060318111155b613127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060158190555050565b61313961368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601960156101000a81548160ff02191690831515021790555050565b61321e61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6133076103e86132f983600d5461449b90919063ffffffff16565b61405690919063ffffffff16565b601a8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61339f61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461345f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615bff6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6135aa61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461366a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600047905061367881614521565b50565b6000601a54905090565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561371b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d2a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c256022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d056025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613998576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615bb26023913960400191505060405180910390fd5b600081116139f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615cb86029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613ab1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613b71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613cd55750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613d3657601a54811115613d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615c476028913960400191505060405180910390fd5b5b6000613d41306125a0565b9050601a548110613d5257601a5490505b6000601b548210159050601960149054906101000a900460ff16158015613d855750601960159054906101000a900460ff165b8015613d8e5750805b8015613de657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015613e3c5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015613e925750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ea657601b549150613ea58261458d565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613f4d5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613f5757600090505b613f6386868684614726565b505050505050565b6000838311158290614018576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fdd578082015181840152602081019050613fc2565b50505050905090810190601f16801561400a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000614038614a37565b9150915061404f818361405690919063ffffffff16565b9250505090565b600061409883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614cc8565b905092915050565b60008082840190508381101561411e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006141598a6013546141546015546014546140a090919063ffffffff16565b614d8e565b925092509250600061416961402b565b9050600080600061417b8e8786614e24565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60006141e583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f6b565b905092915050565b6060600267ffffffffffffffff8111801561420757600080fd5b506040519080825280602002602001820160405280156142365781602001602082028036833780820191505090505b509050308160008151811061424757fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156142e757600080fd5b505afa1580156142fb573d6000803e3d6000fd5b505050506040513d602081101561431157600080fd5b81019080805190602001909291905050508160018151811061432f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614394307f000000000000000000000000000000000000000000000000000000000000000084613695565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561445657808201518184015260208101905061443b565b505050509050019650505050505050600060405180830381600087803b15801561447f57600080fd5b505af1158015614493573d6000803e3d6000fd5b505050505050565b6000808314156144ae576000905061451b565b60008284029050828482816144bf57fe5b0414614516576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615c6f6021913960400191505060405180910390fd5b809150505b92915050565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614589573d6000803e3d6000fd5b5050565b6001601960146101000a81548160ff02191690831515021790555060006145e76145c46015546014546140a090919063ffffffff16565b6145d96014548561449b90919063ffffffff16565b61405690919063ffffffff16565b905060006145fe82846141a390919063ffffffff16565b9050600061461660028361405690919063ffffffff16565b9050600061462d82846141a390919063ffffffff16565b90506000479050600061464986856140a090919063ffffffff16565b9050614654816141ed565b600061466983476141a390919063ffffffff16565b9050600061469283614684888561449b90919063ffffffff16565b61405690919063ffffffff16565b905061469e8582614e82565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a16147006146fb82846141a390919063ffffffff16565b614521565b50505050505050506000601960146101000a81548160ff02191690831515021790555050565b8061473457614733614fd3565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156147d75750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156147ec576147e7848484615035565b614a23565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561488f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156148a45761489f848484615295565b614a22565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156149485750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561495d576149588484846154f5565b614a21565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156149ff5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15614a1457614a0f8484846156c0565b614a20565b614a1f8484846154f5565b5b5b5b5b80614a3157614a306159b5565b5b50505050565b6000806000600e5490506000600d54905060005b600880549050811015614c8b57826003600060088481548110614a6a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614b515750816004600060088481548110614ae957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614b6857600e54600d5494509450505050614cc4565b614bf16003600060088481548110614b7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846141a390919063ffffffff16565b9250614c7c6004600060088481548110614c0757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836141a390919063ffffffff16565b91508080600101915050614a4b565b50614ca3600d54600e5461405690919063ffffffff16565b821015614cbb57600e54600d54935093505050614cc4565b81819350935050505b9091565b60008083118290614d74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614d39578082015181840152602081019050614d1e565b50505050905090810190601f168015614d665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614d8057fe5b049050809150509392505050565b600080600080614dba6064614dac888a61449b90919063ffffffff16565b61405690919063ffffffff16565b90506000614de46064614dd6888b61449b90919063ffffffff16565b61405690919063ffffffff16565b90506000614e0d87614dff858c6141a390919063ffffffff16565b6141a390919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614e3d858861449b90919063ffffffff16565b90506000614e54868861449b90919063ffffffff16565b90506000614e6b82846141a390919063ffffffff16565b905082818395509550955050505093509350939050565b614ead307f000000000000000000000000000000000000000000000000000000000000000084613695565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614ef7612bac565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614f7c57600080fd5b505af1158015614f90573d6000803e3d6000fd5b50505050506040513d6060811015614fa757600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601354148015614fe757506000601454145b8015614ff557506000601554145b15614fff57615033565b6013546016819055506014546017819055506015546018819055506000601381905550600060148190555060006015819055505b565b60008060008060008061504787614128565b9550955095509550955095506150a587600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513a86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151cf85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061521b816159d2565b6152258483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152a787614128565b95509550955095509550955061530586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061539a83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061542f85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061547b816159d2565b6154858483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061550787614128565b95509550955095509550955061556586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155fa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615646816159d2565b6156508483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806156d287614128565b95509550955095509550955061573087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506157c586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061585a83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506158ef85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061593b816159d2565b6159458483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601654601381905550601754601481905550601854601581905550565b60006159dc61402b565b905060006159f3828461449b90919063ffffffff16565b9050615a4781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615b7257615b2e83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b615b8c82600e546141a390919063ffffffff16565b600e81905550615ba781600f546140a090919063ffffffff16565b600f81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122067543b7bd447e1d3eefa6e4218c2b4c19159af888971161a26869a721453d39a64736f6c634300060c0033
Deployed Bytecode
0x60806040526004361061024a5760003560e01c806352390c0211610139578063a52fe9bb116100b6578063d543dbeb1161007a578063d543dbeb14610d26578063dd62ed3e14610d61578063f2fde38b14610de6578063f429389014610e37578063f7a9159114610e4e578063f815a84214610e7957610251565b8063a52fe9bb14610ba5578063a9059cbb14610be0578063af9549e014610c51578063bcd6d44614610cae578063c49b9a8014610ce957610251565b80637ded4d6a116100fd5780637ded4d6a146109ab57806388f82020146109fc5780638da5cb5b14610a6357806395d89b4114610aa4578063a457c2d714610b3457610251565b806352390c021461083c5780635342acb41461088d5780635880b873146108f457806370a082311461092f578063715018a61461099457610251565b806330599fc5116101c75780634303443d1161018b5780634303443d1461070b5780634549b0391461075c57806349bd5a5e146107b75780634a74bb02146107f857806351bc3c851461082557610251565b806330599fc5146105a5578063313ce567146105e05780633685d4191461060e578063395093511461065f5780633bd5d173146106d057610251565b806318160ddd1161020e57806318160ddd146104345780631decaadc1461045f57806323b872dd1461049a5780632d8381191461052b5780632fbff0301461057a57610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d1461035757806313b4a7f4146103825780631694505e146103f357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610ea4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f46565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610f64565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b506103f1600480360360408110156103a557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f6e565b005b3480156103ff57600080fd5b506104086111c2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561044057600080fd5b506104496111e6565b6040518082815260200191505060405180910390f35b34801561046b57600080fd5b506104986004803603602081101561048257600080fd5b81019080803590602001909291905050506111f0565b005b3480156104a657600080fd5b50610513600480360360608110156104bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061131f565b60405180821515815260200191505060405180910390f35b34801561053757600080fd5b506105646004803603602081101561054e57600080fd5b81019080803590602001909291905050506113f8565b6040518082815260200191505060405180910390f35b34801561058657600080fd5b5061058f61147c565b6040518082815260200191505060405180910390f35b3480156105b157600080fd5b506105de600480360360208110156105c857600080fd5b8101908080359060200190929190505050611486565b005b3480156105ec57600080fd5b506105f5611575565b604051808260ff16815260200191505060405180910390f35b34801561061a57600080fd5b5061065d6004803603602081101561063157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061158c565b005b34801561066b57600080fd5b506106b86004803603604081101561068257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611916565b60405180821515815260200191505060405180910390f35b3480156106dc57600080fd5b50610709600480360360208110156106f357600080fd5b81019080803590602001909291905050506119c9565b005b34801561071757600080fd5b5061075a6004803603602081101561072e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5a565b005b34801561076857600080fd5b506107a16004803603604081101561077f57600080fd5b8101908080359060200190929190803515159060200190929190505050611e72565b6040518082815260200191505060405180910390f35b3480156107c357600080fd5b506107cc611f29565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561080457600080fd5b5061080d611f4d565b60405180821515815260200191505060405180910390f35b34801561083157600080fd5b5061083a611f60565b005b34801561084857600080fd5b5061088b6004803603602081101561085f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612041565b005b34801561089957600080fd5b506108dc600480360360208110156108b057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123f4565b60405180821515815260200191505060405180910390f35b34801561090057600080fd5b5061092d6004803603602081101561091757600080fd5b810190808035906020019092919050505061244a565b005b34801561093b57600080fd5b5061097e6004803603602081101561095257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125a0565b6040518082815260200191505060405180910390f35b3480156109a057600080fd5b506109a961268b565b005b3480156109b757600080fd5b506109fa600480360360208110156109ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612811565b005b348015610a0857600080fd5b50610a4b60048036036020811015610a1f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b56565b60405180821515815260200191505060405180910390f35b348015610a6f57600080fd5b50610a78612bac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ab057600080fd5b50610ab9612bd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610af9578082015181840152602081019050610ade565b50505050905090810190601f168015610b265780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b4057600080fd5b50610b8d60048036036040811015610b5757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612c77565b60405180821515815260200191505060405180910390f35b348015610bb157600080fd5b50610bde60048036036020811015610bc857600080fd5b8101908080359060200190929190505050612d44565b005b348015610bec57600080fd5b50610c3960048036036040811015610c0357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612e9a565b60405180821515815260200191505060405180910390f35b348015610c5d57600080fd5b50610cac60048036036040811015610c7457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612eb8565b005b348015610cba57600080fd5b50610ce760048036036020811015610cd157600080fd5b8101908080359060200190929190505050612fdb565b005b348015610cf557600080fd5b50610d2460048036036020811015610d0c57600080fd5b81019080803515159060200190929190505050613131565b005b348015610d3257600080fd5b50610d5f60048036036020811015610d4957600080fd5b8101908080359060200190929190505050613216565b005b348015610d6d57600080fd5b50610dd060048036036040811015610d8457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613310565b6040518082815260200191505060405180910390f35b348015610df257600080fd5b50610e3560048036036020811015610e0957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613397565b005b348015610e4357600080fd5b50610e4c6135a2565b005b348015610e5a57600080fd5b50610e6361367b565b6040518082815260200191505060405180910390f35b348015610e8557600080fd5b50610e8e613685565b6040518082815260200191505060405180910390f35b606060108054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f3c5780601f10610f1157610100808354040283529160200191610f3c565b820191906000526020600020905b815481529060010190602001808311610f1f57829003601f168201915b5050505050905090565b6000610f5a610f5361368d565b8484613695565b6001905092915050565b6000600f54905090565b610f7661368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061119f82612041565b6111a881612041565b6111b3826001612eb8565b6111be816001612eb8565b5050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600d54905090565b6111f861368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180615d4e603e913960400191505060405180910390fd5b80601b8190555050565b600061132c84848461388c565b6113ed8461133861368d565b6113e885604051806060016040528060288152602001615c9060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061139e61368d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6b9092919063ffffffff16565b613695565b600190509392505050565b6000600e54821115611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615bd5602a913960400191505060405180910390fd5b600061145f61402b565b9050611474818461405690919063ffffffff16565b915050919050565b6000601354905090565b61148e61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115603061155a612bac565b83613695565b6115723061156c612bac565b8361388c565b50565b6000601260009054906101000a900460ff16905090565b61159461368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600880549050811015611912578173ffffffffffffffffffffffffffffffffffffffff166008828154811061174757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611905576008600160088054905003815481106117a357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106117db57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806118cb57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611912565b8080600101915050611716565b5050565b60006119bf61192361368d565b846119ba856005600061193461368d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b613695565b6001905092915050565b60006119d361368d565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a78576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615dae602c913960400191505060405180910390fd5b6000611a8383614128565b50505050509050611adc81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b3481600e546141a390919063ffffffff16565b600e81905550611b4f83600f546140a090919063ffffffff16565b600f81905550505050565b611b6261368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615ce16024913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf457600080fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600d54831115611eec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611f0c576000611efc84614128565b5050505050905080915050611f23565b6000611f1784614128565b50505050915050809150505b92915050565b7f000000000000000000000000d7449c88cada88f40f5355cafa42434c884587d981565b601960159054906101000a900460ff1681565b611f6861368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612028576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000612033306125a0565b905061203e816141ed565b50565b61204961368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612109576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615d8c6022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612336576122f2600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f8565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61245261368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612512576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612524575060318111155b612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060138190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561263b57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612686565b612683600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f8565b90505b919050565b61269361368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612753576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61281961368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a80549050811015612b52578173ffffffffffffffffffffffffffffffffffffffff16600a82815481106129cc57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b4557600a6001600a805490500381548110612a2857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a8281548110612a6057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a805480612b0b57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055612b52565b808060010191505061299b565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060118054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c6d5780601f10612c4257610100808354040283529160200191612c6d565b820191906000526020600020905b815481529060010190602001808311612c5057829003601f168201915b5050505050905090565b6000612d3a612c8461368d565b84612d3585604051806060016040528060258152602001615dda6025913960056000612cae61368d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f6b9092919063ffffffff16565b613695565b6001905092915050565b612d4c61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612e1e575060318111155b612e90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060148190555050565b6000612eae612ea761368d565b848461388c565b6001905092915050565b612ec061368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612fe361368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156130b5575060318111155b613127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060158190555050565b61313961368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601960156101000a81548160ff02191690831515021790555050565b61321e61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6133076103e86132f983600d5461449b90919063ffffffff16565b61405690919063ffffffff16565b601a8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61339f61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461345f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615bff6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6135aa61368d565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461366a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600047905061367881614521565b50565b6000601a54905090565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561371b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615d2a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c256022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613912576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615d056025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613998576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615bb26023913960400191505060405180910390fd5b600081116139f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615cb86029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613ab1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613b71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613cd55750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613d3657601a54811115613d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180615c476028913960400191505060405180910390fd5b5b6000613d41306125a0565b9050601a548110613d5257601a5490505b6000601b548210159050601960149054906101000a900460ff16158015613d855750601960159054906101000a900460ff165b8015613d8e5750805b8015613de657507f000000000000000000000000d7449c88cada88f40f5355cafa42434c884587d973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015613e3c5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015613e925750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ea657601b549150613ea58261458d565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613f4d5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613f5757600090505b613f6386868684614726565b505050505050565b6000838311158290614018576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fdd578082015181840152602081019050613fc2565b50505050905090810190601f16801561400a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000614038614a37565b9150915061404f818361405690919063ffffffff16565b9250505090565b600061409883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614cc8565b905092915050565b60008082840190508381101561411e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006141598a6013546141546015546014546140a090919063ffffffff16565b614d8e565b925092509250600061416961402b565b9050600080600061417b8e8786614e24565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b60006141e583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f6b565b905092915050565b6060600267ffffffffffffffff8111801561420757600080fd5b506040519080825280602002602001820160405280156142365781602001602082028036833780820191505090505b509050308160008151811061424757fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156142e757600080fd5b505afa1580156142fb573d6000803e3d6000fd5b505050506040513d602081101561431157600080fd5b81019080805190602001909291905050508160018151811061432f57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614394307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613695565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561445657808201518184015260208101905061443b565b505050509050019650505050505050600060405180830381600087803b15801561447f57600080fd5b505af1158015614493573d6000803e3d6000fd5b505050505050565b6000808314156144ae576000905061451b565b60008284029050828482816144bf57fe5b0414614516576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615c6f6021913960400191505060405180910390fd5b809150505b92915050565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614589573d6000803e3d6000fd5b5050565b6001601960146101000a81548160ff02191690831515021790555060006145e76145c46015546014546140a090919063ffffffff16565b6145d96014548561449b90919063ffffffff16565b61405690919063ffffffff16565b905060006145fe82846141a390919063ffffffff16565b9050600061461660028361405690919063ffffffff16565b9050600061462d82846141a390919063ffffffff16565b90506000479050600061464986856140a090919063ffffffff16565b9050614654816141ed565b600061466983476141a390919063ffffffff16565b9050600061469283614684888561449b90919063ffffffff16565b61405690919063ffffffff16565b905061469e8582614e82565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a16147006146fb82846141a390919063ffffffff16565b614521565b50505050505050506000601960146101000a81548160ff02191690831515021790555050565b8061473457614733614fd3565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156147d75750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156147ec576147e7848484615035565b614a23565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561488f5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156148a45761489f848484615295565b614a22565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156149485750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561495d576149588484846154f5565b614a21565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156149ff5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15614a1457614a0f8484846156c0565b614a20565b614a1f8484846154f5565b5b5b5b5b80614a3157614a306159b5565b5b50505050565b6000806000600e5490506000600d54905060005b600880549050811015614c8b57826003600060088481548110614a6a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180614b515750816004600060088481548110614ae957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15614b6857600e54600d5494509450505050614cc4565b614bf16003600060088481548110614b7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846141a390919063ffffffff16565b9250614c7c6004600060088481548110614c0757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836141a390919063ffffffff16565b91508080600101915050614a4b565b50614ca3600d54600e5461405690919063ffffffff16565b821015614cbb57600e54600d54935093505050614cc4565b81819350935050505b9091565b60008083118290614d74576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614d39578082015181840152602081019050614d1e565b50505050905090810190601f168015614d665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581614d8057fe5b049050809150509392505050565b600080600080614dba6064614dac888a61449b90919063ffffffff16565b61405690919063ffffffff16565b90506000614de46064614dd6888b61449b90919063ffffffff16565b61405690919063ffffffff16565b90506000614e0d87614dff858c6141a390919063ffffffff16565b6141a390919063ffffffff16565b905080838395509550955050505093509350939050565b600080600080614e3d858861449b90919063ffffffff16565b90506000614e54868861449b90919063ffffffff16565b90506000614e6b82846141a390919063ffffffff16565b905082818395509550955050505093509350939050565b614ead307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84613695565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614ef7612bac565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614f7c57600080fd5b505af1158015614f90573d6000803e3d6000fd5b50505050506040513d6060811015614fa757600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601354148015614fe757506000601454145b8015614ff557506000601554145b15614fff57615033565b6013546016819055506014546017819055506015546018819055506000601381905550600060148190555060006015819055505b565b60008060008060008061504787614128565b9550955095509550955095506150a587600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061513a86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151cf85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061521b816159d2565b6152258483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806152a787614128565b95509550955095509550955061530586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061539a83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061542f85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061547b816159d2565b6154858483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061550787614128565b95509550955095509550955061556586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506155fa85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550615646816159d2565b6156508483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806156d287614128565b95509550955095509550955061573087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506157c586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546141a390919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061585a83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506158ef85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061593b816159d2565b6159458483615b77565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601654601381905550601754601481905550601854601581905550565b60006159dc61402b565b905060006159f3828461449b90919063ffffffff16565b9050615a4781600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615615b7257615b2e83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546140a090919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b615b8c82600e546141a390919063ffffffff16565b600e81905550615ba781600f546140a090919063ffffffff16565b600f81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122067543b7bd447e1d3eefa6e4218c2b4c19159af888971161a26869a721453d39a64736f6c634300060c0033
Deployed Bytecode Sourcemap
23517:24229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28108:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29020:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30284:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47322:421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25062:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28385:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46512:309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29189:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31208:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45581:86;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47120:194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28294:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31921:477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29510:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30379:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32406:396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30764:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25120:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25203:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39149:156;;;;;;;;;;;;;:::i;:::-;;31469:444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33839:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45897:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28488:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15009:148;;;;;;;;;;;;;:::i;:::-;;32810:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30013:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14375:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28199:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29736:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46074:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28694:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30141:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46293:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39480:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46893:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28869:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15309:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39313:159;;;;;;;;;;;;;:::i;:::-;;45675:96;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45779:110;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28108:83;28145:13;28178:5;28171:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28108:83;:::o;29020:161::-;29095:4;29112:39;29121:12;:10;:12::i;:::-;29135:7;29144:6;29112:8;:39::i;:::-;29169:4;29162:11;;29020:161;;;;:::o;30284:87::-;30326:7;30353:10;;30346:17;;30284:87;:::o;47322:421::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47445:4:::1;47418:16;:24;47435:6;47418:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;47488:4;47460:16;:25;47477:7;47460:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;47530:4;47503:16;:24;47520:6;47503:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;47573:4;47545:16;:25;47562:7;47545:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;47588:25;47606:6;47588:17;:25::i;:::-;47624:26;47642:7;47624:17;:26::i;:::-;47661:31;47679:6;47687:4;47661:17;:31::i;:::-;47703:32;47721:7;47730:4;47703:17;:32::i;:::-;47322:421:::0;;:::o;25062:51::-;;;:::o;28385:95::-;28438:7;28465;;28458:14;;28385:95;:::o;46512:309::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46667:5:::1;46634:29;:38;;46626:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46784:29;46751:30;:62;;;;46512:309:::0;:::o;29189:313::-;29287:4;29304:36;29314:6;29322:9;29333:6;29304:9;:36::i;:::-;29351:121;29360:6;29368:12;:10;:12::i;:::-;29382:89;29420:6;29382:89;;;;;;;;;;;;;;;;;:11;:19;29394:6;29382:19;;;;;;;;;;;;;;;:33;29402:12;:10;:12::i;:::-;29382:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29351:8;:121::i;:::-;29490:4;29483:11;;29189:313;;;;;:::o;31208:253::-;31274:7;31313;;31302;:18;;31294:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31378:19;31401:10;:8;:10::i;:::-;31378:33;;31429:24;31441:11;31429:7;:11;;:24;;;;:::i;:::-;31422:31;;;31208:253;;;:::o;45581:86::-;45625:7;45652;;45645:14;;45581:86;:::o;47120:194::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47204:45:::1;47221:4;47228:7;:5;:7::i;:::-;47237:11;47204:8;:45::i;:::-;47260:46;47278:4;47285:7;:5;:7::i;:::-;47294:11;47260:9;:46::i;:::-;47120:194:::0;:::o;28294:83::-;28335:5;28360:9;;;;;;;;;;;28353:16;;28294:83;:::o;31921:477::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32001:11:::1;:20;32013:7;32001:20;;;;;;;;;;;;;;;;;;;;;;;;;31993:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32069:9;32064:327;32088:9;:16;;;;32084:1;:20;32064:327;;;32146:7;32130:23;;:9;32140:1;32130:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32126:254;;;32189:9;32218:1;32199:9;:16;;;;:20;32189:31;;;;;;;;;;;;;;;;;;;;;;;;;32174:9;32184:1;32174:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32258:1;32239:7;:16;32247:7;32239:16;;;;;;;;;;;;;;;:20;;;;32301:5;32278:11;:20;32290:7;32278:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32325:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32359:5;;32126:254;32106:3;;;;;;;32064:327;;;;31921:477:::0;:::o;29510:218::-;29598:4;29615:83;29624:12;:10;:12::i;:::-;29638:7;29647:50;29686:10;29647:11;:25;29659:12;:10;:12::i;:::-;29647:25;;;;;;;;;;;;;;;:34;29673:7;29647:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29615:8;:83::i;:::-;29716:4;29709:11;;29510:218;;;;:::o;30379:377::-;30431:14;30448:12;:10;:12::i;:::-;30431:29;;30480:11;:19;30492:6;30480:19;;;;;;;;;;;;;;;;;;;;;;;;;30479:20;30471:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30560:15;30584:19;30595:7;30584:10;:19::i;:::-;30559:44;;;;;;;30632:28;30652:7;30632;:15;30640:6;30632:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30614:7;:15;30622:6;30614:15;;;;;;;;;;;;;;;:46;;;;30681:20;30693:7;30681;;:11;;:20;;;;:::i;:::-;30671:7;:30;;;;30725:23;30740:7;30725:10;;:14;;:23;;;;:::i;:::-;30712:10;:36;;;;30379:377;;;:::o;32406:396::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32501:42:::1;32490:53;;:7;:53;;;;32482:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32622:4;32603:24;;:7;:24;;;;32595:33;;;::::0;::::1;;32648:17;:26;32666:7;32648:26;;;;;;;;;;;;;;;;;;;;;;;;;32647:27;32639:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32749:4;32720:17;:26;32738:7;32720:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32764:16;32786:7;32764:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32406:396:::0;:::o;30764:436::-;30854:7;30893;;30882;:18;;30874:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30952:17;30947:246;;30987:15;31011:19;31022:7;31011:10;:19::i;:::-;30986:44;;;;;;;31052:7;31045:14;;;;;30947:246;31094:23;31125:19;31136:7;31125:10;:19::i;:::-;31092:52;;;;;;;31166:15;31159:22;;;30764:436;;;;;:::o;25120:38::-;;;:::o;25203:40::-;;;;;;;;;;;;;:::o;39149:156::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39203:23:::1;39229:24;39247:4;39229:9;:24::i;:::-;39203:50;;39264:33;39281:15;39264:16;:33::i;:::-;14655:1;39149:156::o:0;31469:444::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31562:42:::1;31551:53;;:7;:53;;;;31543:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31663:11;:20;31675:7;31663:20;;;;;;;;;;;;;;;;;;;;;;;;;31662:21;31654:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31748:1;31729:7;:16;31737:7;31729:16;;;;;;;;;;;;;;;;:20;31726:108;;;31785:37;31805:7;:16;31813:7;31805:16;;;;;;;;;;;;;;;;31785:19;:37::i;:::-;31766:7;:16;31774:7;31766:16;;;;;;;;;;;;;;;:56;;;;31726:108;31867:4;31844:11;:20;31856:7;31844:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31882:9;31897:7;31882:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469:444:::0;:::o;33839:123::-;33903:4;33927:18;:27;33946:7;33927:27;;;;;;;;;;;;;;;;;;;;;;;;;33920:34;;33839:123;;;:::o;45897:169::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45983:1:::1;45973:6;:11;;:27;;;;;45998:2;45988:6;:12;;45973:27;45965:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46052:6;46042:7;:16;;;;45897:169:::0;:::o;28488:198::-;28554:7;28578:11;:20;28590:7;28578:20;;;;;;;;;;;;;;;;;;;;;;;;;28574:49;;;28607:7;:16;28615:7;28607:16;;;;;;;;;;;;;;;;28600:23;;;;28574:49;28641:37;28661:7;:16;28669:7;28661:16;;;;;;;;;;;;;;;;28641:19;:37::i;:::-;28634:44;;28488:198;;;;:::o;15009:148::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15116:1:::1;15079:40;;15100:6;::::0;::::1;;;;;;;;15079:40;;;;;;;;;;;;15147:1;15130:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15009:148::o:0;32810:500::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32899:17:::1;:26;32917:7;32899:26;;;;;;;;;;;;;;;;;;;;;;;;;32891:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32972:9;32967:336;32991:16;:23;;;;32987:1;:27;32967:336;;;33063:7;33040:30;;:16;33057:1;33040:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;33036:256;;;33113:16;33156:1;33130:16;:23;;;;:27;33113:45;;;;;;;;;;;;;;;;;;;;;;;;;33091:16;33108:1;33091:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;33206:5;33177:17;:26;33195:7;33177:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;33230:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33271:5;;33036:256;33016:3;;;;;;;32967:336;;;;32810:500:::0;:::o;30013:120::-;30081:4;30105:11;:20;30117:7;30105:20;;;;;;;;;;;;;;;;;;;;;;;;;30098:27;;30013:120;;;:::o;14375:79::-;14413:7;14440:6;;;;;;;;;;;14433:13;;14375:79;:::o;28199:87::-;28238:13;28271:7;28264:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28199:87;:::o;29736:269::-;29829:4;29846:129;29855:12;:10;:12::i;:::-;29869:7;29878:96;29917:15;29878:96;;;;;;;;;;;;;;;;;:11;:25;29890:12;:10;:12::i;:::-;29878:25;;;;;;;;;;;;;;;:34;29904:7;29878:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29846:8;:129::i;:::-;29993:4;29986:11;;29736:269;;;;:::o;46074:211::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46178:1:::1;46162:12;:17;;:39;;;;;46199:2;46183:12;:18;;46162:39;46154:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46265:12;46249:13;:28;;;;46074:211:::0;:::o;28694:167::-;28772:4;28789:42;28799:12;:10;:12::i;:::-;28813:9;28824:6;28789:9;:42::i;:::-;28849:4;28842:11;;28694:167;;;;:::o;30141:135::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30260:8:::1;30230:18;:27;30249:7;30230:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;30141:135:::0;;:::o;46293:211::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46397:1:::1;46381:12;:17;;:39;;;;;46418:2;46402:12;:18;;46381:39;46373:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46484:12;46468:13;:28;;;;46293:211:::0;:::o;39480:148::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39598:22:::1;39574:21;;:46;;;;;;;;;;;;;;;;;;39480:148:::0;:::o;46893:219::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46987:117:::1;47031:5;46987:25;46999:12;46987:7;;:11;;:25;;;;:::i;:::-;:29;;:117;;;;:::i;:::-;46972:12;:132;;;;46893:219:::0;:::o;28869:143::-;28950:7;28977:11;:18;28989:5;28977:18;;;;;;;;;;;;;;;:27;28996:7;28977:27;;;;;;;;;;;;;;;;28970:34;;28869:143;;;;:::o;15309:244::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15418:1:::1;15398:22;;:8;:22;;;;15390:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15508:8;15479:38;;15500:6;::::0;::::1;;;;;;;;15479:38;;;;;;;;;;;;15537:8;15528:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15309:244:::0;:::o;39313:159::-;14595:12;:10;:12::i;:::-;14585:22;;:6;;;;;;;;;;:22;;;14577:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:26:::1;39394:21;39365:50;;39426:38;39445:18;39426;:38::i;:::-;14655:1;39313:159::o:0;45675:96::-;45724:7;45751:12;;45744:19;;45675:96;:::o;45779:110::-;45825:15;45860:21;45853:28;;45779:110;:::o;196:106::-;249:15;284:10;277:17;;196:106;:::o;33970:337::-;34080:1;34063:19;;:5;:19;;;;34055:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34161:1;34142:21;;:7;:21;;;;34134:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34245:6;34215:11;:18;34227:5;34215:18;;;;;;;;;;;;;;;:27;34234:7;34215:27;;;;;;;;;;;;;;;:36;;;;34283:7;34267:32;;34276:5;34267:32;;;34292:6;34267:32;;;;;;;;;;;;;;;;;;33970:337;;;:::o;34315:2118::-;34430:1;34412:20;;:6;:20;;;;34404:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34514:1;34493:23;;:9;:23;;;;34485:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34584:1;34575:6;:10;34567:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34651:17;:25;34669:6;34651:25;;;;;;;;;;;;;;;;;;;;;;;;;34650:26;34642:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34724:17;:28;34742:9;34724:28;;;;;;;;;;;;;;;;;;;;;;;;;34723:29;34715:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34800:17;:28;34818:9;34800:28;;;;;;;;;;;;;;;;;;;;;;;;;34799:29;34791:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34873:16;:24;34890:6;34873:24;;;;;;;;;;;;;;;;;;;;;;;;;34872:25;:57;;;;;34902:16;:27;34919:9;34902:27;;;;;;;;;;;;;;;;;;;;;;;;;34901:28;34872:57;34869:164;;;34964:12;;34954:6;:22;;34946:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34869:164;35327:28;35358:24;35376:4;35358:9;:24::i;:::-;35327:55;;35422:12;;35398:20;:36;35395:112;;35483:12;;35460:35;;35395:112;35519:24;35570:30;;35546:20;:54;;35519:81;;35616:16;;;;;;;;;;;35615:17;:56;;;;;35650:21;;;;;;;;;;;35615:56;:93;;;;;35689:19;35615:93;:134;;;;;35736:13;35726:23;;:6;:23;;;;35615:134;:176;;;;;35767:16;:24;35784:6;35767:24;;;;;;;;;;;;;;;;;;;;;;;;;35766:25;35615:176;:221;;;;;35809:16;:27;35826:9;35809:27;;;;;;;;;;;;;;;;;;;;;;;;;35808:28;35615:221;35611:397;;;35886:30;;35863:53;;35960:36;35975:20;35960:14;:36::i;:::-;35611:397;36081:12;36096:4;36081:19;;36200:18;:26;36219:6;36200:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;36230:18;:29;36249:9;36230:29;;;;;;;;;;;;;;;;;;;;;;;;;36200:59;36197:105;;;36285:5;36275:15;;36197:105;36375:50;36390:6;36398:9;36409:6;36417:7;36375:14;:50::i;:::-;34315:2118;;;;;;:::o;4283:192::-;4369:7;4402:1;4397;:6;;4405:12;4389:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4429:9;4445:1;4441;:5;4429:17;;4466:1;4459:8;;;4283:192;;;;;:::o;44847:163::-;44888:7;44909:15;44926;44945:19;:17;:19::i;:::-;44908:56;;;;44982:20;44994:7;44982;:11;;:20;;;;:::i;:::-;44975:27;;;;44847:163;:::o;5661:132::-;5719:7;5746:39;5750:1;5753;5746:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5739:46;;5661:132;;;;:::o;3398:181::-;3456:7;3476:9;3492:1;3488;:5;3476:17;;3517:1;3512;:6;;3504:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3570:1;3563:8;;;3398:181;;;;:::o;43542:518::-;43601:7;43610;43619;43628;43637;43646;43667:23;43692:12;43706:30;43740:63;43752:7;43761;;43770:32;43788:13;;43770;;:17;;:32;;;;:::i;:::-;43740:11;:63::i;:::-;43666:137;;;;;;43814:19;43836:10;:8;:10::i;:::-;43814:32;;43858:15;43875:23;43900:12;43916:39;43928:7;43937:4;43943:11;43916;:39::i;:::-;43857:98;;;;;;43974:7;43983:15;44000:4;44006:15;44023:4;44029:22;43966:86;;;;;;;;;;;;;;;;;;;43542:518;;;;;;;:::o;3853:136::-;3911:7;3938:43;3942:1;3945;3938:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3931:50;;3853:136;;;;:::o;37770:589::-;37896:21;37934:1;37920:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37896:40;;37965:4;37947;37952:1;37947:7;;;;;;;;;;;;;:23;;;;;;;;;;;37991:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37981:4;37986:1;37981:7;;;;;;;;;;;;;:32;;;;;;;;;;;38026:62;38043:4;38058:15;38076:11;38026:8;:62::i;:::-;38127:15;:66;;;38208:11;38234:1;38278:4;38305;38325:15;38127:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37770:589;;:::o;4725:471::-;4783:7;5033:1;5028;:6;5024:47;;;5058:1;5051:8;;;;5024:47;5083:9;5099:1;5095;:5;5083:17;;5128:1;5123;5119;:5;;;;;;:10;5111:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5187:1;5180:8;;;4725:471;;;;;:::o;38888:111::-;38951:23;;;;;;;;;;;:32;;:40;38984:6;38951:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38888:111;:::o;36441:1321::-;25792:4;25773:16;;:23;;;;;;;;;;;;;;;;;;36526:19:::1;36548:77;36592:32;36610:13;;36592;;:17;;:32;;;;:::i;:::-;36548:39;36573:13;;36548:20;:24;;:39;;;;:::i;:::-;:43;;:77;;;;:::i;:::-;36526:99;;36636:17;36656:37;36681:11;36656:20;:24;;:37;;;;:::i;:::-;36636:57;;36757:12;36772:16;36786:1;36772:9;:13;;:16;;;;:::i;:::-;36757:31;;36799:17;36819:19;36833:4;36819:9;:13;;:19;;;;:::i;:::-;36799:39;;37116:22;37141:21;37116:46;;37207:20;37230:21;37239:11;37230:4;:8;;:21;;;;:::i;:::-;37207:44;;37262:30;37279:12;37262:16;:30::i;:::-;37423:16;37442:41;37468:14;37442:21;:25;;:41;;;;:::i;:::-;37423:60;;37494:18;37515:36;37538:12;37515:18;37528:4;37515:8;:12;;:18;;;;:::i;:::-;:22;;:36;;;;:::i;:::-;37494:57;;37601:35;37614:9;37625:10;37601:12;:35::i;:::-;37654:43;37669:4;37675:10;37687:9;37654:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37710:44;37729:24;37742:10;37729:8;:12;;:24;;;;:::i;:::-;37710:18;:44::i;:::-;25807:1;;;;;;;;25838:5:::0;25819:16;;:24;;;;;;;;;;;;;;;;;;36441:1321;:::o;39636:819::-;39748:7;39744:40;;39770:14;:12;:14::i;:::-;39744:40;39801:11;:19;39813:6;39801:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39825:11;:22;39837:9;39825:22;;;;;;;;;;;;;;;;;;;;;;;;;39824:23;39801:46;39797:597;;;39864:48;39886:6;39894:9;39905:6;39864:21;:48::i;:::-;39797:597;;;39935:11;:19;39947:6;39935:19;;;;;;;;;;;;;;;;;;;;;;;;;39934:20;:46;;;;;39958:11;:22;39970:9;39958:22;;;;;;;;;;;;;;;;;;;;;;;;;39934:46;39930:464;;;39997:46;40017:6;40025:9;40036:6;39997:19;:46::i;:::-;39930:464;;;40066:11;:19;40078:6;40066:19;;;;;;;;;;;;;;;;;;;;;;;;;40065:20;:47;;;;;40090:11;:22;40102:9;40090:22;;;;;;;;;;;;;;;;;;;;;;;;;40089:23;40065:47;40061:333;;;40129:44;40147:6;40155:9;40166:6;40129:17;:44::i;:::-;40061:333;;;40195:11;:19;40207:6;40195:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;40218:11;:22;40230:9;40218:22;;;;;;;;;;;;;;;;;;;;;;;;;40195:45;40191:203;;;40257:48;40279:6;40287:9;40298:6;40257:21;:48::i;:::-;40191:203;;;40338:44;40356:6;40364:9;40375:6;40338:17;:44::i;:::-;40191:203;40061:333;39930:464;39797:597;40410:7;40406:41;;40432:15;:13;:15::i;:::-;40406:41;39636:819;;;;:::o;45018:555::-;45068:7;45077;45097:15;45115:7;;45097:25;;45133:15;45151:7;;45133:25;;45174:9;45169:289;45193:9;:16;;;;45189:1;:20;45169:289;;;45259:7;45235;:21;45243:9;45253:1;45243:12;;;;;;;;;;;;;;;;;;;;;;;;;45235:21;;;;;;;;;;;;;;;;:31;:66;;;;45294:7;45270;:21;45278:9;45288:1;45278:12;;;;;;;;;;;;;;;;;;;;;;;;;45270:21;;;;;;;;;;;;;;;;:31;45235:66;45231:97;;;45311:7;;45320;;45303:25;;;;;;;;;45231:97;45353:34;45365:7;:21;45373:9;45383:1;45373:12;;;;;;;;;;;;;;;;;;;;;;;;;45365:21;;;;;;;;;;;;;;;;45353:7;:11;;:34;;;;:::i;:::-;45343:44;;45412:34;45424:7;:21;45432:9;45442:1;45432:12;;;;;;;;;;;;;;;;;;;;;;;;;45424:21;;;;;;;;;;;;;;;;45412:7;:11;;:34;;;;:::i;:::-;45402:44;;45211:3;;;;;;;45169:289;;;;45482:20;45494:7;;45482;;:11;;:20;;;;:::i;:::-;45472:7;:30;45468:61;;;45512:7;;45521;;45504:25;;;;;;;;45468:61;45548:7;45557;45540:25;;;;;;45018:555;;;:::o;6278:278::-;6364:7;6396:1;6392;:5;6399:12;6384:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6423:9;6439:1;6435;:5;;;;;;6423:17;;6547:1;6540:8;;;6278:278;;;;;:::o;44068:429::-;44175:7;44184;44193;44213:12;44228:28;44252:3;44228:19;44240:6;44228:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;44213:43;;44267:30;44300:43;44339:3;44300:34;44312:21;44300:7;:11;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;44267:76;;44354:23;44380:44;44402:21;44380:17;44392:4;44380:7;:11;;:17;;;;:::i;:::-;:21;;:44;;;;:::i;:::-;44354:70;;44443:15;44460:4;44466:22;44435:54;;;;;;;;;44068:429;;;;;;;:::o;44505:334::-;44600:7;44609;44618;44638:15;44656:24;44668:11;44656:7;:11;;:24;;;;:::i;:::-;44638:42;;44691:12;44706:21;44715:11;44706:4;:8;;:21;;;;:::i;:::-;44691:36;;44738:23;44764:17;44776:4;44764:7;:11;;:17;;;;:::i;:::-;44738:43;;44800:7;44809:15;44826:4;44792:39;;;;;;;;;44505:334;;;;;;;:::o;38367:513::-;38515:62;38532:4;38547:15;38565:11;38515:8;:62::i;:::-;38620:15;:31;;;38659:9;38692:4;38712:11;38738:1;38781;38824:7;:5;:7::i;:::-;38846:15;38620:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38367:513;;:::o;33318:332::-;33375:1;33364:7;;:12;:34;;;;;33397:1;33380:13;;:18;33364:34;:56;;;;;33419:1;33402:13;;:18;33364:56;33361:68;;;33422:7;;33361:68;33459:7;;33441:15;:25;;;;33501:13;;33477:21;:37;;;;33549:13;;33525:21;:37;;;;33585:1;33575:7;:11;;;;33613:1;33597:13;:17;;;;33641:1;33625:13;:17;;;;33318:332;:::o;41610:590::-;41713:15;41730:23;41755:12;41769:23;41794:12;41808:27;41839:19;41850:7;41839:10;:19::i;:::-;41712:146;;;;;;;;;;;;41887:28;41907:7;41887;:15;41895:6;41887:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41869:7;:15;41877:6;41869:15;;;;;;;;;;;;;;;:46;;;;41944:28;41964:7;41944;:15;41952:6;41944:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41926:7;:15;41934:6;41926:15;;;;;;;;;;;;;;;:46;;;;42004:39;42027:15;42004:7;:18;42012:9;42004:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41983:7;:18;41991:9;41983:18;;;;;;;;;;;;;;;:60;;;;42054:44;42078:19;42054:23;:44::i;:::-;42109:23;42121:4;42127;42109:11;:23::i;:::-;42165:9;42148:44;;42157:6;42148:44;;;42176:15;42148:44;;;;;;;;;;;;;;;;;;41610:590;;;;;;;;;:::o;41000:602::-;41101:15;41118:23;41143:12;41157:23;41182:12;41196:27;41227:19;41238:7;41227:10;:19::i;:::-;41100:146;;;;;;;;;;;;41275:28;41295:7;41275;:15;41283:6;41275:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41257:7;:15;41265:6;41257:15;;;;;;;;;;;;;;;:46;;;;41335:39;41358:15;41335:7;:18;41343:9;41335:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41314:7;:18;41322:9;41314:18;;;;;;;;;;;;;;;:60;;;;41406:39;41429:15;41406:7;:18;41414:9;41406:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41385:7;:18;41393:9;41385:18;;;;;;;;;;;;;;;:60;;;;41456:44;41480:19;41456:23;:44::i;:::-;41511:23;41523:4;41529;41511:11;:23::i;:::-;41567:9;41550:44;;41559:6;41550:44;;;41578:15;41550:44;;;;;;;;;;;;;;;;;;41000:602;;;;;;;;;:::o;40463:529::-;40562:15;40579:23;40604:12;40618:23;40643:12;40657:27;40688:19;40699:7;40688:10;:19::i;:::-;40561:146;;;;;;;;;;;;40736:28;40756:7;40736;:15;40744:6;40736:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40718:7;:15;40726:6;40718:15;;;;;;;;;;;;;;;:46;;;;40796:39;40819:15;40796:7;:18;40804:9;40796:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40775:7;:18;40783:9;40775:18;;;;;;;;;;;;;;;:60;;;;40846:44;40870:19;40846:23;:44::i;:::-;40901:23;40913:4;40919;40901:11;:23::i;:::-;40957:9;40940:44;;40949:6;40940:44;;;40968:15;40940:44;;;;;;;;;;;;;;;;;;40463:529;;;;;;;;;:::o;42208:661::-;42311:15;42328:23;42353:12;42367:23;42392:12;42406:27;42437:19;42448:7;42437:10;:19::i;:::-;42310:146;;;;;;;;;;;;42485:28;42505:7;42485;:15;42493:6;42485:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42467:7;:15;42475:6;42467:15;;;;;;;;;;;;;;;:46;;;;42542:28;42562:7;42542;:15;42550:6;42542:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42524:7;:15;42532:6;42524:15;;;;;;;;;;;;;;;:46;;;;42602:39;42625:15;42602:7;:18;42610:9;42602:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42581:7;:18;42589:9;42581:18;;;;;;;;;;;;;;;:60;;;;42673:39;42696:15;42673:7;:18;42681:9;42673:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42652:7;:18;42660:9;42652:18;;;;;;;;;;;;;;;:60;;;;42723:44;42747:19;42723:23;:44::i;:::-;42778:23;42790:4;42796;42778:11;:23::i;:::-;42834:9;42817:44;;42826:6;42817:44;;;42845:15;42817:44;;;;;;;;;;;;;;;;;;42208:661;;;;;;;;;:::o;33658:173::-;33712:15;;33702:7;:25;;;;33754:21;;33738:13;:37;;;;33802:21;;33786:13;:37;;;;33658:173::o;42877:408::-;42958:19;42980:10;:8;:10::i;:::-;42958:32;;43001:27;43031:36;43055:11;43031:19;:23;;:36;;;;:::i;:::-;43001:66;;43103:47;43130:19;43103:7;:22;43119:4;43103:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;43078:7;:22;43094:4;43078:22;;;;;;;;;;;;;;;:72;;;;43164:11;:26;43184:4;43164:26;;;;;;;;;;;;;;;;;;;;;;;;;43161:116;;;43230:47;43257:19;43230:7;:22;43246:4;43230:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;43205:7;:22;43221:4;43205:22;;;;;;;;;;;;;;;:72;;;;43161:116;42877:408;;;:::o;43293:147::-;43371:17;43383:4;43371:7;;:11;;:17;;;;:::i;:::-;43361:7;:27;;;;43412:20;43427:4;43412:10;;:14;;:20;;;;:::i;:::-;43399:10;:33;;;;43293:147;;:::o
Swarm Source
ipfs://67543b7bd447e1d3eefa6e4218c2b4c19159af888971161a26869a721453d39a
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.