BEP-20
Deflationary
Overview
Max Total Supply
100,000,000,000,000,000TALK
Holders
4,267 ( -0.047%)
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$28,648.40
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,003,583.790691856 TALKValue
$0.00 ( ~0 BNB) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Talkado
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-06-23 */ /** ████████╗░█████╗░██╗░░░░░██╗░░██╗░█████╗░██████╗░░█████╗░ ███████╗██╗███╗░░██╗░█████╗░███╗░░██╗░█████╗░███████╗ ╚══██╔══╝██╔══██╗██║░░░░░██║░██╔╝██╔══██╗██╔══██╗██╔══██╗ ██╔════╝██║████╗░██║██╔══██╗████╗░██║██╔══██╗██╔════╝ ░░░██║░░░███████║██║░░░░░█████═╝░███████║██║░░██║██║░░██║ █████╗░░██║██╔██╗██║███████║██╔██╗██║██║░░╚═╝█████╗░░ ░░░██║░░░██╔══██║██║░░░░░██╔═██╗░██╔══██║██║░░██║██║░░██║ ██╔══╝░░██║██║╚████║██╔══██║██║╚████║██║░░██╗██╔══╝░░ ░░░██║░░░██║░░██║███████╗██║░╚██╗██║░░██║██████╔╝╚█████╔╝ ██║░░░░░██║██║░╚███║██║░░██║██║░╚███║╚█████╔╝███████╗ ░░░╚═╝░░░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░░╚════╝░ ╚═╝░░░░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚═╝░░╚══╝░╚════╝░╚══════╝ Project Features: 10% Tax on every transaction 40% of the 10% to Liquidity Pool 30% of the 10% tax to redistribution 20% of the 10% tax to charity 10% of the 10% tax to Crusher Machine. */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed 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 Talkado 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 = 100000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Talkado"; string private _symbol = "TALK"; 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 _MarketingFee = 0; address public MarketingWallet = 0x44b6dDF8d097DAf63813bD2FeC4d4cb23aD23900; uint256 private _previousMarketingFee = _MarketingFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 public _maxTxAmount = 100000000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 1000000000000 * 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); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _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.'); 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 ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 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 { _taxFee = 0; _liquidityFee = 0; _burnFee = 0; _MarketingFee = 0; } function restoreAllFee() private { _taxFee = 3; _liquidityFee = 4; _burnFee = 1; _MarketingFee = 2; } 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{ require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } //Calculate burn amount and Marketing amount uint256 burnAmt = amount.mul(_burnFee).div(100); uint256 MarketingAmt = amount.mul(_MarketingFee).div(100); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(MarketingAmt))); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(MarketingAmt))); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(MarketingAmt))); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(MarketingAmt))); } else { _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(MarketingAmt))); } //Temporarily remove fees to transfer to burn address and Marketing wallet _taxFee = 0; _liquidityFee = 0; //Send transfers to burn and Marketing wallet _transferStandard(sender, address(0), burnAmt); _transferStandard(sender, MarketingWallet, MarketingAmt); //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 function enableAllFees() external onlyOwner() { _taxFee = 3; _previousTaxFee = _taxFee; _liquidityFee = 4; _previousLiquidityFee = _liquidityFee; _burnFee = 1; _previousBurnFee = _taxFee; _MarketingFee = 2; _previousMarketingFee = _MarketingFee; inSwapAndLiquify = true; emit SwapAndLiquifyEnabledUpdated(true); } function disableAllFees() external onlyOwner() { _taxFee = 0; _previousTaxFee = _taxFee; _liquidityFee = 0; _previousLiquidityFee = _liquidityFee; _burnFee = 0; _previousBurnFee = _taxFee; _MarketingFee = 0; _previousMarketingFee = _MarketingFee; inSwapAndLiquify = false; emit SwapAndLiquifyEnabledUpdated(false); } function setMarketingWallet(address newWallet) external onlyOwner() { MarketingWallet = newWallet; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { require(maxTxPercent > 10, "Cannot set transaction amount less than 10 percent!"); _maxTxAmount = _tTotal.mul(maxTxPercent).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":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAllFees","outputs":[],"stateMutability":"nonpayable","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":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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
60c06040526a52b7d2dcc80cd2e4000000600955600954600019816200002157fe5b0660001903600a556040518060400160405280600781526020017f54616c6b61646f00000000000000000000000000000000000000000000000000815250600c9080519060200190620000769291906200066b565b506040518060400160405280600481526020017f54414c4b00000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c49291906200066b565b506009600e60006101000a81548160ff021916908360ff1602179055506000600f55600f546010556000601155601154601255600060135560135460145560006015557344b6ddf8d097daf63813bd2fec4d4cb23ad23900601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506015546017556000601860016101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e4000000601955683635c9adc5dea00000601a55348015620001a657600080fd5b506000620001b96200063a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600a54600360006200026e6200063a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060007310ed43c718714eb63d5aa57b78b54704e256024e90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030c57600080fd5b505afa15801562000321573d6000803e3d6000fd5b505050506040513d60208110156200033857600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ac57600080fd5b505afa158015620003c1573d6000803e3d6000fd5b505050506040513d6020811015620003d857600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200045357600080fd5b505af115801562000468573d6000803e3d6000fd5b505050506040513d60208110156200047f57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160066000620005136200064260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005cc6200063a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000711565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006ae57805160ff1916838001178555620006df565b82800160010185558215620006df579182015b82811115620006de578251825591602001919060010190620006c1565b5b509050620006ee9190620006f2565b5090565b5b808211156200070d576000816000905550600101620006f3565b5090565b60805160601c60a05160601c6153fe620007596000398061185652806132d6525080610ee052806142195280614305528061432c5280614437528061445e52506153fe6000f3fe60806040526004361061024a5760003560e01c80635d098b3811610139578063a69df4b5116100b6578063d543dbeb1161007a578063d543dbeb14610c60578063dd46706414610c9b578063dd62ed3e14610cd6578063ea2f0b3714610d5b578063f2fde38b14610dac578063ffc7863514610dfd57610251565b8063a69df4b514610b45578063a9059cbb14610b5c578063b6c5232414610bcd578063c0b0fda214610bf8578063c49b9a8014610c2357610251565b80637d1db4a5116100fd5780637d1db4a51461097157806388f820201461099c5780638da5cb5b14610a0357806395d89b4114610a44578063a457c2d714610ad457610251565b80635d098b38146108625780636bc87c3a146108b357806370a08231146108de578063715018a614610943578063741af87f1461095a57610251565b806339509351116101c757806349bd5a5e1161018b57806349bd5a5e146107115780634a74bb02146107525780634c1d019b1461077f57806352390c02146107aa5780635342acb4146107fb57610251565b8063395093511461058e5780633b124fe7146105ff5780633bd5d1731461062a578063437823ec146106655780634549b039146106b657610251565b806323b872dd1161020e57806323b872dd146103ee5780632598cdb21461047f5780632d838119146104c0578063313ce5671461050f5780633685d4191461053d57610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d146103575780631694505e1461038257806318160ddd146103c357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610e14565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb6565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610ed4565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b50610397610ede565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b506103d8610f02565b6040518082815260200191505060405180910390f35b3480156103fa57600080fd5b506104676004803603606081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f0c565b60405180821515815260200191505060405180910390f35b34801561048b57600080fd5b50610494610fe5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104cc57600080fd5b506104f9600480360360208110156104e357600080fd5b810190808035906020019092919050505061100b565b6040518082815260200191505060405180910390f35b34801561051b57600080fd5b5061052461108f565b604051808260ff16815260200191505060405180910390f35b34801561054957600080fd5b5061058c6004803603602081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a6565b005b34801561059a57600080fd5b506105e7600480360360408110156105b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611430565b60405180821515815260200191505060405180910390f35b34801561060b57600080fd5b506106146114e3565b6040518082815260200191505060405180910390f35b34801561063657600080fd5b506106636004803603602081101561064d57600080fd5b81019080803590602001909291905050506114e9565b005b34801561067157600080fd5b506106b46004803603602081101561068857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167a565b005b3480156106c257600080fd5b506106fb600480360360408110156106d957600080fd5b810190808035906020019092919080351515906020019092919050505061179d565b6040518082815260200191505060405180910390f35b34801561071d57600080fd5b50610726611854565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561075e57600080fd5b50610767611878565b60405180821515815260200191505060405180910390f35b34801561078b57600080fd5b5061079461188b565b6040518082815260200191505060405180910390f35b3480156107b657600080fd5b506107f9600480360360208110156107cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611891565b005b34801561080757600080fd5b5061084a6004803603602081101561081e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c44565b60405180821515815260200191505060405180910390f35b34801561086e57600080fd5b506108b16004803603602081101561088557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9a565b005b3480156108bf57600080fd5b506108c8611da6565b6040518082815260200191505060405180910390f35b3480156108ea57600080fd5b5061092d6004803603602081101561090157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dac565b6040518082815260200191505060405180910390f35b34801561094f57600080fd5b50610958611e97565b005b34801561096657600080fd5b5061096f61201d565b005b34801561097d57600080fd5b50610986612180565b6040518082815260200191505060405180910390f35b3480156109a857600080fd5b506109eb600480360360208110156109bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612186565b60405180821515815260200191505060405180910390f35b348015610a0f57600080fd5b50610a186121dc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a5057600080fd5b50610a59612205565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a99578082015181840152602081019050610a7e565b50505050905090810190601f168015610ac65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ae057600080fd5b50610b2d60048036036040811015610af757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122a7565b60405180821515815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a612374565b005b348015610b6857600080fd5b50610bb560048036036040811015610b7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612591565b60405180821515815260200191505060405180910390f35b348015610bd957600080fd5b50610be26125af565b6040518082815260200191505060405180910390f35b348015610c0457600080fd5b50610c0d6125b9565b6040518082815260200191505060405180910390f35b348015610c2f57600080fd5b50610c5e60048036036020811015610c4657600080fd5b810190808035151590602001909291905050506125bf565b005b348015610c6c57600080fd5b50610c9960048036036020811015610c8357600080fd5b81019080803590602001909291905050506126dd565b005b348015610ca757600080fd5b50610cd460048036036020811015610cbe57600080fd5b810190808035906020019092919050505061282f565b005b348015610ce257600080fd5b50610d4560048036036040811015610cf957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a20565b6040518082815260200191505060405180910390f35b348015610d6757600080fd5b50610daa60048036036020811015610d7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa7565b005b348015610db857600080fd5b50610dfb60048036036020811015610dcf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bca565b005b348015610e0957600080fd5b50610e12612dd5565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b6000610eca610ec3612f38565b8484612f40565b6001905092915050565b6000600b54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600954905090565b6000610f19848484613137565b610fda84610f25612f38565b610fd58560405180606001604052806028815260200161529960289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f8b612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b600190509392505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a54821115611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806151ab602a913960400191505060405180910390fd5b6000611072613423565b9050611087818461344e90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6110ae612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561142c578173ffffffffffffffffffffffffffffffffffffffff166008828154811061126157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561141f576008600160088054905003815481106112bd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106112f557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806113e557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561142c565b8080600101915050611230565b5050565b60006114d961143d612f38565b846114d4856005600061144e612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b612f40565b6001905092915050565b600f5481565b60006114f3612f38565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615355602c913960400191505060405180910390fd5b60006115a383613520565b505050505090506115fc81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165481600a5461357c90919063ffffffff16565b600a8190555061166f83600b5461349890919063ffffffff16565b600b81905550505050565b611682612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161183757600061182784613520565b505050505090508091505061184e565b600061184284613520565b50505050915050809150505b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601860019054906101000a900460ff1681565b60155481565b611899612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153336022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8657611b42600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100b565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611ca2612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e4757600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e92565b611e8f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100b565b90505b919050565b611e9f612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612025612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f81905550600f5460108190555060006011819055506011546012819055506000601381905550600f5460148190555060006015819055506015546017819055506000601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600060405180821515815260200191505060405180910390a1565b60195481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561229d5780601f106122725761010080835404028352916020019161229d565b820191906000526020600020905b81548152906001019060200180831161228057829003601f168201915b5050505050905090565b600061236a6122b4612f38565b84612365856040518060600160405280602581526020016153a460259139600560006122de612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461241a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153816023913960400191505060405180910390fd5b6002544211612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006125a561259e612f38565b8484613137565b6001905092915050565b6000600254905090565b60135481565b6125c7612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6126e5612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a81116127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806152456033913960400191505060405180910390fd5b6128266064612818836009546135c690919063ffffffff16565b61344e90919063ffffffff16565b60198190555050565b612837612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612aaf612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612bd2612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151d56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ddd612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6003600f81905550600f5460108190555060046011819055506011546012819055506001601381905550600f5460148190555060026015819055506015546017819055506001601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600160405180821515815260200191505060405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061530f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151fb6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806152ea6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151886023913960400191505060405180910390fd5b6000811161329c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152c16029913960400191505060405180910390fd5b60006132a730611dac565b90506000601a5482101590508080156132cd5750601860009054906101000a900460ff16155b801561332557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561333d5750601860019054906101000a900460ff165b1561335157601a5491506133508261364c565b5b61335c85858561372e565b5050505050565b6000838311158290613410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133d55780820151818401526020810190506133ba565b50505050905090810190601f1680156134025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613430613d49565b91509150613447818361344e90919063ffffffff16565b9250505090565b600061349083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fda565b905092915050565b600080828401905083811015613516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006135378a6140a0565b92509250925060008060006135558d8686613550613423565b6140fa565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60006135be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613363565b905092915050565b6000808314156135d95760009050613646565b60008284029050828482816135ea57fe5b0414613641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152786021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff021916908315150217905550600061367d60028361344e90919063ffffffff16565b90506000613694828461357c90919063ffffffff16565b905060004790506136a483614183565b60006136b9824761357c90919063ffffffff16565b90506136c58382614431565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137cf5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137e1576137dc614582565b61383d565b60195481111561383c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061521d6028913960400191505060405180910390fd5b5b60006138676064613859601354856135c690919063ffffffff16565b61344e90919063ffffffff16565b905060006138936064613885601554866135c690919063ffffffff16565b61344e90919063ffffffff16565b9050600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139385750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139715761396c858561396784613959878961357c90919063ffffffff16565b61357c90919063ffffffff16565b6145a4565b613c38565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a145750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a4d57613a488585613a4384613a35878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614804565b613c37565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613af15750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613b2a57613b258585613b2084613b12878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b613c36565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613bcc5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c0557613c008585613bfb84613bed878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614c2f565b613c35565b613c348585613c2f84613c21878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b5b5b5b5b6000600f819055506000601181905550613c5485600084614a64565b613c8185601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683614a64565b601054600f81905550601254601181905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d345750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d4257613d41614f24565b5b5050505050565b6000806000600a5490506000600954905060005b600880549050811015613f9d57826003600060088481548110613d7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613e635750816004600060088481548110613dfb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613e7a57600a5460095494509450505050613fd6565b613f036003600060088481548110613e8e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461357c90919063ffffffff16565b9250613f8e6004600060088481548110613f1957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361357c90919063ffffffff16565b91508080600101915050613d5d565b50613fb5600954600a5461344e90919063ffffffff16565b821015613fcd57600a54600954935093505050613fd6565b81819350935050505b9091565b60008083118290614086576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561404b578082015181840152602081019050614030565b50505050905090810190601f1680156140785780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161409257fe5b049050809150509392505050565b6000806000806140af85614f46565b905060006140bc86614f77565b905060006140e5826140d7858a61357c90919063ffffffff16565b61357c90919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061411385896135c690919063ffffffff16565b9050600061412a86896135c690919063ffffffff16565b9050600061414187896135c690919063ffffffff16565b9050600061416a8261415c858761357c90919063ffffffff16565b61357c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561419d57600080fd5b506040519080825280602002602001820160405280156141cc5781602001602082028036833780820191505090505b50905030816000815181106141dd57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561427d57600080fd5b505afa158015614291573d6000803e3d6000fd5b505050506040513d60208110156142a757600080fd5b8101908080519060200190929190505050816001815181106142c557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061432a307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156143ec5780820151818401526020810190506143d1565b505050509050019650505050505050600060405180830381600087803b15801561441557600080fd5b505af1158015614429573d6000803e3d6000fd5b505050505050565b61445c307f000000000000000000000000000000000000000000000000000000000000000084612f40565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806144a66121dc565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561452b57600080fd5b505af115801561453f573d6000803e3d6000fd5b50505050506040513d606081101561455657600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f81905550600060118190555060006013819055506000601581905550565b6000806000806000806145b687613520565b95509550955095509550955061461487600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146a986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061473e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061478a81614fa8565b614794848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061481687613520565b95509550955095509550955061487486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061490983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ea81614fa8565b6149f4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614a7687613520565b955095509550955095509550614ad486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b6985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bb581614fa8565b614bbf848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c4187613520565b955095509550955095509550614c9f87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614dc983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e5e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614eaa81614fa8565b614eb4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6003600f81905550600460118190555060016013819055506002601581905550565b6000614f706064614f62600f54856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fa16064614f93601154856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fb2613423565b90506000614fc982846135c690919063ffffffff16565b905061501d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156151485761510483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61516282600a5461357c90919063ffffffff16565b600a8190555061517d81600b5461349890919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e2031302070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220422b5a8472d942bf16fff3c051dcfcf006b42466bf3980f30826c421471b914464736f6c634300060c0033
Deployed Bytecode
0x60806040526004361061024a5760003560e01c80635d098b3811610139578063a69df4b5116100b6578063d543dbeb1161007a578063d543dbeb14610c60578063dd46706414610c9b578063dd62ed3e14610cd6578063ea2f0b3714610d5b578063f2fde38b14610dac578063ffc7863514610dfd57610251565b8063a69df4b514610b45578063a9059cbb14610b5c578063b6c5232414610bcd578063c0b0fda214610bf8578063c49b9a8014610c2357610251565b80637d1db4a5116100fd5780637d1db4a51461097157806388f820201461099c5780638da5cb5b14610a0357806395d89b4114610a44578063a457c2d714610ad457610251565b80635d098b38146108625780636bc87c3a146108b357806370a08231146108de578063715018a614610943578063741af87f1461095a57610251565b806339509351116101c757806349bd5a5e1161018b57806349bd5a5e146107115780634a74bb02146107525780634c1d019b1461077f57806352390c02146107aa5780635342acb4146107fb57610251565b8063395093511461058e5780633b124fe7146105ff5780633bd5d1731461062a578063437823ec146106655780634549b039146106b657610251565b806323b872dd1161020e57806323b872dd146103ee5780632598cdb21461047f5780632d838119146104c0578063313ce5671461050f5780633685d4191461053d57610251565b806306fdde0314610256578063095ea7b3146102e657806313114a9d146103575780631694505e1461038257806318160ddd146103c357610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610e14565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f257600080fd5b5061033f6004803603604081101561030957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eb6565b60405180821515815260200191505060405180910390f35b34801561036357600080fd5b5061036c610ed4565b6040518082815260200191505060405180910390f35b34801561038e57600080fd5b50610397610ede565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103cf57600080fd5b506103d8610f02565b6040518082815260200191505060405180910390f35b3480156103fa57600080fd5b506104676004803603606081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f0c565b60405180821515815260200191505060405180910390f35b34801561048b57600080fd5b50610494610fe5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104cc57600080fd5b506104f9600480360360208110156104e357600080fd5b810190808035906020019092919050505061100b565b6040518082815260200191505060405180910390f35b34801561051b57600080fd5b5061052461108f565b604051808260ff16815260200191505060405180910390f35b34801561054957600080fd5b5061058c6004803603602081101561056057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a6565b005b34801561059a57600080fd5b506105e7600480360360408110156105b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611430565b60405180821515815260200191505060405180910390f35b34801561060b57600080fd5b506106146114e3565b6040518082815260200191505060405180910390f35b34801561063657600080fd5b506106636004803603602081101561064d57600080fd5b81019080803590602001909291905050506114e9565b005b34801561067157600080fd5b506106b46004803603602081101561068857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167a565b005b3480156106c257600080fd5b506106fb600480360360408110156106d957600080fd5b810190808035906020019092919080351515906020019092919050505061179d565b6040518082815260200191505060405180910390f35b34801561071d57600080fd5b50610726611854565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561075e57600080fd5b50610767611878565b60405180821515815260200191505060405180910390f35b34801561078b57600080fd5b5061079461188b565b6040518082815260200191505060405180910390f35b3480156107b657600080fd5b506107f9600480360360208110156107cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611891565b005b34801561080757600080fd5b5061084a6004803603602081101561081e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c44565b60405180821515815260200191505060405180910390f35b34801561086e57600080fd5b506108b16004803603602081101561088557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9a565b005b3480156108bf57600080fd5b506108c8611da6565b6040518082815260200191505060405180910390f35b3480156108ea57600080fd5b5061092d6004803603602081101561090157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dac565b6040518082815260200191505060405180910390f35b34801561094f57600080fd5b50610958611e97565b005b34801561096657600080fd5b5061096f61201d565b005b34801561097d57600080fd5b50610986612180565b6040518082815260200191505060405180910390f35b3480156109a857600080fd5b506109eb600480360360208110156109bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612186565b60405180821515815260200191505060405180910390f35b348015610a0f57600080fd5b50610a186121dc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a5057600080fd5b50610a59612205565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a99578082015181840152602081019050610a7e565b50505050905090810190601f168015610ac65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ae057600080fd5b50610b2d60048036036040811015610af757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122a7565b60405180821515815260200191505060405180910390f35b348015610b5157600080fd5b50610b5a612374565b005b348015610b6857600080fd5b50610bb560048036036040811015610b7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612591565b60405180821515815260200191505060405180910390f35b348015610bd957600080fd5b50610be26125af565b6040518082815260200191505060405180910390f35b348015610c0457600080fd5b50610c0d6125b9565b6040518082815260200191505060405180910390f35b348015610c2f57600080fd5b50610c5e60048036036020811015610c4657600080fd5b810190808035151590602001909291905050506125bf565b005b348015610c6c57600080fd5b50610c9960048036036020811015610c8357600080fd5b81019080803590602001909291905050506126dd565b005b348015610ca757600080fd5b50610cd460048036036020811015610cbe57600080fd5b810190808035906020019092919050505061282f565b005b348015610ce257600080fd5b50610d4560048036036040811015610cf957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a20565b6040518082815260200191505060405180910390f35b348015610d6757600080fd5b50610daa60048036036020811015610d7e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612aa7565b005b348015610db857600080fd5b50610dfb60048036036020811015610dcf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bca565b005b348015610e0957600080fd5b50610e12612dd5565b005b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610eac5780601f10610e8157610100808354040283529160200191610eac565b820191906000526020600020905b815481529060010190602001808311610e8f57829003601f168201915b5050505050905090565b6000610eca610ec3612f38565b8484612f40565b6001905092915050565b6000600b54905090565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81565b6000600954905090565b6000610f19848484613137565b610fda84610f25612f38565b610fd58560405180606001604052806028815260200161529960289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f8b612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b600190509392505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a54821115611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806151ab602a913960400191505060405180910390fd5b6000611072613423565b9050611087818461344e90919063ffffffff16565b915050919050565b6000600e60009054906101000a900460ff16905090565b6110ae612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b60088054905081101561142c578173ffffffffffffffffffffffffffffffffffffffff166008828154811061126157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561141f576008600160088054905003815481106112bd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600882815481106112f557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060088054806113e557fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055905561142c565b8080600101915050611230565b5050565b60006114d961143d612f38565b846114d4856005600061144e612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b612f40565b6001905092915050565b600f5481565b60006114f3612f38565b9050600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615355602c913960400191505060405180910390fd5b60006115a383613520565b505050505090506115fc81600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061165481600a5461357c90919063ffffffff16565b600a8190555061166f83600b5461349890919063ffffffff16565b600b81905550505050565b611682612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600954831115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b8161183757600061182784613520565b505050505090508091505061184e565b600061184284613520565b50505050915050809150505b92915050565b7f000000000000000000000000d8b6a853095c334ad26621a301379cc3614f966381565b601860019054906101000a900460ff1681565b60155481565b611899612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b7310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806153336022913960400191505060405180910390fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b8657611b42600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100b565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611ca2612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e4757600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611e92565b611e8f600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461100b565b90505b919050565b611e9f612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f5f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612025612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f81905550600f5460108190555060006011819055506011546012819055506000601381905550600f5460148190555060006015819055506015546017819055506000601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600060405180821515815260200191505060405180910390a1565b60195481565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600d8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561229d5780601f106122725761010080835404028352916020019161229d565b820191906000526020600020905b81548152906001019060200180831161228057829003601f168201915b5050505050905090565b600061236a6122b4612f38565b84612365856040518060600160405280602581526020016153a460259139600560006122de612f38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133639092919063ffffffff16565b612f40565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461241a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806153816023913960400191505060405180910390fd5b6002544211612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006125a561259e612f38565b8484613137565b6001905092915050565b6000600254905090565b60135481565b6125c7612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601860016101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405180821515815260200191505060405180910390a150565b6126e5612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146127a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a81116127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260338152602001806152456033913960400191505060405180910390fd5b6128266064612818836009546135c690919063ffffffff16565b61344e90919063ffffffff16565b60198190555050565b612837612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612aaf612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b6f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b612bd2612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612c92576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806151d56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612ddd612f38565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6003600f81905550600f5460108190555060046011819055506011546012819055506001601381905550600f5460148190555060026015819055506015546017819055506001601860006101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159600160405180821515815260200191505060405180910390a1565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061530f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151fb6022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806152ea6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151886023913960400191505060405180910390fd5b6000811161329c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806152c16029913960400191505060405180910390fd5b60006132a730611dac565b90506000601a5482101590508080156132cd5750601860009054906101000a900460ff16155b801561332557507f000000000000000000000000d8b6a853095c334ad26621a301379cc3614f966373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561333d5750601860019054906101000a900460ff165b1561335157601a5491506133508261364c565b5b61335c85858561372e565b5050505050565b6000838311158290613410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133d55780820151818401526020810190506133ba565b50505050905090810190601f1680156134025780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613430613d49565b91509150613447818361344e90919063ffffffff16565b9250505090565b600061349083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613fda565b905092915050565b600080828401905083811015613516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060008060006135378a6140a0565b92509250925060008060006135558d8686613550613423565b6140fa565b9250925092508282828888889b509b509b509b509b509b5050505050505091939550919395565b60006135be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613363565b905092915050565b6000808314156135d95760009050613646565b60008284029050828482816135ea57fe5b0414613641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806152786021913960400191505060405180910390fd5b809150505b92915050565b6001601860006101000a81548160ff021916908315150217905550600061367d60028361344e90919063ffffffff16565b90506000613694828461357c90919063ffffffff16565b905060004790506136a483614183565b60006136b9824761357c90919063ffffffff16565b90506136c58382614431565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405180848152602001838152602001828152602001935050505060405180910390a1505050506000601860006101000a81548160ff02191690831515021790555050565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137cf5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137e1576137dc614582565b61383d565b60195481111561383c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602881526020018061521d6028913960400191505060405180910390fd5b5b60006138676064613859601354856135c690919063ffffffff16565b61344e90919063ffffffff16565b905060006138936064613885601554866135c690919063ffffffff16565b61344e90919063ffffffff16565b9050600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156139385750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139715761396c858561396784613959878961357c90919063ffffffff16565b61357c90919063ffffffff16565b6145a4565b613c38565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a145750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613a4d57613a488585613a4384613a35878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614804565b613c37565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613af15750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613b2a57613b258585613b2084613b12878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b613c36565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613bcc5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613c0557613c008585613bfb84613bed878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614c2f565b613c35565b613c348585613c2f84613c21878961357c90919063ffffffff16565b61357c90919063ffffffff16565b614a64565b5b5b5b5b6000600f819055506000601181905550613c5485600084614a64565b613c8185601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683614a64565b601054600f81905550601254601181905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680613d345750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15613d4257613d41614f24565b5b5050505050565b6000806000600a5490506000600954905060005b600880549050811015613f9d57826003600060088481548110613d7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613e635750816004600060088481548110613dfb57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613e7a57600a5460095494509450505050613fd6565b613f036003600060088481548110613e8e57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461357c90919063ffffffff16565b9250613f8e6004600060088481548110613f1957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361357c90919063ffffffff16565b91508080600101915050613d5d565b50613fb5600954600a5461344e90919063ffffffff16565b821015613fcd57600a54600954935093505050613fd6565b81819350935050505b9091565b60008083118290614086576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561404b578082015181840152602081019050614030565b50505050905090810190601f1680156140785780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161409257fe5b049050809150509392505050565b6000806000806140af85614f46565b905060006140bc86614f77565b905060006140e5826140d7858a61357c90919063ffffffff16565b61357c90919063ffffffff16565b90508083839550955095505050509193909250565b60008060008061411385896135c690919063ffffffff16565b9050600061412a86896135c690919063ffffffff16565b9050600061414187896135c690919063ffffffff16565b9050600061416a8261415c858761357c90919063ffffffff16565b61357c90919063ffffffff16565b9050838184965096509650505050509450945094915050565b6060600267ffffffffffffffff8111801561419d57600080fd5b506040519080825280602002602001820160405280156141cc5781602001602082028036833780820191505090505b50905030816000815181106141dd57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561427d57600080fd5b505afa158015614291573d6000803e3d6000fd5b505050506040513d60208110156142a757600080fd5b8101908080519060200190929190505050816001815181106142c557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061432a307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e84612f40565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156143ec5780820151818401526020810190506143d1565b505050509050019650505050505050600060405180830381600087803b15801561441557600080fd5b505af1158015614429573d6000803e3d6000fd5b505050505050565b61445c307f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e84612f40565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806144a66121dc565b426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561452b57600080fd5b505af115801561453f573d6000803e3d6000fd5b50505050506040513d606081101561455657600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b6000600f81905550600060118190555060006013819055506000601581905550565b6000806000806000806145b687613520565b95509550955095509550955061461487600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506146a986600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061473e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061478a81614fa8565b614794848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061481687613520565b95509550955095509550955061487486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061490983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061499e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506149ea81614fa8565b6149f4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614a7687613520565b955095509550955095509550614ad486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614b6985600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614bb581614fa8565b614bbf848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080614c4187613520565b955095509550955095509550614c9f87600460008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614d3486600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461357c90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614dc983600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614e5e85600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614eaa81614fa8565b614eb4848361514d565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6003600f81905550600460118190555060016013819055506002601581905550565b6000614f706064614f62600f54856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fa16064614f93601154856135c690919063ffffffff16565b61344e90919063ffffffff16565b9050919050565b6000614fb2613423565b90506000614fc982846135c690919063ffffffff16565b905061501d81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156151485761510483600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461349890919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b61516282600a5461357c90919063ffffffff16565b600a8190555061517d81600b5461349890919063ffffffff16565b600b81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206c657373207468616e2031302070657263656e7421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220422b5a8472d942bf16fff3c051dcfcf006b42466bf3980f30826c421471b914464736f6c634300060c0033
Deployed Bytecode Sourcemap
27887:19828:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30548:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31460:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29113:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30825:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31629:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28969:75;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33505:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30734:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34218:479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31950:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28656:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32676:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46009:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33061:436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29171:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29250:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28930:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33766:444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38576:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47148:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28743:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30928:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18482:148;;;;;;;;;;;;;:::i;:::-;;46725:411;;;;;;;;;;;;;:::i;:::-;;29300:58;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32453:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17839:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30639:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32176:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19492:293;;;;;;;;;;;;;:::i;:::-;;31134:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19037:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28844:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47535:171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47273:254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19202:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31309:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46132:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18785:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46309:408;;;;;;;;;;;;;:::i;:::-;;30548:83;30585:13;30618:5;30611:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30548:83;:::o;31460:161::-;31535:4;31552:39;31561:12;:10;:12::i;:::-;31575:7;31584:6;31552:8;:39::i;:::-;31609:4;31602:11;;31460:161;;;;:::o;32581:87::-;32623:7;32650:10;;32643:17;;32581:87;:::o;29113:51::-;;;:::o;30825:95::-;30878:7;30905;;30898:14;;30825:95;:::o;31629:313::-;31727:4;31744:36;31754:6;31762:9;31773:6;31744:9;:36::i;:::-;31791:121;31800:6;31808:12;:10;:12::i;:::-;31822:89;31860:6;31822:89;;;;;;;;;;;;;;;;;:11;:19;31834:6;31822:19;;;;;;;;;;;;;;;:33;31842:12;:10;:12::i;:::-;31822:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;31791:8;:121::i;:::-;31930:4;31923:11;;31629:313;;;;;:::o;28969:75::-;;;;;;;;;;;;;:::o;33505:253::-;33571:7;33610;;33599;:18;;33591:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33675:19;33698:10;:8;:10::i;:::-;33675:33;;33726:24;33738:11;33726:7;:11;;:24;;;;:::i;:::-;33719:31;;;33505:253;;;:::o;30734:83::-;30775:5;30800:9;;;;;;;;;;;30793:16;;30734:83;:::o;34218:479::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34300:11:::1;:20;34312:7;34300:20;;;;;;;;;;;;;;;;;;;;;;;;;34292:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34368:9;34363:327;34387:9;:16;;;;34383:1;:20;34363:327;;;34445:7;34429:23;;:9;34439:1;34429:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;34425:254;;;34488:9;34517:1;34498:9;:16;;;;:20;34488:31;;;;;;;;;;;;;;;;;;;;;;;;;34473:9;34483:1;34473:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34557:1;34538:7;:16;34546:7;34538:16;;;;;;;;;;;;;;;:20;;;;34600:5;34577:11;:20;34589:7;34577:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34624:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34658:5;;34425:254;34405:3;;;;;;;34363:327;;;;34218:479:::0;:::o;31950:218::-;32038:4;32055:83;32064:12;:10;:12::i;:::-;32078:7;32087:50;32126:10;32087:11;:25;32099:12;:10;:12::i;:::-;32087:25;;;;;;;;;;;;;;;:34;32113:7;32087:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;32055:8;:83::i;:::-;32156:4;32149:11;;31950:218;;;;:::o;28656:26::-;;;;:::o;32676:377::-;32728:14;32745:12;:10;:12::i;:::-;32728:29;;32777:11;:19;32789:6;32777:19;;;;;;;;;;;;;;;;;;;;;;;;;32776:20;32768:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32857:15;32881:19;32892:7;32881:10;:19::i;:::-;32856:44;;;;;;;32929:28;32949:7;32929;:15;32937:6;32929:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32911:7;:15;32919:6;32911:15;;;;;;;;;;;;;;;:46;;;;32978:20;32990:7;32978;;:11;;:20;;;;:::i;:::-;32968:7;:30;;;;33022:23;33037:7;33022:10;;:14;;:23;;;;:::i;:::-;33009:10;:36;;;;32676:377;;;:::o;46009:111::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46108:4:::1;46078:18;:27;46097:7;46078:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;46009:111:::0;:::o;33061:436::-;33151:7;33190;;33179;:18;;33171:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33249:17;33244:246;;33284:15;33308:19;33319:7;33308:10;:19::i;:::-;33283:44;;;;;;;33349:7;33342:14;;;;;33244:246;33391:23;33422:19;33433:7;33422:10;:19::i;:::-;33389:52;;;;;;;33463:15;33456:22;;;33061:436;;;;;:::o;29171:38::-;;;:::o;29250:41::-;;;;;;;;;;;;;:::o;28930:32::-;;;;:::o;33766:444::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33859:42:::1;33848:53;;:7;:53;;;;33840:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33960:11;:20;33972:7;33960:20;;;;;;;;;;;;;;;;;;;;;;;;;33959:21;33951:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34045:1;34026:7;:16;34034:7;34026:16;;;;;;;;;;;;;;;;:20;34023:108;;;34082:37;34102:7;:16;34110:7;34102:16;;;;;;;;;;;;;;;;34082:19;:37::i;:::-;34063:7;:16;34071:7;34063:16;;;;;;;;;;;;;;;:56;;;;34023:108;34164:4;34141:11;:20;34153:7;34141:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;34179:9;34194:7;34179:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33766:444:::0;:::o;38576:123::-;38640:4;38664:18;:27;38683:7;38664:27;;;;;;;;;;;;;;;;;;;;;;;;;38657:34;;38576:123;;;:::o;47148:114::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47245:9:::1;47227:15;;:27;;;;;;;;;;;;;;;;;;47148:114:::0;:::o;28743:32::-;;;;:::o;30928:198::-;30994:7;31018:11;:20;31030:7;31018:20;;;;;;;;;;;;;;;;;;;;;;;;;31014:49;;;31047:7;:16;31055:7;31047:16;;;;;;;;;;;;;;;;31040:23;;;;31014:49;31081:37;31101:7;:16;31109:7;31101:16;;;;;;;;;;;;;;;;31081:19;:37::i;:::-;31074:44;;30928:198;;;;:::o;18482:148::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18589:1:::1;18552:40;;18573:6;::::0;::::1;;;;;;;;18552:40;;;;;;;;;;;;18620:1;18603:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;18482:148::o:0;46725:411::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46793:1:::1;46783:7;:11;;;;46823:7;;46805:15;:25;;;;46857:1;46841:13;:17;;;;46893:13;;46869:21;:37;;;;46928:1;46917:8;:12;;;;46959:7;;46940:16;:26;;;;46993:1;46977:13;:17;;;;47029:13;;47005:21;:37;;;;47072:5;47053:16;;:24;;;;;;;;;;;;;;;;;;47093:35;47122:5;47093:35;;;;;;;;;;;;;;;;;;;;46725:411::o:0;29300:58::-;;;;:::o;32453:120::-;32521:4;32545:11;:20;32557:7;32545:20;;;;;;;;;;;;;;;;;;;;;;;;;32538:27;;32453:120;;;:::o;17839:79::-;17877:7;17904:6;;;;;;;;;;;17897:13;;17839:79;:::o;30639:87::-;30678:13;30711:7;30704:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30639:87;:::o;32176:269::-;32269:4;32286:129;32295:12;:10;:12::i;:::-;32309:7;32318:96;32357:15;32318:96;;;;;;;;;;;;;;;;;:11;:25;32330:12;:10;:12::i;:::-;32318:25;;;;;;;;;;;;;;;:34;32344:7;32318:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;32286:8;:129::i;:::-;32433:4;32426:11;;32176:269;;;;:::o;19492:293::-;19562:10;19544:28;;:14;;;;;;;;;;;:28;;;19536:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19637:9;;19631:3;:15;19623:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19728:14;;;;;;;;;;;19699:44;;19720:6;;;;;;;;;;19699:44;;;;;;;;;;;;19763:14;;;;;;;;;;;19754:6;;:23;;;;;;;;;;;;;;;;;;19492:293::o;31134:167::-;31212:4;31229:42;31239:12;:10;:12::i;:::-;31253:9;31264:6;31229:9;:42::i;:::-;31289:4;31282:11;;31134:167;;;;:::o;19037:89::-;19082:7;19109:9;;19102:16;;19037:89;:::o;28844:27::-;;;;:::o;47535:171::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47636:8:::1;47612:21;;:32;;;;;;;;;;;;;;;;;;47660:38;47689:8;47660:38;;;;;;;;;;;;;;;;;;;;47535:171:::0;:::o;47273:254::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47375:2:::1;47360:12;:17;47352:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47459:60;47503:5;47459:25;47471:12;47459:7;;:11;;:25;;;;:::i;:::-;:29;;:60;;;;:::i;:::-;47444:12;:75;;;;47273:254:::0;:::o;19202:214::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19283:6:::1;::::0;::::1;;;;;;;;19266:14;;:23;;;;;;;;;;;;;;;;;;19317:1;19300:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;19348:4;19342:3;:10;19330:9;:22;;;;19405:1;19368:40;;19389:6;::::0;::::1;;;;;;;;19368:40;;;;;;;;;;;;19202:214:::0;:::o;31309:143::-;31390:7;31417:11;:18;31429:5;31417:18;;;;;;;;;;;;;;;:27;31436:7;31417:27;;;;;;;;;;;;;;;;31410:34;;31309:143;;;;:::o;46132:110::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46229:5:::1;46199:18;:27;46218:7;46199:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;46132:110:::0;:::o;18785:244::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18894:1:::1;18874:22;;:8;:22;;;;18866:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18984:8;18955:38;;18976:6;::::0;::::1;;;;;;;;18955:38;;;;;;;;;;;;19013:8;19004:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;18785:244:::0;:::o;46309:408::-;18061:12;:10;:12::i;:::-;18051:22;;:6;;;;;;;;;;:22;;;18043:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46376:1:::1;46366:7;:11;;;;46406:7;;46388:15;:25;;;;46440:1;46424:13;:17;;;;46476:13;;46452:21;:37;;;;46511:1;46500:8;:12;;;;46542:7;;46523:16;:26;;;;46576:1;46560:13;:17;;;;46612:13;;46588:21;:37;;;;46655:4;46636:16;;:23;;;;;;;;;;;;;;;;;;46675:34;46704:4;46675:34;;;;;;;;;;;;;;;;;;;;46309:408::o:0;10247:106::-;10300:15;10335:10;10328:17;;10247:106;:::o;38707:337::-;38817:1;38800:19;;:5;:19;;;;38792:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38898:1;38879:21;;:7;:21;;;;38871:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38982:6;38952:11;:18;38964:5;38952:18;;;;;;;;;;;;;;;:27;38971:7;38952:27;;;;;;;;;;;;;;;:36;;;;39020:7;39004:32;;39013:5;39004:32;;;39029:6;39004:32;;;;;;;;;;;;;;;;;;38707:337;;;:::o;39052:1234::-;39190:1;39174:18;;:4;:18;;;;39166:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39267:1;39253:16;;:2;:16;;;;39245:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39337:1;39328:6;:10;39320:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39679:28;39710:24;39728:4;39710:9;:24::i;:::-;39679:55;;39753:24;39804:29;;39780:20;:53;;39753:80;;39862:19;:53;;;;;39899:16;;;;;;;;;;;39898:17;39862:53;:91;;;;;39940:13;39932:21;;:4;:21;;;;39862:91;:129;;;;;39970:21;;;;;;;;;;;39862:129;39844:318;;;40041:29;;40018:52;;40114:36;40129:20;40114:14;:36::i;:::-;39844:318;40248:30;40263:4;40268:2;40271:6;40248:14;:30::i;:::-;39052:1234;;;;;:::o;6657:192::-;6743:7;6776:1;6771;:6;;6779:12;6763:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6803:9;6819:1;6815;:5;6803:17;;6840:1;6833:8;;;6657:192;;;;;:::o;36818:163::-;36859:7;36880:15;36897;36916:19;:17;:19::i;:::-;36879:56;;;;36953:20;36965:7;36953;:11;;:20;;;;:::i;:::-;36946:27;;;;36818:163;:::o;8055:132::-;8113:7;8140:39;8144:1;8147;8140:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8133:46;;8055:132;;;;:::o;5754:181::-;5812:7;5832:9;5848:1;5844;:5;5832:17;;5873:1;5868;:6;;5860:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5926:1;5919:8;;;5754:181;;;;:::o;35616:419::-;35675:7;35684;35693;35702;35711;35720;35741:23;35766:12;35780:18;35802:20;35814:7;35802:11;:20::i;:::-;35740:82;;;;;;35834:15;35851:23;35876:12;35892:50;35904:7;35913:4;35919:10;35931;:8;:10::i;:::-;35892:11;:50::i;:::-;35833:109;;;;;;35961:7;35970:15;35987:4;35993:15;36010:4;36016:10;35953:74;;;;;;;;;;;;;;;;;;35616:419;;;;;;;:::o;6218:136::-;6276:7;6303:43;6307:1;6310;6303:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6296:50;;6218:136;;;;:::o;7108:471::-;7166:7;7416:1;7411;:6;7407:47;;;7441:1;7434:8;;;;7407:47;7466:9;7482:1;7478;:5;7466:17;;7511:1;7506;7502;:5;;;;;;:10;7494:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7570:1;7563:8;;;7108:471;;;;;:::o;40294:985::-;29760:4;29741:16;;:23;;;;;;;;;;;;;;;;;;40430:12:::1;40445:27;40470:1;40445:20;:24;;:27;;;;:::i;:::-;40430:42;;40483:17;40503:30;40528:4;40503:20;:24;;:30;;;;:::i;:::-;40483:50;;40811:22;40836:21;40811:46;;40902:22;40919:4;40902:16;:22::i;:::-;41055:18;41076:41;41102:14;41076:21;:25;;:41;;;;:::i;:::-;41055:62;;41167:35;41180:9;41191:10;41167:12;:35::i;:::-;41228:43;41243:4;41249:10;41261:9;41228:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29775:1;;;;29806:5:::0;29787:16;;:24;;;;;;;;;;;;;;;;;;40294:985;:::o;42478:1845::-;42575:18;:26;42594:6;42575:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;42605:18;:29;42624:9;42605:29;;;;;;;;;;;;;;;;;;;;;;;;;42575:59;42572:220;;;42650:14;:12;:14::i;:::-;42572:220;;;42723:12;;42713:6;:22;;42705:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42572:220;42866:15;42884:29;42909:3;42884:20;42895:8;;42884:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;42866:47;;42924:20;42947:34;42977:3;42947:25;42958:13;;42947:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42924:57;;42998:11;:19;43010:6;42998:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;43022:11;:22;43034:9;43022:22;;;;;;;;;;;;;;;;;;;;;;;;;43021:23;42998:46;42994:762;;;43061:81;43083:6;43091:9;43103:37;43127:12;43103:19;43114:7;43103:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;43061:21;:81::i;:::-;42994:762;;;43165:11;:19;43177:6;43165:19;;;;;;;;;;;;;;;;;;;;;;;;;43164:20;:46;;;;;43188:11;:22;43200:9;43188:22;;;;;;;;;;;;;;;;;;;;;;;;;43164:46;43160:596;;;43227:79;43247:6;43255:9;43267:37;43291:12;43267:19;43278:7;43267:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;43227:19;:79::i;:::-;43160:596;;;43329:11;:19;43341:6;43329:19;;;;;;;;;;;;;;;;;;;;;;;;;43328:20;:47;;;;;43353:11;:22;43365:9;43353:22;;;;;;;;;;;;;;;;;;;;;;;;;43352:23;43328:47;43324:432;;;43392:77;43410:6;43418:9;43430:37;43454:12;43430:19;43441:7;43430:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;43392:17;:77::i;:::-;43324:432;;;43491:11;:19;43503:6;43491:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;43514:11;:22;43526:9;43514:22;;;;;;;;;;;;;;;;;;;;;;;;;43491:45;43487:269;;;43553:81;43575:6;43583:9;43595:37;43619:12;43595:19;43606:7;43595:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;43553:21;:81::i;:::-;43487:269;;;43667:77;43685:6;43693:9;43705:37;43729:12;43705:19;43716:7;43705:6;:10;;:19;;;;:::i;:::-;:23;;:37;;;;:::i;:::-;43667:17;:77::i;:::-;43487:269;43324:432;43160:596;42994:762;43870:1;43860:7;:11;;;;43898:1;43882:13;:17;;;;43967:46;43985:6;44001:1;44005:7;43967:17;:46::i;:::-;44024:56;44042:6;44050:15;;;;;;;;;;;44067:12;44024:17;:56::i;:::-;44145:15;;44135:7;:25;;;;44187:21;;44171:13;:37;;;;44226:18;:26;44245:6;44226:26;;;;;;;;;;;;;;;;;;;;;;;;;:59;;;;44256:18;:29;44275:9;44256:29;;;;;;;;;;;;;;;;;;;;;;;;;44226:59;44223:92;;;44300:15;:13;:15::i;:::-;44223:92;42478:1845;;;;;:::o;36989:561::-;37039:7;37048;37068:15;37086:7;;37068:25;;37104:15;37122:7;;37104:25;;37151:9;37146:289;37170:9;:16;;;;37166:1;:20;37146:289;;;37236:7;37212;:21;37220:9;37230:1;37220:12;;;;;;;;;;;;;;;;;;;;;;;;;37212:21;;;;;;;;;;;;;;;;:31;:66;;;;37271:7;37247;:21;37255:9;37265:1;37255:12;;;;;;;;;;;;;;;;;;;;;;;;;37247:21;;;;;;;;;;;;;;;;:31;37212:66;37208:97;;;37288:7;;37297;;37280:25;;;;;;;;;37208:97;37330:34;37342:7;:21;37350:9;37360:1;37350:12;;;;;;;;;;;;;;;;;;;;;;;;;37342:21;;;;;;;;;;;;;;;;37330:7;:11;;:34;;;;:::i;:::-;37320:44;;37389:34;37401:7;:21;37409:9;37419:1;37409:12;;;;;;;;;;;;;;;;;;;;;;;;;37401:21;;;;;;;;;;;;;;;;37389:7;:11;;:34;;;;:::i;:::-;37379:44;;37188:3;;;;;;;37146:289;;;;37459:20;37471:7;;37459;;:11;;:20;;;;:::i;:::-;37449:7;:30;37445:61;;;37489:7;;37498;;37481:25;;;;;;;;37445:61;37525:7;37534;37517:25;;;;;;36989:561;;;:::o;8683:278::-;8769:7;8801:1;8797;:5;8804:12;8789:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8828:9;8844:1;8840;:5;;;;;;8828:17;;8952:1;8945:8;;;8683:278;;;;;:::o;36043:330::-;36103:7;36112;36121;36141:12;36156:24;36172:7;36156:15;:24::i;:::-;36141:39;;36191:18;36212:30;36234:7;36212:21;:30::i;:::-;36191:51;;36253:23;36279:33;36301:10;36279:17;36291:4;36279:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36253:59;;36331:15;36348:4;36354:10;36323:42;;;;;;;;;36043:330;;;;;:::o;36381:429::-;36496:7;36505;36514;36534:15;36552:24;36564:11;36552:7;:11;;:24;;;;:::i;:::-;36534:42;;36587:12;36602:21;36611:11;36602:4;:8;;:21;;;;:::i;:::-;36587:36;;36634:18;36655:27;36670:11;36655:10;:14;;:27;;;;:::i;:::-;36634:48;;36693:23;36719:33;36741:10;36719:17;36731:4;36719:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;36693:59;;36771:7;36780:15;36797:4;36763:39;;;;;;;;;;36381:429;;;;;;;;:::o;41287:589::-;41413:21;41451:1;41437:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41413:40;;41482:4;41464;41469:1;41464:7;;;;;;;;;;;;;:23;;;;;;;;;;;41508:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41498:4;41503:1;41498:7;;;;;;;;;;;;;:32;;;;;;;;;;;41543:62;41560:4;41575:15;41593:11;41543:8;:62::i;:::-;41644:15;:66;;;41725:11;41751:1;41795:4;41822;41842:15;41644:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41287:589;;:::o;41884:513::-;42032:62;42049:4;42064:15;42082:11;42032:8;:62::i;:::-;42137:15;:31;;;42176:9;42209:4;42229:11;42255:1;42298;42341:7;:5;:7::i;:::-;42363:15;42137:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41884:513;;:::o;38269:141::-;38322:1;38312:7;:11;;;;38350:1;38334:13;:17;;;;38373:1;38362:8;:12;;;;38401:1;38385:13;:17;;;;38269:141::o;45435:566::-;45538:15;45555:23;45580:12;45594:23;45619:12;45633:18;45655:19;45666:7;45655:10;:19::i;:::-;45537:137;;;;;;;;;;;;45703:28;45723:7;45703;:15;45711:6;45703:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45685:7;:15;45693:6;45685:15;;;;;;;;;;;;;;;:46;;;;45760:28;45780:7;45760;:15;45768:6;45760:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45742:7;:15;45750:6;45742:15;;;;;;;;;;;;;;;:46;;;;45820:39;45843:15;45820:7;:18;45828:9;45820:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45799:7;:18;45807:9;45799:18;;;;;;;;;;;;;;;:60;;;;45873:26;45888:10;45873:14;:26::i;:::-;45910:23;45922:4;45928;45910:11;:23::i;:::-;45966:9;45949:44;;45958:6;45949:44;;;45977:15;45949:44;;;;;;;;;;;;;;;;;;45435:566;;;;;;;;;:::o;44841:586::-;44942:15;44959:23;44984:12;44998:23;45023:12;45037:18;45059:19;45070:7;45059:10;:19::i;:::-;44941:137;;;;;;;;;;;;45107:28;45127:7;45107;:15;45115:6;45107:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45089:7;:15;45097:6;45089:15;;;;;;;;;;;;;;;:46;;;;45167:39;45190:15;45167:7;:18;45175:9;45167:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45146:7;:18;45154:9;45146:18;;;;;;;;;;;;;;;:60;;;;45238:39;45261:15;45238:7;:18;45246:9;45238:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45217:7;:18;45225:9;45217:18;;;;;;;;;;;;;;;:60;;;;45299:26;45314:10;45299:14;:26::i;:::-;45336:23;45348:4;45354;45336:11;:23::i;:::-;45392:9;45375:44;;45384:6;45375:44;;;45403:15;45375:44;;;;;;;;;;;;;;;;;;44841:586;;;;;;;;;:::o;44331:502::-;44430:15;44447:23;44472:12;44486:23;44511:12;44525:18;44547:19;44558:7;44547:10;:19::i;:::-;44429:137;;;;;;;;;;;;44595:28;44615:7;44595;:15;44603:6;44595:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;44577:7;:15;44585:6;44577:15;;;;;;;;;;;;;;;:46;;;;44655:39;44678:15;44655:7;:18;44663:9;44655:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;44634:7;:18;44642:9;44634:18;;;;;;;;;;;;;;;:60;;;;44705:26;44720:10;44705:14;:26::i;:::-;44742:23;44754:4;44760;44742:11;:23::i;:::-;44798:9;44781:44;;44790:6;44781:44;;;44809:15;44781:44;;;;;;;;;;;;;;;;;;44331:502;;;;;;;;;:::o;34705:642::-;34808:15;34825:23;34850:12;34864:23;34889:12;34903:18;34925:19;34936:7;34925:10;:19::i;:::-;34807:137;;;;;;;;;;;;34973:28;34993:7;34973;:15;34981:6;34973:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;34955:7;:15;34963:6;34955:15;;;;;;;;;;;;;;;:46;;;;35030:28;35050:7;35030;:15;35038:6;35030:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;35012:7;:15;35020:6;35012:15;;;;;;;;;;;;;;;:46;;;;35090:39;35113:15;35090:7;:18;35098:9;35090:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35069:7;:18;35077:9;35069:18;;;;;;;;;;;;;;;:60;;;;35161:39;35184:15;35161:7;:18;35169:9;35161:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;35140:7;:18;35148:9;35140:18;;;;;;;;;;;;;;;:60;;;;35219:26;35234:10;35219:14;:26::i;:::-;35256:23;35268:4;35274;35256:11;:23::i;:::-;35312:9;35295:44;;35304:6;35295:44;;;35323:15;35295:44;;;;;;;;;;;;;;;;;;34705:642;;;;;;;;;:::o;38422:142::-;38476:1;38466:7;:11;;;;38504:1;38488:13;:17;;;;38527:1;38516:8;:12;;;;38555:1;38539:13;:17;;;;38422:142::o;37929:154::-;37993:7;38020:55;38059:5;38020:20;38032:7;;38020;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;38013:62;;37929:154;;;:::o;38091:166::-;38161:7;38188:61;38233:5;38188:26;38200:13;;38188:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;38181:68;;38091:166;;;:::o;37562:355::-;37625:19;37648:10;:8;:10::i;:::-;37625:33;;37669:18;37690:27;37705:11;37690:10;:14;;:27;;;;:::i;:::-;37669:48;;37753:38;37780:10;37753:7;:22;37769:4;37753:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37728:7;:22;37744:4;37728:22;;;;;;;;;;;;;;;:63;;;;37805:11;:26;37825:4;37805:26;;;;;;;;;;;;;;;;;;;;;;;;;37802:107;;;37871:38;37898:10;37871:7;:22;37887:4;37871:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37846:7;:22;37862:4;37846:22;;;;;;;;;;;;;;;:63;;;;37802:107;37562:355;;;:::o;35461:147::-;35539:17;35551:4;35539:7;;:11;;:17;;;;:::i;:::-;35529:7;:27;;;;35580:20;35595:4;35580:10;;:14;;:20;;;;:::i;:::-;35567:10;:33;;;;35461:147;;:::o
Swarm Source
ipfs://422b5a8472d942bf16fff3c051dcfcf006b42466bf3980f30826c421471b9144
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.