ERC-20
Overview
Max Total Supply
100,000,000,000,000 RAKITA
Holders
193
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
32,825,966,696.439303033 RAKITAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RocketAkita
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-02 */ //https://t.me/rocketakita //https://rocketakita.finance/ //https://twitter.com/RocketAkita //This Akita is going to the moon! //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 RocketAkita 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; 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 = 'Rocket Akita'; string private _symbol = 'RAKITA'; uint8 private _decimals = 9; uint256 private _taxFee = 2; // 4% reflection fee for every holder uint256 private _marketingFee = 0; // 2% marketing uint256 private _liquidityFee = 0; // 4% into liquidity uint256 private _previousTaxFee = _taxFee; uint256 private _previousMarketingFee = _marketingFee; uint256 private _previousLiquidityFee = _liquidityFee; address payable private _marketingWalletAddress = payable(0x24F21293D0DA887435f25EA039bA9c17F4dA6D14); IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify = false; bool public swapAndLiquifyEnabled = true; uint256 private _maxTxAmount = _tTotal / 1000; // 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; // 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) external 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) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); 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(sender != owner() && recipient != owner()) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity; if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) { 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() private view returns(uint256) { return _taxFee; } function _getMaxTxAmount() private view returns(uint256) { return _maxTxAmount / 10**9; } 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; } 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) public virtual onlyOwner() { _approve(address(this), owner(), tokenAmount); _transfer(address(this), owner(), tokenAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"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":"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
60c060405269152d02c7e14af6800000600b55600b54600019816200002057fe5b0660001903600c556040518060400160405280600c81526020017f526f636b657420416b6974610000000000000000000000000000000000000000815250600e90805190602001906200007592919062000e0e565b506040518060400160405280600681526020017f52414b4954410000000000000000000000000000000000000000000000000000815250600f9080519060200190620000c392919062000e0e565b506009601060006101000a81548160ff021916908360ff1602179055506002601155600060125560006013556011546014556012546015556013546016557324f21293d0da887435f25ea039ba9c17f4da6d14601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601760146101000a81548160ff0219169083151502179055506001601760156101000a81548160ff0219169083151502179055506103e8600b54816200019a57fe5b04601855670de0b6b3a7640000601955348015620001b757600080fd5b506000620001ca62000ddd60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600c54600360006200027f62000ddd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031d57600080fd5b505afa15801562000332573d6000803e3d6000fd5b505050506040513d60208110156200034957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003bd57600080fd5b505afa158015620003d2573d6000803e3d6000fd5b505050506040513d6020811015620003e957600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200046457600080fd5b505af115801562000479573d6000803e3d6000fd5b505050506040513d60208110156200049057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200052462000de560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600073e031b36b53e53a292a20c5f08fd1658cddf74fce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e031b36b53e53a292a20c5f08fd1658cddf74fce9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073e516bdee55b0b4e9bacaf6285130de15589b134573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73e516bdee55b0b4e9bacaf6285130de15589b13459080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073a1cec245c456dd1bd9f2815a6955fef44eb4191b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73a1cec245c456dd1bd9f2815a6955fef44eb4191b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf9573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf959080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073fe76f05dc59fec04184fa0245ad0c3cf9a57b96473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73fe76f05dc59fec04184fa0245ad0c3cf9a57b9649080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009600073dc81a3450817a58d00f45c86d0368290088db84873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a73dc81a3450817a58d00f45c86d0368290088db8489080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007345fd07c63e5c316540f14b2002b085aee78e388173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7345fd07c63e5c316540f14b2002b085aee78e38819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960007327f9adb26d532a41d97e00206114e429ad58c67973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a7327f9adb26d532a41d97e00206114e429ad58c6799080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000d6f62000ddd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000eb4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000e5157805160ff191683800117855562000e82565b8280016001018555821562000e82579182015b8281111562000e8157825182559160200191906001019062000e64565b5b50905062000e91919062000e95565b5090565b5b8082111562000eb057600081600090555060010162000e96565b5090565b60805160601c60a05160601c6159d162000efc60003980611bac52806139e0525080610e885280613e205280613f0c5280613f335280614a255280614a4c52506159d16000f3fe6080604052600436106102295760003560e01c80635342acb411610123578063a52fe9bb116100ab578063d543dbeb1161006f578063d543dbeb14610c69578063dd62ed3e14610ca4578063f2fde38b14610d29578063f429389014610d7a578063f815a84214610d9157610230565b8063a52fe9bb14610ae8578063a9059cbb14610b23578063af9549e014610b94578063bcd6d44614610bf1578063c49b9a8014610c2c57610230565b80637ded4d6a116100f25780637ded4d6a146108ee57806388f820201461093f5780638da5cb5b146109a657806395d89b41146109e7578063a457c2d714610a7757610230565b80635342acb4146107d05780635880b8731461083757806370a0823114610872578063715018a6146108d757610230565b8063313ce567116101b15780634549b039116101755780634549b0391461069f57806349bd5a5e146106fa5780634a74bb021461073b57806351bc3c851461076857806352390c021461077f57610230565b8063313ce567146105235780633685d4191461055157806339509351146105a25780633bd5d173146106135780634303443d1461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631decaadc146103cd57806323b872dd146104085780632d8381191461049957806330599fc5146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610dbc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e7c565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610eaa565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610eb4565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe3565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b81019080803590602001909291905050506110bc565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506105216004803603602081101561050b57600080fd5b8101908080359060200190929190505050611140565b005b34801561052f57600080fd5b5061053861122f565b604051808260ff16815260200191505060405180910390f35b34801561055d57600080fd5b506105a06004803603602081101561057457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611246565b005b3480156105ae57600080fd5b506105fb600480360360408110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d0565b60405180821515815260200191505060405180910390f35b34801561061f57600080fd5b5061064c6004803603602081101561063657600080fd5b8101908080359060200190929190505050611683565b005b34801561065a57600080fd5b5061069d6004803603602081101561067157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611814565b005b3480156106ab57600080fd5b506106e4600480360360408110156106c257600080fd5b8101908080359060200190929190803515159060200190929190505050611af3565b6040518082815260200191505060405180910390f35b34801561070657600080fd5b5061070f611baa565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074757600080fd5b50610750611bce565b60405180821515815260200191505060405180910390f35b34801561077457600080fd5b5061077d611be1565b005b34801561078b57600080fd5b506107ce600480360360208110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc2565b005b3480156107dc57600080fd5b5061081f600480360360208110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612075565b60405180821515815260200191505060405180910390f35b34801561084357600080fd5b506108706004803603602081101561085a57600080fd5b81019080803590602001909291905050506120cb565b005b34801561087e57600080fd5b506108c16004803603602081101561089557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612221565b6040518082815260200191505060405180910390f35b3480156108e357600080fd5b506108ec61230c565b005b3480156108fa57600080fd5b5061093d6004803603602081101561091157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612492565b005b34801561094b57600080fd5b5061098e6004803603602081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127d7565b60405180821515815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61282d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f357600080fd5b506109fc612856565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a3c578082015181840152602081019050610a21565b50505050905090810190601f168015610a695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a8357600080fd5b50610ad060048036036040811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506128f8565b60405180821515815260200191505060405180910390f35b348015610af457600080fd5b50610b2160048036036020811015610b0b57600080fd5b81019080803590602001909291905050506129c5565b005b348015610b2f57600080fd5b50610b7c60048036036040811015610b4657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b1b565b60405180821515815260200191505060405180910390f35b348015610ba057600080fd5b50610bef60048036036040811015610bb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612b39565b005b348015610bfd57600080fd5b50610c2a60048036036020811015610c1457600080fd5b8101908080359060200190929190505050612c5c565b005b348015610c3857600080fd5b50610c6760048036036020811015610c4f57600080fd5b81019080803515159060200190929190505050612db2565b005b348015610c7557600080fd5b50610ca260048036036020811015610c8c57600080fd5b8101908080359060200190929190505050612e97565b005b348015610cb057600080fd5b50610d1360048036036040811015610cc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f91565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610d7860048036036020811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613018565b005b348015610d8657600080fd5b50610d8f613223565b005b348015610d9d57600080fd5b50610da66132fc565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b5050505050905090565b6000610e72610e6b613304565b848461330c565b6001905092915050565b6000600d54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b610ebc613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015610fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806158eb603e913960400191505060405180910390fd5b8060198190555050565b6000610ff0848484613503565b6110b184610ffc613304565b6110ac8560405180606001604052806028815260200161582d60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611062613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b600190509392505050565b6000600c54821115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615772602a913960400191505060405180910390fd5b6000611123613bc8565b90506111388184613bf390919063ffffffff16565b915050919050565b611148613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61121a3061121461282d565b8361330c565b61122c3061122661282d565b83613503565b50565b6000601060009054906101000a900460ff16905090565b61124e613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156115cc578173ffffffffffffffffffffffffffffffffffffffff166008828154811061140157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bf5760086001600880549050038154811061145d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061149557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061158557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556115cc565b80806001019150506113d0565b5050565b60006116796115dd613304565b8461167485600560006115ee613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b61330c565b6001905092915050565b600061168d613304565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061594b602c913960400191505060405180910390fd5b600061173d83613cc5565b5050505050905061179681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117ee81600c54613d4090919063ffffffff16565b600c8190555061180983600d54613c3d90919063ffffffff16565b600d81905550505050565b61181c613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061587e6024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54831115611b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b8d576000611b7d84613cc5565b5050505050905080915050611ba4565b6000611b9884613cc5565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601760159054906101000a900460ff1681565b611be9613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611cb430612221565b9050611cbf81613d8a565b50565b611cca613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159296022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fb757611f73600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6120d3613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156121a5575060318111155b612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060118190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122bc57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612307565b612304600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b90505b919050565b612314613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61249a613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a805490508110156127d3578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061264d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c657600a6001600a8054905003815481106126a957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a82815481106126e157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061278c57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556127d3565b808060010191505061261c565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128ee5780601f106128c3576101008083540402835291602001916128ee565b820191906000526020600020905b8154815290600101906020018083116128d157829003601f168201915b5050505050905090565b60006129bb612905613304565b846129b685604051806060016040528060258152602001615977602591396005600061292f613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b6001905092915050565b6129cd613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612a9f575060318111155b612b11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060128190555050565b6000612b2f612b28613304565b8484613503565b6001905092915050565b612b41613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612c64613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612d36575060318111155b612da8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060138190555050565b612dba613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601760156101000a81548160ff02191690831515021790555050565b612e9f613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f886103e8612f7a83600b5461403890919063ffffffff16565b613bf390919063ffffffff16565b60188190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613020613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061579c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61322b613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790506132f9816140be565b50565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806158c76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157c26022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158a26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561360f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061574f6023913960400191505060405180910390fd5b60008111613668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158556029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613728576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6138b061282d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561391e57506138ee61282d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561397f5760185481111561397e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806157e46028913960400191505060405180910390fd5b5b600061398a30612221565b9050601854811061399b5760185490505b60006019548210159050601760149054906101000a900460ff161580156139ce5750601760159054906101000a900460ff165b80156139d75750805b8015613a2f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613a43576019549150613a428261412a565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613aea5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af457600090505b613b00868686846142c3565b505050505050565b6000838311158290613bb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b7a578082015181840152602081019050613b5f565b50505050905090810190601f168015613ba75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613bd56145d4565b91509150613bec8183613bf390919063ffffffff16565b9250505090565b6000613c3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614865565b905092915050565b600080828401905083811015613cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613cf68a601154613cf1601354601254613c3d90919063ffffffff16565b61492b565b9250925092506000613d06613bc8565b90506000806000613d188e87866149c1565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613d8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b08565b905092915050565b6060600267ffffffffffffffff81118015613da457600080fd5b50604051908082528060200260200182016040528015613dd35781602001602082028036833780820191505090505b5090503081600081518110613de457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e8457600080fd5b505afa158015613e98573d6000803e3d6000fd5b505050506040513d6020811015613eae57600080fd5b810190808051906020019092919050505081600181518110613ecc57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f31307f00000000000000000000000000000000000000000000000000000000000000008461330c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613ff3578082015181840152602081019050613fd8565b505050509050019650505050505050600060405180830381600087803b15801561401c57600080fd5b505af1158015614030573d6000803e3d6000fd5b505050505050565b60008083141561404b57600090506140b8565b600082840290508284828161405c57fe5b04146140b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061580c6021913960400191505060405180910390fd5b809150505b92915050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614126573d6000803e3d6000fd5b5050565b6001601760146101000a81548160ff0219169083151502179055506000614184614161601354601254613c3d90919063ffffffff16565b6141766012548561403890919063ffffffff16565b613bf390919063ffffffff16565b9050600061419b8284613d4090919063ffffffff16565b905060006141b3600283613bf390919063ffffffff16565b905060006141ca8284613d4090919063ffffffff16565b9050600047905060006141e68685613c3d90919063ffffffff16565b90506141f181613d8a565b60006142068347613d4090919063ffffffff16565b9050600061422f83614221888561403890919063ffffffff16565b613bf390919063ffffffff16565b905061423b8582614a1f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a161429d6142988284613d4090919063ffffffff16565b6140be565b50505050505050506000601760146101000a81548160ff02191690831515021790555050565b806142d1576142d0614b70565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143745750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561438957614384848484614bd2565b6145c0565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561442c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156144415761443c848484614e32565b6145bf565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144e55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156144fa576144f5848484615092565b6145be565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561459c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156145b1576145ac84848461525d565b6145bd565b6145bc848484615092565b5b5b5b5b806145ce576145cd615552565b5b50505050565b6000806000600c5490506000600b54905060005b6008805490508110156148285782600360006008848154811061460757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806146ee575081600460006008848154811061468657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561470557600c54600b5494509450505050614861565b61478e600360006008848154811061471957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613d4090919063ffffffff16565b925061481960046000600884815481106147a457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613d4090919063ffffffff16565b915080806001019150506145e8565b50614840600b54600c54613bf390919063ffffffff16565b82101561485857600c54600b54935093505050614861565b81819350935050505b9091565b60008083118290614911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156148d65780820151818401526020810190506148bb565b50505050905090810190601f1680156149035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161491d57fe5b049050809150509392505050565b6000806000806149576064614949888a61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149816064614973888b61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149aa8761499c858c613d4090919063ffffffff16565b613d4090919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806149da858861403890919063ffffffff16565b905060006149f1868861403890919063ffffffff16565b90506000614a088284613d4090919063ffffffff16565b905082818395509550955050505093509350939050565b614a4a307f00000000000000000000000000000000000000000000000000000000000000008461330c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614a9461282d565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614b1957600080fd5b505af1158015614b2d573d6000803e3d6000fd5b50505050506040513d6060811015614b4457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614b8457506000601254145b8015614b9257506000601354145b15614b9c57614bd0565b6011546014819055506012546015819055506013546016819055506000601181905550600060128190555060006013819055505b565b600080600080600080614be487613cc5565b955095509550955095509550614c4287600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cd786600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d6c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614db88161556f565b614dc28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e4487613cc5565b955095509550955095509550614ea286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f3783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fcc85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150188161556f565b6150228483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150a487613cc5565b95509550955095509550955061510286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061519785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151e38161556f565b6151ed8483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061526f87613cc5565b9550955095509550955095506152cd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061536286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153f783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061548c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154d88161556f565b6154e28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601454601181905550601554601281905550601654601381905550565b6000615579613bc8565b90506000615590828461403890919063ffffffff16565b90506155e481600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561570f576156cb83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61572982600c54613d4090919063ffffffff16565b600c8190555061574481600d54613c3d90919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207df00c022ed889f290872d0ff46698f20a025a02eee9bab5d49594ccb968548f64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102295760003560e01c80635342acb411610123578063a52fe9bb116100ab578063d543dbeb1161006f578063d543dbeb14610c69578063dd62ed3e14610ca4578063f2fde38b14610d29578063f429389014610d7a578063f815a84214610d9157610230565b8063a52fe9bb14610ae8578063a9059cbb14610b23578063af9549e014610b94578063bcd6d44614610bf1578063c49b9a8014610c2c57610230565b80637ded4d6a116100f25780637ded4d6a146108ee57806388f820201461093f5780638da5cb5b146109a657806395d89b41146109e7578063a457c2d714610a7757610230565b80635342acb4146107d05780635880b8731461083757806370a0823114610872578063715018a6146108d757610230565b8063313ce567116101b15780634549b039116101755780634549b0391461069f57806349bd5a5e146106fa5780634a74bb021461073b57806351bc3c851461076857806352390c021461077f57610230565b8063313ce567146105235780633685d4191461055157806339509351146105a25780633bd5d173146106135780634303443d1461064e57610230565b806318160ddd116101f857806318160ddd146103a25780631decaadc146103cd57806323b872dd146104085780632d8381191461049957806330599fc5146104e857610230565b806306fdde0314610235578063095ea7b3146102c557806313114a9d146103365780631694505e1461036157610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a610dbc565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b5061031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e5e565b60405180821515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610e7c565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610e86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610eaa565b6040518082815260200191505060405180910390f35b3480156103d957600080fd5b50610406600480360360208110156103f057600080fd5b8101908080359060200190929190505050610eb4565b005b34801561041457600080fd5b506104816004803603606081101561042b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fe3565b60405180821515815260200191505060405180910390f35b3480156104a557600080fd5b506104d2600480360360208110156104bc57600080fd5b81019080803590602001909291905050506110bc565b6040518082815260200191505060405180910390f35b3480156104f457600080fd5b506105216004803603602081101561050b57600080fd5b8101908080359060200190929190505050611140565b005b34801561052f57600080fd5b5061053861122f565b604051808260ff16815260200191505060405180910390f35b34801561055d57600080fd5b506105a06004803603602081101561057457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611246565b005b3480156105ae57600080fd5b506105fb600480360360408110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115d0565b60405180821515815260200191505060405180910390f35b34801561061f57600080fd5b5061064c6004803603602081101561063657600080fd5b8101908080359060200190929190505050611683565b005b34801561065a57600080fd5b5061069d6004803603602081101561067157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611814565b005b3480156106ab57600080fd5b506106e4600480360360408110156106c257600080fd5b8101908080359060200190929190803515159060200190929190505050611af3565b6040518082815260200191505060405180910390f35b34801561070657600080fd5b5061070f611baa565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074757600080fd5b50610750611bce565b60405180821515815260200191505060405180910390f35b34801561077457600080fd5b5061077d611be1565b005b34801561078b57600080fd5b506107ce600480360360208110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc2565b005b3480156107dc57600080fd5b5061081f600480360360208110156107f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612075565b60405180821515815260200191505060405180910390f35b34801561084357600080fd5b506108706004803603602081101561085a57600080fd5b81019080803590602001909291905050506120cb565b005b34801561087e57600080fd5b506108c16004803603602081101561089557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612221565b6040518082815260200191505060405180910390f35b3480156108e357600080fd5b506108ec61230c565b005b3480156108fa57600080fd5b5061093d6004803603602081101561091157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612492565b005b34801561094b57600080fd5b5061098e6004803603602081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506127d7565b60405180821515815260200191505060405180910390f35b3480156109b257600080fd5b506109bb61282d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109f357600080fd5b506109fc612856565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a3c578082015181840152602081019050610a21565b50505050905090810190601f168015610a695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a8357600080fd5b50610ad060048036036040811015610a9a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506128f8565b60405180821515815260200191505060405180910390f35b348015610af457600080fd5b50610b2160048036036020811015610b0b57600080fd5b81019080803590602001909291905050506129c5565b005b348015610b2f57600080fd5b50610b7c60048036036040811015610b4657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612b1b565b60405180821515815260200191505060405180910390f35b348015610ba057600080fd5b50610bef60048036036040811015610bb757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612b39565b005b348015610bfd57600080fd5b50610c2a60048036036020811015610c1457600080fd5b8101908080359060200190929190505050612c5c565b005b348015610c3857600080fd5b50610c6760048036036020811015610c4f57600080fd5b81019080803515159060200190929190505050612db2565b005b348015610c7557600080fd5b50610ca260048036036020811015610c8c57600080fd5b8101908080359060200190929190505050612e97565b005b348015610cb057600080fd5b50610d1360048036036040811015610cc757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f91565b6040518082815260200191505060405180910390f35b348015610d3557600080fd5b50610d7860048036036020811015610d4c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613018565b005b348015610d8657600080fd5b50610d8f613223565b005b348015610d9d57600080fd5b50610da66132fc565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e545780601f10610e2957610100808354040283529160200191610e54565b820191906000526020600020905b815481529060010190602001808311610e3757829003601f168201915b5050505050905090565b6000610e72610e6b613304565b848461330c565b6001905092915050565b6000600d54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b610ebc613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b633b9aca00811015610fd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e8152602001806158eb603e913960400191505060405180910390fd5b8060198190555050565b6000610ff0848484613503565b6110b184610ffc613304565b6110ac8560405180606001604052806028815260200161582d60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611062613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b600190509392505050565b6000600c54821115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615772602a913960400191505060405180910390fd5b6000611123613bc8565b90506111388184613bf390919063ffffffff16565b915050919050565b611148613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61121a3061121461282d565b8361330c565b61122c3061122661282d565b83613503565b50565b6000601060009054906101000a900460ff16905090565b61124e613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b6008805490508110156115cc578173ffffffffffffffffffffffffffffffffffffffff166008828154811061140157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bf5760086001600880549050038154811061145d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061149557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061158557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556115cc565b80806001019150506113d0565b5050565b60006116796115dd613304565b8461167485600560006115ee613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b61330c565b6001905092915050565b600061168d613304565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061594b602c913960400191505060405180910390fd5b600061173d83613cc5565b5050505050905061179681600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117ee81600c54613d4090919063ffffffff16565b600c8190555061180983600d54613c3d90919063ffffffff16565b600d81905550505050565b61181c613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061587e6024913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4163636f756e7420697320616c726561647920626c61636b6c6973746564000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600b54831115611b6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81611b8d576000611b7d84613cc5565b5050505050905080915050611ba4565b6000611b9884613cc5565b50505050915050809150505b92915050565b7f0000000000000000000000006af8ce8085f3404fbcc8e2c20eec83218988fa1681565b601760159054906101000a900460ff1681565b611be9613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611cb430612221565b9050611cbf81613d8a565b50565b611cca613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806159296022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ee3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611fb757611f73600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6120d3613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600181101580156121a5575060318111155b612217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f7461784665652073686f756c6420626520696e2031202d20343900000000000081525060200191505060405180910390fd5b8060118190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156122bc57600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050612307565b612304600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110bc565b90505b919050565b612314613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61249a613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461255a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4163636f756e74206973206e6f7420626c61636b6c697374656400000000000081525060200191505060405180910390fd5b60005b600a805490508110156127d3578173ffffffffffffffffffffffffffffffffffffffff16600a828154811061264d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c657600a6001600a8054905003815481106126a957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a82815481106126e157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a80548061278c57fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556127d3565b808060010191505061261c565b5050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128ee5780601f106128c3576101008083540402835291602001916128ee565b820191906000526020600020905b8154815290600101906020018083116128d157829003601f168201915b5050505050905090565b60006129bb612905613304565b846129b685604051806060016040528060258152602001615977602591396005600061292f613304565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b089092919063ffffffff16565b61330c565b6001905092915050565b6129cd613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612a9f575060318111155b612b11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6d61726b6574696e674665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060128190555050565b6000612b2f612b28613304565b8484613503565b6001905092915050565b612b41613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b612c64613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60018110158015612d36575060318111155b612da8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f6c69717569646974794665652073686f756c6420626520696e2031202d20313181525060200191505060405180910390fd5b8060138190555050565b612dba613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601760156101000a81548160ff02191690831515021790555050565b612e9f613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612f886103e8612f7a83600b5461403890919063ffffffff16565b613bf390919063ffffffff16565b60188190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b613020613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146130e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061579c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61322b613304565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790506132f9816140be565b50565b600047905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806158c76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806157c26022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806158a26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561360f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061574f6023913960400191505060405180910390fd5b60008111613668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806158556029913960400191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613728576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156137e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b600960003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156138a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f596f752068617665206e6f20706f77657220686572652100000000000000000081525060200191505060405180910390fd5b6138b061282d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561391e57506138ee61282d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561397f5760185481111561397e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806157e46028913960400191505060405180910390fd5b5b600061398a30612221565b9050601854811061399b5760185490505b60006019548210159050601760149054906101000a900460ff161580156139ce5750601760159054906101000a900460ff165b80156139d75750805b8015613a2f57507f0000000000000000000000006af8ce8085f3404fbcc8e2c20eec83218988fa1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15613a43576019549150613a428261412a565b5b600060019050600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613aea5750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613af457600090505b613b00868686846142c3565b505050505050565b6000838311158290613bb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b7a578082015181840152602081019050613b5f565b50505050905090810190601f168015613ba75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613bd56145d4565b91509150613bec8183613bf390919063ffffffff16565b9250505090565b6000613c3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614865565b905092915050565b600080828401905083811015613cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000806000806000806000806000613cf68a601154613cf1601354601254613c3d90919063ffffffff16565b61492b565b9250925092506000613d06613bc8565b90506000806000613d188e87866149c1565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000613d8283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613b08565b905092915050565b6060600267ffffffffffffffff81118015613da457600080fd5b50604051908082528060200260200182016040528015613dd35781602001602082028036833780820191505090505b5090503081600081518110613de457fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e8457600080fd5b505afa158015613e98573d6000803e3d6000fd5b505050506040513d6020811015613eae57600080fd5b810190808051906020019092919050505081600181518110613ecc57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613f31307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461330c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613ff3578082015181840152602081019050613fd8565b505050509050019650505050505050600060405180830381600087803b15801561401c57600080fd5b505af1158015614030573d6000803e3d6000fd5b505050505050565b60008083141561404b57600090506140b8565b600082840290508284828161405c57fe5b04146140b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061580c6021913960400191505060405180910390fd5b809150505b92915050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015614126573d6000803e3d6000fd5b5050565b6001601760146101000a81548160ff0219169083151502179055506000614184614161601354601254613c3d90919063ffffffff16565b6141766012548561403890919063ffffffff16565b613bf390919063ffffffff16565b9050600061419b8284613d4090919063ffffffff16565b905060006141b3600283613bf390919063ffffffff16565b905060006141ca8284613d4090919063ffffffff16565b9050600047905060006141e68685613c3d90919063ffffffff16565b90506141f181613d8a565b60006142068347613d4090919063ffffffff16565b9050600061422f83614221888561403890919063ffffffff16565b613bf390919063ffffffff16565b905061423b8582614a1f565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828760405180848152602001838152602001828152602001935050505060405180910390a161429d6142988284613d4090919063ffffffff16565b6140be565b50505050505050506000601760146101000a81548160ff02191690831515021790555050565b806142d1576142d0614b70565b5b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156143745750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561438957614384848484614bd2565b6145c0565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561442c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156144415761443c848484614e32565b6145bf565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156144e55750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156144fa576144f5848484615092565b6145be565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561459c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156145b1576145ac84848461525d565b6145bd565b6145bc848484615092565b5b5b5b5b806145ce576145cd615552565b5b50505050565b6000806000600c5490506000600b54905060005b6008805490508110156148285782600360006008848154811061460757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411806146ee575081600460006008848154811061468657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561470557600c54600b5494509450505050614861565b61478e600360006008848154811061471957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484613d4090919063ffffffff16565b925061481960046000600884815481106147a457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483613d4090919063ffffffff16565b915080806001019150506145e8565b50614840600b54600c54613bf390919063ffffffff16565b82101561485857600c54600b54935093505050614861565b81819350935050505b9091565b60008083118290614911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156148d65780820151818401526020810190506148bb565b50505050905090810190601f1680156149035780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161491d57fe5b049050809150509392505050565b6000806000806149576064614949888a61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149816064614973888b61403890919063ffffffff16565b613bf390919063ffffffff16565b905060006149aa8761499c858c613d4090919063ffffffff16565b613d4090919063ffffffff16565b905080838395509550955050505093509350939050565b6000806000806149da858861403890919063ffffffff16565b905060006149f1868861403890919063ffffffff16565b90506000614a088284613d4090919063ffffffff16565b905082818395509550955050505093509350939050565b614a4a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461330c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614a9461282d565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b158015614b1957600080fd5b505af1158015614b2d573d6000803e3d6000fd5b50505050506040513d6060811015614b4457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000601154148015614b8457506000601254145b8015614b9257506000601354145b15614b9c57614bd0565b6011546014819055506012546015819055506013546016819055506000601181905550600060128190555060006013819055505b565b600080600080600080614be487613cc5565b955095509550955095509550614c4287600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cd786600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d6c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614db88161556f565b614dc28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614e4487613cc5565b955095509550955095509550614ea286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614f3783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614fcc85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506150188161556f565b6150228483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806150a487613cc5565b95509550955095509550955061510286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061519785600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151e38161556f565b6151ed8483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061526f87613cc5565b9550955095509550955095506152cd87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061536286600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613d4090919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506153f783600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061548c85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506154d88161556f565b6154e28483615714565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601454601181905550601554601281905550601654601381905550565b6000615579613bc8565b90506000615590828461403890919063ffffffff16565b90506155e481600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561570f576156cb83600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613c3d90919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61572982600c54613d4090919063ffffffff16565b600c8190555061574481600d54613c3d90919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207df00c022ed889f290872d0ff46698f20a025a02eee9bab5d49594ccb968548f64736f6c634300060c0033
Deployed Bytecode Sourcemap
23574:23285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27903:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28815:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30081:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24942:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28180:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46120:309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28984:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31005:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46664:192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28089:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31720:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29305:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30176:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32207:352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30561:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25000:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25083:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38751:156;;;;;;;;;;;;;:::i;:::-;;31266:446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33596:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45505:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28283:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15064:148;;;;;;;;;;;;;:::i;:::-;;32567:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29808:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14430:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27994:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29531:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45682:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28489:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29936:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45901:211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39082:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46437:219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28664:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15364:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38915:159;;;;;;;;;;;;;:::i;:::-;;45387:110;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27903:83;27940:13;27973:5;27966:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27903:83;:::o;28815:161::-;28890:4;28907:39;28916:12;:10;:12::i;:::-;28930:7;28939:6;28907:8;:39::i;:::-;28964:4;28957:11;;28815:161;;;;:::o;30081:87::-;30123:7;30150:10;;30143:17;;30081:87;:::o;24942:51::-;;;:::o;28180:95::-;28233:7;28260;;28253:14;;28180:95;:::o;46120:309::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46275:5:::1;46242:29;:38;;46234:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46392:29;46359:30;:62;;;;46120:309:::0;:::o;28984:313::-;29082:4;29099:36;29109:6;29117:9;29128:6;29099:9;:36::i;:::-;29146:121;29155:6;29163:12;:10;:12::i;:::-;29177:89;29215:6;29177:89;;;;;;;;;;;;;;;;;:11;:19;29189:6;29177:19;;;;;;;;;;;;;;;:33;29197:12;:10;:12::i;:::-;29177:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29146:8;:121::i;:::-;29285:4;29278:11;;28984:313;;;;;:::o;31005:253::-;31071:7;31110;;31099;:18;;31091:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31175:19;31198:10;:8;:10::i;:::-;31175:33;;31226:24;31238:11;31226:7;:11;;:24;;;;:::i;:::-;31219:31;;;31005:253;;;:::o;46664:192::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46746:45:::1;46763:4;46770:7;:5;:7::i;:::-;46779:11;46746:8;:45::i;:::-;46802:46;46820:4;46827:7;:5;:7::i;:::-;46836:11;46802:9;:46::i;:::-;46664:192:::0;:::o;28089:83::-;28130:5;28155:9;;;;;;;;;;;28148:16;;28089:83;:::o;31720:479::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31802:11:::1;:20;31814:7;31802:20;;;;;;;;;;;;;;;;;;;;;;;;;31794:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31870:9;31865:327;31889:9;:16;;;;31885:1;:20;31865:327;;;31947:7;31931:23;;:9;31941:1;31931:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;31927:254;;;31990:9;32019:1;32000:9;:16;;;;:20;31990:31;;;;;;;;;;;;;;;;;;;;;;;;;31975:9;31985:1;31975:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32059:1;32040:7;:16;32048:7;32040:16;;;;;;;;;;;;;;;:20;;;;32102:5;32079:11;:20;32091:7;32079:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32126:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32160:5;;31927:254;31907:3;;;;;;;31865:327;;;;31720:479:::0;:::o;29305:218::-;29393:4;29410:83;29419:12;:10;:12::i;:::-;29433:7;29442:50;29481:10;29442:11;:25;29454:12;:10;:12::i;:::-;29442:25;;;;;;;;;;;;;;;:34;29468:7;29442:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29410:8;:83::i;:::-;29511:4;29504:11;;29305:218;;;;:::o;30176:377::-;30228:14;30245:12;:10;:12::i;:::-;30228:29;;30277:11;:19;30289:6;30277:19;;;;;;;;;;;;;;;;;;;;;;;;;30276:20;30268:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30357:15;30381:19;30392:7;30381:10;:19::i;:::-;30356:44;;;;;;;30429:28;30449:7;30429;:15;30437:6;30429:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30411:7;:15;30419:6;30411:15;;;;;;;;;;;;;;;:46;;;;30478:20;30490:7;30478;;:11;;:20;;;;:::i;:::-;30468:7;:30;;;;30522:23;30537:7;30522:10;;:14;;:23;;;;:::i;:::-;30509:10;:36;;;;30176:377;;;:::o;32207:352::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32302:42:::1;32291:53;;:7;:53;;;;32283:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32405:17;:26;32423:7;32405:26;;;;;;;;;;;;;;;;;;;;;;;;;32404:27;32396:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32506:4;32477:17;:26;32495:7;32477:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;32521:16;32543:7;32521:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32207:352:::0;:::o;30561:436::-;30651:7;30690;;30679;:18;;30671:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30749:17;30744:246;;30784:15;30808:19;30819:7;30808:10;:19::i;:::-;30783:44;;;;;;;30849:7;30842:14;;;;;30744:246;30891:23;30922:19;30933:7;30922:10;:19::i;:::-;30889:52;;;;;;;30963:15;30956:22;;;30561:436;;;;;:::o;25000:38::-;;;:::o;25083:40::-;;;;;;;;;;;;;:::o;38751:156::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38805:23:::1;38831:24;38849:4;38831:9;:24::i;:::-;38805:50;;38866:33;38883:15;38866:16;:33::i;:::-;14710:1;38751:156::o:0;31266:446::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31361:42:::1;31350:53;;:7;:53;;;;31342:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31462:11;:20;31474:7;31462:20;;;;;;;;;;;;;;;;;;;;;;;;;31461:21;31453:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31547:1;31528:7;:16;31536:7;31528:16;;;;;;;;;;;;;;;;:20;31525:108;;;31584:37;31604:7;:16;31612:7;31604:16;;;;;;;;;;;;;;;;31584:19;:37::i;:::-;31565:7;:16;31573:7;31565:16;;;;;;;;;;;;;;;:56;;;;31525:108;31666:4;31643:11;:20;31655:7;31643:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31681:9;31696:7;31681:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31266:446:::0;:::o;33596:123::-;33660:4;33684:18;:27;33703:7;33684:27;;;;;;;;;;;;;;;;;;;;;;;;;33677:34;;33596:123;;;:::o;45505:169::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45591:1:::1;45581:6;:11;;:27;;;;;45606:2;45596:6;:12;;45581:27;45573:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45660:6;45650:7;:16;;;;45505:169:::0;:::o;28283:198::-;28349:7;28373:11;:20;28385:7;28373:20;;;;;;;;;;;;;;;;;;;;;;;;;28369:49;;;28402:7;:16;28410:7;28402:16;;;;;;;;;;;;;;;;28395:23;;;;28369:49;28436:37;28456:7;:16;28464:7;28456:16;;;;;;;;;;;;;;;;28436:19;:37::i;:::-;28429:44;;28283:198;;;;:::o;15064:148::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15171:1:::1;15134:40;;15155:6;::::0;::::1;;;;;;;;15134:40;;;;;;;;;;;;15202:1;15185:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;15064:148::o:0;32567:500::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32656:17:::1;:26;32674:7;32656:26;;;;;;;;;;;;;;;;;;;;;;;;;32648:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32729:9;32724:336;32748:16;:23;;;;32744:1;:27;32724:336;;;32820:7;32797:30;;:16;32814:1;32797:19;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;32793:256;;;32870:16;32913:1;32887:16;:23;;;;:27;32870:45;;;;;;;;;;;;;;;;;;;;;;;;;32848:16;32865:1;32848:19;;;;;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;32963:5;32934:17;:26;32952:7;32934:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32987:16;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33028:5;;32793:256;32773:3;;;;;;;32724:336;;;;32567:500:::0;:::o;29808:120::-;29876:4;29900:11;:20;29912:7;29900:20;;;;;;;;;;;;;;;;;;;;;;;;;29893:27;;29808:120;;;:::o;14430:79::-;14468:7;14495:6;;;;;;;;;;;14488:13;;14430:79;:::o;27994:87::-;28033:13;28066:7;28059:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27994:87;:::o;29531:269::-;29624:4;29641:129;29650:12;:10;:12::i;:::-;29664:7;29673:96;29712:15;29673:96;;;;;;;;;;;;;;;;;:11;:25;29685:12;:10;:12::i;:::-;29673:25;;;;;;;;;;;;;;;:34;29699:7;29673:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29641:8;:129::i;:::-;29788:4;29781:11;;29531:269;;;;:::o;45682:211::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45786:1:::1;45770:12;:17;;:39;;;;;45807:2;45791:12;:18;;45770:39;45762:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;45873:12;45857:13;:28;;;;45682:211:::0;:::o;28489:167::-;28567:4;28584:42;28594:12;:10;:12::i;:::-;28608:9;28619:6;28584:9;:42::i;:::-;28644:4;28637:11;;28489:167;;;;:::o;29936:137::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30057:8:::1;30027:18;:27;30046:7;30027:27;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;29936:137:::0;;:::o;45901:211::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46005:1:::1;45989:12;:17;;:39;;;;;46026:2;46010:12;:18;;45989:39;45981:84;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;46092:12;46076:13;:28;;;;45901:211:::0;:::o;39082:148::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39200:22:::1;39176:21;;:46;;;;;;;;;;;;;;;;;;39082:148:::0;:::o;46437:219::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46531:117:::1;46575:5;46531:25;46543:12;46531:7;;:11;;:25;;;;:::i;:::-;:29;;:117;;;;:::i;:::-;46516:12;:132;;;;46437:219:::0;:::o;28664:143::-;28745:7;28772:11;:18;28784:5;28772:18;;;;;;;;;;;;;;;:27;28791:7;28772:27;;;;;;;;;;;;;;;;28765:34;;28664:143;;;;:::o;15364:244::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15473:1:::1;15453:22;;:8;:22;;;;15445:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15563:8;15534:38;;15555:6;::::0;::::1;;;;;;;;15534:38;;;;;;;;;;;;15592:8;15583:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15364:244:::0;:::o;38915:159::-;14650:12;:10;:12::i;:::-;14640:22;;:6;;;;;;;;;;:22;;;14632:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38967:26:::1;38996:21;38967:50;;39028:38;39047:18;39028;:38::i;:::-;14710:1;38915:159::o:0;45387:110::-;45433:15;45468:21;45461:28;;45387:110;:::o;245:106::-;298:15;333:10;326:17;;245:106;:::o;33727:337::-;33837:1;33820:19;;:5;:19;;;;33812:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33918:1;33899:21;;:7;:21;;;;33891:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34002:6;33972:11;:18;33984:5;33972:18;;;;;;;;;;;;;;;:27;33991:7;33972:27;;;;;;;;;;;;;;;:36;;;;34040:7;34024:32;;34033:5;34024:32;;;34049:6;34024:32;;;;;;;;;;;;;;;;;;33727:337;;;:::o;34072:1963::-;34187:1;34169:20;;:6;:20;;;;34161:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34271:1;34250:23;;:9;:23;;;;34242:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34341:1;34332:6;:10;34324:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34408:17;:25;34426:6;34408:25;;;;;;;;;;;;;;;;;;;;;;;;;34407:26;34399:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34481:17;:28;34499:9;34481:28;;;;;;;;;;;;;;;;;;;;;;;;;34480:29;34472:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34557:17;:28;34575:9;34557:28;;;;;;;;;;;;;;;;;;;;;;;;;34556:29;34548:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34639:7;:5;:7::i;:::-;34629:17;;:6;:17;;;;:41;;;;;34663:7;:5;:7::i;:::-;34650:20;;:9;:20;;;;34629:41;34626:148;;;34705:12;;34695:6;:22;;34687:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34626:148;35068:28;35099:24;35117:4;35099:9;:24::i;:::-;35068:55;;35163:12;;35139:20;:36;35136:112;;35224:12;;35201:35;;35136:112;35260:24;35311:30;;35287:20;:54;;35260:81;;35357:16;;;;;;;;;;;35356:17;:42;;;;;35377:21;;;;;;;;;;;35356:42;:65;;;;;35402:19;35356:65;:92;;;;;35435:13;35425:23;;:6;:23;;;;35356:92;35352:258;;;35488:30;;35465:53;;35562:36;35577:20;35562:14;:36::i;:::-;35352:258;35683:12;35698:4;35683:19;;35802:18;:26;35821:6;35802:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;35832:18;:29;35851:9;35832:29;;;;;;;;;;;;;;;;;;;;;;;;;35802:59;35799:105;;;35887:5;35877:15;;35799:105;35977:50;35992:6;36000:9;36011:6;36019:7;35977:14;:50::i;:::-;34072:1963;;;;;;:::o;4332:192::-;4418:7;4451:1;4446;:6;;4454:12;4438:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4478:9;4494:1;4490;:5;4478:17;;4515:1;4508:8;;;4332:192;;;;;:::o;44449:163::-;44490:7;44511:15;44528;44547:19;:17;:19::i;:::-;44510:56;;;;44584:20;44596:7;44584;:11;;:20;;;;:::i;:::-;44577:27;;;;44449:163;:::o;5710:132::-;5768:7;5795:39;5799:1;5802;5795:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5788:46;;5710:132;;;;:::o;3447:181::-;3505:7;3525:9;3541:1;3537;:5;3525:17;;3566:1;3561;:6;;3553:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3619:1;3612:8;;;3447:181;;;;:::o;43144:518::-;43203:7;43212;43221;43230;43239;43248;43269:23;43294:12;43308:30;43342:63;43354:7;43363;;43372:32;43390:13;;43372;;:17;;:32;;;;:::i;:::-;43342:11;:63::i;:::-;43268:137;;;;;;43416:19;43438:10;:8;:10::i;:::-;43416:32;;43460:15;43477:23;43502:12;43518:39;43530:7;43539:4;43545:11;43518;:39::i;:::-;43459:98;;;;;;43576:7;43585:15;43602:4;43608:15;43625:4;43631:22;43568:86;;;;;;;;;;;;;;;;;;;43144:518;;;;;;;:::o;3902:136::-;3960:7;3987:43;3991:1;3994;3987:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3980:50;;3902:136;;;;:::o;37372:589::-;37498:21;37536:1;37522:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37498:40;;37567:4;37549;37554:1;37549:7;;;;;;;;;;;;;:23;;;;;;;;;;;37593:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37583:4;37588:1;37583:7;;;;;;;;;;;;;:32;;;;;;;;;;;37628:62;37645:4;37660:15;37678:11;37628:8;:62::i;:::-;37729:15;:66;;;37810:11;37836:1;37880:4;37907;37927:15;37729:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37372:589;;:::o;4774:471::-;4832:7;5082:1;5077;:6;5073:47;;;5107:1;5100:8;;;;5073:47;5132:9;5148:1;5144;:5;5132:17;;5177:1;5172;5168;:5;;;;;;:10;5160:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5236:1;5229:8;;;4774:471;;;;;:::o;38490:111::-;38553:23;;;;;;;;;;;:32;;:40;38586:6;38553:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38490:111;:::o;36043:1321::-;25630:4;25611:16;;:23;;;;;;;;;;;;;;;;;;36128:19:::1;36150:77;36194:32;36212:13;;36194;;:17;;:32;;;;:::i;:::-;36150:39;36175:13;;36150:20;:24;;:39;;;;:::i;:::-;:43;;:77;;;;:::i;:::-;36128:99;;36238:17;36258:37;36283:11;36258:20;:24;;:37;;;;:::i;:::-;36238:57;;36359:12;36374:16;36388:1;36374:9;:13;;:16;;;;:::i;:::-;36359:31;;36401:17;36421:19;36435:4;36421:9;:13;;:19;;;;:::i;:::-;36401:39;;36718:22;36743:21;36718:46;;36809:20;36832:21;36841:11;36832:4;:8;;:21;;;;:::i;:::-;36809:44;;36864:30;36881:12;36864:16;:30::i;:::-;37025:16;37044:41;37070:14;37044:21;:25;;:41;;;;:::i;:::-;37025:60;;37096:18;37117:36;37140:12;37117:18;37130:4;37117:8;:12;;:18;;;;:::i;:::-;:22;;:36;;;;:::i;:::-;37096:57;;37203:35;37216:9;37227:10;37203:12;:35::i;:::-;37256:43;37271:4;37277:10;37289:9;37256:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37312:44;37331:24;37344:10;37331:8;:12;;:24;;;;:::i;:::-;37312:18;:44::i;:::-;25645:1;;;;;;;;25676:5:::0;25657:16;;:24;;;;;;;;;;;;;;;;;;36043:1321;:::o;39238:819::-;39350:7;39346:40;;39372:14;:12;:14::i;:::-;39346:40;39403:11;:19;39415:6;39403:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;39427:11;:22;39439:9;39427:22;;;;;;;;;;;;;;;;;;;;;;;;;39426:23;39403:46;39399:597;;;39466:48;39488:6;39496:9;39507:6;39466:21;:48::i;:::-;39399:597;;;39537:11;:19;39549:6;39537:19;;;;;;;;;;;;;;;;;;;;;;;;;39536:20;:46;;;;;39560:11;:22;39572:9;39560:22;;;;;;;;;;;;;;;;;;;;;;;;;39536:46;39532:464;;;39599:46;39619:6;39627:9;39638:6;39599:19;:46::i;:::-;39532:464;;;39668:11;:19;39680:6;39668:19;;;;;;;;;;;;;;;;;;;;;;;;;39667:20;:47;;;;;39692:11;:22;39704:9;39692:22;;;;;;;;;;;;;;;;;;;;;;;;;39691:23;39667:47;39663:333;;;39731:44;39749:6;39757:9;39768:6;39731:17;:44::i;:::-;39663:333;;;39797:11;:19;39809:6;39797:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;39820:11;:22;39832:9;39820:22;;;;;;;;;;;;;;;;;;;;;;;;;39797:45;39793:203;;;39859:48;39881:6;39889:9;39900:6;39859:21;:48::i;:::-;39793:203;;;39940:44;39958:6;39966:9;39977:6;39940:17;:44::i;:::-;39793:203;39663:333;39532:464;39399:597;40012:7;40008:41;;40034:15;:13;:15::i;:::-;40008:41;39238:819;;;;:::o;44620:555::-;44670:7;44679;44699:15;44717:7;;44699:25;;44735:15;44753:7;;44735:25;;44776:9;44771:289;44795:9;:16;;;;44791:1;:20;44771:289;;;44861:7;44837;:21;44845:9;44855:1;44845:12;;;;;;;;;;;;;;;;;;;;;;;;;44837:21;;;;;;;;;;;;;;;;:31;:66;;;;44896:7;44872;:21;44880:9;44890:1;44880:12;;;;;;;;;;;;;;;;;;;;;;;;;44872:21;;;;;;;;;;;;;;;;:31;44837:66;44833:97;;;44913:7;;44922;;44905:25;;;;;;;;;44833:97;44955:34;44967:7;:21;44975:9;44985:1;44975:12;;;;;;;;;;;;;;;;;;;;;;;;;44967:21;;;;;;;;;;;;;;;;44955:7;:11;;:34;;;;:::i;:::-;44945:44;;45014:34;45026:7;:21;45034:9;45044:1;45034:12;;;;;;;;;;;;;;;;;;;;;;;;;45026:21;;;;;;;;;;;;;;;;45014:7;:11;;:34;;;;:::i;:::-;45004:44;;44813:3;;;;;;;44771:289;;;;45084:20;45096:7;;45084;;:11;;:20;;;;:::i;:::-;45074:7;:30;45070:61;;;45114:7;;45123;;45106:25;;;;;;;;45070:61;45150:7;45159;45142:25;;;;;;44620:555;;;:::o;6327:278::-;6413:7;6445:1;6441;:5;6448:12;6433:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6472:9;6488:1;6484;:5;;;;;;6472:17;;6596:1;6589:8;;;6327:278;;;;;:::o;43670:429::-;43777:7;43786;43795;43815:12;43830:28;43854:3;43830:19;43842:6;43830:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;43815:43;;43869:30;43902:43;43941:3;43902:34;43914:21;43902:7;:11;;:34;;;;:::i;:::-;:38;;:43;;;;:::i;:::-;43869:76;;43956:23;43982:44;44004:21;43982:17;43994:4;43982:7;:11;;:17;;;;:::i;:::-;:21;;:44;;;;:::i;:::-;43956:70;;44045:15;44062:4;44068:22;44037:54;;;;;;;;;43670:429;;;;;;;:::o;44107:334::-;44202:7;44211;44220;44240:15;44258:24;44270:11;44258:7;:11;;:24;;;;:::i;:::-;44240:42;;44293:12;44308:21;44317:11;44308:4;:8;;:21;;;;:::i;:::-;44293:36;;44340:23;44366:17;44378:4;44366:7;:11;;:17;;;;:::i;:::-;44340:43;;44402:7;44411:15;44428:4;44394:39;;;;;;;;;44107:334;;;;;;;:::o;37969:513::-;38117:62;38134:4;38149:15;38167:11;38117:8;:62::i;:::-;38222:15;:31;;;38261:9;38294:4;38314:11;38340:1;38383;38426:7;:5;:7::i;:::-;38448:15;38222:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37969:513;;:::o;33075:332::-;33132:1;33121:7;;:12;:34;;;;;33154:1;33137:13;;:18;33121:34;:56;;;;;33176:1;33159:13;;:18;33121:56;33118:68;;;33179:7;;33118:68;33216:7;;33198:15;:25;;;;33258:13;;33234:21;:37;;;;33306:13;;33282:21;:37;;;;33342:1;33332:7;:11;;;;33370:1;33354:13;:17;;;;33398:1;33382:13;:17;;;;33075:332;:::o;41212:590::-;41315:15;41332:23;41357:12;41371:23;41396:12;41410:27;41441:19;41452:7;41441:10;:19::i;:::-;41314:146;;;;;;;;;;;;41489:28;41509:7;41489;:15;41497:6;41489:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41471:7;:15;41479:6;41471:15;;;;;;;;;;;;;;;:46;;;;41546:28;41566:7;41546;:15;41554:6;41546:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;41528:7;:15;41536:6;41528:15;;;;;;;;;;;;;;;:46;;;;41606:39;41629:15;41606:7;:18;41614:9;41606:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;41585:7;:18;41593:9;41585:18;;;;;;;;;;;;;;;:60;;;;41656:44;41680:19;41656:23;:44::i;:::-;41711:23;41723:4;41729;41711:11;:23::i;:::-;41767:9;41750:44;;41759:6;41750:44;;;41778:15;41750:44;;;;;;;;;;;;;;;;;;41212:590;;;;;;;;;:::o;40602:602::-;40703:15;40720:23;40745:12;40759:23;40784:12;40798:27;40829:19;40840:7;40829:10;:19::i;:::-;40702:146;;;;;;;;;;;;40877:28;40897:7;40877;:15;40885:6;40877:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40859:7;:15;40867:6;40859:15;;;;;;;;;;;;;;;:46;;;;40937:39;40960:15;40937:7;:18;40945:9;40937:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40916:7;:18;40924:9;40916:18;;;;;;;;;;;;;;;:60;;;;41008:39;41031:15;41008:7;:18;41016:9;41008:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40987:7;:18;40995:9;40987:18;;;;;;;;;;;;;;;:60;;;;41058:44;41082:19;41058:23;:44::i;:::-;41113:23;41125:4;41131;41113:11;:23::i;:::-;41169:9;41152:44;;41161:6;41152:44;;;41180:15;41152:44;;;;;;;;;;;;;;;;;;40602:602;;;;;;;;;:::o;40065:529::-;40164:15;40181:23;40206:12;40220:23;40245:12;40259:27;40290:19;40301:7;40290:10;:19::i;:::-;40163:146;;;;;;;;;;;;40338:28;40358:7;40338;:15;40346:6;40338:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;40320:7;:15;40328:6;40320:15;;;;;;;;;;;;;;;:46;;;;40398:39;40421:15;40398:7;:18;40406:9;40398:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;40377:7;:18;40385:9;40377:18;;;;;;;;;;;;;;;:60;;;;40448:44;40472:19;40448:23;:44::i;:::-;40503:23;40515:4;40521;40503:11;:23::i;:::-;40559:9;40542:44;;40551:6;40542:44;;;40570:15;40542:44;;;;;;;;;;;;;;;;;;40065:529;;;;;;;;;:::o;41810:661::-;41913:15;41930:23;41955:12;41969:23;41994:12;42008:27;42039:19;42050:7;42039:10;:19::i;:::-;41912:146;;;;;;;;;;;;42087:28;42107:7;42087;:15;42095:6;42087:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42069:7;:15;42077:6;42069:15;;;;;;;;;;;;;;;:46;;;;42144:28;42164:7;42144;:15;42152:6;42144:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42126:7;:15;42134:6;42126:15;;;;;;;;;;;;;;;:46;;;;42204:39;42227:15;42204:7;:18;42212:9;42204:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42183:7;:18;42191:9;42183:18;;;;;;;;;;;;;;;:60;;;;42275:39;42298:15;42275:7;:18;42283:9;42275:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42254:7;:18;42262:9;42254:18;;;;;;;;;;;;;;;:60;;;;42325:44;42349:19;42325:23;:44::i;:::-;42380:23;42392:4;42398;42380:11;:23::i;:::-;42436:9;42419:44;;42428:6;42419:44;;;42447:15;42419:44;;;;;;;;;;;;;;;;;;41810:661;;;;;;;;;:::o;33415:173::-;33469:15;;33459:7;:25;;;;33511:21;;33495:13;:37;;;;33559:21;;33543:13;:37;;;;33415:173::o;42479:408::-;42560:19;42582:10;:8;:10::i;:::-;42560:32;;42603:27;42633:36;42657:11;42633:19;:23;;:36;;;;:::i;:::-;42603:66;;42705:47;42732:19;42705:7;:22;42721:4;42705:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;42680:7;:22;42696:4;42680:22;;;;;;;;;;;;;;;:72;;;;42766:11;:26;42786:4;42766:26;;;;;;;;;;;;;;;;;;;;;;;;;42763:116;;;42832:47;42859:19;42832:7;:22;42848:4;42832:22;;;;;;;;;;;;;;;;:26;;:47;;;;:::i;:::-;42807:7;:22;42823:4;42807:22;;;;;;;;;;;;;;;:72;;;;42763:116;42479:408;;;:::o;42895:147::-;42973:17;42985:4;42973:7;;:11;;:17;;;;:::i;:::-;42963:7;:27;;;;43014:20;43029:4;43014:10;;:14;;:20;;;;:::i;:::-;43001:10;:33;;;;42895:147;;:::o
Swarm Source
ipfs://7df00c022ed889f290872d0ff46698f20a025a02eee9bab5d49594ccb968548f
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.