Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 SMETH
Holders
53
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,084,681,644.011998898229038706 SMETHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TOKEN
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @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 a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * 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). * * 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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 TOKEN is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; address private _charityWalletAddress = 0x310391CA5778A2170165ffBE58d274DEdE34d26F; // Marketing address uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000000 * 10**18; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Safemoon Ethereum"; string private _symbol = "SMETH"; uint8 private _decimals = 18; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _charityFee = 3; uint256 private _previousCharityFee = _charityFee; uint256 public _liquidityFee = 2; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 10000000000 * 10**18; uint256 private numTokensSellToAddToLiquidity = 10000000 * 10**18; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () { _rOwned[owner()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);// Ethereum mainnet for uniswap // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), owner(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(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 included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharity(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setCharityFeePercent(uint256 charityFee) external onlyOwner() { _charityFee = charityFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tCharity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tCharity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tCharity = calculateCharityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tCharity); return (tTransferAmount, tFee, tLiquidity, tCharity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rCharity = tCharity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rCharity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeCharity(uint256 tCharity) private { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[_charityWalletAddress] = _rOwned[_charityWalletAddress].add(rCharity); if(_isExcluded[_charityWalletAddress]) _tOwned[_charityWalletAddress] = _tOwned[_charityWalletAddress].add(tCharity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateCharityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_charityFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousCharityFee = _charityFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _charityFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _charityFee = _previousCharityFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // 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 ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { 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[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharity(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharity(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharity(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
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":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee","type":"uint256"}],"name":"setCharityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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
60c060405273310391ca5778a2170165ffbe58d274dede34d26f600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506c0c9f2c9cd04674edea400000006008556008546000196200007c919062000867565b6000196200008b9190620007b8565b6009556040518060400160405280601181526020017f536166656d6f6f6e20457468657265756d000000000000000000000000000000815250600b9080519060200190620000db92919062000659565b506040518060400160405280600581526020017f534d455448000000000000000000000000000000000000000000000000000000815250600c90805190602001906200012992919062000659565b506012600d60006101000a81548160ff021916908360ff1602179055506005600e55600e54600f55600360105560105460115560026012556012546013556001601460016101000a81548160ff0219169083151502179055506b204fce5e3e250261100000006015556a084595161401484a000000601655348015620001ae57600080fd5b50620001bf6200062860201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360095460016000620002906200063060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032e57600080fd5b505afa15801562000343573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000369919062000720565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003cc57600080fd5b505afa158015620003e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000407919062000720565b6040518363ffffffff1660e01b8152600401620004269291906200076e565b602060405180830381600087803b1580156200044157600080fd5b505af115801562000456573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047c919062000720565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160046000620004ff6200063060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005b86200063060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200061991906200079b565b60405180910390a35062000946565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006679062000831565b90600052602060002090601f0160209004810192826200068b5760008555620006d7565b82601f10620006a657805160ff1916838001178555620006d7565b82800160010185558215620006d7579182015b82811115620006d6578251825591602001919060010190620006b9565b5b509050620006e69190620006ea565b5090565b5b8082111562000705576000816000905550600101620006eb565b5090565b6000815190506200071a816200092c565b92915050565b6000602082840312156200073357600080fd5b6000620007438482850162000709565b91505092915050565b6200075781620007f3565b82525050565b620007688162000827565b82525050565b60006040820190506200078560008301856200074c565b6200079460208301846200074c565b9392505050565b6000602082019050620007b260008301846200075d565b92915050565b6000620007c58262000827565b9150620007d28362000827565b925082821015620007e857620007e76200089f565b5b828203905092915050565b6000620008008262000807565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200084a57607f821691505b60208210811415620008615762000860620008fd565b5b50919050565b6000620008748262000827565b9150620008818362000827565b925082620008945762000893620008ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200093781620007f3565b81146200094357600080fd5b50565b60805160601c60a05160601c6151486200099c600039600081816112fb01526123de015260008181610a0901528181612fae015281816130c4015281816130eb0152818161318701526131ae01526151486000f3fe6080604052600436106102135760003560e01c806352390c021161011857806395d89b41116100a0578063c49b9a801161006f578063c49b9a80146107e6578063d543dbeb1461080f578063dd62ed3e14610838578063ea2f0b3714610875578063f2fde38b1461089e5761021a565b806395d89b4114610718578063a457c2d714610743578063a9059cbb14610780578063af41063b146107bd5761021a565b8063715018a6116100e7578063715018a6146106455780637d1db4a51461065c57806388f82020146106875780638da5cb5b146106c45780638ee88c53146106ef5761021a565b806352390c02146105775780635342acb4146105a05780636bc87c3a146105dd57806370a08231146106085761021a565b80633685d4191161019b57806340f8007a1161016a57806340f8007a14610490578063437823ec146104bb5780634549b039146104e457806349bd5a5e146105215780634a74bb021461054c5761021a565b80633685d419146103d657806339509351146103ff5780633b124fe71461043c5780633bd5d173146104675761021a565b80631694505e116101e25780631694505e146102db57806318160ddd1461030657806323b872dd146103315780632d8381191461036e578063313ce567146103ab5761021a565b8063061c82d01461021f57806306fdde0314610248578063095ea7b31461027357806313114a9d146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190614306565b6108c7565b005b34801561025457600080fd5b5061025d61094d565b60405161026a919061474b565b60405180910390f35b34801561027f57600080fd5b5061029a600480360381019061029591906142a1565b6109df565b6040516102a79190614715565b60405180910390f35b3480156102bc57600080fd5b506102c56109fd565b6040516102d2919061490d565b60405180910390f35b3480156102e757600080fd5b506102f0610a07565b6040516102fd9190614730565b60405180910390f35b34801561031257600080fd5b5061031b610a2b565b604051610328919061490d565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190614252565b610a35565b6040516103659190614715565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190614306565b610b0e565b6040516103a2919061490d565b60405180910390f35b3480156103b757600080fd5b506103c0610b7c565b6040516103cd91906149b9565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906141c4565b610b93565b005b34801561040b57600080fd5b50610426600480360381019061042191906142a1565b610f61565b6040516104339190614715565b60405180910390f35b34801561044857600080fd5b50610451611014565b60405161045e919061490d565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190614306565b61101a565b005b34801561049c57600080fd5b506104a5611196565b6040516104b2919061490d565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906141c4565b61119c565b005b3480156104f057600080fd5b5061050b6004803603810190610506919061432f565b611273565b604051610518919061490d565b60405180910390f35b34801561052d57600080fd5b506105366112f9565b6040516105439190614699565b60405180910390f35b34801561055857600080fd5b5061056161131d565b60405161056e9190614715565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906141c4565b611330565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906141c4565b6115cb565b6040516105d49190614715565b60405180910390f35b3480156105e957600080fd5b506105f2611621565b6040516105ff919061490d565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906141c4565b611627565b60405161063c919061490d565b60405180910390f35b34801561065157600080fd5b5061065a611712565b005b34801561066857600080fd5b5061067161184c565b60405161067e919061490d565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906141c4565b611852565b6040516106bb9190614715565b60405180910390f35b3480156106d057600080fd5b506106d96118a8565b6040516106e69190614699565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190614306565b6118d1565b005b34801561072457600080fd5b5061072d611957565b60405161073a919061474b565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906142a1565b6119e9565b6040516107779190614715565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a291906142a1565b611ab6565b6040516107b49190614715565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190614306565b611ad4565b005b3480156107f257600080fd5b5061080d600480360381019061080891906142dd565b611b5a565b005b34801561081b57600080fd5b5061083660048036038101906108319190614306565b611c2a565b005b34801561084457600080fd5b5061085f600480360381019061085a9190614216565b611cd7565b60405161086c919061490d565b60405180910390f35b34801561088157600080fd5b5061089c600480360381019061089791906141c4565b611d5e565b005b3480156108aa57600080fd5b506108c560048036038101906108c091906141c4565b611e35565b005b6108cf611fde565b73ffffffffffffffffffffffffffffffffffffffff166108ed6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a9061486d565b60405180910390fd5b80600e8190555050565b6060600b805461095c90614bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461098890614bfc565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109f36109ec611fde565b8484611fe6565b6001905092915050565b6000600a54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600854905090565b6000610a428484846121b1565b610b0384610a4e611fde565b610afe856040518060600160405280602881526020016150c660289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ab4611fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251e9092919063ffffffff16565b611fe6565b600190509392505050565b6000600954821115610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c9061478d565b60405180910390fd5b6000610b5f612573565b9050610b74818461259e90919063ffffffff16565b915050919050565b6000600d60009054906101000a900460ff16905090565b610b9b611fde565b73ffffffffffffffffffffffffffffffffffffffff16610bb96118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c069061486d565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061480d565b60405180910390fd5b60005b600680549050811015610f5d578173ffffffffffffffffffffffffffffffffffffffff1660068281548110610cfc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f4a5760066001600680549050610d579190614b0a565b81548110610d8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610f10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610f5d565b8080610f5590614c2e565b915050610c9e565b5050565b600061100a610f6e611fde565b846110058560036000610f7f611fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b611fe6565b6001905092915050565b600e5481565b6000611024611fde565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906148ed565b60405180910390fd5b60006110be836125ca565b505050505050905061111881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111708160095461263290919063ffffffff16565b60098190555061118b83600a546125b490919063ffffffff16565b600a81905550505050565b60105481565b6111a4611fde565b73ffffffffffffffffffffffffffffffffffffffff166111c26118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061486d565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006008548311156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b19061482d565b60405180910390fd5b816112db5760006112ca846125ca565b5050505050509050809150506112f3565b60006112e6846125ca565b5050505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601460019054906101000a900460ff1681565b611338611fde565b73ffffffffffffffffffffffffffffffffffffffff166113566118a8565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a39061486d565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906147ed565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561150d576114c9600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116c257600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061170d565b61170a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0e565b90505b919050565b61171a611fde565b73ffffffffffffffffffffffffffffffffffffffff166117386118a8565b73ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117859061486d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118d9611fde565b73ffffffffffffffffffffffffffffffffffffffff166118f76118a8565b73ffffffffffffffffffffffffffffffffffffffff161461194d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119449061486d565b60405180910390fd5b8060128190555050565b6060600c805461196690614bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461199290614bfc565b80156119df5780601f106119b4576101008083540402835291602001916119df565b820191906000526020600020905b8154815290600101906020018083116119c257829003601f168201915b5050505050905090565b6000611aac6119f6611fde565b84611aa7856040518060600160405280602581526020016150ee6025913960036000611a20611fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251e9092919063ffffffff16565b611fe6565b6001905092915050565b6000611aca611ac3611fde565b84846121b1565b6001905092915050565b611adc611fde565b73ffffffffffffffffffffffffffffffffffffffff16611afa6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b479061486d565b60405180910390fd5b8060108190555050565b611b62611fde565b73ffffffffffffffffffffffffffffffffffffffff16611b806118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd9061486d565b60405180910390fd5b80601460016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611c1f9190614715565b60405180910390a150565b611c32611fde565b73ffffffffffffffffffffffffffffffffffffffff16611c506118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d9061486d565b60405180910390fd5b611cce6064611cc08360085461264890919063ffffffff16565b61259e90919063ffffffff16565b60158190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d66611fde565b73ffffffffffffffffffffffffffffffffffffffff16611d846118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd19061486d565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611e3d611fde565b73ffffffffffffffffffffffffffffffffffffffff16611e5b6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea89061486d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906147ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906148cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd906147cd565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121a4919061490d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612218906148ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122889061476d565b60405180910390fd5b600081116122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb9061488d565b60405180910390fd5b6122dc6118a8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561234a575061231a6118a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561239557601554811115612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b9061484d565b60405180910390fd5b5b60006123a030611627565b905060155481106123b15760155490505b600060165482101590508080156123d55750601460009054906101000a900460ff16155b801561242d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156124455750601460019054906101000a900460ff165b156124595760165491506124588261265e565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125005750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561250a57600090505b61251686868684612734565b505050505050565b6000838311158290612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d919061474b565b60405180910390fd5b5082840390509392505050565b6000806000612580612a45565b91509150612597818361259e90919063ffffffff16565b9250505090565b600081836125ac9190614a7f565b905092915050565b600081836125c29190614a29565b905092915050565b60008060008060008060008060008060006125e48c612d90565b935093509350935060008060006126058f878787612600612573565b612e0f565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b600081836126409190614b0a565b905092915050565b600081836126569190614ab0565b905092915050565b6001601460006101000a81548160ff021916908315150217905550600061268f60028361259e90919063ffffffff16565b905060006126a6828461263290919063ffffffff16565b905060004790506126b683612ec3565b60006126cb824761263290919063ffffffff16565b90506126d78382613181565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161270a93929190614982565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b8061274257612741613271565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127e55750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127fa576127f58484846132c5565b612a31565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561289d5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128b2576128ad848484613533565b612a30565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129565750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561296b576129668484846137a1565b612a2f565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a0d5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a2257612a1d84848461397a565b612a2e565b612a2d8484846137a1565b5b5b5b5b80612a3f57612a3e613c7d565b5b50505050565b600080600060095490506000600854905060005b600680549050811015612d5357826001600060068481548110612aa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612bb95750816002600060068481548110612b51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612bd05760095460085494509450505050612d8c565b612c866001600060068481548110612c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461263290919063ffffffff16565b9250612d3e6002600060068481548110612cc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361263290919063ffffffff16565b91508080612d4b90614c2e565b915050612a59565b50612d6b60085460095461259e90919063ffffffff16565b821015612d8357600954600854935093505050612d8c565b81819350935050505b9091565b6000806000806000612da186613c9a565b90506000612dae87613ccb565b90506000612dbb88613cfc565b90506000612df682612de885612dda888e61263290919063ffffffff16565b61263290919063ffffffff16565b61263290919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080612e28858a61264890919063ffffffff16565b90506000612e3f868a61264890919063ffffffff16565b90506000612e56878a61264890919063ffffffff16565b90506000612e6d888a61264890919063ffffffff16565b90506000612ea882612e9a85612e8c888a61263290919063ffffffff16565b61263290919063ffffffff16565b61263290919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6000600267ffffffffffffffff811115612f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f345781602001602082028036833780820191505090505b5090503081600081518110612f72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561301257600080fd5b505afa158015613026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304a91906141ed565b81600181518110613084577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130e9307f000000000000000000000000000000000000000000000000000000000000000084611fe6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161314b959493929190614928565b600060405180830381600087803b15801561316557600080fd5b505af1158015613179573d6000803e3d6000fd5b505050505050565b6131ac307f000000000000000000000000000000000000000000000000000000000000000084611fe6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806131f66118a8565b426040518863ffffffff1660e01b8152600401613218969594939291906146b4565b6060604051808303818588803b15801561323157600080fd5b505af1158015613245573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061326a919061436b565b5050505050565b6000600e5414801561328557506000601254145b1561328f576132c3565b600e54600f819055506010546011819055506012546013819055506000600e81905550600060108190555060006012819055505b565b60008060008060008060006132d9886125ca565b965096509650965096509650965061333988600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133ce87600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061346386600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134af82613d2d565b6134b881613ed2565b6134c28584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161351f919061490d565b60405180910390a350505050505050505050565b6000806000806000806000613547886125ca565b96509650965096509650965096506135a787600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061363c84600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136d186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061371d82613d2d565b61372681613ed2565b6137308584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161378d919061490d565b60405180910390a350505050505050505050565b60008060008060008060006137b5886125ca565b965096509650965096509650965061381587600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138aa86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138f682613d2d565b6138ff81613ed2565b6139098584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051613966919061490d565b60405180910390a350505050505050505050565b600080600080600080600061398e886125ca565b96509650965096509650965096506139ee88600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a8387600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b1884600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bad86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bf982613d2d565b613c0281613ed2565b613c0c8584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051613c69919061490d565b60405180910390a350505050505050505050565b600f54600e81905550601154601081905550601354601281905550565b6000613cc46064613cb6600e548561264890919063ffffffff16565b61259e90919063ffffffff16565b9050919050565b6000613cf56064613ce76012548561264890919063ffffffff16565b61259e90919063ffffffff16565b9050919050565b6000613d266064613d186010548561264890919063ffffffff16565b61259e90919063ffffffff16565b9050919050565b6000613d37612573565b90506000613d4e828461264890919063ffffffff16565b9050613da281600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613ecd57613e8983600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6000613edc612573565b90506000613ef3828461264890919063ffffffff16565b9050613f698160016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b60016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561411c576140b68360026000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b60026000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6141368260095461263290919063ffffffff16565b60098190555061415181600a546125b490919063ffffffff16565b600a819055505050565b60008135905061416a81615080565b92915050565b60008151905061417f81615080565b92915050565b60008135905061419481615097565b92915050565b6000813590506141a9816150ae565b92915050565b6000815190506141be816150ae565b92915050565b6000602082840312156141d657600080fd5b60006141e48482850161415b565b91505092915050565b6000602082840312156141ff57600080fd5b600061420d84828501614170565b91505092915050565b6000806040838503121561422957600080fd5b60006142378582860161415b565b92505060206142488582860161415b565b9150509250929050565b60008060006060848603121561426757600080fd5b60006142758682870161415b565b93505060206142868682870161415b565b92505060406142978682870161419a565b9150509250925092565b600080604083850312156142b457600080fd5b60006142c28582860161415b565b92505060206142d38582860161419a565b9150509250929050565b6000602082840312156142ef57600080fd5b60006142fd84828501614185565b91505092915050565b60006020828403121561431857600080fd5b60006143268482850161419a565b91505092915050565b6000806040838503121561434257600080fd5b60006143508582860161419a565b925050602061436185828601614185565b9150509250929050565b60008060006060848603121561438057600080fd5b600061438e868287016141af565b935050602061439f868287016141af565b92505060406143b0868287016141af565b9150509250925092565b60006143c683836143d2565b60208301905092915050565b6143db81614b3e565b82525050565b6143ea81614b3e565b82525050565b60006143fb826149e4565b6144058185614a07565b9350614410836149d4565b8060005b8381101561444157815161442888826143ba565b9750614433836149fa565b925050600181019050614414565b5085935050505092915050565b61445781614b50565b82525050565b61446681614b93565b82525050565b61447581614bb7565b82525050565b6000614486826149ef565b6144908185614a18565b93506144a0818560208601614bc9565b6144a981614d04565b840191505092915050565b60006144c1602383614a18565b91506144cc82614d15565b604082019050919050565b60006144e4602a83614a18565b91506144ef82614d64565b604082019050919050565b6000614507602683614a18565b915061451282614db3565b604082019050919050565b600061452a602283614a18565b915061453582614e02565b604082019050919050565b600061454d601b83614a18565b915061455882614e51565b602082019050919050565b6000614570601b83614a18565b915061457b82614e7a565b602082019050919050565b6000614593601f83614a18565b915061459e82614ea3565b602082019050919050565b60006145b6602883614a18565b91506145c182614ecc565b604082019050919050565b60006145d9602083614a18565b91506145e482614f1b565b602082019050919050565b60006145fc602983614a18565b915061460782614f44565b604082019050919050565b600061461f602583614a18565b915061462a82614f93565b604082019050919050565b6000614642602483614a18565b915061464d82614fe2565b604082019050919050565b6000614665602c83614a18565b915061467082615031565b604082019050919050565b61468481614b7c565b82525050565b61469381614b86565b82525050565b60006020820190506146ae60008301846143e1565b92915050565b600060c0820190506146c960008301896143e1565b6146d6602083018861467b565b6146e3604083018761446c565b6146f0606083018661446c565b6146fd60808301856143e1565b61470a60a083018461467b565b979650505050505050565b600060208201905061472a600083018461444e565b92915050565b6000602082019050614745600083018461445d565b92915050565b60006020820190508181036000830152614765818461447b565b905092915050565b60006020820190508181036000830152614786816144b4565b9050919050565b600060208201905081810360008301526147a6816144d7565b9050919050565b600060208201905081810360008301526147c6816144fa565b9050919050565b600060208201905081810360008301526147e68161451d565b9050919050565b6000602082019050818103600083015261480681614540565b9050919050565b6000602082019050818103600083015261482681614563565b9050919050565b6000602082019050818103600083015261484681614586565b9050919050565b60006020820190508181036000830152614866816145a9565b9050919050565b60006020820190508181036000830152614886816145cc565b9050919050565b600060208201905081810360008301526148a6816145ef565b9050919050565b600060208201905081810360008301526148c681614612565b9050919050565b600060208201905081810360008301526148e681614635565b9050919050565b6000602082019050818103600083015261490681614658565b9050919050565b6000602082019050614922600083018461467b565b92915050565b600060a08201905061493d600083018861467b565b61494a602083018761446c565b818103604083015261495c81866143f0565b905061496b60608301856143e1565b614978608083018461467b565b9695505050505050565b6000606082019050614997600083018661467b565b6149a4602083018561467b565b6149b1604083018461467b565b949350505050565b60006020820190506149ce600083018461468a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614a3482614b7c565b9150614a3f83614b7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7457614a73614c77565b5b828201905092915050565b6000614a8a82614b7c565b9150614a9583614b7c565b925082614aa557614aa4614ca6565b5b828204905092915050565b6000614abb82614b7c565b9150614ac683614b7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aff57614afe614c77565b5b828202905092915050565b6000614b1582614b7c565b9150614b2083614b7c565b925082821015614b3357614b32614c77565b5b828203905092915050565b6000614b4982614b5c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614b9e82614ba5565b9050919050565b6000614bb082614b5c565b9050919050565b6000614bc282614b7c565b9050919050565b60005b83811015614be7578082015181840152602081019050614bcc565b83811115614bf6576000848401525b50505050565b60006002820490506001821680614c1457607f821691505b60208210811415614c2857614c27614cd5565b5b50919050565b6000614c3982614b7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c6c57614c6b614c77565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f4163636f756e7420697320616c726561647920696e636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b61508981614b3e565b811461509457600080fd5b50565b6150a081614b50565b81146150ab57600080fd5b50565b6150b781614b7c565b81146150c257600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200d90ab6140b41404e5a5b4c614b4d40aa4ad0b13f90b44727e8940f3e0ed55dd64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806352390c021161011857806395d89b41116100a0578063c49b9a801161006f578063c49b9a80146107e6578063d543dbeb1461080f578063dd62ed3e14610838578063ea2f0b3714610875578063f2fde38b1461089e5761021a565b806395d89b4114610718578063a457c2d714610743578063a9059cbb14610780578063af41063b146107bd5761021a565b8063715018a6116100e7578063715018a6146106455780637d1db4a51461065c57806388f82020146106875780638da5cb5b146106c45780638ee88c53146106ef5761021a565b806352390c02146105775780635342acb4146105a05780636bc87c3a146105dd57806370a08231146106085761021a565b80633685d4191161019b57806340f8007a1161016a57806340f8007a14610490578063437823ec146104bb5780634549b039146104e457806349bd5a5e146105215780634a74bb021461054c5761021a565b80633685d419146103d657806339509351146103ff5780633b124fe71461043c5780633bd5d173146104675761021a565b80631694505e116101e25780631694505e146102db57806318160ddd1461030657806323b872dd146103315780632d8381191461036e578063313ce567146103ab5761021a565b8063061c82d01461021f57806306fdde0314610248578063095ea7b31461027357806313114a9d146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190614306565b6108c7565b005b34801561025457600080fd5b5061025d61094d565b60405161026a919061474b565b60405180910390f35b34801561027f57600080fd5b5061029a600480360381019061029591906142a1565b6109df565b6040516102a79190614715565b60405180910390f35b3480156102bc57600080fd5b506102c56109fd565b6040516102d2919061490d565b60405180910390f35b3480156102e757600080fd5b506102f0610a07565b6040516102fd9190614730565b60405180910390f35b34801561031257600080fd5b5061031b610a2b565b604051610328919061490d565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190614252565b610a35565b6040516103659190614715565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190614306565b610b0e565b6040516103a2919061490d565b60405180910390f35b3480156103b757600080fd5b506103c0610b7c565b6040516103cd91906149b9565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906141c4565b610b93565b005b34801561040b57600080fd5b50610426600480360381019061042191906142a1565b610f61565b6040516104339190614715565b60405180910390f35b34801561044857600080fd5b50610451611014565b60405161045e919061490d565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190614306565b61101a565b005b34801561049c57600080fd5b506104a5611196565b6040516104b2919061490d565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906141c4565b61119c565b005b3480156104f057600080fd5b5061050b6004803603810190610506919061432f565b611273565b604051610518919061490d565b60405180910390f35b34801561052d57600080fd5b506105366112f9565b6040516105439190614699565b60405180910390f35b34801561055857600080fd5b5061056161131d565b60405161056e9190614715565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906141c4565b611330565b005b3480156105ac57600080fd5b506105c760048036038101906105c291906141c4565b6115cb565b6040516105d49190614715565b60405180910390f35b3480156105e957600080fd5b506105f2611621565b6040516105ff919061490d565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a91906141c4565b611627565b60405161063c919061490d565b60405180910390f35b34801561065157600080fd5b5061065a611712565b005b34801561066857600080fd5b5061067161184c565b60405161067e919061490d565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906141c4565b611852565b6040516106bb9190614715565b60405180910390f35b3480156106d057600080fd5b506106d96118a8565b6040516106e69190614699565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190614306565b6118d1565b005b34801561072457600080fd5b5061072d611957565b60405161073a919061474b565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906142a1565b6119e9565b6040516107779190614715565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a291906142a1565b611ab6565b6040516107b49190614715565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190614306565b611ad4565b005b3480156107f257600080fd5b5061080d600480360381019061080891906142dd565b611b5a565b005b34801561081b57600080fd5b5061083660048036038101906108319190614306565b611c2a565b005b34801561084457600080fd5b5061085f600480360381019061085a9190614216565b611cd7565b60405161086c919061490d565b60405180910390f35b34801561088157600080fd5b5061089c600480360381019061089791906141c4565b611d5e565b005b3480156108aa57600080fd5b506108c560048036038101906108c091906141c4565b611e35565b005b6108cf611fde565b73ffffffffffffffffffffffffffffffffffffffff166108ed6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a9061486d565b60405180910390fd5b80600e8190555050565b6060600b805461095c90614bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461098890614bfc565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109f36109ec611fde565b8484611fe6565b6001905092915050565b6000600a54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600854905090565b6000610a428484846121b1565b610b0384610a4e611fde565b610afe856040518060600160405280602881526020016150c660289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ab4611fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251e9092919063ffffffff16565b611fe6565b600190509392505050565b6000600954821115610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c9061478d565b60405180910390fd5b6000610b5f612573565b9050610b74818461259e90919063ffffffff16565b915050919050565b6000600d60009054906101000a900460ff16905090565b610b9b611fde565b73ffffffffffffffffffffffffffffffffffffffff16610bb96118a8565b73ffffffffffffffffffffffffffffffffffffffff1614610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c069061486d565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061480d565b60405180910390fd5b60005b600680549050811015610f5d578173ffffffffffffffffffffffffffffffffffffffff1660068281548110610cfc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f4a5760066001600680549050610d579190614b0a565b81548110610d8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610df3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006805480610f10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610f5d565b8080610f5590614c2e565b915050610c9e565b5050565b600061100a610f6e611fde565b846110058560036000610f7f611fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b611fe6565b6001905092915050565b600e5481565b6000611024611fde565b9050600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906148ed565b60405180910390fd5b60006110be836125ca565b505050505050905061111881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111708160095461263290919063ffffffff16565b60098190555061118b83600a546125b490919063ffffffff16565b600a81905550505050565b60105481565b6111a4611fde565b73ffffffffffffffffffffffffffffffffffffffff166111c26118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f9061486d565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006008548311156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b19061482d565b60405180910390fd5b816112db5760006112ca846125ca565b5050505050509050809150506112f3565b60006112e6846125ca565b5050505050915050809150505b92915050565b7f000000000000000000000000e3586483dee45b4fa32ecf679d99675c9884297d81565b601460019054906101000a900460ff1681565b611338611fde565b73ffffffffffffffffffffffffffffffffffffffff166113566118a8565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a39061486d565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906147ed565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561150d576114c9600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0e565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116c257600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061170d565b61170a600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b0e565b90505b919050565b61171a611fde565b73ffffffffffffffffffffffffffffffffffffffff166117386118a8565b73ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117859061486d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118d9611fde565b73ffffffffffffffffffffffffffffffffffffffff166118f76118a8565b73ffffffffffffffffffffffffffffffffffffffff161461194d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119449061486d565b60405180910390fd5b8060128190555050565b6060600c805461196690614bfc565b80601f016020809104026020016040519081016040528092919081815260200182805461199290614bfc565b80156119df5780601f106119b4576101008083540402835291602001916119df565b820191906000526020600020905b8154815290600101906020018083116119c257829003601f168201915b5050505050905090565b6000611aac6119f6611fde565b84611aa7856040518060600160405280602581526020016150ee6025913960036000611a20611fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251e9092919063ffffffff16565b611fe6565b6001905092915050565b6000611aca611ac3611fde565b84846121b1565b6001905092915050565b611adc611fde565b73ffffffffffffffffffffffffffffffffffffffff16611afa6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b479061486d565b60405180910390fd5b8060108190555050565b611b62611fde565b73ffffffffffffffffffffffffffffffffffffffff16611b806118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd9061486d565b60405180910390fd5b80601460016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611c1f9190614715565b60405180910390a150565b611c32611fde565b73ffffffffffffffffffffffffffffffffffffffff16611c506118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d9061486d565b60405180910390fd5b611cce6064611cc08360085461264890919063ffffffff16565b61259e90919063ffffffff16565b60158190555050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611d66611fde565b73ffffffffffffffffffffffffffffffffffffffff16611d846118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd19061486d565b60405180910390fd5b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611e3d611fde565b73ffffffffffffffffffffffffffffffffffffffff16611e5b6118a8565b73ffffffffffffffffffffffffffffffffffffffff1614611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea89061486d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f18906147ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906148cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd906147cd565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121a4919061490d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612221576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612218906148ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612291576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122889061476d565b60405180910390fd5b600081116122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb9061488d565b60405180910390fd5b6122dc6118a8565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561234a575061231a6118a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561239557601554811115612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b9061484d565b60405180910390fd5b5b60006123a030611627565b905060155481106123b15760155490505b600060165482101590508080156123d55750601460009054906101000a900460ff16155b801561242d57507f000000000000000000000000e3586483dee45b4fa32ecf679d99675c9884297d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156124455750601460019054906101000a900460ff165b156124595760165491506124588261265e565b5b600060019050600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125005750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561250a57600090505b61251686868684612734565b505050505050565b6000838311158290612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d919061474b565b60405180910390fd5b5082840390509392505050565b6000806000612580612a45565b91509150612597818361259e90919063ffffffff16565b9250505090565b600081836125ac9190614a7f565b905092915050565b600081836125c29190614a29565b905092915050565b60008060008060008060008060008060006125e48c612d90565b935093509350935060008060006126058f878787612600612573565b612e0f565b925092509250828282898989899d509d509d509d509d509d509d5050505050505050919395979092949650565b600081836126409190614b0a565b905092915050565b600081836126569190614ab0565b905092915050565b6001601460006101000a81548160ff021916908315150217905550600061268f60028361259e90919063ffffffff16565b905060006126a6828461263290919063ffffffff16565b905060004790506126b683612ec3565b60006126cb824761263290919063ffffffff16565b90506126d78382613181565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161270a93929190614982565b60405180910390a1505050506000601460006101000a81548160ff02191690831515021790555050565b8061274257612741613271565b5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127e55750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127fa576127f58484846132c5565b612a31565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561289d5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128b2576128ad848484613533565b612a30565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129565750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561296b576129668484846137a1565b612a2f565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a0d5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612a2257612a1d84848461397a565b612a2e565b612a2d8484846137a1565b5b5b5b5b80612a3f57612a3e613c7d565b5b50505050565b600080600060095490506000600854905060005b600680549050811015612d5357826001600060068481548110612aa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612bb95750816002600060068481548110612b51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612bd05760095460085494509450505050612d8c565b612c866001600060068481548110612c11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461263290919063ffffffff16565b9250612d3e6002600060068481548110612cc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361263290919063ffffffff16565b91508080612d4b90614c2e565b915050612a59565b50612d6b60085460095461259e90919063ffffffff16565b821015612d8357600954600854935093505050612d8c565b81819350935050505b9091565b6000806000806000612da186613c9a565b90506000612dae87613ccb565b90506000612dbb88613cfc565b90506000612df682612de885612dda888e61263290919063ffffffff16565b61263290919063ffffffff16565b61263290919063ffffffff16565b9050808484849750975097509750505050509193509193565b600080600080612e28858a61264890919063ffffffff16565b90506000612e3f868a61264890919063ffffffff16565b90506000612e56878a61264890919063ffffffff16565b90506000612e6d888a61264890919063ffffffff16565b90506000612ea882612e9a85612e8c888a61263290919063ffffffff16565b61263290919063ffffffff16565b61263290919063ffffffff16565b90508481859750975097505050505050955095509592505050565b6000600267ffffffffffffffff811115612f06577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f345781602001602082028036833780820191505090505b5090503081600081518110612f72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561301257600080fd5b505afa158015613026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304a91906141ed565b81600181518110613084577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506130e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fe6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161314b959493929190614928565b600060405180830381600087803b15801561316557600080fd5b505af1158015613179573d6000803e3d6000fd5b505050505050565b6131ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fe6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806131f66118a8565b426040518863ffffffff1660e01b8152600401613218969594939291906146b4565b6060604051808303818588803b15801561323157600080fd5b505af1158015613245573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061326a919061436b565b5050505050565b6000600e5414801561328557506000601254145b1561328f576132c3565b600e54600f819055506010546011819055506012546013819055506000600e81905550600060108190555060006012819055505b565b60008060008060008060006132d9886125ca565b965096509650965096509650965061333988600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133ce87600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061346386600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134af82613d2d565b6134b881613ed2565b6134c28584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161351f919061490d565b60405180910390a350505050505050505050565b6000806000806000806000613547886125ca565b96509650965096509650965096506135a787600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061363c84600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136d186600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061371d82613d2d565b61372681613ed2565b6137308584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161378d919061490d565b60405180910390a350505050505050505050565b60008060008060008060006137b5886125ca565b965096509650965096509650965061381587600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138aa86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138f682613d2d565b6138ff81613ed2565b6139098584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051613966919061490d565b60405180910390a350505050505050505050565b600080600080600080600061398e886125ca565b96509650965096509650965096506139ee88600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a8387600160008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461263290919063ffffffff16565b600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b1884600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bad86600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bf982613d2d565b613c0281613ed2565b613c0c8584614121565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051613c69919061490d565b60405180910390a350505050505050505050565b600f54600e81905550601154601081905550601354601281905550565b6000613cc46064613cb6600e548561264890919063ffffffff16565b61259e90919063ffffffff16565b9050919050565b6000613cf56064613ce76012548561264890919063ffffffff16565b61259e90919063ffffffff16565b9050919050565b6000613d266064613d186010548561264890919063ffffffff16565b61259e90919063ffffffff16565b9050919050565b6000613d37612573565b90506000613d4e828461264890919063ffffffff16565b9050613da281600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613ecd57613e8983600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6000613edc612573565b90506000613ef3828461264890919063ffffffff16565b9050613f698160016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b60016000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060056000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561411c576140b68360026000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125b490919063ffffffff16565b60026000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b6141368260095461263290919063ffffffff16565b60098190555061415181600a546125b490919063ffffffff16565b600a819055505050565b60008135905061416a81615080565b92915050565b60008151905061417f81615080565b92915050565b60008135905061419481615097565b92915050565b6000813590506141a9816150ae565b92915050565b6000815190506141be816150ae565b92915050565b6000602082840312156141d657600080fd5b60006141e48482850161415b565b91505092915050565b6000602082840312156141ff57600080fd5b600061420d84828501614170565b91505092915050565b6000806040838503121561422957600080fd5b60006142378582860161415b565b92505060206142488582860161415b565b9150509250929050565b60008060006060848603121561426757600080fd5b60006142758682870161415b565b93505060206142868682870161415b565b92505060406142978682870161419a565b9150509250925092565b600080604083850312156142b457600080fd5b60006142c28582860161415b565b92505060206142d38582860161419a565b9150509250929050565b6000602082840312156142ef57600080fd5b60006142fd84828501614185565b91505092915050565b60006020828403121561431857600080fd5b60006143268482850161419a565b91505092915050565b6000806040838503121561434257600080fd5b60006143508582860161419a565b925050602061436185828601614185565b9150509250929050565b60008060006060848603121561438057600080fd5b600061438e868287016141af565b935050602061439f868287016141af565b92505060406143b0868287016141af565b9150509250925092565b60006143c683836143d2565b60208301905092915050565b6143db81614b3e565b82525050565b6143ea81614b3e565b82525050565b60006143fb826149e4565b6144058185614a07565b9350614410836149d4565b8060005b8381101561444157815161442888826143ba565b9750614433836149fa565b925050600181019050614414565b5085935050505092915050565b61445781614b50565b82525050565b61446681614b93565b82525050565b61447581614bb7565b82525050565b6000614486826149ef565b6144908185614a18565b93506144a0818560208601614bc9565b6144a981614d04565b840191505092915050565b60006144c1602383614a18565b91506144cc82614d15565b604082019050919050565b60006144e4602a83614a18565b91506144ef82614d64565b604082019050919050565b6000614507602683614a18565b915061451282614db3565b604082019050919050565b600061452a602283614a18565b915061453582614e02565b604082019050919050565b600061454d601b83614a18565b915061455882614e51565b602082019050919050565b6000614570601b83614a18565b915061457b82614e7a565b602082019050919050565b6000614593601f83614a18565b915061459e82614ea3565b602082019050919050565b60006145b6602883614a18565b91506145c182614ecc565b604082019050919050565b60006145d9602083614a18565b91506145e482614f1b565b602082019050919050565b60006145fc602983614a18565b915061460782614f44565b604082019050919050565b600061461f602583614a18565b915061462a82614f93565b604082019050919050565b6000614642602483614a18565b915061464d82614fe2565b604082019050919050565b6000614665602c83614a18565b915061467082615031565b604082019050919050565b61468481614b7c565b82525050565b61469381614b86565b82525050565b60006020820190506146ae60008301846143e1565b92915050565b600060c0820190506146c960008301896143e1565b6146d6602083018861467b565b6146e3604083018761446c565b6146f0606083018661446c565b6146fd60808301856143e1565b61470a60a083018461467b565b979650505050505050565b600060208201905061472a600083018461444e565b92915050565b6000602082019050614745600083018461445d565b92915050565b60006020820190508181036000830152614765818461447b565b905092915050565b60006020820190508181036000830152614786816144b4565b9050919050565b600060208201905081810360008301526147a6816144d7565b9050919050565b600060208201905081810360008301526147c6816144fa565b9050919050565b600060208201905081810360008301526147e68161451d565b9050919050565b6000602082019050818103600083015261480681614540565b9050919050565b6000602082019050818103600083015261482681614563565b9050919050565b6000602082019050818103600083015261484681614586565b9050919050565b60006020820190508181036000830152614866816145a9565b9050919050565b60006020820190508181036000830152614886816145cc565b9050919050565b600060208201905081810360008301526148a6816145ef565b9050919050565b600060208201905081810360008301526148c681614612565b9050919050565b600060208201905081810360008301526148e681614635565b9050919050565b6000602082019050818103600083015261490681614658565b9050919050565b6000602082019050614922600083018461467b565b92915050565b600060a08201905061493d600083018861467b565b61494a602083018761446c565b818103604083015261495c81866143f0565b905061496b60608301856143e1565b614978608083018461467b565b9695505050505050565b6000606082019050614997600083018661467b565b6149a4602083018561467b565b6149b1604083018461467b565b949350505050565b60006020820190506149ce600083018461468a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614a3482614b7c565b9150614a3f83614b7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7457614a73614c77565b5b828201905092915050565b6000614a8a82614b7c565b9150614a9583614b7c565b925082614aa557614aa4614ca6565b5b828204905092915050565b6000614abb82614b7c565b9150614ac683614b7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aff57614afe614c77565b5b828202905092915050565b6000614b1582614b7c565b9150614b2083614b7c565b925082821015614b3357614b32614c77565b5b828203905092915050565b6000614b4982614b5c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614b9e82614ba5565b9050919050565b6000614bb082614b5c565b9050919050565b6000614bc282614b7c565b9050919050565b60005b83811015614be7578082015181840152602081019050614bcc565b83811115614bf6576000848401525b50505050565b60006002820490506001821680614c1457607f821691505b60208210811415614c2857614c27614cd5565b5b50919050565b6000614c3982614b7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c6c57614c6b614c77565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4163636f756e7420697320616c7265616479206578636c756465640000000000600082015250565b7f4163636f756e7420697320616c726561647920696e636c756465640000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b61508981614b3e565b811461509457600080fd5b50565b6150a081614b50565b81146150ab57600080fd5b50565b6150b781614b7c565b81146150c257600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200d90ab6140b41404e5a5b4c614b4d40aa4ad0b13f90b44727e8940f3e0ed55dd64736f6c63430008040033
Deployed Bytecode Sourcemap
28726:19815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36467:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31348:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32260:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29904:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31625:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32429:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34308:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31534:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35024:479;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32750:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29623:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33476:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29710:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36222:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33862:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29962:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30041:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34569:447;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41390:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29803:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31728:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20209:148;;;;;;;;;;;;;:::i;:::-;;30094:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33253:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19558:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36699:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31439:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32976:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31934:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36573:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37002:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36832:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32109:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36345:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20512:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36467:98;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36551:6:::1;36541:7;:16;;;;36467:98:::0;:::o;31348:83::-;31385:13;31418:5;31411:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31348:83;:::o;32260:161::-;32335:4;32352:39;32361:12;:10;:12::i;:::-;32375:7;32384:6;32352:8;:39::i;:::-;32409:4;32402:11;;32260:161;;;;:::o;33381:87::-;33423:7;33450:10;;33443:17;;33381:87;:::o;29904:51::-;;;:::o;31625:95::-;31678:7;31705;;31698:14;;31625:95;:::o;32429:313::-;32527:4;32544:36;32554:6;32562:9;32573:6;32544:9;:36::i;:::-;32591:121;32600:6;32608:12;:10;:12::i;:::-;32622:89;32660:6;32622:89;;;;;;;;;;;;;;;;;:11;:19;32634:6;32622:19;;;;;;;;;;;;;;;:33;32642:12;:10;:12::i;:::-;32622:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32591:8;:121::i;:::-;32730:4;32723:11;;32429:313;;;;;:::o;34308:253::-;34374:7;34413;;34402;:18;;34394:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34478:19;34501:10;:8;:10::i;:::-;34478:33;;34529:24;34541:11;34529:7;:11;;:24;;;;:::i;:::-;34522:31;;;34308:253;;;:::o;31534:83::-;31575:5;31600:9;;;;;;;;;;;31593:16;;31534:83;:::o;35024:479::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35106:11:::1;:20;35118:7;35106:20;;;;;;;;;;;;;;;;;;;;;;;;;35098:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35174:9;35169:327;35193:9;:16;;;;35189:1;:20;35169:327;;;35251:7;35235:23;;:9;35245:1;35235:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;35231:254;;;35294:9;35323:1;35304:9;:16;;;;:20;;;;:::i;:::-;35294:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35279:9;35289:1;35279:12;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35363:1;35344:7;:16;35352:7;35344:16;;;;;;;;;;;;;;;:20;;;;35406:5;35383:11;:20;35395:7;35383:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;35430:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35464:5;;35231:254;35211:3;;;;;:::i;:::-;;;;35169:327;;;;35024:479:::0;:::o;32750:218::-;32838:4;32855:83;32864:12;:10;:12::i;:::-;32878:7;32887:50;32926:10;32887:11;:25;32899:12;:10;:12::i;:::-;32887:25;;;;;;;;;;;;;;;:34;32913:7;32887:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;32855:8;:83::i;:::-;32956:4;32949:11;;32750:218;;;;:::o;29623:26::-;;;;:::o;33476:378::-;33528:14;33545:12;:10;:12::i;:::-;33528:29;;33577:11;:19;33589:6;33577:19;;;;;;;;;;;;;;;;;;;;;;;;;33576:20;33568:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;33657:15;33682:19;33693:7;33682:10;:19::i;:::-;33656:45;;;;;;;;33730:28;33750:7;33730;:15;33738:6;33730:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;33712:7;:15;33720:6;33712:15;;;;;;;;;;;;;;;:46;;;;33779:20;33791:7;33779;;:11;;:20;;;;:::i;:::-;33769:7;:30;;;;33823:23;33838:7;33823:10;;:14;;:23;;;;:::i;:::-;33810:10;:36;;;;33476:378;;;:::o;29710:30::-;;;;:::o;36222:111::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36321:4:::1;36291:18;:27;36310:7;36291:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;36222:111:::0;:::o;33862:438::-;33952:7;33991;;33980;:18;;33972:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34050:17;34045:248;;34085:15;34110:19;34121:7;34110:10;:19::i;:::-;34084:45;;;;;;;;34151:7;34144:14;;;;;34045:248;34193:23;34225:19;34236:7;34225:10;:19::i;:::-;34191:53;;;;;;;;34266:15;34259:22;;;33862:438;;;;;:::o;29962:38::-;;;:::o;30041:40::-;;;;;;;;;;;;;:::o;34569:447::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34766:11:::1;:20;34778:7;34766:20;;;;;;;;;;;;;;;;;;;;;;;;;34765:21;34757:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34851:1;34832:7;:16;34840:7;34832:16;;;;;;;;;;;;;;;;:20;34829:108;;;34888:37;34908:7;:16;34916:7;34908:16;;;;;;;;;;;;;;;;34888:19;:37::i;:::-;34869:7;:16;34877:7;34869:16;;;;;;;;;;;;;;;:56;;;;34829:108;34970:4;34947:11;:20;34959:7;34947:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;34985:9;35000:7;34985:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34569:447:::0;:::o;41390:123::-;41454:4;41478:18;:27;41497:7;41478:27;;;;;;;;;;;;;;;;;;;;;;;;;41471:34;;41390:123;;;:::o;29803:32::-;;;;:::o;31728:198::-;31794:7;31818:11;:20;31830:7;31818:20;;;;;;;;;;;;;;;;;;;;;;;;;31814:49;;;31847:7;:16;31855:7;31847:16;;;;;;;;;;;;;;;;31840:23;;;;31814:49;31881:37;31901:7;:16;31909:7;31901:16;;;;;;;;;;;;;;;;31881:19;:37::i;:::-;31874:44;;31728:198;;;;:::o;20209:148::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20316:1:::1;20279:40;;20300:6;::::0;::::1;;;;;;;;20279:40;;;;;;;;;;;;20347:1;20330:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;20209:148::o:0;30094:51::-;;;;:::o;33253:120::-;33321:4;33345:11;:20;33357:7;33345:20;;;;;;;;;;;;;;;;;;;;;;;;;33338:27;;33253:120;;;:::o;19558:87::-;19604:7;19631:6;;;;;;;;;;;19624:13;;19558:87;:::o;36699:122::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36801:12:::1;36785:13;:28;;;;36699:122:::0;:::o;31439:87::-;31478:13;31511:7;31504:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31439:87;:::o;32976:269::-;33069:4;33086:129;33095:12;:10;:12::i;:::-;33109:7;33118:96;33157:15;33118:96;;;;;;;;;;;;;;;;;:11;:25;33130:12;:10;:12::i;:::-;33118:25;;;;;;;;;;;;;;;:34;33144:7;33118:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33086:8;:129::i;:::-;33233:4;33226:11;;32976:269;;;;:::o;31934:167::-;32012:4;32029:42;32039:12;:10;:12::i;:::-;32053:9;32064:6;32029:9;:42::i;:::-;32089:4;32082:11;;31934:167;;;;:::o;36573:114::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36669:10:::1;36655:11;:24;;;;36573:114:::0;:::o;37002:171::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37103:8:::1;37079:21;;:32;;;;;;;;;;;;;;;;;;37127:38;37156:8;37127:38;;;;;;:::i;:::-;;;;;;;;37002:171:::0;:::o;36832:162::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36926:60:::1;36970:5;36926:25;36938:12;36926:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;36911:12;:75;;;;36832:162:::0;:::o;32109:143::-;32190:7;32217:11;:18;32229:5;32217:18;;;;;;;;;;;;;;;:27;32236:7;32217:27;;;;;;;;;;;;;;;;32210:34;;32109:143;;;;:::o;36345:110::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36442:5:::1;36412:18;:27;36431:7;36412:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36345:110:::0;:::o;20512:244::-;19789:12;:10;:12::i;:::-;19778:23;;:7;:5;:7::i;:::-;:23;;;19770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20621:1:::1;20601:22;;:8;:22;;;;20593:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20711:8;20682:38;;20703:6;::::0;::::1;;;;;;;;20682:38;;;;;;;;;;;;20740:8;20731:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;20512:244:::0;:::o;10305:98::-;10358:7;10385:10;10378:17;;10305:98;:::o;41521:337::-;41631:1;41614:19;;:5;:19;;;;41606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41712:1;41693:21;;:7;:21;;;;41685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41796:6;41766:11;:18;41778:5;41766:18;;;;;;;;;;;;;;;:27;41785:7;41766:27;;;;;;;;;;;;;;;:36;;;;41834:7;41818:32;;41827:5;41818:32;;;41843:6;41818:32;;;;;;:::i;:::-;;;;;;;;41521:337;;;:::o;41866:1813::-;42004:1;41988:18;;:4;:18;;;;41980:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42081:1;42067:16;;:2;:16;;;;42059:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42151:1;42142:6;:10;42134:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42220:7;:5;:7::i;:::-;42212:15;;:4;:15;;;;:32;;;;;42237:7;:5;:7::i;:::-;42231:13;;:2;:13;;;;42212:32;42209:125;;;42277:12;;42267:6;:22;;42259:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42209:125;42629:28;42660:24;42678:4;42660:9;:24::i;:::-;42629:55;;42732:12;;42708:20;:36;42705:112;;42793:12;;42770:35;;42705:112;42837:24;42888:29;;42864:20;:53;;42837:80;;42946:19;:53;;;;;42983:16;;;;;;;;;;;42982:17;42946:53;:91;;;;;43024:13;43016:21;;:4;:21;;;;42946:91;:129;;;;;43054:21;;;;;;;;;;;42946:129;42928:318;;;43125:29;;43102:52;;43198:36;43213:20;43198:14;:36::i;:::-;42928:318;43327:12;43342:4;43327:19;;43454:18;:24;43473:4;43454:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;43482:18;:22;43501:2;43482:22;;;;;;;;;;;;;;;;;;;;;;;;;43454:50;43451:96;;;43530:5;43520:15;;43451:96;43633:38;43648:4;43653:2;43656:6;43663:7;43633:14;:38::i;:::-;41866:1813;;;;;;:::o;7755:206::-;7841:7;7899:1;7894;:6;;7902:12;7886:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7941:1;7937;:5;7930:12;;7755:206;;;;;:::o;38861:163::-;38902:7;38923:15;38940;38959:19;:17;:19::i;:::-;38922:56;;;;38996:20;39008:7;38996;:11;;:20;;;;:::i;:::-;38989:27;;;;38861:163;:::o;6613:98::-;6671:7;6702:1;6698;:5;;;;:::i;:::-;6691:12;;6613:98;;;;:::o;5476:::-;5534:7;5565:1;5561;:5;;;;:::i;:::-;5554:12;;5476:98;;;;:::o;37434:466::-;37493:7;37502;37511;37520;37529;37538;37547;37568:23;37593:12;37607:18;37627:16;37647:20;37659:7;37647:11;:20::i;:::-;37567:100;;;;;;;;37679:15;37696:23;37721:12;37737:60;37749:7;37758:4;37764:10;37776:8;37786:10;:8;:10::i;:::-;37737:11;:60::i;:::-;37678:119;;;;;;37816:7;37825:15;37842:4;37848:15;37865:4;37871:10;37883:8;37808:84;;;;;;;;;;;;;;;;;;;;;37434:466;;;;;;;;;:::o;5857:98::-;5915:7;5946:1;5942;:5;;;;:::i;:::-;5935:12;;5857:98;;;;:::o;6214:::-;6272:7;6303:1;6299;:5;;;;:::i;:::-;6292:12;;6214:98;;;;:::o;43687:985::-;30544:4;30525:16;;:23;;;;;;;;;;;;;;;;;;43823:12:::1;43838:27;43863:1;43838:20;:24;;:27;;;;:::i;:::-;43823:42;;43876:17;43896:30;43921:4;43896:20;:24;;:30;;;;:::i;:::-;43876:50;;44204:22;44229:21;44204:46;;44295:22;44312:4;44295:16;:22::i;:::-;44448:18;44469:41;44495:14;44469:21;:25;;:41;;;;:::i;:::-;44448:62;;44560:35;44573:9;44584:10;44560:12;:35::i;:::-;44621:43;44636:4;44642:10;44654:9;44621:43;;;;;;;;:::i;:::-;;;;;;;;30559:1;;;;30590:5:::0;30571:16;;:24;;;;;;;;;;;;;;;;;;43687:985;:::o;45871:834::-;45982:7;45978:40;;46004:14;:12;:14::i;:::-;45978:40;46043:11;:19;46055:6;46043:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;46067:11;:22;46079:9;46067:22;;;;;;;;;;;;;;;;;;;;;;;;;46066:23;46043:46;46039:597;;;46106:48;46128:6;46136:9;46147:6;46106:21;:48::i;:::-;46039:597;;;46177:11;:19;46189:6;46177:19;;;;;;;;;;;;;;;;;;;;;;;;;46176:20;:46;;;;;46200:11;:22;46212:9;46200:22;;;;;;;;;;;;;;;;;;;;;;;;;46176:46;46172:464;;;46239:46;46259:6;46267:9;46278:6;46239:19;:46::i;:::-;46172:464;;;46308:11;:19;46320:6;46308:19;;;;;;;;;;;;;;;;;;;;;;;;;46307:20;:47;;;;;46332:11;:22;46344:9;46332:22;;;;;;;;;;;;;;;;;;;;;;;;;46331:23;46307:47;46303:333;;;46371:44;46389:6;46397:9;46408:6;46371:17;:44::i;:::-;46303:333;;;46437:11;:19;46449:6;46437:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;46460:11;:22;46472:9;46460:22;;;;;;;;;;;;;;;;;;;;;;;;;46437:45;46433:203;;;46499:48;46521:6;46529:9;46540:6;46499:21;:48::i;:::-;46433:203;;;46580:44;46598:6;46606:9;46617:6;46580:17;:44::i;:::-;46433:203;46303:333;46172:464;46039:597;46660:7;46656:41;;46682:15;:13;:15::i;:::-;46656:41;45871:834;;;;:::o;39032:561::-;39082:7;39091;39111:15;39129:7;;39111:25;;39147:15;39165:7;;39147:25;;39194:9;39189:289;39213:9;:16;;;;39209:1;:20;39189:289;;;39279:7;39255;:21;39263:9;39273:1;39263:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39255:21;;;;;;;;;;;;;;;;:31;:66;;;;39314:7;39290;:21;39298:9;39308:1;39298:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39290:21;;;;;;;;;;;;;;;;:31;39255:66;39251:97;;;39331:7;;39340;;39323:25;;;;;;;;;39251:97;39373:34;39385:7;:21;39393:9;39403:1;39393:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39385:21;;;;;;;;;;;;;;;;39373:7;:11;;:34;;;;:::i;:::-;39363:44;;39432:34;39444:7;:21;39452:9;39462:1;39452:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39444:21;;;;;;;;;;;;;;;;39432:7;:11;;:34;;;;:::i;:::-;39422:44;;39231:3;;;;;:::i;:::-;;;;39189:289;;;;39502:20;39514:7;;39502;;:11;;:20;;;;:::i;:::-;39492:7;:30;39488:61;;;39532:7;;39541;;39524:25;;;;;;;;39488:61;39568:7;39577;39560:25;;;;;;39032:561;;;:::o;37908:421::-;37968:7;37977;37986;37995;38015:12;38030:24;38046:7;38030:15;:24::i;:::-;38015:39;;38065:18;38086:30;38108:7;38086:21;:30::i;:::-;38065:51;;38127:16;38146:28;38166:7;38146:19;:28::i;:::-;38127:47;;38185:23;38211:47;38249:8;38211:33;38233:10;38211:17;38223:4;38211:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;:37;;:47;;;;:::i;:::-;38185:73;;38277:15;38294:4;38300:10;38312:8;38269:52;;;;;;;;;;;;37908:421;;;;;:::o;38337:516::-;38470:7;38479;38488;38508:15;38526:24;38538:11;38526:7;:11;;:24;;;;:::i;:::-;38508:42;;38561:12;38576:21;38585:11;38576:4;:8;;:21;;;;:::i;:::-;38561:36;;38608:18;38629:27;38644:11;38629:10;:14;;:27;;;;:::i;:::-;38608:48;;38667:16;38686:25;38699:11;38686:8;:12;;:25;;;;:::i;:::-;38667:44;;38722:23;38748:47;38786:8;38748:33;38770:10;38748:17;38760:4;38748:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;:37;;:47;;;;:::i;:::-;38722:73;;38814:7;38823:15;38840:4;38806:39;;;;;;;;;;;38337:516;;;;;;;;;:::o;44680:589::-;44806:21;44844:1;44830:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44806:40;;44875:4;44857;44862:1;44857:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;;;44901:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44891:4;44896:1;44891:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;;;44936:62;44953:4;44968:15;44986:11;44936:8;:62::i;:::-;45037:15;:66;;;45118:11;45144:1;45188:4;45215;45235:15;45037:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44680:589;;:::o;45277:513::-;45425:62;45442:4;45457:15;45475:11;45425:8;:62::i;:::-;45530:15;:31;;;45569:9;45602:4;45622:11;45648:1;45691;45734:7;:5;:7::i;:::-;45756:15;45530:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45277:513;;:::o;40877:320::-;40934:1;40923:7;;:12;:34;;;;;40956:1;40939:13;;:18;40923:34;40920:46;;;40959:7;;40920:46;41004:7;;40986:15;:25;;;;41044:11;;41022:19;:33;;;;41090:13;;41066:21;:37;;;;41134:1;41124:7;:11;;;;41160:1;41146:11;:15;;;;41188:1;41172:13;:17;;;;40877:320;:::o;47919:617::-;48022:15;48039:23;48064:12;48078:23;48103:12;48117:18;48137:16;48157:19;48168:7;48157:10;:19::i;:::-;48021:155;;;;;;;;;;;;;;48205:28;48225:7;48205;:15;48213:6;48205:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48187:7;:15;48195:6;48187:15;;;;;;;;;;;;;;;:46;;;;48262:28;48282:7;48262;:15;48270:6;48262:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;48244:7;:15;48252:6;48244:15;;;;;;;;;;;;;;;:46;;;;48322:39;48345:15;48322:7;:18;48330:9;48322:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;48301:7;:18;48309:9;48301:18;;;;;;;;;;;;;;;:60;;;;48375:26;48390:10;48375:14;:26::i;:::-;48412:22;48425:8;48412:12;:22::i;:::-;48445:23;48457:4;48463;48445:11;:23::i;:::-;48501:9;48484:44;;48493:6;48484:44;;;48512:15;48484:44;;;;;;:::i;:::-;;;;;;;;47919:617;;;;;;;;;;:::o;47274:637::-;47375:15;47392:23;47417:12;47431:23;47456:12;47470:18;47490:16;47510:19;47521:7;47510:10;:19::i;:::-;47374:155;;;;;;;;;;;;;;47558:28;47578:7;47558;:15;47566:6;47558:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;47540:7;:15;47548:6;47540:15;;;;;;;;;;;;;;;:46;;;;47618:39;47641:15;47618:7;:18;47626:9;47618:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47597:7;:18;47605:9;47597:18;;;;;;;;;;;;;;;:60;;;;47689:39;47712:15;47689:7;:18;47697:9;47689:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47668:7;:18;47676:9;47668:18;;;;;;;;;;;;;;;:60;;;;47750:26;47765:10;47750:14;:26::i;:::-;47787:22;47800:8;47787:12;:22::i;:::-;47820:23;47832:4;47838;47820:11;:23::i;:::-;47876:9;47859:44;;47868:6;47859:44;;;47887:15;47859:44;;;;;;:::i;:::-;;;;;;;;47274:637;;;;;;;;;;:::o;46713:553::-;46812:15;46829:23;46854:12;46868:23;46893:12;46907:18;46927:16;46947:19;46958:7;46947:10;:19::i;:::-;46811:155;;;;;;;;;;;;;;46995:28;47015:7;46995;:15;47003:6;46995:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;46977:7;:15;46985:6;46977:15;;;;;;;;;;;;;;;:46;;;;47055:39;47078:15;47055:7;:18;47063:9;47055:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;47034:7;:18;47042:9;47034:18;;;;;;;;;;;;;;;:60;;;;47105:26;47120:10;47105:14;:26::i;:::-;47142:22;47155:8;47142:12;:22::i;:::-;47175:23;47187:4;47193;47175:11;:23::i;:::-;47231:9;47214:44;;47223:6;47214:44;;;47242:15;47214:44;;;;;;:::i;:::-;;;;;;;;46713:553;;;;;;;;;;:::o;35513:693::-;35616:15;35633:23;35658:12;35672:23;35697:12;35711:18;35731:16;35751:19;35762:7;35751:10;:19::i;:::-;35615:155;;;;;;;;;;;;;;35799:28;35819:7;35799;:15;35807:6;35799:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35781:7;:15;35789:6;35781:15;;;;;;;;;;;;;;;:46;;;;35856:28;35876:7;35856;:15;35864:6;35856:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35838:7;:15;35846:6;35838:15;;;;;;;;;;;;;;;:46;;;;35916:39;35939:15;35916:7;:18;35924:9;35916:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35895:7;:18;35903:9;35895:18;;;;;;;;;;;;;;;:60;;;;35987:39;36010:15;35987:7;:18;35995:9;35987:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35966:7;:18;35974:9;35966:18;;;;;;;;;;;;;;;:60;;;;36045:26;36060:10;36045:14;:26::i;:::-;36082:22;36095:8;36082:12;:22::i;:::-;36115:23;36127:4;36133;36115:11;:23::i;:::-;36171:9;36154:44;;36163:6;36154:44;;;36182:15;36154:44;;;;;;:::i;:::-;;;;;;;;35513:693;;;;;;;;;;:::o;41209:169::-;41263:15;;41253:7;:25;;;;41303:19;;41289:11;:33;;;;41349:21;;41333:13;:37;;;;41209:169::o;40367:154::-;40431:7;40458:55;40497:5;40458:20;40470:7;;40458;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;40451:62;;40367:154;;;:::o;40699:166::-;40769:7;40796:61;40841:5;40796:26;40808:13;;40796:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;40789:68;;40699:166;;;:::o;40529:162::-;40597:7;40624:59;40667:5;40624:24;40636:11;;40624:7;:11;;:24;;;;:::i;:::-;:28;;:59;;;;:::i;:::-;40617:66;;40529:162;;;:::o;39605:355::-;39668:19;39691:10;:8;:10::i;:::-;39668:33;;39712:18;39733:27;39748:11;39733:10;:14;;:27;;;;:::i;:::-;39712:48;;39796:38;39823:10;39796:7;:22;39812:4;39796:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39771:7;:22;39787:4;39771:22;;;;;;;;;;;;;;;:63;;;;39848:11;:26;39868:4;39848:26;;;;;;;;;;;;;;;;;;;;;;;;;39845:107;;;39914:38;39941:10;39914:7;:22;39930:4;39914:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;39889:7;:22;39905:4;39889:22;;;;;;;;;;;;;;;:63;;;;39845:107;39605:355;;;:::o;39972:383::-;40031:19;40054:10;:8;:10::i;:::-;40031:33;;40075:16;40094:25;40107:11;40094:8;:12;;:25;;;;:::i;:::-;40075:44;;40163;40198:8;40163:7;:30;40171:21;;;;;;;;;;;40163:30;;;;;;;;;;;;;;;;:34;;:44;;;;:::i;:::-;40130:7;:30;40138:21;;;;;;;;;;;40130:30;;;;;;;;;;;;;;;:77;;;;40221:11;:34;40233:21;;;;;;;;;;;40221:34;;;;;;;;;;;;;;;;;;;;;;;;;40218:129;;;40303:44;40338:8;40303:7;:30;40311:21;;;;;;;;;;;40303:30;;;;;;;;;;;;;;;;:34;;:44;;;;:::i;:::-;40270:7;:30;40278:21;;;;;;;;;;;40270:30;;;;;;;;;;;;;;;:77;;;;40218:129;39972:383;;;:::o;37279:147::-;37357:17;37369:4;37357:7;;:11;;:17;;;;:::i;:::-;37347:7;:27;;;;37398:20;37413:4;37398:10;;:14;;:20;;;;:::i;:::-;37385:10;:33;;;;37279:147;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;344:5;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:143::-;642:5;673:6;667:13;658:22;;689:33;716:5;689:33;:::i;:::-;648:80;;;;:::o;734:262::-;793:6;842:2;830:9;821:7;817:23;813:32;810:2;;;858:1;855;848:12;810:2;901:1;926:53;971:7;962:6;951:9;947:22;926:53;:::i;:::-;916:63;;872:117;800:196;;;;:::o;1002:284::-;1072:6;1121:2;1109:9;1100:7;1096:23;1092:32;1089:2;;;1137:1;1134;1127:12;1089:2;1180:1;1205:64;1261:7;1252:6;1241:9;1237:22;1205:64;:::i;:::-;1195:74;;1151:128;1079:207;;;;:::o;1292:407::-;1360:6;1368;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1433:1;1430;1423:12;1385:2;1476:1;1501:53;1546:7;1537:6;1526:9;1522:22;1501:53;:::i;:::-;1491:63;;1447:117;1603:2;1629:53;1674:7;1665:6;1654:9;1650:22;1629:53;:::i;:::-;1619:63;;1574:118;1375:324;;;;;:::o;1705:552::-;1782:6;1790;1798;1847:2;1835:9;1826:7;1822:23;1818:32;1815:2;;;1863:1;1860;1853:12;1815:2;1906:1;1931:53;1976:7;1967:6;1956:9;1952:22;1931:53;:::i;:::-;1921:63;;1877:117;2033:2;2059:53;2104:7;2095:6;2084:9;2080:22;2059:53;:::i;:::-;2049:63;;2004:118;2161:2;2187:53;2232:7;2223:6;2212:9;2208:22;2187:53;:::i;:::-;2177:63;;2132:118;1805:452;;;;;:::o;2263:407::-;2331:6;2339;2388:2;2376:9;2367:7;2363:23;2359:32;2356:2;;;2404:1;2401;2394:12;2356:2;2447:1;2472:53;2517:7;2508:6;2497:9;2493:22;2472:53;:::i;:::-;2462:63;;2418:117;2574:2;2600:53;2645:7;2636:6;2625:9;2621:22;2600:53;:::i;:::-;2590:63;;2545:118;2346:324;;;;;:::o;2676:256::-;2732:6;2781:2;2769:9;2760:7;2756:23;2752:32;2749:2;;;2797:1;2794;2787:12;2749:2;2840:1;2865:50;2907:7;2898:6;2887:9;2883:22;2865:50;:::i;:::-;2855:60;;2811:114;2739:193;;;;:::o;2938:262::-;2997:6;3046:2;3034:9;3025:7;3021:23;3017:32;3014:2;;;3062:1;3059;3052:12;3014:2;3105:1;3130:53;3175:7;3166:6;3155:9;3151:22;3130:53;:::i;:::-;3120:63;;3076:117;3004:196;;;;:::o;3206:401::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:2;;;3344:1;3341;3334:12;3296:2;3387:1;3412:53;3457:7;3448:6;3437:9;3433:22;3412:53;:::i;:::-;3402:63;;3358:117;3514:2;3540:50;3582:7;3573:6;3562:9;3558:22;3540:50;:::i;:::-;3530:60;;3485:115;3286:321;;;;;:::o;3613:596::-;3701:6;3709;3717;3766:2;3754:9;3745:7;3741:23;3737:32;3734:2;;;3782:1;3779;3772:12;3734:2;3825:1;3850:64;3906:7;3897:6;3886:9;3882:22;3850:64;:::i;:::-;3840:74;;3796:128;3963:2;3989:64;4045:7;4036:6;4025:9;4021:22;3989:64;:::i;:::-;3979:74;;3934:129;4102:2;4128:64;4184:7;4175:6;4164:9;4160:22;4128:64;:::i;:::-;4118:74;;4073:129;3724:485;;;;;:::o;4215:179::-;4284:10;4305:46;4347:3;4339:6;4305:46;:::i;:::-;4383:4;4378:3;4374:14;4360:28;;4295:99;;;;:::o;4400:108::-;4477:24;4495:5;4477:24;:::i;:::-;4472:3;4465:37;4455:53;;:::o;4514:118::-;4601:24;4619:5;4601:24;:::i;:::-;4596:3;4589:37;4579:53;;:::o;4668:732::-;4787:3;4816:54;4864:5;4816:54;:::i;:::-;4886:86;4965:6;4960:3;4886:86;:::i;:::-;4879:93;;4996:56;5046:5;4996:56;:::i;:::-;5075:7;5106:1;5091:284;5116:6;5113:1;5110:13;5091:284;;;5192:6;5186:13;5219:63;5278:3;5263:13;5219:63;:::i;:::-;5212:70;;5305:60;5358:6;5305:60;:::i;:::-;5295:70;;5151:224;5138:1;5135;5131:9;5126:14;;5091:284;;;5095:14;5391:3;5384:10;;4792:608;;;;;;;:::o;5406:109::-;5487:21;5502:5;5487:21;:::i;:::-;5482:3;5475:34;5465:50;;:::o;5521:185::-;5635:64;5693:5;5635:64;:::i;:::-;5630:3;5623:77;5613:93;;:::o;5712:147::-;5807:45;5846:5;5807:45;:::i;:::-;5802:3;5795:58;5785:74;;:::o;5865:364::-;5953:3;5981:39;6014:5;5981:39;:::i;:::-;6036:71;6100:6;6095:3;6036:71;:::i;:::-;6029:78;;6116:52;6161:6;6156:3;6149:4;6142:5;6138:16;6116:52;:::i;:::-;6193:29;6215:6;6193:29;:::i;:::-;6188:3;6184:39;6177:46;;5957:272;;;;;:::o;6235:366::-;6377:3;6398:67;6462:2;6457:3;6398:67;:::i;:::-;6391:74;;6474:93;6563:3;6474:93;:::i;:::-;6592:2;6587:3;6583:12;6576:19;;6381:220;;;:::o;6607:366::-;6749:3;6770:67;6834:2;6829:3;6770:67;:::i;:::-;6763:74;;6846:93;6935:3;6846:93;:::i;:::-;6964:2;6959:3;6955:12;6948:19;;6753:220;;;:::o;6979:366::-;7121:3;7142:67;7206:2;7201:3;7142:67;:::i;:::-;7135:74;;7218:93;7307:3;7218:93;:::i;:::-;7336:2;7331:3;7327:12;7320:19;;7125:220;;;:::o;7351:366::-;7493:3;7514:67;7578:2;7573:3;7514:67;:::i;:::-;7507:74;;7590:93;7679:3;7590:93;:::i;:::-;7708:2;7703:3;7699:12;7692:19;;7497:220;;;:::o;7723:366::-;7865:3;7886:67;7950:2;7945:3;7886:67;:::i;:::-;7879:74;;7962:93;8051:3;7962:93;:::i;:::-;8080:2;8075:3;8071:12;8064:19;;7869:220;;;:::o;8095:366::-;8237:3;8258:67;8322:2;8317:3;8258:67;:::i;:::-;8251:74;;8334:93;8423:3;8334:93;:::i;:::-;8452:2;8447:3;8443:12;8436:19;;8241:220;;;:::o;8467:366::-;8609:3;8630:67;8694:2;8689:3;8630:67;:::i;:::-;8623:74;;8706:93;8795:3;8706:93;:::i;:::-;8824:2;8819:3;8815:12;8808:19;;8613:220;;;:::o;8839:366::-;8981:3;9002:67;9066:2;9061:3;9002:67;:::i;:::-;8995:74;;9078:93;9167:3;9078:93;:::i;:::-;9196:2;9191:3;9187:12;9180:19;;8985:220;;;:::o;9211:366::-;9353:3;9374:67;9438:2;9433:3;9374:67;:::i;:::-;9367:74;;9450:93;9539:3;9450:93;:::i;:::-;9568:2;9563:3;9559:12;9552:19;;9357:220;;;:::o;9583:366::-;9725:3;9746:67;9810:2;9805:3;9746:67;:::i;:::-;9739:74;;9822:93;9911:3;9822:93;:::i;:::-;9940:2;9935:3;9931:12;9924:19;;9729:220;;;:::o;9955:366::-;10097:3;10118:67;10182:2;10177:3;10118:67;:::i;:::-;10111:74;;10194:93;10283:3;10194:93;:::i;:::-;10312:2;10307:3;10303:12;10296:19;;10101:220;;;:::o;10327:366::-;10469:3;10490:67;10554:2;10549:3;10490:67;:::i;:::-;10483:74;;10566:93;10655:3;10566:93;:::i;:::-;10684:2;10679:3;10675:12;10668:19;;10473:220;;;:::o;10699:366::-;10841:3;10862:67;10926:2;10921:3;10862:67;:::i;:::-;10855:74;;10938:93;11027:3;10938:93;:::i;:::-;11056:2;11051:3;11047:12;11040:19;;10845:220;;;:::o;11071:118::-;11158:24;11176:5;11158:24;:::i;:::-;11153:3;11146:37;11136:53;;:::o;11195:112::-;11278:22;11294:5;11278:22;:::i;:::-;11273:3;11266:35;11256:51;;:::o;11313:222::-;11406:4;11444:2;11433:9;11429:18;11421:26;;11457:71;11525:1;11514:9;11510:17;11501:6;11457:71;:::i;:::-;11411:124;;;;:::o;11541:807::-;11790:4;11828:3;11817:9;11813:19;11805:27;;11842:71;11910:1;11899:9;11895:17;11886:6;11842:71;:::i;:::-;11923:72;11991:2;11980:9;11976:18;11967:6;11923:72;:::i;:::-;12005:80;12081:2;12070:9;12066:18;12057:6;12005:80;:::i;:::-;12095;12171:2;12160:9;12156:18;12147:6;12095:80;:::i;:::-;12185:73;12253:3;12242:9;12238:19;12229:6;12185:73;:::i;:::-;12268;12336:3;12325:9;12321:19;12312:6;12268:73;:::i;:::-;11795:553;;;;;;;;;:::o;12354:210::-;12441:4;12479:2;12468:9;12464:18;12456:26;;12492:65;12554:1;12543:9;12539:17;12530:6;12492:65;:::i;:::-;12446:118;;;;:::o;12570:276::-;12690:4;12728:2;12717:9;12713:18;12705:26;;12741:98;12836:1;12825:9;12821:17;12812:6;12741:98;:::i;:::-;12695:151;;;;:::o;12852:313::-;12965:4;13003:2;12992:9;12988:18;12980:26;;13052:9;13046:4;13042:20;13038:1;13027:9;13023:17;13016:47;13080:78;13153:4;13144:6;13080:78;:::i;:::-;13072:86;;12970:195;;;;:::o;13171:419::-;13337:4;13375:2;13364:9;13360:18;13352:26;;13424:9;13418:4;13414:20;13410:1;13399:9;13395:17;13388:47;13452:131;13578:4;13452:131;:::i;:::-;13444:139;;13342:248;;;:::o;13596:419::-;13762:4;13800:2;13789:9;13785:18;13777:26;;13849:9;13843:4;13839:20;13835:1;13824:9;13820:17;13813:47;13877:131;14003:4;13877:131;:::i;:::-;13869:139;;13767:248;;;:::o;14021:419::-;14187:4;14225:2;14214:9;14210:18;14202:26;;14274:9;14268:4;14264:20;14260:1;14249:9;14245:17;14238:47;14302:131;14428:4;14302:131;:::i;:::-;14294:139;;14192:248;;;:::o;14446:419::-;14612:4;14650:2;14639:9;14635:18;14627:26;;14699:9;14693:4;14689:20;14685:1;14674:9;14670:17;14663:47;14727:131;14853:4;14727:131;:::i;:::-;14719:139;;14617:248;;;:::o;14871:419::-;15037:4;15075:2;15064:9;15060:18;15052:26;;15124:9;15118:4;15114:20;15110:1;15099:9;15095:17;15088:47;15152:131;15278:4;15152:131;:::i;:::-;15144:139;;15042:248;;;:::o;15296:419::-;15462:4;15500:2;15489:9;15485:18;15477:26;;15549:9;15543:4;15539:20;15535:1;15524:9;15520:17;15513:47;15577:131;15703:4;15577:131;:::i;:::-;15569:139;;15467:248;;;:::o;15721:419::-;15887:4;15925:2;15914:9;15910:18;15902:26;;15974:9;15968:4;15964:20;15960:1;15949:9;15945:17;15938:47;16002:131;16128:4;16002:131;:::i;:::-;15994:139;;15892:248;;;:::o;16146:419::-;16312:4;16350:2;16339:9;16335:18;16327:26;;16399:9;16393:4;16389:20;16385:1;16374:9;16370:17;16363:47;16427:131;16553:4;16427:131;:::i;:::-;16419:139;;16317:248;;;:::o;16571:419::-;16737:4;16775:2;16764:9;16760:18;16752:26;;16824:9;16818:4;16814:20;16810:1;16799:9;16795:17;16788:47;16852:131;16978:4;16852:131;:::i;:::-;16844:139;;16742:248;;;:::o;16996:419::-;17162:4;17200:2;17189:9;17185:18;17177:26;;17249:9;17243:4;17239:20;17235:1;17224:9;17220:17;17213:47;17277:131;17403:4;17277:131;:::i;:::-;17269:139;;17167:248;;;:::o;17421:419::-;17587:4;17625:2;17614:9;17610:18;17602:26;;17674:9;17668:4;17664:20;17660:1;17649:9;17645:17;17638:47;17702:131;17828:4;17702:131;:::i;:::-;17694:139;;17592:248;;;:::o;17846:419::-;18012:4;18050:2;18039:9;18035:18;18027:26;;18099:9;18093:4;18089:20;18085:1;18074:9;18070:17;18063:47;18127:131;18253:4;18127:131;:::i;:::-;18119:139;;18017:248;;;:::o;18271:419::-;18437:4;18475:2;18464:9;18460:18;18452:26;;18524:9;18518:4;18514:20;18510:1;18499:9;18495:17;18488:47;18552:131;18678:4;18552:131;:::i;:::-;18544:139;;18442:248;;;:::o;18696:222::-;18789:4;18827:2;18816:9;18812:18;18804:26;;18840:71;18908:1;18897:9;18893:17;18884:6;18840:71;:::i;:::-;18794:124;;;;:::o;18924:831::-;19187:4;19225:3;19214:9;19210:19;19202:27;;19239:71;19307:1;19296:9;19292:17;19283:6;19239:71;:::i;:::-;19320:80;19396:2;19385:9;19381:18;19372:6;19320:80;:::i;:::-;19447:9;19441:4;19437:20;19432:2;19421:9;19417:18;19410:48;19475:108;19578:4;19569:6;19475:108;:::i;:::-;19467:116;;19593:72;19661:2;19650:9;19646:18;19637:6;19593:72;:::i;:::-;19675:73;19743:3;19732:9;19728:19;19719:6;19675:73;:::i;:::-;19192:563;;;;;;;;:::o;19761:442::-;19910:4;19948:2;19937:9;19933:18;19925:26;;19961:71;20029:1;20018:9;20014:17;20005:6;19961:71;:::i;:::-;20042:72;20110:2;20099:9;20095:18;20086:6;20042:72;:::i;:::-;20124;20192:2;20181:9;20177:18;20168:6;20124:72;:::i;:::-;19915:288;;;;;;:::o;20209:214::-;20298:4;20336:2;20325:9;20321:18;20313:26;;20349:67;20413:1;20402:9;20398:17;20389:6;20349:67;:::i;:::-;20303:120;;;;:::o;20429:132::-;20496:4;20519:3;20511:11;;20549:4;20544:3;20540:14;20532:22;;20501:60;;;:::o;20567:114::-;20634:6;20668:5;20662:12;20652:22;;20641:40;;;:::o;20687:99::-;20739:6;20773:5;20767:12;20757:22;;20746:40;;;:::o;20792:113::-;20862:4;20894;20889:3;20885:14;20877:22;;20867:38;;;:::o;20911:184::-;21010:11;21044:6;21039:3;21032:19;21084:4;21079:3;21075:14;21060:29;;21022:73;;;;:::o;21101:169::-;21185:11;21219:6;21214:3;21207:19;21259:4;21254:3;21250:14;21235:29;;21197:73;;;;:::o;21276:305::-;21316:3;21335:20;21353:1;21335:20;:::i;:::-;21330:25;;21369:20;21387:1;21369:20;:::i;:::-;21364:25;;21523:1;21455:66;21451:74;21448:1;21445:81;21442:2;;;21529:18;;:::i;:::-;21442:2;21573:1;21570;21566:9;21559:16;;21320:261;;;;:::o;21587:185::-;21627:1;21644:20;21662:1;21644:20;:::i;:::-;21639:25;;21678:20;21696:1;21678:20;:::i;:::-;21673:25;;21717:1;21707:2;;21722:18;;:::i;:::-;21707:2;21764:1;21761;21757:9;21752:14;;21629:143;;;;:::o;21778:348::-;21818:7;21841:20;21859:1;21841:20;:::i;:::-;21836:25;;21875:20;21893:1;21875:20;:::i;:::-;21870:25;;22063:1;21995:66;21991:74;21988:1;21985:81;21980:1;21973:9;21966:17;21962:105;21959:2;;;22070:18;;:::i;:::-;21959:2;22118:1;22115;22111:9;22100:20;;21826:300;;;;:::o;22132:191::-;22172:4;22192:20;22210:1;22192:20;:::i;:::-;22187:25;;22226:20;22244:1;22226:20;:::i;:::-;22221:25;;22265:1;22262;22259:8;22256:2;;;22270:18;;:::i;:::-;22256:2;22315:1;22312;22308:9;22300:17;;22177:146;;;;:::o;22329:96::-;22366:7;22395:24;22413:5;22395:24;:::i;:::-;22384:35;;22374:51;;;:::o;22431:90::-;22465:7;22508:5;22501:13;22494:21;22483:32;;22473:48;;;:::o;22527:126::-;22564:7;22604:42;22597:5;22593:54;22582:65;;22572:81;;;:::o;22659:77::-;22696:7;22725:5;22714:16;;22704:32;;;:::o;22742:86::-;22777:7;22817:4;22810:5;22806:16;22795:27;;22785:43;;;:::o;22834:180::-;22911:9;22944:64;23002:5;22944:64;:::i;:::-;22931:77;;22921:93;;;:::o;23020:140::-;23097:9;23130:24;23148:5;23130:24;:::i;:::-;23117:37;;23107:53;;;:::o;23166:121::-;23224:9;23257:24;23275:5;23257:24;:::i;:::-;23244:37;;23234:53;;;:::o;23293:307::-;23361:1;23371:113;23385:6;23382:1;23379:13;23371:113;;;23470:1;23465:3;23461:11;23455:18;23451:1;23446:3;23442:11;23435:39;23407:2;23404:1;23400:10;23395:15;;23371:113;;;23502:6;23499:1;23496:13;23493:2;;;23582:1;23573:6;23568:3;23564:16;23557:27;23493:2;23342:258;;;;:::o;23606:320::-;23650:6;23687:1;23681:4;23677:12;23667:22;;23734:1;23728:4;23724:12;23755:18;23745:2;;23811:4;23803:6;23799:17;23789:27;;23745:2;23873;23865:6;23862:14;23842:18;23839:38;23836:2;;;23892:18;;:::i;:::-;23836:2;23657:269;;;;:::o;23932:233::-;23971:3;23994:24;24012:5;23994:24;:::i;:::-;23985:33;;24040:66;24033:5;24030:77;24027:2;;;24110:18;;:::i;:::-;24027:2;24157:1;24150:5;24146:13;24139:20;;23975:190;;;:::o;24171:180::-;24219:77;24216:1;24209:88;24316:4;24313:1;24306:15;24340:4;24337:1;24330:15;24357:180;24405:77;24402:1;24395:88;24502:4;24499:1;24492:15;24526:4;24523:1;24516:15;24543:180;24591:77;24588:1;24581:88;24688:4;24685:1;24678:15;24712:4;24709:1;24702:15;24729:102;24770:6;24821:2;24817:7;24812:2;24805:5;24801:14;24797:28;24787:38;;24777:54;;;:::o;24837:222::-;24977:34;24973:1;24965:6;24961:14;24954:58;25046:5;25041:2;25033:6;25029:15;25022:30;24943:116;:::o;25065:229::-;25205:34;25201:1;25193:6;25189:14;25182:58;25274:12;25269:2;25261:6;25257:15;25250:37;25171:123;:::o;25300:225::-;25440:34;25436:1;25428:6;25424:14;25417:58;25509:8;25504:2;25496:6;25492:15;25485:33;25406:119;:::o;25531:221::-;25671:34;25667:1;25659:6;25655:14;25648:58;25740:4;25735:2;25727:6;25723:15;25716:29;25637:115;:::o;25758:177::-;25898:29;25894:1;25886:6;25882:14;25875:53;25864:71;:::o;25941:177::-;26081:29;26077:1;26069:6;26065:14;26058:53;26047:71;:::o;26124:181::-;26264:33;26260:1;26252:6;26248:14;26241:57;26230:75;:::o;26311:227::-;26451:34;26447:1;26439:6;26435:14;26428:58;26520:10;26515:2;26507:6;26503:15;26496:35;26417:121;:::o;26544:182::-;26684:34;26680:1;26672:6;26668:14;26661:58;26650:76;:::o;26732:228::-;26872:34;26868:1;26860:6;26856:14;26849:58;26941:11;26936:2;26928:6;26924:15;26917:36;26838:122;:::o;26966:224::-;27106:34;27102:1;27094:6;27090:14;27083:58;27175:7;27170:2;27162:6;27158:15;27151:32;27072:118;:::o;27196:223::-;27336:34;27332:1;27324:6;27320:14;27313:58;27405:6;27400:2;27392:6;27388:15;27381:31;27302:117;:::o;27425:231::-;27565:34;27561:1;27553:6;27549:14;27542:58;27634:14;27629:2;27621:6;27617:15;27610:39;27531:125;:::o;27662:122::-;27735:24;27753:5;27735:24;:::i;:::-;27728:5;27725:35;27715:2;;27774:1;27771;27764:12;27715:2;27705:79;:::o;27790:116::-;27860:21;27875:5;27860:21;:::i;:::-;27853:5;27850:32;27840:2;;27896:1;27893;27886:12;27840:2;27830:76;:::o;27912:122::-;27985:24;28003:5;27985:24;:::i;:::-;27978:5;27975:35;27965:2;;28024:1;28021;28014:12;27965:2;27955:79;:::o
Swarm Source
ipfs://0d90ab6140b41404e5a5b4c614b4d40aa4ad0b13f90b44727e8940f3e0ed55dd
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.