BEP-20
Overview
Max Total Supply
1,000,000,000,000,000BabyShibaInu
Holders
115,916 (0.00%)
Market
Price
$0.00 @ 0.000000 BNB (-2.73%)
Onchain Market Cap
$6,485,000.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 9 Decimals)
Balance
37,132,453.136399156 BabyShibaInuValue
$0.24 ( ~0.000345281605459937 BNB) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BabyShibaINu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-06-24 */ //BabyShibaToken v2! pragma solidity ^0.6.12; // SPDX-License-Identifier: No License interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract BabyShibaINu is Context , IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000 * 10**9 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Baby Shiba Inu"; string private _symbol = "BabyShibaInu"; uint8 private _decimals = 9; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 0; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public _burnFee = 0; uint256 private _previousBurnFee = _burnFee; uint256 public _devFee = 0; address public devWallet = 0xC60aa863ae29CEE687A0a5D2d5eEdAbbCaE038Be; //2% for marketing ,1% for giveaways uint256 private _previousDevFee = _devFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 10000 * 10**9 * 10**9; //1% of total supply uint256 private numTokensSellToAddToLiquidity = 2430 * 10**9 * 10**9; uint256 public _maxWalletToken = 30000 * 10**9 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); //v2 router // Create a pancake pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function 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 != 0x10ED43C718714eb63d5aA57B78B54704E256024E, 'We can not exclude Pancake router.'); //v2 require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } //to recieve BNB 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 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**2); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _burnFee = _previousBurnFee; _devFee = _previousDevFee; _taxFee = 0; _liquidityFee = 0; _burnFee = 0; _devFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _burnFee = _previousBurnFee; _devFee = _previousDevFee; } 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"); // 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)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount); } 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) private { if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){ removeAllFee(); } else if(recipient == uniswapV2Pair){ require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } else{ require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); uint256 contractBalanceRecepient = balanceOf(recipient); require(contractBalanceRecepient + amount <= _maxWalletToken, "Exceeds maximum wallet token amount"); } //Calculate burn amount and dev amount uint256 burnAmt = amount.mul(_burnFee).div(100); uint256 devAmt = amount.mul(_devFee).div(100); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(devAmt))); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(devAmt))); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(devAmt))); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(devAmt))); } else { _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(devAmt))); } //Temporarily remove fees to transfer to burn address and dev wallet _taxFee = 0; _liquidityFee = 0; //Send transfers to burn and dev wallet _transferStandard(sender, devWallet, devAmt); //Restore tax and liquidity fees _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } //Call this function after finalizing the presale on DxSale function enableAllFees() external onlyOwner() { _taxFee = 2; _previousTaxFee = _taxFee; _liquidityFee = 6; _previousLiquidityFee = _liquidityFee; _burnFee = 0; _previousBurnFee = _taxFee; _devFee = 3; _previousDevFee = _devFee; } function setDevWallet(address newWallet) external onlyOwner() { devWallet = newWallet; } function setMaxTxPercent(uint256 maxTxPercent) public { require(maxTxPercent > 0, "Cannot set transaction amount less than 1 percent!"); _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setMaxWalletPercent(uint256 maxWalletPercent) public { require(maxWalletPercent > 0, "Cannot set transaction amount less than 1 percent!"); _maxWalletToken = _tTotal.mul(maxWalletPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } }
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":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devFee","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":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAllFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletPercent","type":"uint256"}],"name":"setMaxWalletPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405269d3c21bcecceda1000000600955600954600019816200002057fe5b0660001903600a556040518060400160405280600e81526020017f4261627920536869626120496e75000000000000000000000000000000000000815250600c90805190602001906200007592919062000677565b506040518060400160405280600c81526020017f426162795368696261496e750000000000000000000000000000000000000000815250600d9080519060200190620000c392919062000677565b506009600e60006101000a81548160ff021916908360ff1602179055506000600f55600f5460105560006011556011546012556000601355601354601455600060155573c60aa863ae29cee687a0a5d2d5eedabbcae038be601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506015546017556001601860016101000a81548160ff02191690831515021790555069021e19e0c9bab24000006019556883bb063d4ee7380000601a5569065a4da25d3016c00000601b55348015620001b257600080fd5b506000620001c56200064660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a54600360006200027a6200064660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060007310ed43c718714eb63d5aa57b78b54704e256024e90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031857600080fd5b505afa1580156200032d573d6000803e3d6000fd5b505050506040513d60208110156200034457600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003b857600080fd5b505afa158015620003cd573d6000803e3d6000fd5b505050506040513d6020811015620003e457600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200045f57600080fd5b505af115801562000474573d6000803e3d6000fd5b505050506040513d60208110156200048b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506001600660006200051f6200064e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005d86200064660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200071d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006ba57805160ff1916838001178555620006eb565b82800160010185558215620006eb579182015b82811115620006ea578251825591602001919060010190620006cd565b5b509050620006fa9190620006fe565b5090565b5b8082111562000719576000816000905550600101620006ff565b5090565b60805160601c60a05160601c6153e56200076a600039806119965280613140528061364d525080610f3a5280614197528061428352806142aa52806143b552806143dc52506153e56000f3fe6080604052600436106102555760003560e01c8063715018a611610139578063a9059cbb116100b6578063d543dbeb1161007a578063d543dbeb14610cba578063dd46706414610cf5578063dd62ed3e14610d30578063ea2f0b3714610db5578063f2fde38b14610e06578063ffc7863514610e575761025c565b8063a9059cbb14610b8b578063aa45026b14610bfc578063b6c5232414610c27578063c0b0fda214610c52578063c49b9a8014610c7d5761025c565b80638da5cb5b116100fd5780638da5cb5b146109f15780638ea5220f14610a3257806395d89b4114610a73578063a457c2d714610b03578063a69df4b514610b745761025c565b8063715018a6146108e257806378109e54146108f95780637d1db4a51461092457806382bf293c1461094f57806388f820201461098a5761025c565b806339509351116101d257806349bd5a5e1161019657806349bd5a5e1461072c5780634a74bb021461076d57806352390c021461079a5780635342acb4146107eb5780636bc87c3a1461085257806370a082311461087d5761025c565b806339509351146105a95780633b124fe71461061a5780633bd5d17314610645578063437823ec146106805780634549b039146106d15761025c565b80631f53ac02116102195780631f53ac02146103f957806323b872dd1461044a5780632d838119146104db578063313ce5671461052a5780633685d419146105585761025c565b806306fdde0314610261578063095ea7b3146102f157806313114a9d146103625780631694505e1461038d57806318160ddd146103ce5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610e6e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102b657808201518184015260208101905061029b565b50505050905090810190601f1680156102e35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fd57600080fd5b5061034a6004803603604081101561031457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f10565b60405180821515815260200191505060405180910390f35b34801561036e57600080fd5b50610377610f2e565b6040518082815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f38565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103da57600080fd5b506103e3610f5c565b6040518082815260200191505060405180910390f35b34801561040557600080fd5b506104486004803603602081101561041c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f66565b005b34801561045657600080fd5b506104c36004803603606081101561046d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611072565b60405180821515815260200191505060405180910390f35b3480156104e757600080fd5b50610514600480360360208110156104fe57600080fd5b810190808035906020019092919050505061114b565b6040518082815260200191505060405180910390f35b34801561053657600080fd5b5061053f6111cf565b604051808260ff16815260200191505060405180910390f35b34801561056457600080fd5b506105a76004803603602081101561057b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e6565b005b3480156105b557600080fd5b50610602600480360360408110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611570565b60405180821515815260200191505060405180910390f35b34801561062657600080fd5b5061062f611623565b6040518082815260200191505060405180910390f35b34801561065157600080fd5b5061067e6004803603602081101561066857600080fd5b8101908080359060200190929190505050611629565b005b34801561068c57600080fd5b506106cf600480360360208110156106a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ba565b005b3480156106dd57600080fd5b50610716600480360360408110156106f457600080fd5b81019080803590602001909291908035151590602001909291905050506118dd565b6040518082815260200191505060405180910390f35b34801561073857600080fd5b50610741611994565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077957600080fd5b506107826119b8565b60405180821515815260200191505060405180910390f35b3480156107a657600080fd5b506107e9600480360360208110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119cb565b005b3480156107f757600080fd5b5061083a6004803603602081101561080e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7e565b60405180821515815260200191505060405180910390f35b34801561085e57600080fd5b50610867611dd4565b6040518082815260200191505060405180910390f35b34801561088957600080fd5b506108cc600480360360208110156108a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dda565b6040518082815260200191505060405180910390f35b3480156108ee57600080fd5b506108f7611ec5565b005b34801561090557600080fd5b5061090e61204b565b6040518082815260200191505060405180910390f35b34801561093057600080fd5b50610939612051565b6040518082815260200191505060405180910390f35b34801561095b57600080fd5b506109886004803603602081101561097257600080fd5b8101908080359060200190929190505050612057565b005b34801561099657600080fd5b506109d9600480360360208110156109ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120e1565b60405180821515815260200191505060405180910390f35b3480156109fd57600080fd5b50610a06612137565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3e57600080fd5b50610a47612160565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a7f57600080fd5b50610a88612186565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ac8578082015181840152602081019050610aad565b50505050905090810190601f168015610af55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b0f57600080fd5b50610b5c60048036036040811015610b2657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612228565b60405180821515815260200191505060405180910390f35b348015610b8057600080fd5b50610b896122f5565b005b348015610b9757600080fd5b50610be460048036036040811015610bae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612512565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c11612530565b6040518082815260200191505060405180910390f35b348015610c3357600080fd5b50610c3c612536565b6040518082815260200191505060405180910390f35b348015610c5e57600080fd5b50610c67612540565b6040518082815260200191505060405180910390f35b348015610c8957600080fd5b50610cb860048036036020811015610ca057600080fd5b81019080803515159060200190929190505050612546565b005b348015610cc657600080fd5b50610cf360048036036020811015610cdd57600080fd5b8101908080359060200190929190505050612664565b005b348015610d0157600080fd5b50610d2e60048036036020811015610d1857600080fd5b81019080803590602001909291905050506126ee565b005b348015610d3c57600080fd5b50610d9f60048036036040811015610d5357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128df565b6040518082815260200191505060405180910390f35b348015610dc157600080fd5b50610e0460048036036020811015610dd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612966565b005b348015610e1257600080fd5b50610e5560048036036020811015610e2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a89565b005b348015610e6357600080fd5b50610e6c612c94565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f065780601f10610edb57610100808354040283529160200191610f06565b820191906000526020600020905b815481529060010190602001808311610ee957829003601f168201915b5050505050905090565b6000610f24610f1d612da2565b8484612daa565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b610f6e612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061107f848484612fa1565b6111408461108b612da2565b61113b8560405180606001604052806028815260200161528060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110f1612da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131cd9092919063ffffffff16565b612daa565b600190509392505050565b6000600a548211156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615170602a913960400191505060405180910390fd5b60006111b261328d565b90506111c781846132b890919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6111ee612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561156c578173ffffffffffffffffffffffffffffffffffffffff16600882815481106113a157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561155f576008600160088054905003815481106113fd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061143557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061152557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561156c565b8080600101915050611370565b5050565b600061161961157d612da2565b84611614856005600061158e612da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b612daa565b6001905092915050565b600f5481565b6000611633612da2565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061533c602c913960400191505060405180910390fd5b60006116e38361338a565b5050505050905061173c81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061179481600a546133e690919063ffffffff16565b600a819055506117af83600b5461330290919063ffffffff16565b600b81905550505050565b6117c2612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816119775760006119678461338a565b505050505090508091505061198e565b60006119828461338a565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601860019054906101000a900460ff1681565b6119d3612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061531a6022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611cc057611c7c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114b565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e7557600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611ec0565b611ebd600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114b565b90505b919050565b611ecd612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601b5481565b60195481565b600081116120b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061522d6032913960400191505060405180910390fd5b6120d860646120ca8360095461343090919063ffffffff16565b6132b890919063ffffffff16565b601b8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561221e5780601f106121f35761010080835404028352916020019161221e565b820191906000526020600020905b81548152906001019060200180831161220157829003601f168201915b5050505050905090565b60006122eb612235612da2565b846122e68560405180606001604052806025815260200161538b602591396005600061225f612da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131cd9092919063ffffffff16565b612daa565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153686023913960400191505060405180910390fd5b6002544211612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061252661251f612da2565b8484612fa1565b6001905092915050565b60155481565b6000600254905090565b60135481565b61254e612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600081116126bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061522d6032913960400191505060405180910390fd5b6126e560646126d78360095461343090919063ffffffff16565b6132b890919063ffffffff16565b60198190555050565b6126f6612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61296e612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612a91612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061519a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c9c612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600f81905550600f5460108190555060066011819055506011546012819055506000601381905550600f546014819055506003601581905550601554601781905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152f66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c06022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613027576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806152d16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061514d6023913960400191505060405180910390fd5b60008111613106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152a86029913960400191505060405180910390fd5b600061311130611dda565b90506000601a5482101590508080156131375750601860009054906101000a900460ff16155b801561318f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156131a75750601860019054906101000a900460ff165b156131bb57601a5491506131ba826134b6565b5b6131c6858585613598565b5050505050565b600083831115829061327a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561323f578082015181840152602081019050613224565b50505050905090810190601f16801561326c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061329a613cc7565b915091506132b181836132b890919063ffffffff16565b9250505090565b60006132fa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f58565b905092915050565b600080828401905083811015613380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006133a18a61401e565b92509250925060008060006133bf8d86866133ba61328d565b614078565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061342883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131cd565b905092915050565b60008083141561344357600090506134b0565b600082840290508284828161345457fe5b04146134ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061525f6021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff02191690831515021790555060006134e76002836132b890919063ffffffff16565b905060006134fe82846133e690919063ffffffff16565b9050600047905061350e83614101565b600061352382476133e690919063ffffffff16565b905061352f83826143af565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136395750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561364b57613646614500565b6137c7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ff576019548111156136fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806152056028913960400191505060405180910390fd5b6137c6565b60195481111561375a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806152056028913960400191505060405180910390fd5b600061376583611dda565b9050601b5482820111156137c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151e26023913960400191505060405180910390fd5b505b5b60006137f160646137e36013548561343090919063ffffffff16565b6132b890919063ffffffff16565b9050600061381d606461380f6015548661343090919063ffffffff16565b6132b890919063ffffffff16565b9050600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138c25750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138fb576138f685856138f1846138e387896133e690919063ffffffff16565b6133e690919063ffffffff16565b614565565b613bc2565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561399e5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d7576139d285856139cd846139bf87896133e690919063ffffffff16565b6133e690919063ffffffff16565b6147c5565b613bc1565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a7b5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ab457613aaf8585613aaa84613a9c87896133e690919063ffffffff16565b6133e690919063ffffffff16565b614a25565b613bc0565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613b565750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b8f57613b8a8585613b8584613b7787896133e690919063ffffffff16565b6133e690919063ffffffff16565b614bf0565b613bbf565b613bbe8585613bb984613bab87896133e690919063ffffffff16565b6133e690919063ffffffff16565b614a25565b5b5b5b5b6000600f819055506000601181905550613bff85601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683614a25565b601054600f81905550601254601181905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613cb25750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613cc057613cbf614ee5565b5b5050505050565b6000806000600a5490506000600954905060005b600880549050811015613f1b57826003600060088481548110613cfa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613de15750816004600060088481548110613d7957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613df857600a5460095494509450505050613f54565b613e816003600060088481548110613e0c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846133e690919063ffffffff16565b9250613f0c6004600060088481548110613e9757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836133e690919063ffffffff16565b91508080600101915050613cdb565b50613f33600954600a546132b890919063ffffffff16565b821015613f4b57600a54600954935093505050613f54565b81819350935050505b9091565b60008083118290614004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fc9578082015181840152602081019050613fae565b50505050905090810190601f168015613ff65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161401057fe5b049050809150509392505050565b60008060008061402d85614f0b565b9050600061403a86614f3c565b9050600061406382614055858a6133e690919063ffffffff16565b6133e690919063ffffffff16565b90508083839550955095505050509193909250565b600080600080614091858961343090919063ffffffff16565b905060006140a8868961343090919063ffffffff16565b905060006140bf878961343090919063ffffffff16565b905060006140e8826140da85876133e690919063ffffffff16565b6133e690919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561411b57600080fd5b5060405190808252806020026020018201604052801561414a5781602001602082028036833780820191505090505b509050308160008151811061415b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156141fb57600080fd5b505afa15801561420f573d6000803e3d6000fd5b505050506040513d602081101561422557600080fd5b81019080805190602001909291905050508160018151811061424357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142a8307f000000000000000000000000000000000000000000000000000000000000000084612daa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561436a57808201518184015260208101905061434f565b505050509050019650505050505050600060405180830381600087803b15801561439357600080fd5b505af11580156143a7573d6000803e3d6000fd5b505050505050565b6143da307f000000000000000000000000000000000000000000000000000000000000000084612daa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614424612137565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156144a957600080fd5b505af11580156144bd573d6000803e3d6000fd5b50505050506040513d60608110156144d457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f5414801561451457506000601154145b1561451e57614563565b601054600f819055506012546011819055506014546013819055506017546015819055506000600f819055506000601181905550600060138190555060006015819055505b565b6000806000806000806145778761338a565b9550955095509550955095506145d587600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466a86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146ff85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061474b81614f6d565b6147558483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806147d78761338a565b95509550955095509550955061483586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148ca83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061495f85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ab81614f6d565b6149b58483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614a378761338a565b955095509550955095509550614a9586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b2a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b7681614f6d565b614b808483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c028761338a565b955095509550955095509550614c6087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cf586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d8a83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e1f85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e6b81614f6d565b614e758483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550601454601381905550601754601581905550565b6000614f356064614f27600f548561343090919063ffffffff16565b6132b890919063ffffffff16565b9050919050565b6000614f666064614f586011548561343090919063ffffffff16565b6132b890919063ffffffff16565b9050919050565b6000614f7761328d565b90506000614f8e828461343090919063ffffffff16565b9050614fe281600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561510d576150c983600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61512782600a546133e690919063ffffffff16565b600a8190555061514281600b5461330290919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e20312070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205dc5313420d25c2cda8f5c39822f763be39d8226e04eb7e80483c9d31658a0be64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102555760003560e01c8063715018a611610139578063a9059cbb116100b6578063d543dbeb1161007a578063d543dbeb14610cba578063dd46706414610cf5578063dd62ed3e14610d30578063ea2f0b3714610db5578063f2fde38b14610e06578063ffc7863514610e575761025c565b8063a9059cbb14610b8b578063aa45026b14610bfc578063b6c5232414610c27578063c0b0fda214610c52578063c49b9a8014610c7d5761025c565b80638da5cb5b116100fd5780638da5cb5b146109f15780638ea5220f14610a3257806395d89b4114610a73578063a457c2d714610b03578063a69df4b514610b745761025c565b8063715018a6146108e257806378109e54146108f95780637d1db4a51461092457806382bf293c1461094f57806388f820201461098a5761025c565b806339509351116101d257806349bd5a5e1161019657806349bd5a5e1461072c5780634a74bb021461076d57806352390c021461079a5780635342acb4146107eb5780636bc87c3a1461085257806370a082311461087d5761025c565b806339509351146105a95780633b124fe71461061a5780633bd5d17314610645578063437823ec146106805780634549b039146106d15761025c565b80631f53ac02116102195780631f53ac02146103f957806323b872dd1461044a5780632d838119146104db578063313ce5671461052a5780633685d419146105585761025c565b806306fdde0314610261578063095ea7b3146102f157806313114a9d146103625780631694505e1461038d57806318160ddd146103ce5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b50610276610e6e565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102b657808201518184015260208101905061029b565b50505050905090810190601f1680156102e35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102fd57600080fd5b5061034a6004803603604081101561031457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f10565b60405180821515815260200191505060405180910390f35b34801561036e57600080fd5b50610377610f2e565b6040518082815260200191505060405180910390f35b34801561039957600080fd5b506103a2610f38565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103da57600080fd5b506103e3610f5c565b6040518082815260200191505060405180910390f35b34801561040557600080fd5b506104486004803603602081101561041c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f66565b005b34801561045657600080fd5b506104c36004803603606081101561046d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611072565b60405180821515815260200191505060405180910390f35b3480156104e757600080fd5b50610514600480360360208110156104fe57600080fd5b810190808035906020019092919050505061114b565b6040518082815260200191505060405180910390f35b34801561053657600080fd5b5061053f6111cf565b604051808260ff16815260200191505060405180910390f35b34801561056457600080fd5b506105a76004803603602081101561057b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e6565b005b3480156105b557600080fd5b50610602600480360360408110156105cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611570565b60405180821515815260200191505060405180910390f35b34801561062657600080fd5b5061062f611623565b6040518082815260200191505060405180910390f35b34801561065157600080fd5b5061067e6004803603602081101561066857600080fd5b8101908080359060200190929190505050611629565b005b34801561068c57600080fd5b506106cf600480360360208110156106a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ba565b005b3480156106dd57600080fd5b50610716600480360360408110156106f457600080fd5b81019080803590602001909291908035151590602001909291905050506118dd565b6040518082815260200191505060405180910390f35b34801561073857600080fd5b50610741611994565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561077957600080fd5b506107826119b8565b60405180821515815260200191505060405180910390f35b3480156107a657600080fd5b506107e9600480360360208110156107bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119cb565b005b3480156107f757600080fd5b5061083a6004803603602081101561080e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d7e565b60405180821515815260200191505060405180910390f35b34801561085e57600080fd5b50610867611dd4565b6040518082815260200191505060405180910390f35b34801561088957600080fd5b506108cc600480360360208110156108a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dda565b6040518082815260200191505060405180910390f35b3480156108ee57600080fd5b506108f7611ec5565b005b34801561090557600080fd5b5061090e61204b565b6040518082815260200191505060405180910390f35b34801561093057600080fd5b50610939612051565b6040518082815260200191505060405180910390f35b34801561095b57600080fd5b506109886004803603602081101561097257600080fd5b8101908080359060200190929190505050612057565b005b34801561099657600080fd5b506109d9600480360360208110156109ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120e1565b60405180821515815260200191505060405180910390f35b3480156109fd57600080fd5b50610a06612137565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3e57600080fd5b50610a47612160565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a7f57600080fd5b50610a88612186565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ac8578082015181840152602081019050610aad565b50505050905090810190601f168015610af55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b0f57600080fd5b50610b5c60048036036040811015610b2657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612228565b60405180821515815260200191505060405180910390f35b348015610b8057600080fd5b50610b896122f5565b005b348015610b9757600080fd5b50610be460048036036040811015610bae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612512565b60405180821515815260200191505060405180910390f35b348015610c0857600080fd5b50610c11612530565b6040518082815260200191505060405180910390f35b348015610c3357600080fd5b50610c3c612536565b6040518082815260200191505060405180910390f35b348015610c5e57600080fd5b50610c67612540565b6040518082815260200191505060405180910390f35b348015610c8957600080fd5b50610cb860048036036020811015610ca057600080fd5b81019080803515159060200190929190505050612546565b005b348015610cc657600080fd5b50610cf360048036036020811015610cdd57600080fd5b8101908080359060200190929190505050612664565b005b348015610d0157600080fd5b50610d2e60048036036020811015610d1857600080fd5b81019080803590602001909291905050506126ee565b005b348015610d3c57600080fd5b50610d9f60048036036040811015610d5357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128df565b6040518082815260200191505060405180910390f35b348015610dc157600080fd5b50610e0460048036036020811015610dd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612966565b005b348015610e1257600080fd5b50610e5560048036036020811015610e2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a89565b005b348015610e6357600080fd5b50610e6c612c94565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f065780601f10610edb57610100808354040283529160200191610f06565b820191906000526020600020905b815481529060010190602001808311610ee957829003601f168201915b5050505050905090565b6000610f24610f1d612da2565b8484612daa565b6001905092915050565b6000600b54905090565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81565b6000600954905090565b610f6e612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061107f848484612fa1565b6111408461108b612da2565b61113b8560405180606001604052806028815260200161528060289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110f1612da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131cd9092919063ffffffff16565b612daa565b600190509392505050565b6000600a548211156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615170602a913960400191505060405180910390fd5b60006111b261328d565b90506111c781846132b890919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6111ee612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561156c578173ffffffffffffffffffffffffffffffffffffffff16600882815481106113a157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561155f576008600160088054905003815481106113fd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008828154811061143557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600880548061152557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561156c565b8080600101915050611370565b5050565b600061161961157d612da2565b84611614856005600061158e612da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b612daa565b6001905092915050565b600f5481565b6000611633612da2565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061533c602c913960400191505060405180910390fd5b60006116e38361338a565b5050505050905061173c81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061179481600a546133e690919063ffffffff16565b600a819055506117af83600b5461330290919063ffffffff16565b600b81905550505050565b6117c2612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816119775760006119678461338a565b505050505090508091505061198e565b60006119828461338a565b50505050915050809150505b92915050565b7f000000000000000000000000c5e1b7e86a63d23a88b85a0fe00772f058a4dcc481565b601860019054906101000a900460ff1681565b6119d3612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061531a6022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611cc057611c7c600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114b565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e7557600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611ec0565b611ebd600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114b565b90505b919050565b611ecd612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601b5481565b60195481565b600081116120b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061522d6032913960400191505060405180910390fd5b6120d860646120ca8360095461343090919063ffffffff16565b6132b890919063ffffffff16565b601b8190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561221e5780601f106121f35761010080835404028352916020019161221e565b820191906000526020600020905b81548152906001019060200180831161220157829003601f168201915b5050505050905090565b60006122eb612235612da2565b846122e68560405180606001604052806025815260200161538b602591396005600061225f612da2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546131cd9092919063ffffffff16565b612daa565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461239b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153686023913960400191505060405180910390fd5b6002544211612412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061252661251f612da2565b8484612fa1565b6001905092915050565b60155481565b6000600254905090565b60135481565b61254e612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461260e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b600081116126bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061522d6032913960400191505060405180910390fd5b6126e560646126d78360095461343090919063ffffffff16565b6132b890919063ffffffff16565b60198190555050565b6126f6612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61296e612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612a2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612a91612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bd7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061519a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c9c612da2565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6002600f81905550600f5460108190555060066011819055506011546012819055506000601381905550600f546014819055506003601581905550601554601781905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806152f66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eb6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151c06022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613027576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806152d16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061514d6023913960400191505060405180910390fd5b60008111613106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152a86029913960400191505060405180910390fd5b600061311130611dda565b90506000601a5482101590508080156131375750601860009054906101000a900460ff16155b801561318f57507f000000000000000000000000c5e1b7e86a63d23a88b85a0fe00772f058a4dcc473ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156131a75750601860019054906101000a900460ff165b156131bb57601a5491506131ba826134b6565b5b6131c6858585613598565b5050505050565b600083831115829061327a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561323f578082015181840152602081019050613224565b50505050905090810190601f16801561326c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080600061329a613cc7565b915091506132b181836132b890919063ffffffff16565b9250505090565b60006132fa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613f58565b905092915050565b600080828401905083811015613380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006133a18a61401e565b92509250925060008060006133bf8d86866133ba61328d565b614078565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b600061342883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506131cd565b905092915050565b60008083141561344357600090506134b0565b600082840290508284828161345457fe5b04146134ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061525f6021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff02191690831515021790555060006134e76002836132b890919063ffffffff16565b905060006134fe82846133e690919063ffffffff16565b9050600047905061350e83614101565b600061352382476133e690919063ffffffff16565b905061352f83826143af565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136395750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561364b57613646614500565b6137c7565b7f000000000000000000000000c5e1b7e86a63d23a88b85a0fe00772f058a4dcc473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ff576019548111156136fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806152056028913960400191505060405180910390fd5b6137c6565b60195481111561375a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806152056028913960400191505060405180910390fd5b600061376583611dda565b9050601b5482820111156137c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151e26023913960400191505060405180910390fd5b505b5b60006137f160646137e36013548561343090919063ffffffff16565b6132b890919063ffffffff16565b9050600061381d606461380f6015548661343090919063ffffffff16565b6132b890919063ffffffff16565b9050600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138c25750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156138fb576138f685856138f1846138e387896133e690919063ffffffff16565b6133e690919063ffffffff16565b614565565b613bc2565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561399e5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156139d7576139d285856139cd846139bf87896133e690919063ffffffff16565b6133e690919063ffffffff16565b6147c5565b613bc1565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a7b5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613ab457613aaf8585613aaa84613a9c87896133e690919063ffffffff16565b6133e690919063ffffffff16565b614a25565b613bc0565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613b565750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613b8f57613b8a8585613b8584613b7787896133e690919063ffffffff16565b6133e690919063ffffffff16565b614bf0565b613bbf565b613bbe8585613bb984613bab87896133e690919063ffffffff16565b6133e690919063ffffffff16565b614a25565b5b5b5b5b6000600f819055506000601181905550613bff85601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683614a25565b601054600f81905550601254601181905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613cb25750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613cc057613cbf614ee5565b5b5050505050565b6000806000600a5490506000600954905060005b600880549050811015613f1b57826003600060088481548110613cfa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613de15750816004600060088481548110613d7957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613df857600a5460095494509450505050613f54565b613e816003600060088481548110613e0c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054846133e690919063ffffffff16565b9250613f0c6004600060088481548110613e9757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836133e690919063ffffffff16565b91508080600101915050613cdb565b50613f33600954600a546132b890919063ffffffff16565b821015613f4b57600a54600954935093505050613f54565b81819350935050505b9091565b60008083118290614004576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613fc9578082015181840152602081019050613fae565b50505050905090810190601f168015613ff65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161401057fe5b049050809150509392505050565b60008060008061402d85614f0b565b9050600061403a86614f3c565b9050600061406382614055858a6133e690919063ffffffff16565b6133e690919063ffffffff16565b90508083839550955095505050509193909250565b600080600080614091858961343090919063ffffffff16565b905060006140a8868961343090919063ffffffff16565b905060006140bf878961343090919063ffffffff16565b905060006140e8826140da85876133e690919063ffffffff16565b6133e690919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561411b57600080fd5b5060405190808252806020026020018201604052801561414a5781602001602082028036833780820191505090505b509050308160008151811061415b57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156141fb57600080fd5b505afa15801561420f573d6000803e3d6000fd5b505050506040513d602081101561422557600080fd5b81019080805190602001909291905050508160018151811061424357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142a8307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e84612daa565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561436a57808201518184015260208101905061434f565b505050509050019650505050505050600060405180830381600087803b15801561439357600080fd5b505af11580156143a7573d6000803e3d6000fd5b505050505050565b6143da307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e84612daa565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080614424612137565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156144a957600080fd5b505af11580156144bd573d6000803e3d6000fd5b50505050506040513d60608110156144d457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f5414801561451457506000601154145b1561451e57614563565b601054600f819055506012546011819055506014546013819055506017546015819055506000600f819055506000601181905550600060138190555060006015819055505b565b6000806000806000806145778761338a565b9550955095509550955095506145d587600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061466a86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146ff85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061474b81614f6d565b6147558483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806147d78761338a565b95509550955095509550955061483586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506148ca83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061495f85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ab81614f6d565b6149b58483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614a378761338a565b955095509550955095509550614a9586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b2a85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b7681614f6d565b614b808483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c028761338a565b955095509550955095509550614c6087600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614cf586600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133e690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d8a83600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e1f85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e6b81614f6d565b614e758483615112565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b601054600f81905550601254601181905550601454601381905550601754601581905550565b6000614f356064614f27600f548561343090919063ffffffff16565b6132b890919063ffffffff16565b9050919050565b6000614f666064614f586011548561343090919063ffffffff16565b6132b890919063ffffffff16565b9050919050565b6000614f7761328d565b90506000614f8e828461343090919063ffffffff16565b9050614fe281600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561510d576150c983600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461330290919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61512782600a546133e690919063ffffffff16565b600a8190555061514281600b5461330290919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e745472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e20312070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205dc5313420d25c2cda8f5c39822f763be39d8226e04eb7e80483c9d31658a0be64736f6c634300060c0033
Deployed Bytecode Sourcemap
25645:20079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28424:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29336:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30457:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26900:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28701:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44922:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29505:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31381:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28610:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32099:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29826:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26430:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30552:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44298:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30937:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26958:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27037:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31642:449;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36684:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26517:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28804:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16236:148;;;;;;;;;;;;;:::i;:::-;;27244:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27090:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45285:257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30329:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15593:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26737:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28515:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30052:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17246:293;;;;;;;;;;;;;:::i;:::-;;29010:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26704:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16791:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26618:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45550:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45035:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16956:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29185:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44421:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16539:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44608:306;;;;;;;;;;;;;:::i;:::-;;28424:83;28461:13;28494:5;28487:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28424:83;:::o;29336:161::-;29411:4;29428:39;29437:12;:10;:12::i;:::-;29451:7;29460:6;29428:8;:39::i;:::-;29485:4;29478:11;;29336:161;;;;:::o;30457:87::-;30499:7;30526:10;;30519:17;;30457:87;:::o;26900:51::-;;;:::o;28701:95::-;28754:7;28781;;28774:14;;28701:95;:::o;44922:102::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45007:9:::1;44995;;:21;;;;;;;;;;;;;;;;;;44922:102:::0;:::o;29505:313::-;29603:4;29620:36;29630:6;29638:9;29649:6;29620:9;:36::i;:::-;29667:121;29676:6;29684:12;:10;:12::i;:::-;29698:89;29736:6;29698:89;;;;;;;;;;;;;;;;;:11;:19;29710:6;29698:19;;;;;;;;;;;;;;;:33;29718:12;:10;:12::i;:::-;29698:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29667:8;:121::i;:::-;29806:4;29799:11;;29505:313;;;;;:::o;31381:253::-;31447:7;31486;;31475;:18;;31467:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31551:19;31574:10;:8;:10::i;:::-;31551:33;;31602:24;31614:11;31602:7;:11;;:24;;;;:::i;:::-;31595:31;;;31381:253;;;:::o;28610:83::-;28651:5;28676:9;;;;;;;;;;;28669:16;;28610:83;:::o;32099:479::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32181:11:::1;:20;32193:7;32181:20;;;;;;;;;;;;;;;;;;;;;;;;;32173:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32249:9;32244:327;32268:9;:16;;;;32264:1;:20;32244:327;;;32326:7;32310:23;;:9;32320:1;32310:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;32306:254;;;32369:9;32398:1;32379:9;:16;;;;:20;32369:31;;;;;;;;;;;;;;;;;;;;;;;;;32354:9;32364:1;32354:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32438:1;32419:7;:16;32427:7;32419:16;;;;;;;;;;;;;;;:20;;;;32481:5;32458:11;:20;32470:7;32458:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;32505:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32539:5;;32306:254;32286:3;;;;;;;32244:327;;;;32099:479:::0;:::o;29826:218::-;29914:4;29931:83;29940:12;:10;:12::i;:::-;29954:7;29963:50;30002:10;29963:11;:25;29975:12;:10;:12::i;:::-;29963:25;;;;;;;;;;;;;;;:34;29989:7;29963:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29931:8;:83::i;:::-;30032:4;30025:11;;29826:218;;;;:::o;26430:26::-;;;;:::o;30552:377::-;30604:14;30621:12;:10;:12::i;:::-;30604:29;;30653:11;:19;30665:6;30653:19;;;;;;;;;;;;;;;;;;;;;;;;;30652:20;30644:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30733:15;30757:19;30768:7;30757:10;:19::i;:::-;30732:44;;;;;;;30805:28;30825:7;30805;:15;30813:6;30805:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30787:7;:15;30795:6;30787:15;;;;;;;;;;;;;;;:46;;;;30854:20;30866:7;30854;;:11;;:20;;;;:::i;:::-;30844:7;:30;;;;30898:23;30913:7;30898:10;;:14;;:23;;;;:::i;:::-;30885:10;:36;;;;30552:377;;;:::o;44298:111::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44397:4:::1;44367:18;:27;44386:7;44367:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;44298:111:::0;:::o;30937:436::-;31027:7;31066;;31055;:18;;31047:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31125:17;31120:246;;31160:15;31184:19;31195:7;31184:10;:19::i;:::-;31159:44;;;;;;;31225:7;31218:14;;;;;31120:246;31267:23;31298:19;31309:7;31298:10;:19::i;:::-;31265:52;;;;;;;31339:15;31332:22;;;30937:436;;;;;:::o;26958:38::-;;;:::o;27037:40::-;;;;;;;;;;;;;:::o;31642:449::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31735:42:::1;31724:53;;:7;:53;;;;31716:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31841:11;:20;31853:7;31841:20;;;;;;;;;;;;;;;;;;;;;;;;;31840:21;31832:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;31926:1;31907:7;:16;31915:7;31907:16;;;;;;;;;;;;;;;;:20;31904:108;;;31963:37;31983:7;:16;31991:7;31983:16;;;;;;;;;;;;;;;;31963:19;:37::i;:::-;31944:7;:16;31952:7;31944:16;;;;;;;;;;;;;;;:56;;;;31904:108;32045:4;32022:11;:20;32034:7;32022:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32060:9;32075:7;32060:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31642:449:::0;:::o;36684:123::-;36748:4;36772:18;:27;36791:7;36772:27;;;;;;;;;;;;;;;;;;;;;;;;;36765:34;;36684:123;;;:::o;26517:32::-;;;;:::o;28804:198::-;28870:7;28894:11;:20;28906:7;28894:20;;;;;;;;;;;;;;;;;;;;;;;;;28890:49;;;28923:7;:16;28931:7;28923:16;;;;;;;;;;;;;;;;28916:23;;;;28890:49;28957:37;28977:7;:16;28985:7;28977:16;;;;;;;;;;;;;;;;28957:19;:37::i;:::-;28950:44;;28804:198;;;;:::o;16236:148::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16343:1:::1;16306:40;;16327:6;::::0;::::1;;;;;;;;16306:40;;;;;;;;;;;;16374:1;16357:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16236:148::o:0;27244:54::-;;;;:::o;27090:51::-;;;;:::o;45285:257::-;45385:1;45366:16;:20;45358:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45470:64;45518:5;45470:29;45482:16;45470:7;;:11;;:29;;;;:::i;:::-;:33;;:64;;;;:::i;:::-;45452:15;:82;;;;45285:257;:::o;30329:120::-;30397:4;30421:11;:20;30433:7;30421:20;;;;;;;;;;;;;;;;;;;;;;;;;30414:27;;30329:120;;;:::o;15593:79::-;15631:7;15658:6;;;;;;;;;;;15651:13;;15593:79;:::o;26737:69::-;;;;;;;;;;;;;:::o;28515:87::-;28554:13;28587:7;28580:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28515:87;:::o;30052:269::-;30145:4;30162:129;30171:12;:10;:12::i;:::-;30185:7;30194:96;30233:15;30194:96;;;;;;;;;;;;;;;;;:11;:25;30206:12;:10;:12::i;:::-;30194:25;;;;;;;;;;;;;;;:34;30220:7;30194:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30162:8;:129::i;:::-;30309:4;30302:11;;30052:269;;;;:::o;17246:293::-;17316:10;17298:28;;:14;;;;;;;;;;;:28;;;17290:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17391:9;;17385:3;:15;17377:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17482:14;;;;;;;;;;;17453:44;;17474:6;;;;;;;;;;17453:44;;;;;;;;;;;;17517:14;;;;;;;;;;;17508:6;;:23;;;;;;;;;;;;;;;;;;17246:293::o;29010:167::-;29088:4;29105:42;29115:12;:10;:12::i;:::-;29129:9;29140:6;29105:9;:42::i;:::-;29165:4;29158:11;;29010:167;;;;:::o;26704:26::-;;;;:::o;16791:89::-;16836:7;16863:9;;16856:16;;16791:89;:::o;26618:27::-;;;;:::o;45550:171::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45651:8:::1;45627:21;;:32;;;;;;;;;;;;;;;;;;45675:38;45704:8;45675:38;;;;;;;;;;;;;;;;;;;;45550:171:::0;:::o;45035:238::-;45123:1;45108:12;:16;45100:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45205:60;45249:5;45205:25;45217:12;45205:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;45190:12;:75;;;;45035:238;:::o;16956:214::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17037:6:::1;::::0;::::1;;;;;;;;17020:14;;:23;;;;;;;;;;;;;;;;;;17071:1;17054:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17102:4;17096:3;:10;17084:9;:22;;;;17159:1;17122:40;;17143:6;::::0;::::1;;;;;;;;17122:40;;;;;;;;;;;;16956:214:::0;:::o;29185:143::-;29266:7;29293:11;:18;29305:5;29293:18;;;;;;;;;;;;;;;:27;29312:7;29293:27;;;;;;;;;;;;;;;;29286:34;;29185:143;;;;:::o;44421:110::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44518:5:::1;44488:18;:27;44507:7;44488:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;44421:110:::0;:::o;16539:244::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16648:1:::1;16628:22;;:8;:22;;;;16620:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16738:8;16709:38;;16730:6;::::0;::::1;;;;;;;;16709:38;;;;;;;;;;;;16767:8;16758:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16539:244:::0;:::o;44608:306::-;15815:12;:10;:12::i;:::-;15805:22;;:6;;;;;;;;;;:22;;;15797:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44675:1:::1;44665:7;:11;;;;44705:7;;44687:15;:25;;;;44739:1;44723:13;:17;;;;44775:13;;44751:21;:37;;;;44810:1;44799:8;:12;;;;44841:7;;44822:16;:26;;;;44869:1;44859:7;:11;;;;44899:7;;44881:15;:25;;;;44608:306::o:0;8001:106::-;8054:15;8089:10;8082:17;;8001:106;:::o;36815:337::-;36925:1;36908:19;;:5;:19;;;;36900:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37006:1;36987:21;;:7;:21;;;;36979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37090:6;37060:11;:18;37072:5;37060:18;;;;;;;;;;;;;;;:27;37079:7;37060:27;;;;;;;;;;;;;;;:36;;;;37128:7;37112:32;;37121:5;37112:32;;;37137:6;37112:32;;;;;;;;;;;;;;;;;;36815:337;;;:::o;37160:1234::-;37298:1;37282:18;;:4;:18;;;;37274:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37375:1;37361:16;;:2;:16;;;;37353:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37445:1;37436:6;:10;37428:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37787:28;37818:24;37836:4;37818:9;:24::i;:::-;37787:55;;37861:24;37912:29;;37888:20;:53;;37861:80;;37970:19;:53;;;;;38007:16;;;;;;;;;;;38006:17;37970:53;:91;;;;;38048:13;38040:21;;:4;:21;;;;37970:91;:129;;;;;38078:21;;;;;;;;;;;37970:129;37952:318;;;38149:29;;38126:52;;38222:36;38237:20;38222:14;:36::i;:::-;37952:318;38356:30;38371:4;38376:2;38379:6;38356:14;:30::i;:::-;37160:1234;;;;;:::o;4411:192::-;4497:7;4530:1;4525;:6;;4533:12;4517:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4557:9;4573:1;4569;:5;4557:17;;4594:1;4587:8;;;4411:192;;;;;:::o;34699:163::-;34740:7;34761:15;34778;34797:19;:17;:19::i;:::-;34760:56;;;;34834:20;34846:7;34834;:11;;:20;;;;:::i;:::-;34827:27;;;;34699:163;:::o;5809:132::-;5867:7;5894:39;5898:1;5901;5894:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5887:46;;5809:132;;;;:::o;3508:181::-;3566:7;3586:9;3602:1;3598;:5;3586:17;;3627:1;3622;:6;;3614:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3680:1;3673:8;;;3508:181;;;;:::o;33497:419::-;33556:7;33565;33574;33583;33592;33601;33622:23;33647:12;33661:18;33683:20;33695:7;33683:11;:20::i;:::-;33621:82;;;;;;33715:15;33732:23;33757:12;33773:50;33785:7;33794:4;33800:10;33812;:8;:10::i;:::-;33773:11;:50::i;:::-;33714:109;;;;;;33842:7;33851:15;33868:4;33874:15;33891:4;33897:10;33834:74;;;;;;;;;;;;;;;;;;33497:419;;;;;;;:::o;3972:136::-;4030:7;4057:43;4061:1;4064;4057:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4050:50;;3972:136;;;;:::o;4862:471::-;4920:7;5170:1;5165;:6;5161:47;;;5195:1;5188:8;;;;5161:47;5220:9;5236:1;5232;:5;5220:17;;5265:1;5260;5256;:5;;;;;;:10;5248:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5324:1;5317:8;;;4862:471;;;;;:::o;38402:985::-;27624:4;27605:16;;:23;;;;;;;;;;;;;;;;;;38538:12:::1;38553:27;38578:1;38553:20;:24;;:27;;;;:::i;:::-;38538:42;;38591:17;38611:30;38636:4;38611:20;:24;;:30;;;;:::i;:::-;38591:50;;38919:22;38944:21;38919:46;;39010:22;39027:4;39010:16;:22::i;:::-;39163:18;39184:41;39210:14;39184:21;:25;;:41;;;;:::i;:::-;39163:62;;39275:35;39288:9;39299:10;39275:12;:35::i;:::-;39336:43;39351:4;39357:10;39369:9;39336:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27639:1;;;;27670:5:::0;27651:16;;:24;;;;;;;;;;;;;;;;;;38402:985;:::o;40586:2026::-;40683:18;:26;40702:6;40683:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;40713:18;:29;40732:9;40713:29;;;;;;;;;;;;;;;;;;;;;;;;;40683:59;40680:530;;;40758:14;:12;:14::i;:::-;40680:530;;;40815:13;40802:26;;:9;:26;;;40799:411;;;40849:12;;40839:6;:22;;40831:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40799:411;;;40956:12;;40946:6;:22;;40938:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41028:32;41063:20;41073:9;41063;:20::i;:::-;41028:55;;41143:15;;41133:6;41106:24;:33;:52;;41098:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40799:411;;40680:530;41278:15;41296:29;41321:3;41296:20;41307:8;;41296:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;41278:47;;41336:14;41353:28;41377:3;41353:19;41364:7;;41353:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;41336:45;;41398:11;:19;41410:6;41398:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;41422:11;:22;41434:9;41422:22;;;;;;;;;;;;;;;;;;;;;;;;;41421:23;41398:46;41394:732;;;41461:75;41483:6;41491:9;41503:31;41527:6;41503:19;41514:7;41503:6;:10;;:19;;;;:::i;:::-;:23;;:31;;;;:::i;:::-;41461:21;:75::i;:::-;41394:732;;;41559:11;:19;41571:6;41559:19;;;;;;;;;;;;;;;;;;;;;;;;;41558:20;:46;;;;;41582:11;:22;41594:9;41582:22;;;;;;;;;;;;;;;;;;;;;;;;;41558:46;41554:572;;;41621:73;41641:6;41649:9;41661:31;41685:6;41661:19;41672:7;41661:6;:10;;:19;;;;:::i;:::-;:23;;:31;;;;:::i;:::-;41621:19;:73::i;:::-;41554:572;;;41717:11;:19;41729:6;41717:19;;;;;;;;;;;;;;;;;;;;;;;;;41716:20;:47;;;;;41741:11;:22;41753:9;41741:22;;;;;;;;;;;;;;;;;;;;;;;;;41740:23;41716:47;41712:414;;;41780:71;41798:6;41806:9;41818:31;41842:6;41818:19;41829:7;41818:6;:10;;:19;;;;:::i;:::-;:23;;:31;;;;:::i;:::-;41780:17;:71::i;:::-;41712:414;;;41873:11;:19;41885:6;41873:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;41896:11;:22;41908:9;41896:22;;;;;;;;;;;;;;;;;;;;;;;;;41873:45;41869:257;;;41935:75;41957:6;41965:9;41977:31;42001:6;41977:19;41988:7;41977:6;:10;;:19;;;;:::i;:::-;:23;;:31;;;;:::i;:::-;41935:21;:75::i;:::-;41869:257;;;42043:71;42061:6;42069:9;42081:31;42105:6;42081:19;42092:7;42081:6;:10;;:19;;;;:::i;:::-;:23;;:31;;;;:::i;:::-;42043:17;:71::i;:::-;41869:257;41712:414;41554:572;41394:732;42234:1;42224:7;:11;;;;42262:1;42246:13;:17;;;;42325:44;42343:6;42351:9;;;;;;;;;;;42362:6;42325:17;:44::i;:::-;42434:15;;42424:7;:25;;;;42476:21;;42460:13;:37;;;;42515:18;:26;42534:6;42515:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;42545:18;:29;42564:9;42545:29;;;;;;;;;;;;;;;;;;;;;;;;;42515:59;42512:92;;;42589:15;:13;:15::i;:::-;42512:92;40586:2026;;;;;:::o;34870:561::-;34920:7;34929;34949:15;34967:7;;34949:25;;34985:15;35003:7;;34985:25;;35032:9;35027:289;35051:9;:16;;;;35047:1;:20;35027:289;;;35117:7;35093;:21;35101:9;35111:1;35101:12;;;;;;;;;;;;;;;;;;;;;;;;;35093:21;;;;;;;;;;;;;;;;:31;:66;;;;35152:7;35128;:21;35136:9;35146:1;35136:12;;;;;;;;;;;;;;;;;;;;;;;;;35128:21;;;;;;;;;;;;;;;;:31;35093:66;35089:97;;;35169:7;;35178;;35161:25;;;;;;;;;35089:97;35211:34;35223:7;:21;35231:9;35241:1;35231:12;;;;;;;;;;;;;;;;;;;;;;;;;35223:21;;;;;;;;;;;;;;;;35211:7;:11;;:34;;;;:::i;:::-;35201:44;;35270:34;35282:7;:21;35290:9;35300:1;35290:12;;;;;;;;;;;;;;;;;;;;;;;;;35282:21;;;;;;;;;;;;;;;;35270:7;:11;;:34;;;;:::i;:::-;35260:44;;35069:3;;;;;;;35027:289;;;;35340:20;35352:7;;35340;;:11;;:20;;;;:::i;:::-;35330:7;:30;35326:61;;;35370:7;;35379;;35362:25;;;;;;;;35326:61;35406:7;35415;35398:25;;;;;;34870:561;;;:::o;6437:278::-;6523:7;6555:1;6551;:5;6558:12;6543:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6582:9;6598:1;6594;:5;;;;;;6582:17;;6706:1;6699:8;;;6437:278;;;;;:::o;33924:330::-;33984:7;33993;34002;34022:12;34037:24;34053:7;34037:15;:24::i;:::-;34022:39;;34072:18;34093:30;34115:7;34093:21;:30::i;:::-;34072:51;;34134:23;34160:33;34182:10;34160:17;34172:4;34160:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;34134:59;;34212:15;34229:4;34235:10;34204:42;;;;;;;;;33924:330;;;;;:::o;34262:429::-;34377:7;34386;34395;34415:15;34433:24;34445:11;34433:7;:11;;:24;;;;:::i;:::-;34415:42;;34468:12;34483:21;34492:11;34483:4;:8;;:21;;;;:::i;:::-;34468:36;;34515:18;34536:27;34551:11;34536:10;:14;;:27;;;;:::i;:::-;34515:48;;34574:23;34600:33;34622:10;34600:17;34612:4;34600:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;34574:59;;34652:7;34661:15;34678:4;34644:39;;;;;;;;;;34262:429;;;;;;;;:::o;39395:589::-;39521:21;39559:1;39545:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39521:40;;39590:4;39572;39577:1;39572:7;;;;;;;;;;;;;:23;;;;;;;;;;;39616:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39606:4;39611:1;39606:7;;;;;;;;;;;;;:32;;;;;;;;;;;39651:62;39668:4;39683:15;39701:11;39651:8;:62::i;:::-;39752:15;:66;;;39833:11;39859:1;39903:4;39930;39950:15;39752:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39395:589;;:::o;39992:513::-;40140:62;40157:4;40172:15;40190:11;40140:8;:62::i;:::-;40245:15;:31;;;40284:9;40317:4;40337:11;40363:1;40406;40449:7;:5;:7::i;:::-;40471:15;40245:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39992:513;;:::o;36102:359::-;36159:1;36148:7;;:12;:34;;;;;36181:1;36164:13;;:18;36148:34;36145:46;;;36184:7;;36145:46;36211:15;;36201:7;:25;;;;36253:21;;36237:13;:37;;;;36296:16;;36285:8;:27;;;;36333:15;;36323:7;:25;;;;36379:1;36369:7;:11;;;;36407:1;36391:13;:17;;;;36430:1;36419:8;:12;;;;36452:1;36442:7;:11;;;;36102:359;:::o;43724:566::-;43827:15;43844:23;43869:12;43883:23;43908:12;43922:18;43944:19;43955:7;43944:10;:19::i;:::-;43826:137;;;;;;;;;;;;43992:28;44012:7;43992;:15;44000:6;43992:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43974:7;:15;43982:6;43974:15;;;;;;;;;;;;;;;:46;;;;44049:28;44069:7;44049;:15;44057:6;44049:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44031:7;:15;44039:6;44031:15;;;;;;;;;;;;;;;:46;;;;44109:39;44132:15;44109:7;:18;44117:9;44109:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44088:7;:18;44096:9;44088:18;;;;;;;;;;;;;;;:60;;;;44162:26;44177:10;44162:14;:26::i;:::-;44199:23;44211:4;44217;44199:11;:23::i;:::-;44255:9;44238:44;;44247:6;44238:44;;;44266:15;44238:44;;;;;;;;;;;;;;;;;;43724:566;;;;;;;;;:::o;43130:586::-;43231:15;43248:23;43273:12;43287:23;43312:12;43326:18;43348:19;43359:7;43348:10;:19::i;:::-;43230:137;;;;;;;;;;;;43396:28;43416:7;43396;:15;43404:6;43396:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;43378:7;:15;43386:6;43378:15;;;;;;;;;;;;;;;:46;;;;43456:39;43479:15;43456:7;:18;43464:9;43456:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43435:7;:18;43443:9;43435:18;;;;;;;;;;;;;;;:60;;;;43527:39;43550:15;43527:7;:18;43535:9;43527:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;43506:7;:18;43514:9;43506:18;;;;;;;;;;;;;;;:60;;;;43588:26;43603:10;43588:14;:26::i;:::-;43625:23;43637:4;43643;43625:11;:23::i;:::-;43681:9;43664:44;;43673:6;43664:44;;;43692:15;43664:44;;;;;;;;;;;;;;;;;;43130:586;;;;;;;;;:::o;42620:502::-;42719:15;42736:23;42761:12;42775:23;42800:12;42814:18;42836:19;42847:7;42836:10;:19::i;:::-;42718:137;;;;;;;;;;;;42884:28;42904:7;42884;:15;42892:6;42884:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;42866:7;:15;42874:6;42866:15;;;;;;;;;;;;;;;:46;;;;42944:39;42967:15;42944:7;:18;42952:9;42944:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;42923:7;:18;42931:9;42923:18;;;;;;;;;;;;;;;:60;;;;42994:26;43009:10;42994:14;:26::i;:::-;43031:23;43043:4;43049;43031:11;:23::i;:::-;43087:9;43070:44;;43079:6;43070:44;;;43098:15;43070:44;;;;;;;;;;;;;;;;;;42620:502;;;;;;;;;:::o;32586:642::-;32689:15;32706:23;32731:12;32745:23;32770:12;32784:18;32806:19;32817:7;32806:10;:19::i;:::-;32688:137;;;;;;;;;;;;32854:28;32874:7;32854;:15;32862:6;32854:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32836:7;:15;32844:6;32836:15;;;;;;;;;;;;;;;:46;;;;32911:28;32931:7;32911;:15;32919:6;32911:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32893:7;:15;32901:6;32893:15;;;;;;;;;;;;;;;:46;;;;32971:39;32994:15;32971:7;:18;32979:9;32971:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32950:7;:18;32958:9;32950:18;;;;;;;;;;;;;;;:60;;;;33042:39;33065:15;33042:7;:18;33050:9;33042:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;33021:7;:18;33029:9;33021:18;;;;;;;;;;;;;;;:60;;;;33100:26;33115:10;33100:14;:26::i;:::-;33137:23;33149:4;33155;33137:11;:23::i;:::-;33193:9;33176:44;;33185:6;33176:44;;;33204:15;33176:44;;;;;;;;;;;;;;;;;;32586:642;;;;;;;;;:::o;36473:199::-;36527:15;;36517:7;:25;;;;36569:21;;36553:13;:37;;;;36612:16;;36601:8;:27;;;;36649:15;;36639:7;:25;;;;36473:199::o;35810:130::-;35874:7;35901:31;35926:5;35901:20;35913:7;;35901;:11;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;35894:38;;35810:130;;;:::o;35948:142::-;36018:7;36045:37;36076:5;36045:26;36057:13;;36045:7;:11;;:26;;;;:::i;:::-;:30;;:37;;;;:::i;:::-;36038:44;;35948:142;;;:::o;35443:355::-;35506:19;35529:10;:8;:10::i;:::-;35506:33;;35550:18;35571:27;35586:11;35571:10;:14;;:27;;;;:::i;:::-;35550:48;;35634:38;35661:10;35634:7;:22;35650:4;35634:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;35609:7;:22;35625:4;35609:22;;;;;;;;;;;;;;;:63;;;;35686:11;:26;35706:4;35686:26;;;;;;;;;;;;;;;;;;;;;;;;;35683:107;;;35752:38;35779:10;35752:7;:22;35768:4;35752:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;35727:7;:22;35743:4;35727:22;;;;;;;;;;;;;;;:63;;;;35683:107;35443:355;;;:::o;33342:147::-;33420:17;33432:4;33420:7;;:11;;:17;;;;:::i;:::-;33410:7;:27;;;;33461:20;33476:4;33461:10;;:14;;:20;;;;:::i;:::-;33448:10;:33;;;;33342:147;;:::o
Swarm Source
ipfs://5dc5313420d25c2cda8f5c39822f763be39d8226e04eb7e80483c9d31658a0be
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.