Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Deflationary Token
Overview
Max Total Supply
100,000,000,000,000,000 eSHILL
Holders
160 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
93,076,136,488,285.009001974 eSHILLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
eSHILLTOKEN
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-11 */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.6.12; 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 eSHILLTOKEN is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address payable; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => uint256) public _lastBuyTime; mapping (address => bool) private _isExcludedFromFee; address payable public marketing; address public marketing_lp; address payable private _burnPool = 0x0000000000000000000000000000000000000000; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100 * 10**15 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Ethereum Shillings"; string private _symbol = "eSHILL"; uint8 private _decimals = 9; uint256 public _taxBuyFee = 2; uint256 public _taxSellFee = 2; uint256 public _taxTransferFee = 0; uint256 private _operationsFee = 0; //adjusted on the go uint256 private _liquidityFee = 0; //adjusted on the go uint256 private _taxFee = 0; //adjusted on the go uint256 private _burnFee = 0; //adjusted on the go uint256 public _marketingBuyFee = 5; uint256 public _marketingSellFee = 5; uint256 public _marketingTransferFee = 0; uint256 public _liquidityBuyFee = 4; uint256 public _liquiditySellFee = 4; uint256 public _liquidityTransferFee = 0; uint256 public _burnBuyFee = 1; uint256 public _burnSellFee = 1; uint256 public _burnTransferFee = 0; uint256 public _pendingLiquidityFees = 0; uint256 public _dayTraderMultiplicator = 25; // div by 10 uint256 private constant _devAllocation = 3 * 10**15 * 10**9; uint256 private constant _listingsAllocation = 5 * 10**15 * 10**9; uint256 private constant _marketingAllocation = 3 * 10**15 * 10**9; uint256 private constant _privateSaleAllocation = 29 * 10**15 * 10**9; uint256 private constant _LPAllocation = 25 * 10**15 * 10**9; uint256 private constant _burnAllocation = 35 * 10**15 * 10**9; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxWalletHolding = 65 * 10**13 * 10**9; uint256 private numTokensSellToAddToLiquidity = 15 * 10**13 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor (address payable _marketing, address _marketing_lp, address _dev, address _listings) public { marketing = _marketing; marketing_lp = _marketing_lp; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_dev] = true; _isExcludedFromFee[_listings] = true; uint256 currentRate = _getRate(); _rOwned[_dev] = _devAllocation.mul(currentRate); _rOwned[_marketing] = _marketingAllocation.mul(currentRate); _rOwned[_listings] = _listingsAllocation.mul(currentRate); _rOwned[_burnPool] = _burnAllocation.mul(currentRate); _rOwned[_msgSender()] = (_LPAllocation + _privateSaleAllocation).mul(currentRate); emit Transfer(address(0), _msgSender(), _tTotal); emit Transfer(_msgSender(), _dev, _devAllocation); emit Transfer(_msgSender(), _marketing, _marketingAllocation); emit Transfer(_msgSender(), _burnPool, _burnAllocation); emit Transfer(_msgSender(), _listings, _listingsAllocation); } 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) { 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 totalFees() public view returns (uint256) { return _tFeeTotal; } 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); } //this can be called externally by deployer to immediately process accumulated fees accordingly (distribute to treasury & liquidity) function manualSwapAndLiquify() public onlyOwner() { uint256 contractTokenBalance = balanceOf(address(this)); swapAndLiquify(contractTokenBalance); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTax(uint256 _taxType, uint _taxSize) external onlyOwner() { if (_taxType == 1) { _taxSellFee = _taxSize; } else if (_taxType == 2) { _taxBuyFee = _taxSize; } else if (_taxType == 3) { _taxTransferFee = _taxSize; } else if (_taxType == 4) { _marketingBuyFee = _taxSize; } else if (_taxType == 5) { _marketingSellFee = _taxSize; } else if (_taxType == 6) { _marketingTransferFee = _taxSize; } else if (_taxType == 7) { _burnBuyFee = _taxSize; } else if (_taxType == 8) { _burnSellFee = _taxSize; } else if (_taxType == 9) { _burnTransferFee = _taxSize; } else if (_taxType == 10) { _liquidityBuyFee = _taxSize; } else if (_taxType == 11) { _liquiditySellFee = _taxSize; } else if (_taxType == 12) { _liquidityTransferFee = _taxSize; } else if (_taxType == 13) { _dayTraderMultiplicator = _taxSize; } } function setMaxWalletHolding(uint256 maxHolding) external onlyOwner() { _maxWalletHolding = maxHolding; } //this is to be called to distribute private sale allocations function distributePresaleAllocations(address payable [] memory recipients, uint256[] memory allocations) public onlyOwner() { require(recipients.length > 0, "At least one recipient must be in the array"); require(recipients.length == allocations.length, "Number of recipients must equal number of allocations"); uint256 currentRate = _getRate(); for (uint8 i = 0; i < recipients.length; i++) { if (!recipients[i].isContract()) { uint256 _rAlloc = allocations[i].mul(10**18).mul(currentRate); _rOwned[recipients[i]] = _rAlloc; _rOwned[_msgSender()] = _rOwned[_msgSender()] - _rAlloc; emit Transfer(_msgSender(), recipients[i], allocations[i].mul(10**18)); } } } function setSwapAndLiquifyEnabled(bool _enabled, uint256 _numTokensMin) public onlyOwner { swapAndLiquifyEnabled = _enabled; numTokensSellToAddToLiquidity = _numTokensMin; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to receive ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) { uint256[4] memory tValues = _getTValuesArray(tAmount); uint256[3] memory rValues = _getRValuesArray(tAmount, tValues[1], tValues[2], tValues[3]); return (rValues[0], rValues[1], rValues[2], tValues[0], tValues[1], tValues[2], tValues[3]); } function _getTValuesArray(uint256 tAmount) private view returns (uint256[4] memory val) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tOperations = calculateOperationsFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tOperations); return [tTransferAmount, tFee, tLiquidity, tOperations]; } function _getRValuesArray(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tOperations) private view returns (uint256[3] memory val) { uint256 currentRate = _getRate(); uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(tLiquidity.mul(currentRate)).sub(tOperations.mul(currentRate)); 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; 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); _pendingLiquidityFees = _pendingLiquidityFees.add(tLiquidity); } function _takeOperations(uint256 tOperations) private { uint256 currentRate = _getRate(); uint256 tBurn = 0; if (_operationsFee > 0) { tBurn = _burnFee.mul(tOperations).div(_operationsFee); emit Transfer(address(this), address(0), tBurn); } uint256 rOperations = tOperations.sub(tBurn).mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rOperations); _rOwned[_burnPool] = _rOwned[_burnPool].add(tBurn.mul(currentRate)); } 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 calculateOperationsFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_operationsFee).div( 10**2 ); } function removeAllFee() private { _taxFee = 0; _liquidityFee = 0; _operationsFee = 0; _burnFee = 0; } 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"); uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //depending on type of transfer (buy, sell, or p2p tokens transfer) different taxes & fees are applied bool isTransferBuy = from == uniswapV2Pair; bool isTransferSell = to == uniswapV2Pair; if (!isTransferBuy && !isTransferSell) { _operationsFee = _marketingTransferFee.add(_burnTransferFee); _liquidityFee = _liquidityTransferFee; _taxFee = _taxTransferFee; _burnFee = _burnTransferFee; } else if (isTransferBuy) { _operationsFee = _marketingBuyFee.add(_burnBuyFee); _liquidityFee = _liquidityBuyFee; _taxFee = _taxBuyFee; _burnFee = _burnBuyFee; _lastBuyTime[to] = block.timestamp; } else if (isTransferSell) { uint tax_multiplicator = 10; _operationsFee = _marketingSellFee.add(_burnSellFee); _liquidityFee = _liquiditySellFee; _taxFee = _taxSellFee; _burnFee = _burnSellFee; if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){ if (_lastBuyTime[from] != 0 && (_lastBuyTime[from] + (24 hours) > block.timestamp) ) { //increasing sell tax when user is selling within 24 hrs (Day Trader Tax) tax_multiplicator = _dayTraderMultiplicator; } } _operationsFee = _operationsFee.mul(tax_multiplicator).div(10); _liquidityFee = _liquidityFee.mul(tax_multiplicator).div(10); _taxFee = _taxFee.mul(tax_multiplicator).div(10); _burnFee = _burnFee.mul(tax_multiplicator).div(10); } //transfer amount, it will take tax, liquidity & treasury fees _tokenTransfer(from,to,amount,takeFee); removeAllFee(); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 liquidityPart = 0; if (_pendingLiquidityFees < contractTokenBalance) liquidityPart = _pendingLiquidityFees; uint256 distributionPart = contractTokenBalance.sub(liquidityPart); uint256 liquidityHalfPart = liquidityPart.div(2); uint256 liquidityHalfTokenPart = liquidityPart.sub(liquidityHalfPart); //now swapping half of the liquidity part + all of the distribution part into ETH uint256 totalETHSwap = liquidityHalfPart.add(distributionPart); uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(totalETHSwap); uint256 newBalance = address(this).balance.sub(initialBalance); uint256 liquidityBalance = liquidityHalfPart.mul(newBalance).div(totalETHSwap); // add liquidity to uniswap if (liquidityHalfTokenPart > 0 && liquidityBalance > 0) addLiquidity(liquidityHalfTokenPart, liquidityBalance); emit SwapAndLiquify(liquidityHalfPart, liquidityBalance, liquidityHalfPart); newBalance = address(this).balance; marketing.sendValue(newBalance); _pendingLiquidityFees = 0; } 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, 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, 0, marketing_lp, block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!_isExcludedFromFee[recipient] && (recipient != uniswapV2Pair)) require(balanceOf(recipient) < _maxWalletHolding, "Max Wallet holding limit exceeded"); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tOperations) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeOperations(tOperations); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address","name":"_marketing_lp","type":"address"},{"internalType":"address","name":"_dev","type":"address"},{"internalType":"address","name":"_listings","type":"address"}],"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":"tokensIntoLiquidity","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":"_burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_dayTraderMultiplicator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastBuyTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingTransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pendingLiquidityFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxTransferFee","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":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"allocations","type":"uint256[]"}],"name":"distributePresaleAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","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":"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":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwapAndLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing_lp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHolding","type":"uint256"}],"name":"setMaxWalletHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_numTokensMin","type":"uint256"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxType","type":"uint256"},{"internalType":"uint256","name":"_taxSize","type":"uint256"}],"name":"setTax","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
60c06040526000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506a52b7d2dcc80cd2e4000000600b55600b54600019816200006357fe5b0660001903600c556040518060400160405280601281526020017f457468657265756d205368696c6c696e67730000000000000000000000000000815250600e9080519060200190620000b892919062000e6c565b506040518060400160405280600681526020017f655348494c4c0000000000000000000000000000000000000000000000000000815250600f90805190602001906200010692919062000e6c565b506009601060006101000a81548160ff021916908360ff1602179055506002601155600260125560006013556000601455600060155560006016556000601755600560185560056019556000601a556004601b556004601c556000601d556001601e556001601f556000602055600060215560196022556001602360016101000a81548160ff0219169083151502179055506989a49213386742400000602455691fc3842bd1f071c00000602555348015620001c157600080fd5b5060405162005a7238038062005a7283398181016040526080811015620001e757600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919050505060006200022862000c0360201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35083600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a857600080fd5b505afa158015620003bd573d6000803e3d6000fd5b505050506040513d6020811015620003d457600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044857600080fd5b505afa1580156200045d573d6000803e3d6000fd5b505050506040513d60208110156200047457600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004ef57600080fd5b505af115801562000504573d6000803e3d6000fd5b505050506040513d60208110156200051b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600160076000620005af62000c0b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006200071a62000c3460201b60201c565b905062000741816a027b46536c66c8e300000062000c6e60201b62002af51790919060201c565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620007a9816a027b46536c66c8e300000062000c6e60201b62002af51790919060201c565b600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000811816a0422ca8b0a00a42500000062000c6e60201b62002af51790919060201c565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000879816a1cf389cd46047d0300000062000c6e60201b62002af51790919060201c565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000910816a17fcfd266d36eb3d0000006a14adf4b7320334b90000000162000c6e60201b62002af51790919060201c565b600360006200092462000c0360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200097262000c0360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a38373ffffffffffffffffffffffffffffffffffffffff1662000a0062000c0360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a027b46536c66c8e30000006040518082815260200191505060405180910390a38573ffffffffffffffffffffffffffffffffffffffff1662000a7f62000c0360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a027b46536c66c8e30000006040518082815260200191505060405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000b2062000c0360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a1cf389cd46047d030000006040518082815260200191505060405180910390a38273ffffffffffffffffffffffffffffffffffffffff1662000b9f62000c0360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a0422ca8b0a00a4250000006040518082815260200191505060405180910390a350505050505062000f12565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600062000c4962000cf960201b60201c565b9150915062000c67818362000d4f60201b62002b7b1790919060201c565b9250505090565b60008083141562000c83576000905062000cf3565b600082840290508284828162000c9557fe5b041462000cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018062005a516021913960400191505060405180910390fd5b809150505b92915050565b6000806000600c5490506000600b54905062000d28600b54600c5462000d4f60201b62002b7b1790919060201c565b82101562000d4257600c54600b5493509350505062000d4b565b81819350935050505b9091565b600062000d9983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000da160201b60201c565b905092915050565b6000808311829062000e51576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000e1557808201518184015260208101905062000df8565b50505050905090810190601f16801562000e435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000e5e57fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000eaf57805160ff191683800117855562000ee0565b8280016001018555821562000ee0579182015b8281111562000edf57825182559160200191906001019062000ec2565b5b50905062000eef919062000ef3565b5090565b5b8082111562000f0e57600081600090555060010162000ef4565b5090565b60805160601c60a05160601c614ae862000f696000398061163f5280612f63528061308e52806130e15280613a1a5250806111985280613d865280613e725280613e995280613fa45280613fcb5250614ae86000f3fe6080604052600436106102b25760003560e01c806370a0823111610175578063b6c52324116100dc578063e3624bba11610095578063ee67e3051161006f578063ee67e30514610ecc578063f2fde38b14611025578063f499133514611076578063fa156a66146110a1576102b9565b8063e3624bba14610e25578063e799eb2614610e50578063ea2f0b3714610e7b576102b9565b8063b6c5232414610cb9578063cd4f852d14610ce4578063dac1138014610d0f578063dd46706414610d3a578063dd62ed3e14610d75578063e125460214610dfa576102b9565b80638da5cb5b1161012e5780638da5cb5b14610ac457806395d89b4114610b05578063a457c2d714610b95578063a69df4b514610c06578063a9059cbb14610c1d578063a93a0fd014610c8e576102b9565b806370a08231146109b0578063715018a614610a15578063733b864f14610a2c5780637881fc2714610a435780637b29f1bc14610a6e578063866435c514610a99576102b9565b806339509351116102195780634a74bb02116101d25780634a74bb021461082a5780634fb2343a146108575780635342acb414610892578063667f6526146108f95780636b73fc9a1461093e5780636f60efbc14610969576102b9565b806339509351146106265780633a421d7214610697578063437823ec146106d85780634549b0391461072957806348df0dec1461078457806349bd5a5e146107e9576102b9565b80631944ada31161026b5780631944ada31461048157806323b872dd146104ac578063243299ba1461053d5780632d3e474a146105685780632d838119146105a9578063313ce567146105f8576102b9565b806306fdde03146102be578063095ea7b31461034e57806313114a9d146103bf5780631694505e146103ea57806318160ddd1461042b57806318a1940014610456576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36110cc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103135780820151818401526020810190506102f8565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103a76004803603604081101561037157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116e565b60405180821515815260200191505060405180910390f35b3480156103cb57600080fd5b506103d461118c565b6040518082815260200191505060405180910390f35b3480156103f657600080fd5b506103ff611196565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043757600080fd5b506104406111ba565b6040518082815260200191505060405180910390f35b34801561046257600080fd5b5061046b6111c4565b6040518082815260200191505060405180910390f35b34801561048d57600080fd5b506104966111ca565b6040518082815260200191505060405180910390f35b3480156104b857600080fd5b50610525600480360360608110156104cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111d0565b60405180821515815260200191505060405180910390f35b34801561054957600080fd5b506105526112a9565b6040518082815260200191505060405180910390f35b34801561057457600080fd5b5061057d6112af565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105b557600080fd5b506105e2600480360360208110156105cc57600080fd5b81019080803590602001909291905050506112d5565b6040518082815260200191505060405180910390f35b34801561060457600080fd5b5061060d611359565b604051808260ff16815260200191505060405180910390f35b34801561063257600080fd5b5061067f6004803603604081101561064957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611370565b60405180821515815260200191505060405180910390f35b3480156106a357600080fd5b506106ac611423565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106e457600080fd5b50610727600480360360208110156106fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611449565b005b34801561073557600080fd5b5061076e6004803603604081101561074c57600080fd5b810190808035906020019092919080351515906020019092919050505061156c565b6040518082815260200191505060405180910390f35b34801561079057600080fd5b506107d3600480360360208110156107a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611625565b6040518082815260200191505060405180910390f35b3480156107f557600080fd5b506107fe61163d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083657600080fd5b5061083f611661565b60405180821515815260200191505060405180910390f35b34801561086357600080fd5b506108906004803603602081101561087a57600080fd5b8101908080359060200190929190505050611674565b005b34801561089e57600080fd5b506108e1600480360360208110156108b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611746565b60405180821515815260200191505060405180910390f35b34801561090557600080fd5b5061093c6004803603604081101561091c57600080fd5b81019080803590602001909291908035906020019092919050505061179c565b005b34801561094a57600080fd5b50610953611981565b6040518082815260200191505060405180910390f35b34801561097557600080fd5b506109ae6004803603604081101561098c57600080fd5b8101908080351515906020019092919080359060200190929190505050611987565b005b3480156109bc57600080fd5b506109ff600480360360208110156109d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aad565b6040518082815260200191505060405180910390f35b348015610a2157600080fd5b50610a2a611afe565b005b348015610a3857600080fd5b50610a41611c84565b005b348015610a4f57600080fd5b50610a58611d65565b6040518082815260200191505060405180910390f35b348015610a7a57600080fd5b50610a83611d6b565b6040518082815260200191505060405180910390f35b348015610aa557600080fd5b50610aae611d71565b6040518082815260200191505060405180910390f35b348015610ad057600080fd5b50610ad9611d77565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b1157600080fd5b50610b1a611da0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b5a578082015181840152602081019050610b3f565b50505050905090810190601f168015610b875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ba157600080fd5b50610bee60048036036040811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e42565b60405180821515815260200191505060405180910390f35b348015610c1257600080fd5b50610c1b611f0f565b005b348015610c2957600080fd5b50610c7660048036036040811015610c4057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061212c565b60405180821515815260200191505060405180910390f35b348015610c9a57600080fd5b50610ca361214a565b6040518082815260200191505060405180910390f35b348015610cc557600080fd5b50610cce612150565b6040518082815260200191505060405180910390f35b348015610cf057600080fd5b50610cf961215a565b6040518082815260200191505060405180910390f35b348015610d1b57600080fd5b50610d24612160565b6040518082815260200191505060405180910390f35b348015610d4657600080fd5b50610d7360048036036020811015610d5d57600080fd5b8101908080359060200190929190505050612166565b005b348015610d8157600080fd5b50610de460048036036040811015610d9857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612357565b6040518082815260200191505060405180910390f35b348015610e0657600080fd5b50610e0f6123de565b6040518082815260200191505060405180910390f35b348015610e3157600080fd5b50610e3a6123e4565b6040518082815260200191505060405180910390f35b348015610e5c57600080fd5b50610e656123ea565b6040518082815260200191505060405180910390f35b348015610e8757600080fd5b50610eca60048036036020811015610e9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123f0565b005b348015610ed857600080fd5b5061102360048036036040811015610eef57600080fd5b8101908080359060200190640100000000811115610f0c57600080fd5b820183602082011115610f1e57600080fd5b80359060200191846020830284011164010000000083111715610f4057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610fa057600080fd5b820183602082011115610fb257600080fd5b80359060200191846020830284011164010000000083111715610fd457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612513565b005b34801561103157600080fd5b506110746004803603602081101561104857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128de565b005b34801561108257600080fd5b5061108b612ae9565b6040518082815260200191505060405180910390f35b3480156110ad57600080fd5b506110b6612aef565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111645780601f1061113957610100808354040283529160200191611164565b820191906000526020600020905b81548152906001019060200180831161114757829003601f168201915b5050505050905090565b600061118261117b612bc5565b8484612bcd565b6001905092915050565b6000600d54905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b54905090565b601f5481565b601a5481565b60006111dd848484612dc4565b61129e846111e9612bc5565b6112998560405180606001604052806028815260200161497b60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061124f612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b9092919063ffffffff16565b612bcd565b600190509392505050565b60225481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c54821115611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614883602a913960400191505060405180910390fd5b600061133c61352b565b90506113518184612b7b90919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b600061141961137d612bc5565b84611414856005600061138e612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b612bcd565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611451612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b548311156115e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816116075760006115f6846135de565b50505050505090508091505061161f565b6000611612846135de565b5050505050915050809150505b92915050565b60066020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b602360019054906101000a900460ff1681565b61167c612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060248190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6117a4612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001821415611879578060128190555061197d565b600282141561188e578060118190555061197c565b60038214156118a3578060138190555061197b565b60048214156118b8578060188190555061197a565b60058214156118cd5780601981905550611979565b60068214156118e25780601a81905550611978565b60078214156118f75780601e81905550611977565b600882141561190c5780601f81905550611976565b60098214156119215780602081905550611975565b600a8214156119365780601b81905550611974565b600b82141561194b5780601c81905550611973565b600c8214156119605780601d81905550611972565b600d82141561197157806022819055505b5b5b5b5b5b5b5b5b5b5b5b5b5050565b601e5481565b61198f612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81602360016101000a81548160ff021916908315150217905550806025819055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598260405180821515815260200191505060405180910390a15050565b6000611af7600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d5565b9050919050565b611b06612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c8c612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611d5730611aad565b9050611d62816136de565b50565b601d5481565b60115481565b60215481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e385780601f10611e0d57610100808354040283529160200191611e38565b820191906000526020600020905b815481529060010190602001808311611e1b57829003601f168201915b5050505050905090565b6000611f05611e4f612bc5565b84611f0085604051806060016040528060258152602001614a6d6025913960056000611e79612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b9092919063ffffffff16565b612bcd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614a4a6023913960400191505060405180910390fd5b600254421161202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000612140612139612bc5565b8484612dc4565b6001905092915050565b60185481565b6000600254905090565b60125481565b601c5481565b61216e612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601b5481565b60195481565b60205481565b6123f8612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61251b612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000825111612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061492f602b913960400191505060405180910390fd5b805182511461268f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180614a156035913960400191505060405180910390fd5b600061269961352b565b905060005b83518160ff1610156128d8576126df848260ff16815181106126bc57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16613899565b6128cb5760006127288361271a670de0b6b3a7640000878660ff168151811061270457fe5b6020026020010151612af590919063ffffffff16565b612af590919063ffffffff16565b90508060036000878560ff168151811061273e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060036000612791612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403600360006127d9612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550848260ff168151811061282657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1661284c612bc5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6128b4670de0b6b3a7640000888760ff168151811061289e57fe5b6020026020010151612af590919063ffffffff16565b6040518082815260200191505060405180910390a3505b808060010191505061269e565b50505050565b6128e6612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148ad6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60245481565b60135481565b600080831415612b085760009050612b75565b6000828402905082848281612b1957fe5b0414612b70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061495a6021913960400191505060405180910390fd5b809150505b92915050565b6000612bbd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506138e4565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149f16024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806148d36022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149cc6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148606023913960400191505060405180910390fd5b60008111612f29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806149a36029913960400191505060405180910390fd5b6000612f3430611aad565b905060006025548210159050808015612f5a5750602360009054906101000a900460ff16155b8015612fb257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612fca5750602360019054906101000a900460ff165b15612fd957612fd8826136de565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130805750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561308a57600090505b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161490508115801561313c575080155b1561317e57613158602054601a5461355690919063ffffffff16565b601481905550601d5460158190555060135460168190555060205460178190555061344d565b81156132055761319b601e5460185461355690919063ffffffff16565b601481905550601b54601581905550601154601681905550601e5460178190555042600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061344c565b801561344b576000600a9050613228601f5460195461355690919063ffffffff16565b601481905550601c54601581905550601254601681905550601f54601781905550600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156132ed5750600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613391576000600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415801561338557504262015180600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401115b156133905760225490505b5b6133b9600a6133ab83601454612af590919063ffffffff16565b612b7b90919063ffffffff16565b6014819055506133e7600a6133d983601554612af590919063ffffffff16565b612b7b90919063ffffffff16565b601581905550613415600a61340783601654612af590919063ffffffff16565b612b7b90919063ffffffff16565b601681905550613443600a61343583601754612af590919063ffffffff16565b612b7b90919063ffffffff16565b601781905550505b5b5b613459888888866139aa565b613461613ad7565b5050505050505050565b6000838311158290613518576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134dd5780820151818401526020810190506134c2565b50505050905090810190601f16801561350a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613538613af9565b9150915061354f8183612b7b90919063ffffffff16565b9250505090565b6000808284019050838110156135d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060006135f161481b565b6135fa89613b46565b905061360461483d565b6136438a8360016004811061361557fe5b60200201518460026004811061362757fe5b60200201518560036004811061363957fe5b6020020151613bdc565b90508060006003811061365257fe5b60200201518160016003811061366457fe5b60200201518260026003811061367657fe5b60200201518460006004811061368857fe5b60200201518560016004811061369a57fe5b6020020151866002600481106136ac57fe5b6020020151876003600481106136be57fe5b602002015198509850985098509850985098505050919395979092949650565b6001602360006101000a81548160ff021916908315150217905550600081602154101561370b5760215490505b60006137208284613ca690919063ffffffff16565b90506000613738600284612b7b90919063ffffffff16565b9050600061374f8285613ca690919063ffffffff16565b90506000613766848461355690919063ffffffff16565b9050600047905061377682613cf0565b600061378b8247613ca690919063ffffffff16565b905060006137b4846137a68489612af590919063ffffffff16565b612b7b90919063ffffffff16565b90506000851180156137c65750600081115b156137d6576137d58582613f9e565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a147915061386b82600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661410a90919063ffffffff16565b600060218190555050505050505050506000602360006101000a81548160ff02191690831515021790555050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156138db57506000801b8214155b92505050919050565b60008083118290613990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561395557808201518184015260208101905061393a565b50505050905090810190601f1680156139825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161399c57fe5b049050809150509392505050565b806139b8576139b7613ad7565b5b6139c3848484614244565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a6957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15613ad157602454613a7a84611aad565b10613ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b5b50505050565b6000601681905550600060158190555060006014819055506000601781905550565b6000806000600c5490506000600b549050613b21600b54600c54612b7b90919063ffffffff16565b821015613b3957600c54600b54935093505050613b42565b81819350935050505b9091565b613b4e61481b565b6000613b598361441d565b90506000613b668461444e565b90506000613b738561447f565b90506000613bae82613ba085613b92888b613ca690919063ffffffff16565b613ca690919063ffffffff16565b613ca690919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b613be461483d565b6000613bee61352b565b90506000613c058288612af590919063ffffffff16565b90506000613c1c8388612af590919063ffffffff16565b90506000613c7b613c368588612af590919063ffffffff16565b613c6d613c4c878b612af590919063ffffffff16565b613c5f8688613ca690919063ffffffff16565b613ca690919063ffffffff16565b613ca690919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b6000613ce883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061346b565b905092915050565b6060600267ffffffffffffffff81118015613d0a57600080fd5b50604051908082528060200260200182016040528015613d395781602001602082028036833780820191505090505b5090503081600081518110613d4a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613dea57600080fd5b505afa158015613dfe573d6000803e3d6000fd5b505050506040513d6020811015613e1457600080fd5b810190808051906020019092919050505081600181518110613e3257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e97307f000000000000000000000000000000000000000000000000000000000000000084612bcd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613f59578082015181840152602081019050613f3e565b505050509050019650505050505050600060405180830381600087803b158015613f8257600080fd5b505af1158015613f96573d6000803e3d6000fd5b505050505050565b613fc9307f000000000000000000000000000000000000000000000000000000000000000084612bcd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156140b357600080fd5b505af11580156140c7573d6000803e3d6000fd5b50505050506040513d60608110156140de57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b80471015614180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d80600081146141e0576040519150601f19603f3d011682016040523d82523d6000602084013e6141e5565b606091505b505090508061423f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806148f5603a913960400191505060405180910390fd5b505050565b6000806000806000806000614258886135de565b96509650965096509650965096506142b887600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ca690919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061434d86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614399826144b0565b6143a281614588565b6143ac85846147e1565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000614447606461443960165485612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050919050565b6000614478606461446a60155485612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050919050565b60006144a9606461449b60145485612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050919050565b60006144ba61352b565b905060006144d18284612af590919063ffffffff16565b905061452581600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061457d8360215461355690919063ffffffff16565b602181905550505050565b600061459261352b565b90506000806014541115614632576145c96014546145bb85601754612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35b60006146598361464b8487613ca690919063ffffffff16565b612af590919063ffffffff16565b90506146ad81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147766147068484612af590919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6147f682600c54613ca690919063ffffffff16565b600c8190555061481181600d5461355690919063ffffffff16565b600d819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d617920686176652072657665727465644174206c65617374206f6e6520726563697069656e74206d75737420626520696e20746865206172726179536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734e756d626572206f6620726563697069656e7473206d75737420657175616c206e756d626572206f6620616c6c6f636174696f6e73596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220f0683e75ca3f5974b537f2ebd2560438402d0c5274d3fdea67d5cbec657f22ae64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f770000000000000000000000000b0de9ee9059aaa1869c072749a84839c4898dfc000000000000000000000000b3767a8bb95855d474ce33b86cf0ad96e0cac6bc000000000000000000000000cc5288ff53a2df78ac5ad9260d0e972f8218b167000000000000000000000000a7eb8c15b45e8c806ac4810788b695aefea0f425
Deployed Bytecode
0x6080604052600436106102b25760003560e01c806370a0823111610175578063b6c52324116100dc578063e3624bba11610095578063ee67e3051161006f578063ee67e30514610ecc578063f2fde38b14611025578063f499133514611076578063fa156a66146110a1576102b9565b8063e3624bba14610e25578063e799eb2614610e50578063ea2f0b3714610e7b576102b9565b8063b6c5232414610cb9578063cd4f852d14610ce4578063dac1138014610d0f578063dd46706414610d3a578063dd62ed3e14610d75578063e125460214610dfa576102b9565b80638da5cb5b1161012e5780638da5cb5b14610ac457806395d89b4114610b05578063a457c2d714610b95578063a69df4b514610c06578063a9059cbb14610c1d578063a93a0fd014610c8e576102b9565b806370a08231146109b0578063715018a614610a15578063733b864f14610a2c5780637881fc2714610a435780637b29f1bc14610a6e578063866435c514610a99576102b9565b806339509351116102195780634a74bb02116101d25780634a74bb021461082a5780634fb2343a146108575780635342acb414610892578063667f6526146108f95780636b73fc9a1461093e5780636f60efbc14610969576102b9565b806339509351146106265780633a421d7214610697578063437823ec146106d85780634549b0391461072957806348df0dec1461078457806349bd5a5e146107e9576102b9565b80631944ada31161026b5780631944ada31461048157806323b872dd146104ac578063243299ba1461053d5780632d3e474a146105685780632d838119146105a9578063313ce567146105f8576102b9565b806306fdde03146102be578063095ea7b31461034e57806313114a9d146103bf5780631694505e146103ea57806318160ddd1461042b57806318a1940014610456576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36110cc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103135780820151818401526020810190506102f8565b50505050905090810190601f1680156103405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035a57600080fd5b506103a76004803603604081101561037157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061116e565b60405180821515815260200191505060405180910390f35b3480156103cb57600080fd5b506103d461118c565b6040518082815260200191505060405180910390f35b3480156103f657600080fd5b506103ff611196565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561043757600080fd5b506104406111ba565b6040518082815260200191505060405180910390f35b34801561046257600080fd5b5061046b6111c4565b6040518082815260200191505060405180910390f35b34801561048d57600080fd5b506104966111ca565b6040518082815260200191505060405180910390f35b3480156104b857600080fd5b50610525600480360360608110156104cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111d0565b60405180821515815260200191505060405180910390f35b34801561054957600080fd5b506105526112a9565b6040518082815260200191505060405180910390f35b34801561057457600080fd5b5061057d6112af565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105b557600080fd5b506105e2600480360360208110156105cc57600080fd5b81019080803590602001909291905050506112d5565b6040518082815260200191505060405180910390f35b34801561060457600080fd5b5061060d611359565b604051808260ff16815260200191505060405180910390f35b34801561063257600080fd5b5061067f6004803603604081101561064957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611370565b60405180821515815260200191505060405180910390f35b3480156106a357600080fd5b506106ac611423565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106e457600080fd5b50610727600480360360208110156106fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611449565b005b34801561073557600080fd5b5061076e6004803603604081101561074c57600080fd5b810190808035906020019092919080351515906020019092919050505061156c565b6040518082815260200191505060405180910390f35b34801561079057600080fd5b506107d3600480360360208110156107a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611625565b6040518082815260200191505060405180910390f35b3480156107f557600080fd5b506107fe61163d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083657600080fd5b5061083f611661565b60405180821515815260200191505060405180910390f35b34801561086357600080fd5b506108906004803603602081101561087a57600080fd5b8101908080359060200190929190505050611674565b005b34801561089e57600080fd5b506108e1600480360360208110156108b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611746565b60405180821515815260200191505060405180910390f35b34801561090557600080fd5b5061093c6004803603604081101561091c57600080fd5b81019080803590602001909291908035906020019092919050505061179c565b005b34801561094a57600080fd5b50610953611981565b6040518082815260200191505060405180910390f35b34801561097557600080fd5b506109ae6004803603604081101561098c57600080fd5b8101908080351515906020019092919080359060200190929190505050611987565b005b3480156109bc57600080fd5b506109ff600480360360208110156109d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611aad565b6040518082815260200191505060405180910390f35b348015610a2157600080fd5b50610a2a611afe565b005b348015610a3857600080fd5b50610a41611c84565b005b348015610a4f57600080fd5b50610a58611d65565b6040518082815260200191505060405180910390f35b348015610a7a57600080fd5b50610a83611d6b565b6040518082815260200191505060405180910390f35b348015610aa557600080fd5b50610aae611d71565b6040518082815260200191505060405180910390f35b348015610ad057600080fd5b50610ad9611d77565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b1157600080fd5b50610b1a611da0565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b5a578082015181840152602081019050610b3f565b50505050905090810190601f168015610b875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ba157600080fd5b50610bee60048036036040811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e42565b60405180821515815260200191505060405180910390f35b348015610c1257600080fd5b50610c1b611f0f565b005b348015610c2957600080fd5b50610c7660048036036040811015610c4057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061212c565b60405180821515815260200191505060405180910390f35b348015610c9a57600080fd5b50610ca361214a565b6040518082815260200191505060405180910390f35b348015610cc557600080fd5b50610cce612150565b6040518082815260200191505060405180910390f35b348015610cf057600080fd5b50610cf961215a565b6040518082815260200191505060405180910390f35b348015610d1b57600080fd5b50610d24612160565b6040518082815260200191505060405180910390f35b348015610d4657600080fd5b50610d7360048036036020811015610d5d57600080fd5b8101908080359060200190929190505050612166565b005b348015610d8157600080fd5b50610de460048036036040811015610d9857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612357565b6040518082815260200191505060405180910390f35b348015610e0657600080fd5b50610e0f6123de565b6040518082815260200191505060405180910390f35b348015610e3157600080fd5b50610e3a6123e4565b6040518082815260200191505060405180910390f35b348015610e5c57600080fd5b50610e656123ea565b6040518082815260200191505060405180910390f35b348015610e8757600080fd5b50610eca60048036036020811015610e9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123f0565b005b348015610ed857600080fd5b5061102360048036036040811015610eef57600080fd5b8101908080359060200190640100000000811115610f0c57600080fd5b820183602082011115610f1e57600080fd5b80359060200191846020830284011164010000000083111715610f4057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610fa057600080fd5b820183602082011115610fb257600080fd5b80359060200191846020830284011164010000000083111715610fd457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612513565b005b34801561103157600080fd5b506110746004803603602081101561104857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128de565b005b34801561108257600080fd5b5061108b612ae9565b6040518082815260200191505060405180910390f35b3480156110ad57600080fd5b506110b6612aef565b6040518082815260200191505060405180910390f35b6060600e8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111645780601f1061113957610100808354040283529160200191611164565b820191906000526020600020905b81548152906001019060200180831161114757829003601f168201915b5050505050905090565b600061118261117b612bc5565b8484612bcd565b6001905092915050565b6000600d54905090565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600b54905090565b601f5481565b601a5481565b60006111dd848484612dc4565b61129e846111e9612bc5565b6112998560405180606001604052806028815260200161497b60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061124f612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b9092919063ffffffff16565b612bcd565b600190509392505050565b60225481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c54821115611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614883602a913960400191505060405180910390fd5b600061133c61352b565b90506113518184612b7b90919063ffffffff16565b915050919050565b6000601060009054906101000a900460ff16905090565b600061141961137d612bc5565b84611414856005600061138e612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b612bcd565b6001905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611451612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b548311156115e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b816116075760006115f6846135de565b50505050505090508091505061161f565b6000611612846135de565b5050505050915050809150505b92915050565b60066020528060005260406000206000915090505481565b7f000000000000000000000000db1b1f1556f1f3109941063af08c236a8693f39181565b602360019054906101000a900460ff1681565b61167c612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060248190555050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6117a4612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001821415611879578060128190555061197d565b600282141561188e578060118190555061197c565b60038214156118a3578060138190555061197b565b60048214156118b8578060188190555061197a565b60058214156118cd5780601981905550611979565b60068214156118e25780601a81905550611978565b60078214156118f75780601e81905550611977565b600882141561190c5780601f81905550611976565b60098214156119215780602081905550611975565b600a8214156119365780601b81905550611974565b600b82141561194b5780601c81905550611973565b600c8214156119605780601d81905550611972565b600d82141561197157806022819055505b5b5b5b5b5b5b5b5b5b5b5b5b5050565b601e5481565b61198f612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81602360016101000a81548160ff021916908315150217905550806025819055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598260405180821515815260200191505060405180910390a15050565b6000611af7600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d5565b9050919050565b611b06612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c8c612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611d5730611aad565b9050611d62816136de565b50565b601d5481565b60115481565b60215481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600f8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e385780601f10611e0d57610100808354040283529160200191611e38565b820191906000526020600020905b815481529060010190602001808311611e1b57829003601f168201915b5050505050905090565b6000611f05611e4f612bc5565b84611f0085604051806060016040528060258152602001614a6d6025913960056000611e79612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346b9092919063ffffffff16565b612bcd565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614a4a6023913960400191505060405180910390fd5b600254421161202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436f6e7472616374206973206c6f636b656420756e74696c203720646179730081525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000612140612139612bc5565b8484612dc4565b6001905092915050565b60185481565b6000600254905090565b60125481565b601c5481565b61216e612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461222e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550804201600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601b5481565b60195481565b60205481565b6123f8612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61251b612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000825111612635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061492f602b913960400191505060405180910390fd5b805182511461268f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180614a156035913960400191505060405180910390fd5b600061269961352b565b905060005b83518160ff1610156128d8576126df848260ff16815181106126bc57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16613899565b6128cb5760006127288361271a670de0b6b3a7640000878660ff168151811061270457fe5b6020026020010151612af590919063ffffffff16565b612af590919063ffffffff16565b90508060036000878560ff168151811061273e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508060036000612791612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403600360006127d9612bc5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550848260ff168151811061282657fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1661284c612bc5565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6128b4670de0b6b3a7640000888760ff168151811061289e57fe5b6020026020010151612af590919063ffffffff16565b6040518082815260200191505060405180910390a3505b808060010191505061269e565b50505050565b6128e6612bc5565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148ad6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60245481565b60135481565b600080831415612b085760009050612b75565b6000828402905082848281612b1957fe5b0414612b70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061495a6021913960400191505060405180910390fd5b809150505b92915050565b6000612bbd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506138e4565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c53576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149f16024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806148d36022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806149cc6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148606023913960400191505060405180910390fd5b60008111612f29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806149a36029913960400191505060405180910390fd5b6000612f3430611aad565b905060006025548210159050808015612f5a5750602360009054906101000a900460ff16155b8015612fb257507f000000000000000000000000db1b1f1556f1f3109941063af08c236a8693f39173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612fca5750602360019054906101000a900460ff165b15612fd957612fd8826136de565b5b600060019050600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130805750600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561308a57600090505b60007f000000000000000000000000db1b1f1556f1f3109941063af08c236a8693f39173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000db1b1f1556f1f3109941063af08c236a8693f39173ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161490508115801561313c575080155b1561317e57613158602054601a5461355690919063ffffffff16565b601481905550601d5460158190555060135460168190555060205460178190555061344d565b81156132055761319b601e5460185461355690919063ffffffff16565b601481905550601b54601581905550601154601681905550601e5460178190555042600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061344c565b801561344b576000600a9050613228601f5460195461355690919063ffffffff16565b601481905550601c54601581905550601254601681905550601f54601781905550600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156132ed5750600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613391576000600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415801561338557504262015180600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401115b156133905760225490505b5b6133b9600a6133ab83601454612af590919063ffffffff16565b612b7b90919063ffffffff16565b6014819055506133e7600a6133d983601554612af590919063ffffffff16565b612b7b90919063ffffffff16565b601581905550613415600a61340783601654612af590919063ffffffff16565b612b7b90919063ffffffff16565b601681905550613443600a61343583601754612af590919063ffffffff16565b612b7b90919063ffffffff16565b601781905550505b5b5b613459888888866139aa565b613461613ad7565b5050505050505050565b6000838311158290613518576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134dd5780820151818401526020810190506134c2565b50505050905090810190601f16801561350a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613538613af9565b9150915061354f8183612b7b90919063ffffffff16565b9250505090565b6000808284019050838110156135d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060008060008060006135f161481b565b6135fa89613b46565b905061360461483d565b6136438a8360016004811061361557fe5b60200201518460026004811061362757fe5b60200201518560036004811061363957fe5b6020020151613bdc565b90508060006003811061365257fe5b60200201518160016003811061366457fe5b60200201518260026003811061367657fe5b60200201518460006004811061368857fe5b60200201518560016004811061369a57fe5b6020020151866002600481106136ac57fe5b6020020151876003600481106136be57fe5b602002015198509850985098509850985098505050919395979092949650565b6001602360006101000a81548160ff021916908315150217905550600081602154101561370b5760215490505b60006137208284613ca690919063ffffffff16565b90506000613738600284612b7b90919063ffffffff16565b9050600061374f8285613ca690919063ffffffff16565b90506000613766848461355690919063ffffffff16565b9050600047905061377682613cf0565b600061378b8247613ca690919063ffffffff16565b905060006137b4846137a68489612af590919063ffffffff16565b612b7b90919063ffffffff16565b90506000851180156137c65750600081115b156137d6576137d58582613f9e565b5b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828860405180848152602001838152602001828152602001935050505060405180910390a147915061386b82600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661410a90919063ffffffff16565b600060218190555050505050505050506000602360006101000a81548160ff02191690831515021790555050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156138db57506000801b8214155b92505050919050565b60008083118290613990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561395557808201518184015260208101905061393a565b50505050905090810190601f1680156139825780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161399c57fe5b049050809150509392505050565b806139b8576139b7613ad7565b5b6139c3848484614244565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015613a6957507f000000000000000000000000db1b1f1556f1f3109941063af08c236a8693f39173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15613ad157602454613a7a84611aad565b10613ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a926021913960400191505060405180910390fd5b5b50505050565b6000601681905550600060158190555060006014819055506000601781905550565b6000806000600c5490506000600b549050613b21600b54600c54612b7b90919063ffffffff16565b821015613b3957600c54600b54935093505050613b42565b81819350935050505b9091565b613b4e61481b565b6000613b598361441d565b90506000613b668461444e565b90506000613b738561447f565b90506000613bae82613ba085613b92888b613ca690919063ffffffff16565b613ca690919063ffffffff16565b613ca690919063ffffffff16565b9050604051806080016040528082815260200185815260200184815260200183815250945050505050919050565b613be461483d565b6000613bee61352b565b90506000613c058288612af590919063ffffffff16565b90506000613c1c8388612af590919063ffffffff16565b90506000613c7b613c368588612af590919063ffffffff16565b613c6d613c4c878b612af590919063ffffffff16565b613c5f8688613ca690919063ffffffff16565b613ca690919063ffffffff16565b613ca690919063ffffffff16565b9050604051806060016040528084815260200182815260200183815250945050505050949350505050565b6000613ce883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061346b565b905092915050565b6060600267ffffffffffffffff81118015613d0a57600080fd5b50604051908082528060200260200182016040528015613d395781602001602082028036833780820191505090505b5090503081600081518110613d4a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613dea57600080fd5b505afa158015613dfe573d6000803e3d6000fd5b505050506040513d6020811015613e1457600080fd5b810190808051906020019092919050505081600181518110613e3257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e97307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612bcd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613f59578082015181840152602081019050613f3e565b505050509050019650505050505050600060405180830381600087803b158015613f8257600080fd5b505af1158015613f96573d6000803e3d6000fd5b505050505050565b613fc9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612bcd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b1580156140b357600080fd5b505af11580156140c7573d6000803e3d6000fd5b50505050506040513d60608110156140de57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050565b80471015614180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a20696e73756666696369656e742062616c616e636500000081525060200191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d80600081146141e0576040519150601f19603f3d011682016040523d82523d6000602084013e6141e5565b606091505b505090508061423f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806148f5603a913960400191505060405180910390fd5b505050565b6000806000806000806000614258886135de565b96509650965096509650965096506142b887600360008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ca690919063ffffffff16565b600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061434d86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614399826144b0565b6143a281614588565b6143ac85846147e1565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350505050505050505050565b6000614447606461443960165485612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050919050565b6000614478606461446a60155485612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050919050565b60006144a9606461449b60145485612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050919050565b60006144ba61352b565b905060006144d18284612af590919063ffffffff16565b905061452581600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061457d8360215461355690919063ffffffff16565b602181905550505050565b600061459261352b565b90506000806014541115614632576145c96014546145bb85601754612af590919063ffffffff16565b612b7b90919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35b60006146598361464b8487613ca690919063ffffffff16565b612af590919063ffffffff16565b90506146ad81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506147766147068484612af590919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461355690919063ffffffff16565b60036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b6147f682600c54613ca690919063ffffffff16565b600c8190555061481181600d5461355690919063ffffffff16565b600d819055505050565b6040518060800160405280600490602082028036833780820191505090505090565b604051806060016040528060039060208202803683378082019150509050509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d617920686176652072657665727465644174206c65617374206f6e6520726563697069656e74206d75737420626520696e20746865206172726179536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734e756d626572206f6620726563697069656e7473206d75737420657175616c206e756d626572206f6620616c6c6f636174696f6e73596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d61782057616c6c657420686f6c64696e67206c696d6974206578636565646564a2646970667358221220f0683e75ca3f5974b537f2ebd2560438402d0c5274d3fdea67d5cbec657f22ae64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000b0de9ee9059aaa1869c072749a84839c4898dfc000000000000000000000000b3767a8bb95855d474ce33b86cf0ad96e0cac6bc000000000000000000000000cc5288ff53a2df78ac5ad9260d0e972f8218b167000000000000000000000000a7eb8c15b45e8c806ac4810788b695aefea0f425
-----Decoded View---------------
Arg [0] : _marketing (address): 0x0B0DE9eE9059aAa1869C072749a84839C4898dFc
Arg [1] : _marketing_lp (address): 0xb3767a8Bb95855D474cE33b86CF0ad96E0cac6bC
Arg [2] : _dev (address): 0xcc5288Ff53A2dF78Ac5ad9260D0e972F8218B167
Arg [3] : _listings (address): 0xA7eb8C15B45E8c806aC4810788B695aEFEA0F425
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000b0de9ee9059aaa1869c072749a84839c4898dfc
Arg [1] : 000000000000000000000000b3767a8bb95855d474ce33b86cf0ad96e0cac6bc
Arg [2] : 000000000000000000000000cc5288ff53a2df78ac5ad9260d0e972f8218b167
Arg [3] : 000000000000000000000000a7eb8c15b45e8c806ac4810788b695aefea0f425
Deployed Bytecode Sourcemap
25610:19907:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29834:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30686:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31679:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27793:51;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30111:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27171:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26951:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30855:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27302:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26035:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32220:253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30020:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31176:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26074:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32799:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31774:438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25919:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27851:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27926:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34159:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38899:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33036:1115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27134:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35129:250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30214:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16209:148;;;;;;;;;;;;;:::i;:::-;;32619:172;;;;;;;;;;;;;:::i;:::-;;27085:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26514:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27253:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15566:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29925:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31402:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17215:293;;;;;;;;;;;;;:::i;:::-;;30360:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26866:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16764:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26550:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27042:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16929:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30535:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27000:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26908:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27209:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32918:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34353:768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16512:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27975:54;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26587:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29834:83;29871:13;29904:5;29897:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29834:83;:::o;30686:161::-;30761:4;30778:39;30787:12;:10;:12::i;:::-;30801:7;30810:6;30778:8;:39::i;:::-;30835:4;30828:11;;30686:161;;;;:::o;31679:87::-;31721:7;31748:10;;31741:17;;31679:87;:::o;27793:51::-;;;:::o;30111:95::-;30164:7;30191;;30184:14;;30111:95;:::o;27171:31::-;;;;:::o;26951:40::-;;;;:::o;30855:313::-;30953:4;30970:36;30980:6;30988:9;30999:6;30970:9;:36::i;:::-;31017:121;31026:6;31034:12;:10;:12::i;:::-;31048:89;31086:6;31048:89;;;;;;;;;;;;;;;;;:11;:19;31060:6;31048:19;;;;;;;;;;;;;;;:33;31068:12;:10;:12::i;:::-;31048:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;31017:8;:121::i;:::-;31156:4;31149:11;;30855:313;;;;;:::o;27302:43::-;;;;:::o;26035:32::-;;;;;;;;;;;;;:::o;32220:253::-;32286:7;32325;;32314;:18;;32306:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32390:19;32413:10;:8;:10::i;:::-;32390:33;;32441:24;32453:11;32441:7;:11;;:24;;;;:::i;:::-;32434:31;;;32220:253;;;:::o;30020:83::-;30061:5;30086:9;;;;;;;;;;;30079:16;;30020:83;:::o;31176:218::-;31264:4;31281:83;31290:12;:10;:12::i;:::-;31304:7;31313:50;31352:10;31313:11;:25;31325:12;:10;:12::i;:::-;31313:25;;;;;;;;;;;;;;;:34;31339:7;31313:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;31281:8;:83::i;:::-;31382:4;31375:11;;31176:218;;;;:::o;26074:27::-;;;;;;;;;;;;;:::o;32799:111::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32898:4:::1;32868:18;:27;32887:7;32868:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;32799:111:::0;:::o;31774:438::-;31864:7;31903;;31892;:18;;31884:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31962:17;31957:248;;31997:15;32022:19;32033:7;32022:10;:19::i;:::-;31996:45;;;;;;;;32063:7;32056:14;;;;;31957:248;32105:23;32137:19;32148:7;32137:10;:19::i;:::-;32103:53;;;;;;;;32178:15;32171:22;;;31774:438;;;;;:::o;25919:48::-;;;;;;;;;;;;;;;;;:::o;27851:38::-;;;:::o;27926:40::-;;;;;;;;;;;;;:::o;34159:119::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34260:10:::1;34240:17;:30;;;;34159:119:::0;:::o;38899:123::-;38963:4;38987:18;:27;39006:7;38987:27;;;;;;;;;;;;;;;;;;;;;;;;;38980:34;;38899:123;;;:::o;33036:1115::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33131:1:::1;33119:8;:13;33115:1029;;;33159:8;33145:11;:22;;;;33115:1029;;;33206:1;33194:8;:13;33190:954;;;33233:8;33220:10;:21;;;;33190:954;;;33280:1;33268:8;:13;33264:880;;;33312:8;33294:15;:26;;;;33264:880;;;33359:1;33347:8;:13;33343:801;;;33392:8;33373:16;:27;;;;33343:801;;;33439:1;33427:8;:13;33423:721;;;33473:8;33453:17;:28;;;;33423:721;;;33520:1;33508:8;:13;33504:640;;;33558:8;33534:21;:32;;;;33504:640;;;33605:1;33593:8;:13;33589:555;;;33633:8;33619:11;:22;;;;33589:555;;;33680:1;33668:8;:13;33664:480;;;33709:8;33694:12;:23;;;;33664:480;;;33756:1;33744:8;:13;33740:404;;;33789:8;33770:16;:27;;;;33740:404;;;33836:2;33824:8;:14;33820:324;;;33870:8;33851:16;:27;;;;33820:324;;;33917:2;33905:8;:14;33901:243;;;33952:8;33932:17;:28;;;;33901:243;;;33999:2;33987:8;:14;33983:161;;;34038:8;34014:21;:32;;;;33983:161;;;34085:2;34073:8;:14;34069:75;;;34126:8;34100:23;:34;;;;34069:75;33983:161;33901:243;33820:324;33740:404;33664:480;33589:555;33504:640;33423:721;33343:801;33264:880;33190:954;33115:1029;33036:1115:::0;;:::o;27134:30::-;;;;:::o;35129:250::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35253:8:::1;35229:21;;:32;;;;;;;;;;;;;;;;;;35304:13;35272:29;:45;;;;35333:38;35362:8;35333:38;;;;;;;;;;;;;;;;;;;;35129:250:::0;;:::o;30214:138::-;30280:7;30307:37;30327:7;:16;30335:7;30327:16;;;;;;;;;;;;;;;;30307:19;:37::i;:::-;30300:44;;30214:138;;;:::o;16209:148::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16316:1:::1;16279:40;;16300:6;::::0;::::1;;;;;;;;16279:40;;;;;;;;;;;;16347:1;16330:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16209:148::o:0;32619:172::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32681:28:::1;32712:24;32730:4;32712:9;:24::i;:::-;32681:55;;32747:36;32762:20;32747:14;:36::i;:::-;15848:1;32619:172::o:0;27085:40::-;;;;:::o;26514:29::-;;;;:::o;27253:40::-;;;;:::o;15566:79::-;15604:7;15631:6;;;;;;;;;;;15624:13;;15566:79;:::o;29925:87::-;29964:13;29997:7;29990:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29925:87;:::o;31402:269::-;31495:4;31512:129;31521:12;:10;:12::i;:::-;31535:7;31544:96;31583:15;31544:96;;;;;;;;;;;;;;;;;:11;:25;31556:12;:10;:12::i;:::-;31544:25;;;;;;;;;;;;;;;:34;31570:7;31544:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31512:8;:129::i;:::-;31659:4;31652:11;;31402:269;;;;:::o;17215:293::-;17285:10;17267:28;;:14;;;;;;;;;;;:28;;;17259:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17360:9;;17354:3;:15;17346:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17451:14;;;;;;;;;;;17422:44;;17443:6;;;;;;;;;;17422:44;;;;;;;;;;;;17486:14;;;;;;;;;;;17477:6;;:23;;;;;;;;;;;;;;;;;;17215:293::o;30360:167::-;30438:4;30455:42;30465:12;:10;:12::i;:::-;30479:9;30490:6;30455:9;:42::i;:::-;30515:4;30508:11;;30360:167;;;;:::o;26866:35::-;;;;:::o;16764:89::-;16809:7;16836:9;;16829:16;;16764:89;:::o;26550:30::-;;;;:::o;27042:36::-;;;;:::o;16929:214::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17010:6:::1;::::0;::::1;;;;;;;;16993:14;;:23;;;;;;;;;;;;;;;;;;17044:1;17027:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;17075:4;17069:3;:10;17057:9;:22;;;;17132:1;17095:40;;17116:6;::::0;::::1;;;;;;;;17095:40;;;;;;;;;;;;16929:214:::0;:::o;30535:143::-;30616:7;30643:11;:18;30655:5;30643:18;;;;;;;;;;;;;;;:27;30662:7;30643:27;;;;;;;;;;;;;;;;30636:34;;30535:143;;;;:::o;27000:35::-;;;;:::o;26908:36::-;;;;:::o;27209:35::-;;;;:::o;32918:110::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33015:5:::1;32985:18;:27;33004:7;32985:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;32918:110:::0;:::o;34353:768::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34515:1:::1;34495:10;:17;:21;34487:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34602:11;:18;34581:10;:17;:39;34573:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34689:19;34712:10;:8;:10::i;:::-;34689:33;;34738:7;34733:381;34755:10;:17;34751:1;:21;;;34733:381;;;34795:26;:10;34806:1;34795:13;;;;;;;;;;;;;;;;:24;;;:26::i;:::-;34790:315;;34836:15;34854:43;34885:11;34854:26;34873:6;34854:11;34866:1;34854:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;:30;;:43;;;;:::i;:::-;34836:61;;34935:7;34910;:22;34918:10;34929:1;34918:13;;;;;;;;;;;;;;;;34910:22;;;;;;;;;;;;;;;:32;;;;35003:7;34979;:21;34987:12;:10;:12::i;:::-;34979:21;;;;;;;;;;;;;;;;:31;34955:7;:21;34963:12;:10;:12::i;:::-;34955:21;;;;;;;;;;;;;;;:55;;;;35051:10;35062:1;35051:13;;;;;;;;;;;;;;;;35028:65;;35037:12;:10;:12::i;:::-;35028:65;;;35066:26;35085:6;35066:11;35078:1;35066:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;35028:65;;;;;;;;;;;;;;;;;;34790:315;;34774:3;;;;;;;34733:381;;;;15848:1;34353:768:::0;;:::o;16512:244::-;15788:12;:10;:12::i;:::-;15778:22;;:6;;;;;;;;;;:22;;;15770:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16621:1:::1;16601:22;;:8;:22;;;;16593:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16711:8;16682:38;;16703:6;::::0;::::1;;;;;;;;16682:38;;;;;;;;;;;;16740:8;16731:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16512:244:::0;:::o;27975:54::-;;;;:::o;26587:34::-;;;;:::o;4835:471::-;4893:7;5143:1;5138;:6;5134:47;;;5168:1;5161:8;;;;5134:47;5193:9;5209:1;5205;:5;5193:17;;5238:1;5233;5229;:5;;;;;;:10;5221:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5297:1;5290:8;;;4835:471;;;;;:::o;5782:132::-;5840:7;5867:39;5871:1;5874;5867:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5860:46;;5782:132;;;;:::o;7974:106::-;8027:15;8062:10;8055:17;;7974:106;:::o;39030:337::-;39140:1;39123:19;;:5;:19;;;;39115:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39221:1;39202:21;;:7;:21;;;;39194:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39305:6;39275:11;:18;39287:5;39275:18;;;;;;;;;;;;;;;:27;39294:7;39275:27;;;;;;;;;;;;;;;:36;;;;39343:7;39327:32;;39336:5;39327:32;;;39352:6;39327:32;;;;;;;;;;;;;;;;;;39030:337;;;:::o;39375:2806::-;39513:1;39497:18;;:4;:18;;;;39489:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39590:1;39576:16;;:2;:16;;;;39568:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39660:1;39651:6;:10;39643:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39718:28;39749:24;39767:4;39749:9;:24::i;:::-;39718:55;;39786:24;39837:29;;39813:20;:53;;39786:80;;39895:19;:53;;;;;39932:16;;;;;;;;;;;39931:17;39895:53;:91;;;;;39973:13;39965:21;;:4;:21;;;;39895:91;:129;;;;;40003:21;;;;;;;;;;;39895:129;39877:222;;;40051:36;40066:20;40051:14;:36::i;:::-;39877:222;40172:12;40187:4;40172:19;;40291:18;:24;40310:4;40291:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;40319:18;:22;40338:2;40319:22;;;;;;;;;;;;;;;;;;;;;;;;;40291:50;40288:96;;;40367:5;40357:15;;40288:96;40508:18;40537:13;40529:21;;:4;:21;;;40508:42;;40561:19;40589:13;40583:19;;:2;:19;;;40561:41;;40620:13;40619:14;:33;;;;;40638:14;40637:15;40619:33;40615:1411;;;40684:43;40710:16;;40684:21;;:25;;:43;;;;:::i;:::-;40667:14;:60;;;;40756:21;;40740:13;:37;;;;40800:15;;40790:7;:25;;;;40839:16;;40828:8;:27;;;;40615:1411;;;40886:13;40882:1144;;;40931:33;40952:11;;40931:16;;:20;;:33;;;;:::i;:::-;40914:14;:50;;;;40993:16;;40977:13;:32;;;;41032:10;;41022:7;:20;;;;41066:11;;41055:8;:22;;;;41109:15;41090:12;:16;41103:2;41090:16;;;;;;;;;;;;;;;:34;;;;40882:1144;;;41155:14;41151:875;;;41184:22;41209:2;41184:27;;41241:35;41263:12;;41241:17;;:21;;:35;;;;:::i;:::-;41224:14;:52;;;;41305:17;;41289:13;:33;;;;41345:11;;41335:7;:21;;;;41380:12;;41369:8;:23;;;;41411:18;:24;41430:4;41411:24;;;;;;;;;;;;;;;;;;;;;;;;;41410:25;:52;;;;;41440:18;:22;41459:2;41440:22;;;;;;;;;;;;;;;;;;;;;;;;;41439:23;41410:52;41407:334;;;41504:1;41482:12;:18;41495:4;41482:18;;;;;;;;;;;;;;;;:23;;:78;;;;;41544:15;41532:8;41510:12;:18;41523:4;41510:18;;;;;;;;;;;;;;;;:31;:49;41482:78;41478:250;;;41689:23;;41669:43;;41478:250;41407:334;41772:45;41814:2;41772:37;41791:17;41772:14;;:18;;:37;;;;:::i;:::-;:41;;:45;;;;:::i;:::-;41755:14;:62;;;;41846:44;41887:2;41846:36;41864:17;41846:13;;:17;;:36;;;;:::i;:::-;:40;;:44;;;;:::i;:::-;41830:13;:60;;;;41913:38;41948:2;41913:30;41925:17;41913:7;;:11;;:30;;;;:::i;:::-;:34;;:38;;;;:::i;:::-;41903:7;:48;;;;41975:39;42011:2;41975:31;41988:17;41975:8;;:12;;:31;;;;:::i;:::-;:35;;:39;;;;:::i;:::-;41964:8;:50;;;;41151:875;;40882:1144;40615:1411;42110:38;42125:4;42130:2;42133:6;42140:7;42110:14;:38::i;:::-;42159:14;:12;:14::i;:::-;39375:2806;;;;;;;;:::o;4384:192::-;4470:7;4503:1;4498;:6;;4506:12;4490:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4530:9;4546:1;4542;:5;4530:17;;4567:1;4560:8;;;4384:192;;;;;:::o;36946:163::-;36987:7;37008:15;37025;37044:19;:17;:19::i;:::-;37007:56;;;;37081:20;37093:7;37081;:11;;:20;;;;:::i;:::-;37074:27;;;;36946:163;:::o;3481:181::-;3539:7;3559:9;3575:1;3571;:5;3559:17;;3600:1;3595;:6;;3587:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3653:1;3646:8;;;3481:181;;;;:::o;35636:396::-;35695:7;35704;35713;35722;35731;35740;35749;35769:25;;:::i;:::-;35797;35814:7;35797:16;:25::i;:::-;35769:53;;35833:25;;:::i;:::-;35861:61;35878:7;35887;35895:1;35887:10;;;;;;;;;;;35899:7;35907:1;35899:10;;;;;;;;;;;35911:7;35919:1;35911:10;;;;;;;;;;;35861:16;:61::i;:::-;35833:89;;35941:7;35949:1;35941:10;;;;;;;;;;;35953:7;35961:1;35953:10;;;;;;;;;;;35965:7;35973:1;35965:10;;;;;;;;;;;35977:7;35985:1;35977:10;;;;;;;;;;;35989:7;35997:1;35989:10;;;;;;;;;;;36001:7;36009:1;36001:10;;;;;;;;;;;36013:7;36021:1;36013:10;;;;;;;;;;;35933:91;;;;;;;;;;;;;;;;35636:396;;;;;;;;;:::o;42189:1269::-;28422:4;28403:16;;:23;;;;;;;;;;;;;;;;;;42274:21:::1;42338:20;42314:21;;:44;42310:87;;;42376:21;;42360:37;;42310:87;42408:24;42435:39;42460:13;42435:20;:24;;:39;;;;:::i;:::-;42408:66;;42485:25;42513:20;42531:1;42513:13;:17;;:20;;;;:::i;:::-;42485:48;;42544:30;42577:36;42595:17;42577:13;:17;;:36;;;;:::i;:::-;42544:69;;42717:20;42740:39;42762:16;42740:17;:21;;:39;;;;:::i;:::-;42717:62;;42792:22;42817:21;42792:46;;42883:30;42900:12;42883:16;:30::i;:::-;42926:18;42947:41;42973:14;42947:21;:25;;:41;;;;:::i;:::-;42926:62;;42999:24;43026:51;43064:12;43026:33;43048:10;43026:17;:21;;:33;;;;:::i;:::-;:37;;:51;;;;:::i;:::-;42999:78;;43156:1;43131:22;:26;:50;;;;;43180:1;43161:16;:20;43131:50;43127:110;;;43183:54;43196:22;43220:16;43183:12;:54::i;:::-;43127:110;43253:70;43268:17;43287:16;43305:17;43253:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43349:21;43336:34;;43381:31;43401:10;43381:9;;;;;;;;;;;:19;;;;:31;;;;:::i;:::-;43449:1;43425:21;:25;;;;28437:1;;;;;;;;28468:5:::0;28449:16;;:24;;;;;;;;;;;;;;;;;;42189:1269;:::o;9011:619::-;9071:4;9333:16;9360:19;9382:66;9360:88;;;;9551:7;9539:20;9527:32;;9591:11;9579:8;:23;;:42;;;;;9618:3;9606:15;;:8;:15;;9579:42;9571:51;;;;9011:619;;;:::o;6410:278::-;6496:7;6528:1;6524;:5;6531:12;6516:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6555:9;6571:1;6567;:5;;;;;;6555:17;;6679:1;6672:8;;;6410:278;;;;;:::o;44580:362::-;44691:7;44687:27;;44700:14;:12;:14::i;:::-;44687:27;44725:44;44743:6;44751:9;44762:6;44725:17;:44::i;:::-;44785:18;:29;44804:9;44785:29;;;;;;;;;;;;;;;;;;;;;;;;;44784:30;:62;;;;;44832:13;44819:26;;:9;:26;;;;44784:62;44780:154;;;44879:17;;44856:20;44866:9;44856;:20::i;:::-;:40;44848:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44780:154;44580:362;;;;:::o;38749:142::-;38802:1;38792:7;:11;;;;38830:1;38814:13;:17;;;;38859:1;38842:14;:18;;;;38882:1;38871:8;:12;;;;38749:142::o;37117:256::-;37167:7;37176;37196:15;37214:7;;37196:25;;37232:15;37250:7;;37232:25;;37282:20;37294:7;;37282;;:11;;:20;;;;:::i;:::-;37272:7;:30;37268:61;;;37312:7;;37321;;37304:25;;;;;;;;37268:61;37348:7;37357;37340:25;;;;;;37117:256;;;:::o;36040:425::-;36105:21;;:::i;:::-;36139:12;36154:24;36170:7;36154:15;:24::i;:::-;36139:39;;36189:18;36210:30;36232:7;36210:21;:30::i;:::-;36189:51;;36251:19;36273:31;36296:7;36273:22;:31::i;:::-;36251:53;;36315:23;36341:50;36379:11;36341:33;36363:10;36341:17;36353:4;36341:7;:11;;:17;;;;:::i;:::-;:21;;:33;;;;:::i;:::-;:37;;:50;;;;:::i;:::-;36315:76;;36402:55;;;;;;;;36410:15;36402:55;;;;36427:4;36402:55;;;;36433:10;36402:55;;;;36445:11;36402:55;;;;;;;;;36040:425;;;:::o;36473:465::-;36593:21;;:::i;:::-;36627:19;36649:10;:8;:10::i;:::-;36627:32;;36670:15;36688:24;36700:11;36688:7;:11;;:24;;;;:::i;:::-;36670:42;;36723:12;36738:21;36747:11;36738:4;:8;;:21;;;;:::i;:::-;36723:36;;36770:23;36796:84;36851:28;36867:11;36851;:15;;:28;;;;:::i;:::-;36796:50;36818:27;36833:11;36818:10;:14;;:27;;;;:::i;:::-;36796:17;36808:4;36796:7;:11;;:17;;;;:::i;:::-;:21;;:50;;;;:::i;:::-;:54;;:84;;;;:::i;:::-;36770:110;;36891:39;;;;;;;;36899:7;36891:39;;;;36908:15;36891:39;;;;36925:4;36891:39;;;;;;;;;36473:465;;;;;;:::o;3945:136::-;4003:7;4030:43;4034:1;4037;4030:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4023:50;;3945:136;;;;:::o;43466:561::-;43592:21;43630:1;43616:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43592:40;;43661:4;43643;43648:1;43643:7;;;;;;;;;;;;;:23;;;;;;;;;;;43687:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43677:4;43682:1;43677:7;;;;;;;;;;;;;:32;;;;;;;;;;;43722:62;43739:4;43754:15;43772:11;43722:8;:62::i;:::-;43823:15;:66;;;43904:11;43930:1;43946:4;43973;43993:15;43823:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43466:561;;:::o;44035:464::-;44183:62;44200:4;44215:15;44233:11;44183:8;:62::i;:::-;44288:15;:31;;;44327:9;44360:4;44380:11;44406:1;44422;44438:12;;;;;;;;;;;44465:15;44288:203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44035:464;;:::o;10565:397::-;10680:6;10655:21;:31;;10647:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10812:12;10830:9;:14;;10853:6;10830:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10811:54;;;10884:7;10876:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10565:397;;;:::o;44950:562::-;45049:15;45066:23;45091:12;45105:23;45130:12;45144:18;45164:19;45187;45198:7;45187:10;:19::i;:::-;45048:158;;;;;;;;;;;;;;45235:28;45255:7;45235;:15;45243:6;45235:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;45217:7;:15;45225:6;45217:15;;;;;;;;;;;;;;;:46;;;;45295:39;45318:15;45295:7;:18;45303:9;45295:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;45274:7;:18;45282:9;45274:18;;;;;;;;;;;;;;;:60;;;;45345:26;45360:10;45345:14;:26::i;:::-;45382:28;45398:11;45382:15;:28::i;:::-;45421:23;45433:4;45439;45421:11;:23::i;:::-;45477:9;45460:44;;45469:6;45460:44;;;45488:15;45460:44;;;;;;;;;;;;;;;;;;44950:562;;;;;;;;;;:::o;38237:154::-;38301:7;38328:55;38367:5;38328:20;38340:7;;38328;:11;;:20;;;;:::i;:::-;:24;;:55;;;;:::i;:::-;38321:62;;38237:154;;;:::o;38399:166::-;38469:7;38496:61;38541:5;38496:26;38508:13;;38496:7;:11;;:26;;;;:::i;:::-;:30;;:61;;;;:::i;:::-;38489:68;;38399:166;;;:::o;38573:168::-;38644:7;38671:62;38717:5;38671:27;38683:14;;38671:7;:11;;:27;;;;:::i;:::-;:31;;:62;;;;:::i;:::-;38664:69;;38573:168;;;:::o;37381:309::-;37444:19;37467:10;:8;:10::i;:::-;37444:33;;37488:18;37509:27;37524:11;37509:10;:14;;:27;;;;:::i;:::-;37488:48;;37572:38;37599:10;37572:7;:22;37588:4;37572:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;37547:7;:22;37563:4;37547:22;;;;;;;;;;;;;;;:63;;;;37645:37;37671:10;37645:21;;:25;;:37;;;;:::i;:::-;37621:21;:61;;;;37381:309;;;:::o;37698:531::-;37763:19;37786:10;:8;:10::i;:::-;37763:33;;37807:13;37856:1;37839:14;;:18;37835:162;;;37880:45;37910:14;;37880:25;37893:11;37880:8;;:12;;:25;;;;:::i;:::-;:29;;:45;;;;:::i;:::-;37872:53;;37975:1;37943:42;;37960:4;37943:42;;;37979:5;37943:42;;;;;;;;;;;;;;;;;;37835:162;38007:19;38029:39;38056:11;38029:22;38045:5;38029:11;:15;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;38007:61;;38104:39;38131:11;38104:7;:22;38120:4;38104:22;;;;;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;38079:7;:22;38095:4;38079:22;;;;;;;;;;;;;;;:64;;;;38175:46;38198:22;38208:11;38198:5;:9;;:22;;;;:::i;:::-;38175:7;:18;38183:9;;;;;;;;;;;38175:18;;;;;;;;;;;;;;;;:22;;:46;;;;:::i;:::-;38154:7;:18;38162:9;;;;;;;;;;;38154:18;;;;;;;;;;;;;;;:67;;;;37698:531;;;;:::o;35481:147::-;35559:17;35571:4;35559:7;;:11;;:17;;;;:::i;:::-;35549:7;:27;;;;35600:20;35615:4;35600:10;;:14;;:20;;;;:::i;:::-;35587:10;:33;;;;35481:147;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://f0683e75ca3f5974b537f2ebd2560438402d0c5274d3fdea67d5cbec657f22ae
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.