Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 SHIBX
Holders
54
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
3,435,558.556613157 SHIBXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SHIBX
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-27 */ /** SHIBX Our community will be strong. From the exhaustion and tribulations, we finally break away with our own ideas of what Ryoshi’s Vision is. Welcome to ShibX https://t.me/ShibX_ETH */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.0; 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 payable(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; } } abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() external virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function startTrading() external virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @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() { 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 = block.timestamp + 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(block.timestamp > _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 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 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 SHIBX is Context, IERC20, Ownable, Pausable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _whiteList; address public deadAddress = 0x000000000000000000000000000000000000dEaD; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "SHIBX"; string private _symbol = "SHIBX"; uint8 private _decimals = 9; //Buy Fees uint256 public _buyTaxFee = 0; uint256 public _buyLiquidityFee = 1; uint256 public _buyMarketingFee = 4; uint256 public _buyBurnFee = 0; //Sell Fees uint256 public _sellTaxFee = 0; uint256 public _sellMarketingFee = 4; uint256 public _sellLiquidityFee = 1; uint256 public _sellBurnFee = 0; // Fees (Current) uint256 private _taxFee; uint256 private _marketingFee; uint256 private _liquidityFee; uint256 private _burnFee; address payable public marketingWallet = payable(0xb72Ca4b7E73102636fC6f3a19eca481618824CF1); IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public numTokensSellToAddToLiquidity = 1000000 * 10**9; //.1% uint256 public _maxTxAmount = 1000000000 * 10**9; uint256 public maxBuyTransactionAmount = 1000000000 * 10**9; //100% uint256 public maxWalletToken = 1000000000 * 10**9; //100% event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _whiteList[owner()] = true; _whiteList[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee==0 && _burnFee==0) return; _taxFee = 0; _liquidityFee = 0; _marketingFee = 0; _burnFee = 0; } function isWhiteListed(address account) public view returns(bool) { return _whiteList[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 ) whenNotPaused() private { require(from != address(0), "ERC20: transfer from the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && to != uniswapV2Pair ) { uint256 contractBalanceRecepient = balanceOf(to); require( contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount." ); } if(from == uniswapV2Pair && !isWhiteListed(to)){ require(amount <= maxBuyTransactionAmount, "Buy transfer amount exceeds the maxBuyTransactionAmount."); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } // Indicates if fee should be deducted from transfer bool takeFee = true; // If any account belongs to _isExcludedFromFee account then remove the fee if(isWhiteListed(from) || isWhiteListed(to)){ takeFee = false; } // Set buy fees if(from == uniswapV2Pair || from.isContract()) { _taxFee = _buyTaxFee; _marketingFee = _buyMarketingFee; _liquidityFee = _buyLiquidityFee; _burnFee = _buyBurnFee; } // Set sell fees if(to == uniswapV2Pair || to.isContract()) { _taxFee = _sellTaxFee; _marketingFee = _sellMarketingFee; _liquidityFee = _sellLiquidityFee; _burnFee = _sellBurnFee; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 combineFees = _liquidityFee.add(_marketingFee); // marketing + liquidity fees uint256 tokensForLiquidity = contractTokenBalance.mul(_liquidityFee).div(combineFees); uint256 tokensForMarketing = contractTokenBalance.sub(tokensForLiquidity); // split the Liquidity tokens balance into halves uint256 half = tokensForLiquidity.div(2); uint256 otherHalf = tokensForLiquidity.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); uint256 contractBalance = address(this).balance; swapTokensForEth(tokensForMarketing); uint256 transferredBalance = address(this).balance.sub(contractBalance); //Send to Marketing address transferToAddressETH(marketingWallet, transferredBalance); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount) private { if(_whiteList[sender] || _whiteList[recipient]) { removeAllFee(); } else { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); (tTransferAmount, rTransferAmount) = takeBurn(sender, tTransferAmount, rTransferAmount, tAmount); (tTransferAmount, rTransferAmount) = takeMarketing(sender, tTransferAmount, rTransferAmount, tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function takeBurn(address sender, uint256 tTransferAmount, uint256 rTransferAmount, uint256 tAmount) private returns (uint256, uint256) { if(_burnFee==0) { return(tTransferAmount, rTransferAmount); } uint256 tBurn = tAmount.div(100).mul(_burnFee); uint256 rBurn = tBurn.mul(_getRate()); rTransferAmount = rTransferAmount.sub(rBurn); tTransferAmount = tTransferAmount.sub(tBurn); _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn); emit Transfer(sender, deadAddress, tBurn); return(tTransferAmount, rTransferAmount); } function takeMarketing(address sender, uint256 tTransferAmount, uint256 rTransferAmount, uint256 tAmount) private returns (uint256, uint256) { if(_marketingFee==0) { return(tTransferAmount, rTransferAmount); } uint256 tMarketing = tAmount.div(100).mul(_marketingFee); uint256 rMarketing = tMarketing.mul(_getRate()); rTransferAmount = rTransferAmount.sub(rMarketing); tTransferAmount = tTransferAmount.sub(tMarketing); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing); emit Transfer(sender, address(this), tMarketing); return(tTransferAmount, rTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _whiteList[account] = true; } function includeInFee(address account) public onlyOwner { _whiteList[account] = false; } function setMarketingWallet(address payable newWallet) external onlyOwner() { marketingWallet = newWallet; } function setBuyFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() { _buyTaxFee = taxFee; _buyMarketingFee = MarketingFee; _buyLiquidityFee = liquidityFee; _buyBurnFee = burnFee; } function setSellFeePercent(uint256 taxFee, uint256 MarketingFee, uint256 liquidityFee, uint256 burnFee) external onlyOwner() { _sellTaxFee = taxFee; _sellMarketingFee = MarketingFee; _sellLiquidityFee = liquidityFee; _sellBurnFee = burnFee; } function setNumTokensSellToAddToLiquidity(uint256 newAmt) external onlyOwner() { numTokensSellToAddToLiquidity = newAmt*10**_decimals; } function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { require(maxTxAmount > 0, "Cannot set transaction amount as zero"); _maxTxAmount = maxTxAmount * 10**_decimals; } function setMaxBuytx(uint256 _newAmount) public onlyOwner { maxBuyTransactionAmount = _newAmount * 10**_decimals; } function setMaxWalletToken(uint256 _maxToken) external onlyOwner { maxWalletToken = _maxToken * 10**_decimals; } //New router address? //No problem, just change it here! function setRouterAddress(address newRouter) public onlyOwner() { IUniswapV2Router02 _newPancakeRouter = IUniswapV2Router02(newRouter); uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this), _newPancakeRouter.WETH()); uniswapV2Router = _newPancakeRouter; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function transferToAddressETH(address payable recipient, uint256 amount) private { recipient.transfer(amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTaxFee","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhiteListed","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":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setBuyFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxBuytx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"},{"internalType":"uint256","name":"MarketingFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"setSellFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","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
6080604052600880546001600160a01b03191661dead179055670de0b6b3a7640000600b8190556200003490600019620005a8565b620000429060001962000547565b600c55604080518082019091526005808252640a6909284b60db1b60209092019182526200007391600e916200044e565b50604080518082019091526005808252640a6909284b60db1b6020909201918252620000a291600f916200044e565b506010805460ff1916600917905560006011819055600160128190556004601381905560148390556015839055601655601755601855601d80546001600160a01b03191673b72ca4b7e73102636fc6f3a19eca481618824cf1179055601f805460ff60a81b1916600160a81b17905566038d7ea4c68000602055670de0b6b3a7640000602181905560228190556023553480156200013f57600080fd5b5060006200014c6200043b565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506003805460ff19169055600c5460046000620001b16200043b565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022857600080fd5b505afa1580156200023d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002639190620004f4565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ac57600080fd5b505afa158015620002c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e79190620004f4565b6040518363ffffffff1660e01b81526004016200030692919062000524565b602060405180830381600087803b1580156200032157600080fd5b505af115801562000336573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035c9190620004f4565b601f80546001600160a01b03199081166001600160a01b0393841617909155601e80549091169183169190911790556001600760006200039b6200043f565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526007909252902080549091166001179055620003e56200043b565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040516200042c91906200053e565b60405180910390a350620005c9565b3390565b6000546001600160a01b031690565b8280546200045c906200056b565b90600052602060002090601f016020900481019282620004805760008555620004cb565b82601f106200049b57805160ff1916838001178555620004cb565b82800160010185558215620004cb579182015b82811115620004cb578251825591602001919060010190620004ae565b50620004d9929150620004dd565b5090565b5b80821115620004d95760008155600101620004de565b60006020828403121562000506578081fd5b81516001600160a01b03811681146200051d578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b90815260200190565b6000828210156200056657634e487b7160e01b81526011600452602481fd5b500390565b6002810460018216806200058057607f821691505b60208210811415620005a257634e487b7160e01b600052602260045260246000fd5b50919050565b600082620005c457634e487b7160e01b81526012600452602481fd5b500690565b61374380620005d96000396000f3fe60806040526004361061036f5760003560e01c806375f0a874116101c6578063b6c52324116100f7578063dd62ed3e11610095578063ec28438a1161006f578063ec28438a14610913578063efcc52de14610933578063f0f165af14610948578063f2fde38b1461096857610376565b8063dd62ed3e146108be578063e6c75f71146108de578063ea2f0b37146108f357610376565b8063c8607952116100d1578063c86079521461085f578063d12a768814610874578063dc44b6a014610889578063dd4670641461089e57610376565b8063b6c5232414610815578063c49b9a801461082a578063c5d241891461084a57610376565b806395d89b4111610164578063a68bacf31161013e578063a68bacf3146107a0578063a69df4b5146107c0578063a9059cbb146107d5578063afee32a9146107f557610376565b806395d89b411461074b5780639d854b6314610760578063a457c2d71461078057610376565b806388790a68116101a057806388790a68146106e157806388f82020146106f65780638da5cb5b1461071657806391d55f411461072b57610376565b806375f0a874146106a25780637abdc1ca146106b75780637d1db4a5146106cc57610376565b806339509351116102a057806352390c021161023e5780635d098b38116102185780635d098b381461062d5780636f9170f61461064d57806370a082311461066d578063715018a61461068d57610376565b806352390c02146105e35780635aa821a9146106035780635c975abb1461061857610376565b8063437823ec1161027a578063437823ec146105795780634549b0391461059957806349bd5a5e146105b95780634a74bb02146105ce57610376565b806339509351146105195780633bd5d1731461053957806341cb87fc1461055957610376565b806323b872dd1161030d5780632d838119116102e75780632d838119146104a2578063313ce567146104c2578063320b2ad9146104e45780633685d419146104f957610376565b806323b872dd1461045657806327c8f83514610476578063293230b81461048b57610376565b80631694505e116103495780631694505e146103f557806316f2f1a81461041757806318160ddd1461042c578063200a692d1461044157610376565b806306fdde031461037b578063095ea7b3146103a657806313114a9d146103d357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610988565b60405161039d9190612ea5565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d4b565b610a1a565b60405161039d9190612e9a565b3480156103df57600080fd5b506103e8610a38565b60405161039d9190613403565b34801561040157600080fd5b5061040a610a3e565b60405161039d9190612e31565b34801561042357600080fd5b506103e8610a4d565b34801561043857600080fd5b506103e8610a53565b34801561044d57600080fd5b506103e8610a59565b34801561046257600080fd5b506103c6610471366004612d0b565b610a5f565b34801561048257600080fd5b5061040a610ae7565b34801561049757600080fd5b506104a0610af6565b005b3480156104ae57600080fd5b506103e86104bd366004612d90565b610b6d565b3480156104ce57600080fd5b506104d7610bb0565b60405161039d9190613492565b3480156104f057600080fd5b506104a0610bb9565b34801561050557600080fd5b506104a0610514366004612c9b565b610c14565b34801561052557600080fd5b506103c6610534366004612d4b565b610ddf565b34801561054557600080fd5b506104a0610554366004612d90565b610e2d565b34801561056557600080fd5b506104a0610574366004612c9b565b610ee8565b34801561058557600080fd5b506104a0610594366004612c9b565b6110b4565b3480156105a557600080fd5b506103e86105b4366004612da8565b61110d565b3480156105c557600080fd5b5061040a61116a565b3480156105da57600080fd5b506103c6611179565b3480156105ef57600080fd5b506104a06105fe366004612c9b565b611189565b34801561060f57600080fd5b506103e86112b7565b34801561062457600080fd5b506103c66112bd565b34801561063957600080fd5b506104a0610648366004612c9b565b6112c6565b34801561065957600080fd5b506103c6610668366004612c9b565b61131d565b34801561067957600080fd5b506103e8610688366004612c9b565b61133b565b34801561069957600080fd5b506104a061139d565b3480156106ae57600080fd5b5061040a61140a565b3480156106c357600080fd5b506103e8611419565b3480156106d857600080fd5b506103e861141f565b3480156106ed57600080fd5b506103e8611425565b34801561070257600080fd5b506103c6610711366004612c9b565b61142b565b34801561072257600080fd5b5061040a611449565b34801561073757600080fd5b506104a0610746366004612d90565b611458565b34801561075757600080fd5b506103906114ae565b34801561076c57600080fd5b506104a061077b366004612e00565b6114bd565b34801561078c57600080fd5b506103c661079b366004612d4b565b611506565b3480156107ac57600080fd5b506104a06107bb366004612d90565b61156e565b3480156107cc57600080fd5b506104a06115c4565b3480156107e157600080fd5b506103c66107f0366004612d4b565b61165e565b34801561080157600080fd5b506104a0610810366004612e00565b611672565b34801561082157600080fd5b506103e86116bb565b34801561083657600080fd5b506104a0610845366004612d76565b6116c1565b34801561085657600080fd5b506103e8611748565b34801561086b57600080fd5b506103e861174e565b34801561088057600080fd5b506103e8611754565b34801561089557600080fd5b506103e861175a565b3480156108aa57600080fd5b506104a06108b9366004612d90565b611760565b3480156108ca57600080fd5b506103e86108d9366004612cd3565b6117f0565b3480156108ea57600080fd5b506103e861181b565b3480156108ff57600080fd5b506104a061090e366004612c9b565b611821565b34801561091f57600080fd5b506104a061092e366004612d90565b611877565b34801561093f57600080fd5b506103e86118ed565b34801561095457600080fd5b506104a0610963366004612d90565b6118f3565b34801561097457600080fd5b506104a0610983366004612c9b565b611949565b6060600e80546109979061361c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c39061361c565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b6000610a2e610a276119ed565b84846119f1565b5060015b92915050565b600d5490565b601e546001600160a01b031681565b60145481565b600b5490565b60155481565b6000610a6c848484611aa5565b610adc84610a786119ed565b610ad7856040518060600160405280602881526020016136a1602891396001600160a01b038a16600090815260066020526040812090610ab66119ed565b6001600160a01b031681526020810191909152604001600020549190611d53565b6119f1565b5060015b9392505050565b6008546001600160a01b031681565b610afe6112bd565b610b235760405162461bcd60e51b8152600401610b1a90612ef8565b60405180910390fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b566119ed565b604051610b639190612e31565b60405180910390a1565b6000600c54821115610b915760405162461bcd60e51b8152600401610b1a90612f6b565b6000610b9b611d8d565b9050610ba78382611db0565b9150505b919050565b60105460ff1690565b610bc16112bd565b15610bde5760405162461bcd60e51b8152600401610b1a906130ab565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b566119ed565b610c1c6119ed565b6000546001600160a01b03908116911614610c495760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16610c815760405162461bcd60e51b8152600401610b1a90613074565b60005b600a54811015610ddb57816001600160a01b0316600a8281548110610cb957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610dc957600a8054610ce490600190613605565b81548110610d0257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d3c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610da257634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610ddb565b80610dd381613657565b915050610c84565b5050565b6000610a2e610dec6119ed565b84610ad78560066000610dfd6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611df2565b6000610e376119ed565b6001600160a01b03811660009081526009602052604090205490915060ff1615610e735760405162461bcd60e51b8152600401610b1a90613374565b6000610e7e83611e21565b505050506001600160a01b038416600090815260046020526040902054919250610eaa91905082611e70565b6001600160a01b038316600090815260046020526040902055600c54610ed09082611e70565b600c55600d54610ee09084611df2565b600d55505050565b610ef06119ed565b6000546001600160a01b03908116911614610f1d5760405162461bcd60e51b8152600401610b1a906131d9565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f5b57600080fd5b505afa158015610f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f939190612cb7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fdb57600080fd5b505afa158015610fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110139190612cb7565b6040518363ffffffff1660e01b8152600401611030929190612e45565b602060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190612cb7565b601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b6110bc6119ed565b6000546001600160a01b039081169116146110e95760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600b548311156111315760405162461bcd60e51b8152600401610b1a906130d5565b8161115057600061114184611e21565b50939550610a32945050505050565b600061115b84611e21565b50929550610a32945050505050565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6111916119ed565b6000546001600160a01b039081169116146111be5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16156111f75760405162461bcd60e51b8152600401610b1a90613074565b6001600160a01b03811660009081526004602052604090205415611251576001600160a01b03811660009081526004602052604090205461123790610b6d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60225481565b60035460ff1690565b6112ce6119ed565b6000546001600160a01b039081169116146112fb5760405162461bcd60e51b8152600401610b1a906131d9565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526009602052604081205460ff161561137b57506001600160a01b038116600090815260056020526040902054610bab565b6001600160a01b038216600090815260046020526040902054610a3290610b6d565b6113a56119ed565b6000546001600160a01b039081169116146113d25760405162461bcd60e51b8152600401610b1a906131d9565b600080546040516001600160a01b03909116906000805160206136c9833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b60185481565b60215481565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b6114606119ed565b6000546001600160a01b0390811691161461148d5760405162461bcd60e51b8152600401610b1a906131d9565b60105461149e9060ff16600a613515565b6114a890826135e6565b60235550565b6060600f80546109979061361c565b6114c56119ed565b6000546001600160a01b039081169116146114f25760405162461bcd60e51b8152600401610b1a906131d9565b601593909355601691909155601755601855565b6000610a2e6115136119ed565b84610ad7856040518060600160405280602581526020016136e9602591396006600061153d6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d53565b6115766119ed565b6000546001600160a01b039081169116146115a35760405162461bcd60e51b8152600401610b1a906131d9565b6010546115b49060ff16600a613515565b6115be90826135e6565b60225550565b6001546001600160a01b031633146115ee5760405162461bcd60e51b8152600401610b1a906133c0565b600254421161160f5760405162461bcd60e51b8152600401610b1a906132e0565b600154600080546040516001600160a01b0393841693909116916000805160206136c983398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a2e61166b6119ed565b8484611aa5565b61167a6119ed565b6000546001600160a01b039081169116146116a75760405162461bcd60e51b8152600401610b1a906131d9565b601193909355601391909155601255601455565b60025490565b6116c96119ed565b6000546001600160a01b039081169116146116f65760405162461bcd60e51b8152600401610b1a906131d9565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061173d908390612e9a565b60405180910390a150565b60135481565b60165481565b60205481565b60125481565b6117686119ed565b6000546001600160a01b039081169116146117955760405162461bcd60e51b8152600401610b1a906131d9565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117c481426134a0565b600255600080546040516001600160a01b03909116906000805160206136c9833981519152908390a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60235481565b6118296119ed565b6000546001600160a01b039081169116146118565760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19169055565b61187f6119ed565b6000546001600160a01b039081169116146118ac5760405162461bcd60e51b8152600401610b1a906131d9565b600081116118cc5760405162461bcd60e51b8152600401610b1a90612f26565b6010546118dd9060ff16600a613515565b6118e790826135e6565b60215550565b60115481565b6118fb6119ed565b6000546001600160a01b039081169116146119285760405162461bcd60e51b8152600401610b1a906131d9565b6010546119399060ff16600a613515565b61194390826135e6565b60205550565b6119516119ed565b6000546001600160a01b0390811691161461197e5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b0381166119a45760405162461bcd60e51b8152600401610b1a90612fb5565b600080546040516001600160a01b03808516939216916000805160206136c983398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401610b1a9061329c565b6001600160a01b038216611a3d5760405162461bcd60e51b8152600401610b1a90612ffb565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611a98908590613403565b60405180910390a3505050565b611aad6112bd565b15611aca5760405162461bcd60e51b8152600401610b1a906130ab565b6001600160a01b038316611af05760405162461bcd60e51b8152600401610b1a90613257565b60008111611b105760405162461bcd60e51b8152600401610b1a9061320e565b611b18611449565b6001600160a01b0316836001600160a01b031614158015611b525750611b3c611449565b6001600160a01b0316826001600160a01b031614155b8015611b6657506001600160a01b03821615155b8015611b7d57506001600160a01b03821661dead14155b8015611b975750601f546001600160a01b03838116911614155b15611bd7576000611ba78361133b565b602354909150611bb783836134a0565b1115611bd55760405162461bcd60e51b8152600401610b1a90613154565b505b601f546001600160a01b038481169116148015611bfa5750611bf88261131d565b155b15611c2157602254811115611c215760405162461bcd60e51b8152600401610b1a90613317565b6000611c2c3061133b565b60205490915081108015908190611c4d5750601f54600160a01b900460ff16155b8015611c675750601f546001600160a01b03868116911614155b8015611c7c5750601f54600160a81b900460ff165b15611c8f576020549150611c8f82611eb2565b6001611c9a8661131d565b80611ca95750611ca98561131d565b15611cb2575060005b601f546001600160a01b0387811691161480611cdb5750611cdb866001600160a01b0316611fcd565b15611cf957601154601955601354601a55601254601b55601454601c555b601f546001600160a01b0386811691161480611d225750611d22856001600160a01b0316611fcd565b15611d4057601554601955601654601a55601754601b55601854601c555b611d4b868686612009565b505050505050565b60008184841115611d775760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d848486613605565b95945050505050565b6000806000611d9a6121d5565b9092509050611da98282611db0565b9250505090565b6000610ae083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612392565b600080611dff83856134a0565b905083811015610ae05760405162461bcd60e51b8152600401610b1a9061303d565b6000806000806000806000806000611e388a6123c0565b9250925092506000806000611e568d8686611e51611d8d565b612402565b919f909e50909c50959a5093985091965092945050505050565b6000610ae083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d53565b601f805460ff60a01b1916600160a01b179055601a54601b54600091611ed89190611df2565b90506000611efb82611ef5601b548661245290919063ffffffff16565b90611db0565b90506000611f098483611e70565b90506000611f18836002611db0565b90506000611f268483611e70565b905047611f3283612497565b6000611f3e4783611e70565b9050611f4a8382612614565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611f7d9392919061347c565b60405180910390a147611f8f86612497565b6000611f9b4783611e70565b601d54909150611fb4906001600160a01b0316826126c6565b5050601f805460ff60a01b191690555050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200157508115155b949350505050565b6001600160a01b03831660009081526007602052604090205460ff168061204857506001600160a01b03821660009081526007602052604090205460ff165b1561205a576120556126fc565b61207c565b60215481111561207c5760405162461bcd60e51b8152600401610b1a9061310c565b6001600160a01b03831660009081526009602052604090205460ff1680156120bd57506001600160a01b03821660009081526009602052604090205460ff16155b156120d2576120cd838383612745565b6121d0565b6001600160a01b03831660009081526009602052604090205460ff1615801561211357506001600160a01b03821660009081526009602052604090205460ff165b15612123576120cd838383612869565b6001600160a01b03831660009081526009602052604090205460ff1615801561216557506001600160a01b03821660009081526009602052604090205460ff16155b15612175576120cd838383612912565b6001600160a01b03831660009081526009602052604090205460ff1680156121b557506001600160a01b03821660009081526009602052604090205460ff165b156121c5576120cd838383612975565b6121d0838383612912565b505050565b600c54600b546000918291825b600a54811015612360578260046000600a848154811061221257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061228b57508160056000600a848154811061226457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122a257600c54600b549450945050505061238e565b6122f660046000600a84815481106122ca57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e70565b925061234c60056000600a848154811061232057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e70565b91508061235881613657565b9150506121e2565b50600b54600c5461237091611db0565b82101561238857600c54600b5493509350505061238e565b90925090505b9091565b600081836123b35760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d8484866134b8565b6000806000806123cf856129e8565b905060006123dc86612a04565b905060006123f4826123ee8986611e70565b90611e70565b979296509094509092505050565b60008080806124118886612452565b9050600061241f8887612452565b9050600061242d8888612452565b9050600061243f826123ee8686611e70565b939b939a50919850919650505050505050565b60008261246157506000610a32565b600061246d83856135e6565b90508261247a85836134b8565b14610ae05760405162461bcd60e51b8152600401610b1a90613198565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124da57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125669190612cb7565b8160018151811061258757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601e546125ad91309116846119f1565b601e5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125e690859060009086903090429060040161340c565b600060405180830381600087803b15801561260057600080fd5b505af1158015611d4b573d6000803e3d6000fd5b601e5461262c9030906001600160a01b0316846119f1565b601e546001600160a01b031663f305d71982308560008061264b611449565b426040518863ffffffff1660e01b815260040161266d96959493929190612e5f565b6060604051808303818588803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126bf9190612dd3565b5050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156121d0573d6000803e3d6000fd5b60195415801561270c5750601b54155b80156127185750601a54155b80156127245750601c54155b1561272e57612743565b60006019819055601b819055601a819055601c555b565b60008060008060008061275787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127899088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127b89087611e70565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127e79086611df2565b6001600160a01b03891660009081526004602052604090205561280981612a20565b6128138483612aa8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128569190613403565b60405180910390a3505050505050505050565b60008060008060008061287b87611e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128ad9087611e70565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128e39084611df2565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127e79086611df2565b60008060008060008061292487611e21565b95509550955095509550955061293c8984878a612acc565b9550925061294c8984878a612bcb565b6001600160a01b038b166000908152600460205260409020549096509093506127b89087611e70565b60008060008060008061298787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506129b99088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128ad9087611e70565b6000610a326064611ef56019548561245290919063ffffffff16565b6000610a326064611ef5601b548561245290919063ffffffff16565b6000612a2a611d8d565b90506000612a388383612452565b30600090815260046020526040902054909150612a559082611df2565b3060009081526004602090815260408083209390935560099052205460ff16156121d05730600090815260056020526040902054612a939084611df2565b30600090815260056020526040902055505050565b600c54612ab59083611e70565b600c55600d54612ac59082611df2565b600d555050565b600080601c5460001415612ae4575083905082612bc2565b601c54600090612aff90612af9866064611db0565b90612452565b90506000612b15612b0e611d8d565b8390612452565b9050612b218682611e70565b9550612b2d8783611e70565b6008546001600160a01b0316600090815260046020526040902054909750612b559082611df2565b600880546001600160a01b0390811660009081526004602052604090819020939093559054915191811691908a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b60405180910390a386869350935050505b94509492505050565b600080601a5460001415612be3575083905082612bc2565b601a54600090612bf890612af9866064611db0565b90506000612c07612b0e611d8d565b9050612c138682611e70565b9550612c1f8783611e70565b30600090815260046020526040902054909750612c3c9082611df2565b30600081815260046020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b80358015158114610bab57600080fd5b600060208284031215612cac578081fd5b8135610ae081613688565b600060208284031215612cc8578081fd5b8151610ae081613688565b60008060408385031215612ce5578081fd5b8235612cf081613688565b91506020830135612d0081613688565b809150509250929050565b600080600060608486031215612d1f578081fd5b8335612d2a81613688565b92506020840135612d3a81613688565b929592945050506040919091013590565b60008060408385031215612d5d578182fd5b8235612d6881613688565b946020939093013593505050565b600060208284031215612d87578081fd5b610ae082612c8b565b600060208284031215612da1578081fd5b5035919050565b60008060408385031215612dba578182fd5b82359150612dca60208401612c8b565b90509250929050565b600080600060608486031215612de7578283fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215612e15578081fd5b5050823594602084013594506040840135936060013592509050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612ed157858101830151858201604001528201612eb5565b81811115612ee25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526025908201527f43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206173604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526024908201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6040820152633ab73a1760e11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526038908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527f6d61784275795472616e73616374696f6e416d6f756e742e0000000000000000606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561345b5784516001600160a01b031683529383019391830191600101613436565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156134b3576134b3613672565b500190565b6000826134d357634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116134ea5750612bc2565b8187048211156134fc576134fc613672565b8086161561350957918102915b9490941c9380026134db565b6000610ae060001960ff85168460008261353157506001610ae0565b8161353e57506000610ae0565b8160018114613554576002811461355e5761358b565b6001915050610ae0565b60ff84111561356f5761356f613672565b6001841b91508482111561358557613585613672565b50610ae0565b5060208310610133831016604e8410600b84101617156135be575081810a838111156135b9576135b9613672565b610ae0565b6135cb84848460016134d8565b8086048211156135dd576135dd613672565b02949350505050565b600081600019048311821515161561360057613600613672565b500290565b60008282101561361757613617613672565b500390565b60028104600182168061363057607f821691505b6020821081141561365157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561366b5761366b613672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461369d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fdc8bb20a3af5fd31f7caf19e0658d275bf2aade8f930db802da2ecf481b867064736f6c63430008000033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806375f0a874116101c6578063b6c52324116100f7578063dd62ed3e11610095578063ec28438a1161006f578063ec28438a14610913578063efcc52de14610933578063f0f165af14610948578063f2fde38b1461096857610376565b8063dd62ed3e146108be578063e6c75f71146108de578063ea2f0b37146108f357610376565b8063c8607952116100d1578063c86079521461085f578063d12a768814610874578063dc44b6a014610889578063dd4670641461089e57610376565b8063b6c5232414610815578063c49b9a801461082a578063c5d241891461084a57610376565b806395d89b4111610164578063a68bacf31161013e578063a68bacf3146107a0578063a69df4b5146107c0578063a9059cbb146107d5578063afee32a9146107f557610376565b806395d89b411461074b5780639d854b6314610760578063a457c2d71461078057610376565b806388790a68116101a057806388790a68146106e157806388f82020146106f65780638da5cb5b1461071657806391d55f411461072b57610376565b806375f0a874146106a25780637abdc1ca146106b75780637d1db4a5146106cc57610376565b806339509351116102a057806352390c021161023e5780635d098b38116102185780635d098b381461062d5780636f9170f61461064d57806370a082311461066d578063715018a61461068d57610376565b806352390c02146105e35780635aa821a9146106035780635c975abb1461061857610376565b8063437823ec1161027a578063437823ec146105795780634549b0391461059957806349bd5a5e146105b95780634a74bb02146105ce57610376565b806339509351146105195780633bd5d1731461053957806341cb87fc1461055957610376565b806323b872dd1161030d5780632d838119116102e75780632d838119146104a2578063313ce567146104c2578063320b2ad9146104e45780633685d419146104f957610376565b806323b872dd1461045657806327c8f83514610476578063293230b81461048b57610376565b80631694505e116103495780631694505e146103f557806316f2f1a81461041757806318160ddd1461042c578063200a692d1461044157610376565b806306fdde031461037b578063095ea7b3146103a657806313114a9d146103d357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610988565b60405161039d9190612ea5565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612d4b565b610a1a565b60405161039d9190612e9a565b3480156103df57600080fd5b506103e8610a38565b60405161039d9190613403565b34801561040157600080fd5b5061040a610a3e565b60405161039d9190612e31565b34801561042357600080fd5b506103e8610a4d565b34801561043857600080fd5b506103e8610a53565b34801561044d57600080fd5b506103e8610a59565b34801561046257600080fd5b506103c6610471366004612d0b565b610a5f565b34801561048257600080fd5b5061040a610ae7565b34801561049757600080fd5b506104a0610af6565b005b3480156104ae57600080fd5b506103e86104bd366004612d90565b610b6d565b3480156104ce57600080fd5b506104d7610bb0565b60405161039d9190613492565b3480156104f057600080fd5b506104a0610bb9565b34801561050557600080fd5b506104a0610514366004612c9b565b610c14565b34801561052557600080fd5b506103c6610534366004612d4b565b610ddf565b34801561054557600080fd5b506104a0610554366004612d90565b610e2d565b34801561056557600080fd5b506104a0610574366004612c9b565b610ee8565b34801561058557600080fd5b506104a0610594366004612c9b565b6110b4565b3480156105a557600080fd5b506103e86105b4366004612da8565b61110d565b3480156105c557600080fd5b5061040a61116a565b3480156105da57600080fd5b506103c6611179565b3480156105ef57600080fd5b506104a06105fe366004612c9b565b611189565b34801561060f57600080fd5b506103e86112b7565b34801561062457600080fd5b506103c66112bd565b34801561063957600080fd5b506104a0610648366004612c9b565b6112c6565b34801561065957600080fd5b506103c6610668366004612c9b565b61131d565b34801561067957600080fd5b506103e8610688366004612c9b565b61133b565b34801561069957600080fd5b506104a061139d565b3480156106ae57600080fd5b5061040a61140a565b3480156106c357600080fd5b506103e8611419565b3480156106d857600080fd5b506103e861141f565b3480156106ed57600080fd5b506103e8611425565b34801561070257600080fd5b506103c6610711366004612c9b565b61142b565b34801561072257600080fd5b5061040a611449565b34801561073757600080fd5b506104a0610746366004612d90565b611458565b34801561075757600080fd5b506103906114ae565b34801561076c57600080fd5b506104a061077b366004612e00565b6114bd565b34801561078c57600080fd5b506103c661079b366004612d4b565b611506565b3480156107ac57600080fd5b506104a06107bb366004612d90565b61156e565b3480156107cc57600080fd5b506104a06115c4565b3480156107e157600080fd5b506103c66107f0366004612d4b565b61165e565b34801561080157600080fd5b506104a0610810366004612e00565b611672565b34801561082157600080fd5b506103e86116bb565b34801561083657600080fd5b506104a0610845366004612d76565b6116c1565b34801561085657600080fd5b506103e8611748565b34801561086b57600080fd5b506103e861174e565b34801561088057600080fd5b506103e8611754565b34801561089557600080fd5b506103e861175a565b3480156108aa57600080fd5b506104a06108b9366004612d90565b611760565b3480156108ca57600080fd5b506103e86108d9366004612cd3565b6117f0565b3480156108ea57600080fd5b506103e861181b565b3480156108ff57600080fd5b506104a061090e366004612c9b565b611821565b34801561091f57600080fd5b506104a061092e366004612d90565b611877565b34801561093f57600080fd5b506103e86118ed565b34801561095457600080fd5b506104a0610963366004612d90565b6118f3565b34801561097457600080fd5b506104a0610983366004612c9b565b611949565b6060600e80546109979061361c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c39061361c565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b5050505050905090565b6000610a2e610a276119ed565b84846119f1565b5060015b92915050565b600d5490565b601e546001600160a01b031681565b60145481565b600b5490565b60155481565b6000610a6c848484611aa5565b610adc84610a786119ed565b610ad7856040518060600160405280602881526020016136a1602891396001600160a01b038a16600090815260066020526040812090610ab66119ed565b6001600160a01b031681526020810191909152604001600020549190611d53565b6119f1565b5060015b9392505050565b6008546001600160a01b031681565b610afe6112bd565b610b235760405162461bcd60e51b8152600401610b1a90612ef8565b60405180910390fd5b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610b566119ed565b604051610b639190612e31565b60405180910390a1565b6000600c54821115610b915760405162461bcd60e51b8152600401610b1a90612f6b565b6000610b9b611d8d565b9050610ba78382611db0565b9150505b919050565b60105460ff1690565b610bc16112bd565b15610bde5760405162461bcd60e51b8152600401610b1a906130ab565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610b566119ed565b610c1c6119ed565b6000546001600160a01b03908116911614610c495760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16610c815760405162461bcd60e51b8152600401610b1a90613074565b60005b600a54811015610ddb57816001600160a01b0316600a8281548110610cb957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610dc957600a8054610ce490600190613605565b81548110610d0257634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600a80546001600160a01b039092169183908110610d3c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610da257634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610ddb565b80610dd381613657565b915050610c84565b5050565b6000610a2e610dec6119ed565b84610ad78560066000610dfd6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611df2565b6000610e376119ed565b6001600160a01b03811660009081526009602052604090205490915060ff1615610e735760405162461bcd60e51b8152600401610b1a90613374565b6000610e7e83611e21565b505050506001600160a01b038416600090815260046020526040902054919250610eaa91905082611e70565b6001600160a01b038316600090815260046020526040902055600c54610ed09082611e70565b600c55600d54610ee09084611df2565b600d55505050565b610ef06119ed565b6000546001600160a01b03908116911614610f1d5760405162461bcd60e51b8152600401610b1a906131d9565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f5b57600080fd5b505afa158015610f6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f939190612cb7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fdb57600080fd5b505afa158015610fef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110139190612cb7565b6040518363ffffffff1660e01b8152600401611030929190612e45565b602060405180830381600087803b15801561104a57600080fd5b505af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190612cb7565b601f80546001600160a01b039283166001600160a01b031991821617909155601e805493909216921691909117905550565b6110bc6119ed565b6000546001600160a01b039081169116146110e95760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000600b548311156111315760405162461bcd60e51b8152600401610b1a906130d5565b8161115057600061114184611e21565b50939550610a32945050505050565b600061115b84611e21565b50929550610a32945050505050565b601f546001600160a01b031681565b601f54600160a81b900460ff1681565b6111916119ed565b6000546001600160a01b039081169116146111be5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03811660009081526009602052604090205460ff16156111f75760405162461bcd60e51b8152600401610b1a90613074565b6001600160a01b03811660009081526004602052604090205415611251576001600160a01b03811660009081526004602052604090205461123790610b6d565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b60225481565b60035460ff1690565b6112ce6119ed565b6000546001600160a01b039081169116146112fb5760405162461bcd60e51b8152600401610b1a906131d9565b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526009602052604081205460ff161561137b57506001600160a01b038116600090815260056020526040902054610bab565b6001600160a01b038216600090815260046020526040902054610a3290610b6d565b6113a56119ed565b6000546001600160a01b039081169116146113d25760405162461bcd60e51b8152600401610b1a906131d9565b600080546040516001600160a01b03909116906000805160206136c9833981519152908390a3600080546001600160a01b0319169055565b601d546001600160a01b031681565b60185481565b60215481565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b6114606119ed565b6000546001600160a01b0390811691161461148d5760405162461bcd60e51b8152600401610b1a906131d9565b60105461149e9060ff16600a613515565b6114a890826135e6565b60235550565b6060600f80546109979061361c565b6114c56119ed565b6000546001600160a01b039081169116146114f25760405162461bcd60e51b8152600401610b1a906131d9565b601593909355601691909155601755601855565b6000610a2e6115136119ed565b84610ad7856040518060600160405280602581526020016136e9602591396006600061153d6119ed565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611d53565b6115766119ed565b6000546001600160a01b039081169116146115a35760405162461bcd60e51b8152600401610b1a906131d9565b6010546115b49060ff16600a613515565b6115be90826135e6565b60225550565b6001546001600160a01b031633146115ee5760405162461bcd60e51b8152600401610b1a906133c0565b600254421161160f5760405162461bcd60e51b8152600401610b1a906132e0565b600154600080546040516001600160a01b0393841693909116916000805160206136c983398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a2e61166b6119ed565b8484611aa5565b61167a6119ed565b6000546001600160a01b039081169116146116a75760405162461bcd60e51b8152600401610b1a906131d9565b601193909355601391909155601255601455565b60025490565b6116c96119ed565b6000546001600160a01b039081169116146116f65760405162461bcd60e51b8152600401610b1a906131d9565b601f805460ff60a81b1916600160a81b831515021790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061173d908390612e9a565b60405180910390a150565b60135481565b60165481565b60205481565b60125481565b6117686119ed565b6000546001600160a01b039081169116146117955760405162461bcd60e51b8152600401610b1a906131d9565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556117c481426134a0565b600255600080546040516001600160a01b03909116906000805160206136c9833981519152908390a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60235481565b6118296119ed565b6000546001600160a01b039081169116146118565760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b03166000908152600760205260409020805460ff19169055565b61187f6119ed565b6000546001600160a01b039081169116146118ac5760405162461bcd60e51b8152600401610b1a906131d9565b600081116118cc5760405162461bcd60e51b8152600401610b1a90612f26565b6010546118dd9060ff16600a613515565b6118e790826135e6565b60215550565b60115481565b6118fb6119ed565b6000546001600160a01b039081169116146119285760405162461bcd60e51b8152600401610b1a906131d9565b6010546119399060ff16600a613515565b61194390826135e6565b60205550565b6119516119ed565b6000546001600160a01b0390811691161461197e5760405162461bcd60e51b8152600401610b1a906131d9565b6001600160a01b0381166119a45760405162461bcd60e51b8152600401610b1a90612fb5565b600080546040516001600160a01b03808516939216916000805160206136c983398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401610b1a9061329c565b6001600160a01b038216611a3d5760405162461bcd60e51b8152600401610b1a90612ffb565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611a98908590613403565b60405180910390a3505050565b611aad6112bd565b15611aca5760405162461bcd60e51b8152600401610b1a906130ab565b6001600160a01b038316611af05760405162461bcd60e51b8152600401610b1a90613257565b60008111611b105760405162461bcd60e51b8152600401610b1a9061320e565b611b18611449565b6001600160a01b0316836001600160a01b031614158015611b525750611b3c611449565b6001600160a01b0316826001600160a01b031614155b8015611b6657506001600160a01b03821615155b8015611b7d57506001600160a01b03821661dead14155b8015611b975750601f546001600160a01b03838116911614155b15611bd7576000611ba78361133b565b602354909150611bb783836134a0565b1115611bd55760405162461bcd60e51b8152600401610b1a90613154565b505b601f546001600160a01b038481169116148015611bfa5750611bf88261131d565b155b15611c2157602254811115611c215760405162461bcd60e51b8152600401610b1a90613317565b6000611c2c3061133b565b60205490915081108015908190611c4d5750601f54600160a01b900460ff16155b8015611c675750601f546001600160a01b03868116911614155b8015611c7c5750601f54600160a81b900460ff165b15611c8f576020549150611c8f82611eb2565b6001611c9a8661131d565b80611ca95750611ca98561131d565b15611cb2575060005b601f546001600160a01b0387811691161480611cdb5750611cdb866001600160a01b0316611fcd565b15611cf957601154601955601354601a55601254601b55601454601c555b601f546001600160a01b0386811691161480611d225750611d22856001600160a01b0316611fcd565b15611d4057601554601955601654601a55601754601b55601854601c555b611d4b868686612009565b505050505050565b60008184841115611d775760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d848486613605565b95945050505050565b6000806000611d9a6121d5565b9092509050611da98282611db0565b9250505090565b6000610ae083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612392565b600080611dff83856134a0565b905083811015610ae05760405162461bcd60e51b8152600401610b1a9061303d565b6000806000806000806000806000611e388a6123c0565b9250925092506000806000611e568d8686611e51611d8d565b612402565b919f909e50909c50959a5093985091965092945050505050565b6000610ae083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d53565b601f805460ff60a01b1916600160a01b179055601a54601b54600091611ed89190611df2565b90506000611efb82611ef5601b548661245290919063ffffffff16565b90611db0565b90506000611f098483611e70565b90506000611f18836002611db0565b90506000611f268483611e70565b905047611f3283612497565b6000611f3e4783611e70565b9050611f4a8382612614565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611f7d9392919061347c565b60405180910390a147611f8f86612497565b6000611f9b4783611e70565b601d54909150611fb4906001600160a01b0316826126c6565b5050601f805460ff60a01b191690555050505050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061200157508115155b949350505050565b6001600160a01b03831660009081526007602052604090205460ff168061204857506001600160a01b03821660009081526007602052604090205460ff165b1561205a576120556126fc565b61207c565b60215481111561207c5760405162461bcd60e51b8152600401610b1a9061310c565b6001600160a01b03831660009081526009602052604090205460ff1680156120bd57506001600160a01b03821660009081526009602052604090205460ff16155b156120d2576120cd838383612745565b6121d0565b6001600160a01b03831660009081526009602052604090205460ff1615801561211357506001600160a01b03821660009081526009602052604090205460ff165b15612123576120cd838383612869565b6001600160a01b03831660009081526009602052604090205460ff1615801561216557506001600160a01b03821660009081526009602052604090205460ff16155b15612175576120cd838383612912565b6001600160a01b03831660009081526009602052604090205460ff1680156121b557506001600160a01b03821660009081526009602052604090205460ff165b156121c5576120cd838383612975565b6121d0838383612912565b505050565b600c54600b546000918291825b600a54811015612360578260046000600a848154811061221257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061228b57508160056000600a848154811061226457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156122a257600c54600b549450945050505061238e565b6122f660046000600a84815481106122ca57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e70565b925061234c60056000600a848154811061232057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e70565b91508061235881613657565b9150506121e2565b50600b54600c5461237091611db0565b82101561238857600c54600b5493509350505061238e565b90925090505b9091565b600081836123b35760405162461bcd60e51b8152600401610b1a9190612ea5565b506000611d8484866134b8565b6000806000806123cf856129e8565b905060006123dc86612a04565b905060006123f4826123ee8986611e70565b90611e70565b979296509094509092505050565b60008080806124118886612452565b9050600061241f8887612452565b9050600061242d8888612452565b9050600061243f826123ee8686611e70565b939b939a50919850919650505050505050565b60008261246157506000610a32565b600061246d83856135e6565b90508261247a85836134b8565b14610ae05760405162461bcd60e51b8152600401610b1a90613198565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124da57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601e54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561252e57600080fd5b505afa158015612542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125669190612cb7565b8160018151811061258757634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601e546125ad91309116846119f1565b601e5460405163791ac94760e01b81526001600160a01b039091169063791ac947906125e690859060009086903090429060040161340c565b600060405180830381600087803b15801561260057600080fd5b505af1158015611d4b573d6000803e3d6000fd5b601e5461262c9030906001600160a01b0316846119f1565b601e546001600160a01b031663f305d71982308560008061264b611449565b426040518863ffffffff1660e01b815260040161266d96959493929190612e5f565b6060604051808303818588803b15801561268657600080fd5b505af115801561269a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126bf9190612dd3565b5050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156121d0573d6000803e3d6000fd5b60195415801561270c5750601b54155b80156127185750601a54155b80156127245750601c54155b1561272e57612743565b60006019819055601b819055601a819055601c555b565b60008060008060008061275787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127899088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546127b89087611e70565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546127e79086611df2565b6001600160a01b03891660009081526004602052604090205561280981612a20565b6128138483612aa8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516128569190613403565b60405180910390a3505050505050505050565b60008060008060008061287b87611e21565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128ad9087611e70565b6001600160a01b03808b16600090815260046020908152604080832094909455918b168152600590915220546128e39084611df2565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546127e79086611df2565b60008060008060008061292487611e21565b95509550955095509550955061293c8984878a612acc565b9550925061294c8984878a612bcb565b6001600160a01b038b166000908152600460205260409020549096509093506127b89087611e70565b60008060008060008061298787611e21565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506129b99088611e70565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546128ad9087611e70565b6000610a326064611ef56019548561245290919063ffffffff16565b6000610a326064611ef5601b548561245290919063ffffffff16565b6000612a2a611d8d565b90506000612a388383612452565b30600090815260046020526040902054909150612a559082611df2565b3060009081526004602090815260408083209390935560099052205460ff16156121d05730600090815260056020526040902054612a939084611df2565b30600090815260056020526040902055505050565b600c54612ab59083611e70565b600c55600d54612ac59082611df2565b600d555050565b600080601c5460001415612ae4575083905082612bc2565b601c54600090612aff90612af9866064611db0565b90612452565b90506000612b15612b0e611d8d565b8390612452565b9050612b218682611e70565b9550612b2d8783611e70565b6008546001600160a01b0316600090815260046020526040902054909750612b559082611df2565b600880546001600160a01b0390811660009081526004602052604090819020939093559054915191811691908a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b60405180910390a386869350935050505b94509492505050565b600080601a5460001415612be3575083905082612bc2565b601a54600090612bf890612af9866064611db0565b90506000612c07612b0e611d8d565b9050612c138682611e70565b9550612c1f8783611e70565b30600090815260046020526040902054909750612c3c9082611df2565b30600081815260046020526040908190209290925590516001600160a01b038a16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612bb1908690613403565b80358015158114610bab57600080fd5b600060208284031215612cac578081fd5b8135610ae081613688565b600060208284031215612cc8578081fd5b8151610ae081613688565b60008060408385031215612ce5578081fd5b8235612cf081613688565b91506020830135612d0081613688565b809150509250929050565b600080600060608486031215612d1f578081fd5b8335612d2a81613688565b92506020840135612d3a81613688565b929592945050506040919091013590565b60008060408385031215612d5d578182fd5b8235612d6881613688565b946020939093013593505050565b600060208284031215612d87578081fd5b610ae082612c8b565b600060208284031215612da1578081fd5b5035919050565b60008060408385031215612dba578182fd5b82359150612dca60208401612c8b565b90509250929050565b600080600060608486031215612de7578283fd5b8351925060208401519150604084015190509250925092565b60008060008060808587031215612e15578081fd5b5050823594602084013594506040840135936060013592509050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b901515815260200190565b6000602080835283518082850152825b81811015612ed157858101830151858201604001528201612eb5565b81811115612ee25783604083870101525b50601f01601f1916929092016040019392505050565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526025908201527f43616e6e6f7420736574207472616e73616374696f6e20616d6f756e74206173604082015264207a65726f60d81b606082015260800190565b6020808252602a908201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260408201526965666c656374696f6e7360b01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601f908201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604082015260600190565b60208082526028908201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546040820152673c20b6b7bab73a1760c11b606082015260800190565b60208082526024908201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6040820152633ab73a1760e11b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206040820152687468616e207a65726f60b81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604082015260600190565b60208082526038908201527f427579207472616e7366657220616d6f756e742065786365656473207468652060408201527f6d61784275795472616e73616374696f6e416d6f756e742e0000000000000000606082015260800190565b6020808252602c908201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b60208082526023908201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6040820152626f636b60e81b606082015260800190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561345b5784516001600160a01b031683529383019391830191600101613436565b50506001600160a01b03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600082198211156134b3576134b3613672565b500190565b6000826134d357634e487b7160e01b81526012600452602481fd5b500490565b80825b60018086116134ea5750612bc2565b8187048211156134fc576134fc613672565b8086161561350957918102915b9490941c9380026134db565b6000610ae060001960ff85168460008261353157506001610ae0565b8161353e57506000610ae0565b8160018114613554576002811461355e5761358b565b6001915050610ae0565b60ff84111561356f5761356f613672565b6001841b91508482111561358557613585613672565b50610ae0565b5060208310610133831016604e8410600b84101617156135be575081810a838111156135b9576135b9613672565b610ae0565b6135cb84848460016134d8565b8086048211156135dd576135dd613672565b02949350505050565b600081600019048311821515161561360057613600613672565b500290565b60008282101561361757613617613672565b500390565b60028104600182168061363057607f821691505b6020821081141561365157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561366b5761366b613672565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461369d57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fdc8bb20a3af5fd31f7caf19e0658d275bf2aade8f930db802da2ecf481b867064736f6c63430008000033
Deployed Bytecode Sourcemap
27446:23249:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30416:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31328:161;;;;;;;;;;-1:-1:-1;31328:161:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;32449:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28897:42::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28421:30::-;;;;;;;;;;;;;:::i;30693:95::-;;;;;;;;;;;;;:::i;28477:30::-;;;;;;;;;;;;;:::i;31497:313::-;;;;;;;;;;-1:-1:-1;31497:313:0;;;;;:::i;:::-;;:::i;27806:71::-;;;;;;;;;;;;;:::i;10150:124::-;;;;;;;;;;;;;:::i;:::-;;33373:253;;;;;;;;;;-1:-1:-1;33373:253:0;;;;;:::i;:::-;;:::i;30602:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9891:118::-;;;;;;;;;;;;;:::i;33975:479::-;;;;;;;;;;-1:-1:-1;33975:479:0;;;;;:::i;:::-;;:::i;31818:218::-;;;;;;;;;;-1:-1:-1;31818:218:0;;;;;:::i;:::-;;:::i;32544:377::-;;;;;;;;;;-1:-1:-1;32544:377:0;;;;;:::i;:::-;;:::i;50043:322::-;;;;;;;;;;-1:-1:-1;50043:322:0;;;;;:::i;:::-;;:::i;48381:103::-;;;;;;;;;;-1:-1:-1;48381:103:0;;;;;:::i;:::-;;:::i;32929:436::-;;;;;;;;;;-1:-1:-1;32929:436:0;;;;;:::i;:::-;;:::i;28946:29::-;;;;;;;;;;;;;:::i;29016:40::-;;;;;;;;;;;;;:::i;33634:333::-;;;;;;;;;;-1:-1:-1;33634:333:0;;;;;:::i;:::-;;:::i;29195:59::-;;;;;;;;;;;;;:::i;9091:86::-;;;;;;;;;;;;;:::i;48610:122::-;;;;;;;;;;-1:-1:-1;48610:122:0;;;;;:::i;:::-;;:::i;38290:111::-;;;;;;;;;;-1:-1:-1;38290:111:0;;;;;:::i;:::-;;:::i;30796:198::-;;;;;;;;;;-1:-1:-1;30796:198:0;;;;;:::i;:::-;;:::i;18152:148::-;;;;;;;;;;;;;:::i;28796:92::-;;;;;;;;;;;;;:::i;28600:31::-;;;;;;;;;;;;;:::i;29140:48::-;;;;;;;;;;;;;:::i;28557:36::-;;;;;;;;;;;;;:::i;32321:120::-;;;;;;;;;;-1:-1:-1;32321:120:0;;;;;:::i;:::-;;:::i;17509:79::-;;;;;;;;;;;;;:::i;49840:124::-;;;;;;;;;;-1:-1:-1;49840:124:0;;;;;:::i;:::-;;:::i;30507:87::-;;;;;;;;;;;;;:::i;49035:283::-;;;;;;;;;;-1:-1:-1;49035:283:0;;;;;:::i;:::-;;:::i;32044:269::-;;;;;;;;;;-1:-1:-1;32044:269:0;;;;;:::i;:::-;;:::i;49703:129::-;;;;;;;;;;-1:-1:-1;49703:129:0;;;;;:::i;:::-;;:::i;19174:305::-;;;;;;;;;;;;;:::i;31002:167::-;;;;;;;;;;-1:-1:-1;31002:167:0;;;;;:::i;:::-;;:::i;48749:278::-;;;;;;;;;;-1:-1:-1;48749:278:0;;;;;:::i;:::-;;:::i;18707:89::-;;;;;;;;;;;;;:::i;50377:171::-;;;;;;;;;;-1:-1:-1;50377:171:0;;;;;:::i;:::-;;:::i;28379:35::-;;;;;;;;;;;;;:::i;28514:36::-;;;;;;;;;;;;;:::i;29065:62::-;;;;;;;;;;;;;:::i;28337:35::-;;;;;;;;;;;;;:::i;18872:226::-;;;;;;;;;;-1:-1:-1;18872:226:0;;;;;:::i;:::-;;:::i;31177:143::-;;;;;;;;;;-1:-1:-1;31177:143:0;;;;;:::i;:::-;;:::i;29269:50::-;;;;;;;;;;;;;:::i;48496:102::-;;;;;;;;;;-1:-1:-1;48496:102:0;;;;;:::i;:::-;;:::i;49492:203::-;;;;;;;;;;-1:-1:-1;49492:203:0;;;;;:::i;:::-;;:::i;28301:29::-;;;;;;;;;;;;;:::i;49330:150::-;;;;;;;;;;-1:-1:-1;49330:150:0;;;;;:::i;:::-;;:::i;18455:244::-;;;;;;;;;;-1:-1:-1;18455:244:0;;;;;:::i;:::-;;:::i;30416:83::-;30453:13;30486:5;30479:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30416:83;:::o;31328:161::-;31403:4;31420:39;31429:12;:10;:12::i;:::-;31443:7;31452:6;31420:8;:39::i;:::-;-1:-1:-1;31477:4:0;31328:161;;;;;:::o;32449:87::-;32518:10;;32449:87;:::o;28897:42::-;;;-1:-1:-1;;;;;28897:42:0;;:::o;28421:30::-;;;;:::o;30693:95::-;30773:7;;30693:95;:::o;28477:30::-;;;;:::o;31497:313::-;31595:4;31612:36;31622:6;31630:9;31641:6;31612:9;:36::i;:::-;31659:121;31668:6;31676:12;:10;:12::i;:::-;31690:89;31728:6;31690:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31690:19:0;;;;;;:11;:19;;;;;;31710:12;:10;:12::i;:::-;-1:-1:-1;;;;;31690:33:0;;;;;;;;;;;;-1:-1:-1;31690:33:0;;;:89;:37;:89::i;:::-;31659:8;:121::i;:::-;-1:-1:-1;31798:4:0;31497:313;;;;;;:::o;27806:71::-;;;-1:-1:-1;;;;;27806:71:0;;:::o;10150:124::-;9694:8;:6;:8::i;:::-;9686:41;;;;-1:-1:-1;;;9686:41:0;;;;;;;:::i;:::-;;;;;;;;;10213:7:::1;:15:::0;;-1:-1:-1;;10213:15:0::1;::::0;;10244:22:::1;10253:12;:10;:12::i;:::-;10244:22;;;;;;:::i;:::-;;;;;;;;10150:124::o:0;33373:253::-;33439:7;33478;;33467;:18;;33459:73;;;;-1:-1:-1;;;33459:73:0;;;;;;;:::i;:::-;33543:19;33566:10;:8;:10::i;:::-;33543:33;-1:-1:-1;33594:24:0;:7;33543:33;33594:11;:24::i;:::-;33587:31;;;33373:253;;;;:::o;30602:83::-;30668:9;;;;30602:83;:::o;9891:118::-;9417:8;:6;:8::i;:::-;9416:9;9408:38;;;;-1:-1:-1;;;9408:38:0;;;;;;;:::i;:::-;9951:7:::1;:14:::0;;-1:-1:-1;;9951:14:0::1;9961:4;9951:14;::::0;;9981:20:::1;9988:12;:10;:12::i;33975:479::-:0;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34057:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34049:60;;;;-1:-1:-1::0;;;34049:60:0::1;;;;;;;:::i;:::-;34125:9;34120:327;34144:9;:16:::0;34140:20;::::1;34120:327;;;34202:7;-1:-1:-1::0;;;;;34186:23:0::1;:9;34196:1;34186:12;;;;;;-1:-1:-1::0;;;34186:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34186:12:0::1;:23;34182:254;;;34245:9;34255:16:::0;;:20:::1;::::0;34274:1:::1;::::0;34255:20:::1;:::i;:::-;34245:31;;;;;;-1:-1:-1::0;;;34245:31:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34230:9:::1;:12:::0;;-1:-1:-1;;;;;34245:31:0;;::::1;::::0;34240:1;;34230:12;::::1;;;-1:-1:-1::0;;;34230:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34230:46:0::1;-1:-1:-1::0;;;;;34230:46:0;;::::1;;::::0;;34295:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34334:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34334:28:0::1;::::0;;34381:9:::1;:15:::0;;;::::1;;-1:-1:-1::0;;;34381:15:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34381:15:0;;;;;-1:-1:-1;;;;;;34381:15:0::1;::::0;;;;;34415:5:::1;;34182:254;34162:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34120:327;;;;33975:479:::0;:::o;31818:218::-;31906:4;31923:83;31932:12;:10;:12::i;:::-;31946:7;31955:50;31994:10;31955:11;:25;31967:12;:10;:12::i;:::-;-1:-1:-1;;;;;31955:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31955:25:0;;;:34;;;;;;;;;;;:38;:50::i;32544:377::-;32596:14;32613:12;:10;:12::i;:::-;-1:-1:-1;;;;;32645:19:0;;;;;;:11;:19;;;;;;32596:29;;-1:-1:-1;32645:19:0;;32644:20;32636:77;;;;-1:-1:-1;;;32636:77:0;;;;;;;:::i;:::-;32725:15;32749:19;32760:7;32749:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32797:15:0;;;;;;:7;:15;;;;;;32724:44;;-1:-1:-1;32797:28:0;;:15;-1:-1:-1;32724:44:0;32797:19;:28::i;:::-;-1:-1:-1;;;;;32779:15:0;;;;;;:7;:15;;;;;:46;32846:7;;:20;;32858:7;32846:11;:20::i;:::-;32836:7;:30;32890:10;;:23;;32905:7;32890:14;:23::i;:::-;32877:10;:36;-1:-1:-1;;;32544:377:0:o;50043:322::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;50118:36:::1;50176:9;50118:68;;50231:17;-1:-1:-1::0;;;;;50231:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50213:57:0::1;;50279:4;50286:17;-1:-1:-1::0;;;;;50286:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50213:98;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50197:13;:114:::0;;-1:-1:-1;;;;;50197:114:0;;::::1;-1:-1:-1::0;;;;;;50197:114:0;;::::1;;::::0;;;50322:15:::1;:35:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;50043:322:0:o;48381:103::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48450:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;48450:26:0::1;48472:4;48450:26;::::0;;48381:103::o;32929:436::-;33019:7;33058;;33047;:18;;33039:62;;;;-1:-1:-1;;;33039:62:0;;;;;;;:::i;:::-;33117:17;33112:246;;33152:15;33176:19;33187:7;33176:10;:19::i;:::-;-1:-1:-1;33151:44:0;;-1:-1:-1;33210:14:0;;-1:-1:-1;;;;;33210:14:0;33112:246;33259:23;33290:19;33301:7;33290:10;:19::i;:::-;-1:-1:-1;33257:52:0;;-1:-1:-1;33324:22:0;;-1:-1:-1;;;;;33324:22:0;28946:29;;;-1:-1:-1;;;;;28946:29:0;;:::o;29016:40::-;;;-1:-1:-1;;;29016:40:0;;;;;:::o;33634:333::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33717:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33716:21;33708:61;;;;-1:-1:-1::0;;;33708:61:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;33783:16:0;::::1;33802:1;33783:16:::0;;;:7:::1;:16;::::0;;;;;:20;33780:108:::1;;-1:-1:-1::0;;;;;33859:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33839:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33820:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33780:108:::1;-1:-1:-1::0;;;;;33898:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33898:27:0::1;33921:4;33898:27:::0;;::::1;::::0;;;33936:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33936:23:0::1;::::0;;::::1;::::0;;33634:333::o;29195:59::-;;;;:::o;9091:86::-;9162:7;;;;9091:86;:::o;48610:122::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;48697:15:::1;:27:::0;;-1:-1:-1;;;;;;48697:27:0::1;-1:-1:-1::0;;;;;48697:27:0;;;::::1;::::0;;;::::1;::::0;;48610:122::o;38290:111::-;-1:-1:-1;;;;;38374:19:0;38350:4;38374:19;;;:10;:19;;;;;;;;;38290:111::o;30796:198::-;-1:-1:-1;;;;;30886:20:0;;30862:7;30886:20;;;:11;:20;;;;;;;;30882:49;;;-1:-1:-1;;;;;;30915:16:0;;;;;;:7;:16;;;;;;30908:23;;30882:49;-1:-1:-1;;;;;30969:16:0;;;;;;:7;:16;;;;;;30949:37;;:19;:37::i;18152:148::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;18259:1:::1;18243:6:::0;;18222:40:::1;::::0;-1:-1:-1;;;;;18243:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;18222:40:0;18259:1;;18222:40:::1;18290:1;18273:19:::0;;-1:-1:-1;;;;;;18273:19:0::1;::::0;;18152:148::o;28796:92::-;;;-1:-1:-1;;;;;28796:92:0;;:::o;28600:31::-;;;;:::o;29140:48::-;;;;:::o;28557:36::-;;;;:::o;32321:120::-;-1:-1:-1;;;;;32413:20:0;32389:4;32413:20;;;:11;:20;;;;;;;;;32321:120::o;17509:79::-;17547:7;17574:6;-1:-1:-1;;;;;17574:6:0;17509:79;:::o;49840:124::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;49948:9:::1;::::0;49944:13:::1;::::0;49948:9:::1;;49944:2;:13;:::i;:::-;49932:25;::::0;:9;:25:::1;:::i;:::-;49915:14;:42:::0;-1:-1:-1;49840:124:0:o;30507:87::-;30546:13;30579:7;30572:14;;;;;:::i;49035:283::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;49171:11:::1;:20:::0;;;;49202:17:::1;:32:::0;;;;49245:17:::1;:32:::0;49288:12:::1;:22:::0;49035:283::o;32044:269::-;32137:4;32154:129;32163:12;:10;:12::i;:::-;32177:7;32186:96;32225:15;32186:96;;;;;;;;;;;;;;;;;:11;:25;32198:12;:10;:12::i;:::-;-1:-1:-1;;;;;32186:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32186:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;49703:129::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;49815:9:::1;::::0;49811:13:::1;::::0;49815:9:::1;;49811:2;:13;:::i;:::-;49798:26;::::0;:10;:26:::1;:::i;:::-;49772:23;:52:::0;-1:-1:-1;49703:129:0:o;19174:305::-;19226:14;;-1:-1:-1;;;;;19226:14:0;19244:10;19226:28;19218:76;;;;-1:-1:-1;;;19218:76:0;;;;;;;:::i;:::-;19331:9;;19313:15;:27;19305:72;;;;-1:-1:-1;;;19305:72:0;;;;;;;:::i;:::-;19422:14;;;19414:6;;19393:44;;-1:-1:-1;;;;;19422:14:0;;;;19414:6;;;;-1:-1:-1;;;;;;;;;;;19393:44:0;;19457:14;;;19448:23;;-1:-1:-1;;;;;;19448:23:0;-1:-1:-1;;;;;19457:14:0;;;19448:23;;;;;;19174:305::o;31002:167::-;31080:4;31097:42;31107:12;:10;:12::i;:::-;31121:9;31132:6;31097:9;:42::i;48749:278::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;48884:10:::1;:19:::0;;;;48914:16:::1;:31:::0;;;;48956:16:::1;:31:::0;48998:11:::1;:21:::0;48749:278::o;18707:89::-;18779:9;;18707:89;:::o;50377:171::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;50454:21:::1;:32:::0;;-1:-1:-1;;;;50454:32:0::1;-1:-1:-1::0;;;50454:32:0;::::1;;;;::::0;;50502:38:::1;::::0;::::1;::::0;::::1;::::0;50454:32;;50502:38:::1;:::i;:::-;;;;;;;;50377:171:::0;:::o;28379:35::-;;;;:::o;28514:36::-;;;;:::o;29065:62::-;;;;:::o;28337:35::-;;;;:::o;18872:226::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;18953:6:::1;::::0;;;18936:23;;-1:-1:-1;;;;;;18936:23:0;;::::1;-1:-1:-1::0;;;;;18953:6:0;::::1;18936:23;::::0;;;18970:19:::1;::::0;;19012:22:::1;19030:4:::0;19012:15:::1;:22;:::i;:::-;19000:9;:34:::0;19087:1:::1;19071:6:::0;;19050:40:::1;::::0;-1:-1:-1;;;;;19071:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;19050:40:0;19087:1;;19050:40:::1;18872:226:::0;:::o;31177:143::-;-1:-1:-1;;;;;31285:18:0;;;31258:7;31285:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31177:143::o;29269:50::-;;;;:::o;48496:102::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48563:19:0::1;48585:5;48563:19:::0;;;:10:::1;:19;::::0;;;;:27;;-1:-1:-1;;48563:27:0::1;::::0;;48496:102::o;49492:203::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;49591:1:::1;49577:11;:15;49569:65;;;;-1:-1:-1::0;;;49569:65:0::1;;;;;;;:::i;:::-;49678:9;::::0;49674:13:::1;::::0;49678:9:::1;;49674:2;:13;:::i;:::-;49660:27;::::0;:11;:27:::1;:::i;:::-;49645:12;:42:::0;-1:-1:-1;49492:203:0:o;28301:29::-;;;;:::o;49330:150::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;49463:9:::1;::::0;49459:13:::1;::::0;49463:9:::1;;49459:2;:13;:::i;:::-;49452:20;::::0;:6;:20:::1;:::i;:::-;49420:29;:52:::0;-1:-1:-1;49330:150:0:o;18455:244::-;17731:12;:10;:12::i;:::-;17721:6;;-1:-1:-1;;;;;17721:6:0;;;:22;;;17713:67;;;;-1:-1:-1;;;17713:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18544:22:0;::::1;18536:73;;;;-1:-1:-1::0;;;18536:73:0::1;;;;;;;:::i;:::-;18646:6;::::0;;18625:38:::1;::::0;-1:-1:-1;;;;;18625:38:0;;::::1;::::0;18646:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;18625:38:0;::::1;18674:6;:17:::0;;-1:-1:-1;;;;;;18674:17:0::1;-1:-1:-1::0;;;;;18674:17:0;;;::::1;::::0;;;::::1;::::0;;18455:244::o;8192:115::-;8288:10;8192:115;:::o;38409:337::-;-1:-1:-1;;;;;38502:19:0;;38494:68;;;;-1:-1:-1;;;38494:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38581:21:0;;38573:68;;;;-1:-1:-1;;;38573:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38654:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;38706:32;;;;;38684:6;;38706:32;:::i;:::-;;;;;;;;38409:337;;;:::o;38754:2666::-;9417:8;:6;:8::i;:::-;9416:9;9408:38;;;;-1:-1:-1;;;9408:38:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38892:18:0;::::1;38884:68;;;;-1:-1:-1::0;;;38884:68:0::1;;;;;;;:::i;:::-;38980:1;38971:6;:10;38963:64;;;;-1:-1:-1::0;;;38963:64:0::1;;;;;;;:::i;:::-;39076:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;39068:15:0::1;:4;-1:-1:-1::0;;;;;39068:15:0::1;;;:45;;;;;39106:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;39100:13:0::1;:2;-1:-1:-1::0;;;;;39100:13:0::1;;;39068:45;:78;;;;-1:-1:-1::0;;;;;;39130:16:0;::::1;::::0;::::1;39068:78;:116;;;;-1:-1:-1::0;;;;;;39163:21:0;::::1;39177:6;39163:21;;39068:116;:152;;;;-1:-1:-1::0;39207:13:0::1;::::0;-1:-1:-1;;;;;39201:19:0;;::::1;39207:13:::0;::::1;39201:19;;39068:152;39050:437;;;39249:32;39284:13;39294:2;39284:9;:13::i;:::-;39375:14;::::0;39249:48;;-1:-1:-1;39338:33:0::1;39365:6:::0;39249:48;39338:33:::1;:::i;:::-;:51;;39312:149;;;;-1:-1:-1::0;;;39312:149:0::1;;;;;;;:::i;:::-;39050:437;;39528:13;::::0;-1:-1:-1;;;;;39520:21:0;;::::1;39528:13:::0;::::1;39520:21;:44:::0;::::1;;;;39547:17;39561:2;39547:13;:17::i;:::-;39546:18;39520:44;39517:177;;;39598:23;;39588:6;:33;;39580:102;;;;-1:-1:-1::0;;;39580:102:0::1;;;;;;;:::i;:::-;39988:28;40019:24;40037:4;40019:9;:24::i;:::-;40113:29;::::0;39988:55;;-1:-1:-1;40089:53:0;::::1;::::0;::::1;::::0;;;40171::::1;;-1:-1:-1::0;40208:16:0::1;::::0;-1:-1:-1;;;40208:16:0;::::1;;;40207:17;40171:53;:91;;;;-1:-1:-1::0;40249:13:0::1;::::0;-1:-1:-1;;;;;40241:21:0;;::::1;40249:13:::0;::::1;40241:21;;40171:91;:129;;;;-1:-1:-1::0;40279:21:0::1;::::0;-1:-1:-1;;;40279:21:0;::::1;;;40171:129;40153:318;;;40350:29;;40327:52;;40423:36;40438:20;40423:14;:36::i;:::-;40561:4;40668:19;40682:4:::0;40668:13:::1;:19::i;:::-;:40;;;;40691:17;40705:2;40691:13;:17::i;:::-;40665:86;;;-1:-1:-1::0;40734:5:0::1;40665:86;40799:13;::::0;-1:-1:-1;;;;;40791:21:0;;::::1;40799:13:::0;::::1;40791:21;::::0;:42:::1;;;40816:17;:4;-1:-1:-1::0;;;;;40816:15:0::1;;:17::i;:::-;40788:225;;;40860:10;::::0;40850:7:::1;:20:::0;40901:16:::1;::::0;40885:13:::1;:32:::0;40948:16:::1;::::0;40932:13:::1;:32:::0;40990:11:::1;::::0;40979:8:::1;:22:::0;40788:225:::1;41068:13;::::0;-1:-1:-1;;;;;41062:19:0;;::::1;41068:13:::0;::::1;41062:19;::::0;:38:::1;;;41085:15;:2;-1:-1:-1::0;;;;;41085:13:0::1;;:15::i;:::-;41059:237;;;41127:11;::::0;41117:7:::1;:21:::0;41169:17:::1;::::0;41153:13:::1;:33:::0;41217:17:::1;::::0;41201:13:::1;:33:::0;41261:12:::1;::::0;41250:8:::1;:23:::0;41059:237:::1;41382:30;41397:4;41402:2;41405:6;41382:14;:30::i;:::-;9457:1;;;38754:2666:::0;;;:::o;4602:192::-;4688:7;4724:12;4716:6;;;;4708:29;;;;-1:-1:-1;;;4708:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4748:9:0;4760:5;4764:1;4760;:5;:::i;:::-;4748:17;4602:192;-1:-1:-1;;;;;4602:192:0:o;36575:163::-;36616:7;36637:15;36654;36673:19;:17;:19::i;:::-;36636:56;;-1:-1:-1;36636:56:0;-1:-1:-1;36710:20:0;36636:56;;36710:11;:20::i;:::-;36703:27;;;;36575:163;:::o;6000:132::-;6058:7;6085:39;6089:1;6092;6085:39;;;;;;;;;;;;;;;;;:3;:39::i;3699:181::-;3757:7;;3789:5;3793:1;3789;:5;:::i;:::-;3777:17;;3818:1;3813;:6;;3805:46;;;;-1:-1:-1;;;3805:46:0;;;;;;;:::i;35373:419::-;35432:7;35441;35450;35459;35468;35477;35498:23;35523:12;35537:18;35559:20;35571:7;35559:11;:20::i;:::-;35497:82;;;;;;35591:15;35608:23;35633:12;35649:50;35661:7;35670:4;35676:10;35688;:8;:10::i;:::-;35649:11;:50::i;:::-;35590:109;;;;-1:-1:-1;35590:109:0;;-1:-1:-1;35750:15:0;;-1:-1:-1;35767:4:0;;-1:-1:-1;35773:10:0;;-1:-1:-1;35373:419:0;;-1:-1:-1;;;;;35373:419:0:o;4163:136::-;4221:7;4248:43;4252:1;4255;4248:43;;;;;;;;;;;;;;;;;:3;:43::i;41428:1597::-;29633:16;:23;;-1:-1:-1;;;;29633:23:0;-1:-1:-1;;;29633:23:0;;;41553:13:::1;::::0;41535::::1;::::0;29633:23;;41535:32:::1;::::0;:13;:17:::1;:32::i;:::-;41513:54;;41608:26;41637:56;41681:11;41637:39;41662:13;;41637:20;:24;;:39;;;;:::i;:::-;:43:::0;::::1;:56::i;:::-;41608:85:::0;-1:-1:-1;41715:26:0::1;41744:44;:20:::0;41608:85;41744:24:::1;:44::i;:::-;41715:73:::0;-1:-1:-1;41868:12:0::1;41883:25;:18:::0;41906:1:::1;41883:22;:25::i;:::-;41868:40:::0;-1:-1:-1;41919:17:0::1;41939:28;:18:::0;41868:40;41939:22:::1;:28::i;:::-;41919:48:::0;-1:-1:-1;42270:21:0::1;42336:22;42353:4:::0;42336:16:::1;:22::i;:::-;42489:18;42510:41;:21;42536:14:::0;42510:25:::1;:41::i;:::-;42489:62;;42601:35;42614:9;42625:10;42601:12;:35::i;:::-;42662:43;42677:4;42683:10;42695:9;42662:43;;;;;;;;:::i;:::-;;;;;;;;42752:21;42784:36;42801:18:::0;42784:16:::1;:36::i;:::-;42831:26;42860:42;:21;42886:15:::0;42860:25:::1;:42::i;:::-;42981:15;::::0;42831:71;;-1:-1:-1;42960:57:0::1;::::0;-1:-1:-1;;;;;42981:15:0::1;42831:71:::0;42960:20:::1;:57::i;:::-;-1:-1:-1::0;;29679:16:0;:24;;-1:-1:-1;;;;29679:24:0;;;-1:-1:-1;;;;;;;;41428:1597:0:o;10964:619::-;11024:4;11492:20;;11335:66;11532:23;;;;;;:42;;-1:-1:-1;11559:15:0;;;11532:42;11524:51;10964:619;-1:-1:-1;;;;10964:619:0:o;44224:945::-;-1:-1:-1;;;;;44327:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;44349:21:0;;;;;;:10;:21;;;;;;;;44327:43;44324:229;;;44398:14;:12;:14::i;:::-;44324:229;;;44484:12;;44474:6;:22;;44466:75;;;;-1:-1:-1;;;44466:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44569:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44593:22:0;;;;;;:11;:22;;;;;;;;44592:23;44569:46;44565:597;;;44632:48;44654:6;44662:9;44673:6;44632:21;:48::i;:::-;44565:597;;;-1:-1:-1;;;;;44703:19:0;;;;;;:11;:19;;;;;;;;44702:20;:46;;;;-1:-1:-1;;;;;;44726:22:0;;;;;;:11;:22;;;;;;;;44702:46;44698:464;;;44765:46;44785:6;44793:9;44804:6;44765:19;:46::i;44698:464::-;-1:-1:-1;;;;;44834:19:0;;;;;;:11;:19;;;;;;;;44833:20;:47;;;;-1:-1:-1;;;;;;44858:22:0;;;;;;:11;:22;;;;;;;;44857:23;44833:47;44829:333;;;44897:44;44915:6;44923:9;44934:6;44897:17;:44::i;44829:333::-;-1:-1:-1;;;;;44963:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44986:22:0;;;;;;:11;:22;;;;;;;;44963:45;44959:203;;;45025:48;45047:6;45055:9;45066:6;45025:21;:48::i;44959:203::-;45106:44;45124:6;45132:9;45143:6;45106:17;:44::i;:::-;44224:945;;;:::o;36746:561::-;36843:7;;36879;;36796;;;;;36903:289;36927:9;:16;36923:20;;36903:289;;;36993:7;36969;:21;36977:9;36987:1;36977:12;;;;;;-1:-1:-1;;;36977:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36977:12:0;36969:21;;;;;;;;;;;;;:31;;:66;;;37028:7;37004;:21;37012:9;37022:1;37012:12;;;;;;-1:-1:-1;;;37012:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37012:12:0;37004:21;;;;;;;;;;;;;:31;36969:66;36965:97;;;37045:7;;37054;;37037:25;;;;;;;;;36965:97;37087:34;37099:7;:21;37107:9;37117:1;37107:12;;;;;;-1:-1:-1;;;37107:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37107:12:0;37099:21;;;;;;;;;;;;;37087:7;;:11;:34::i;:::-;37077:44;;37146:34;37158:7;:21;37166:9;37176:1;37166:12;;;;;;-1:-1:-1;;;37166:12:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37166:12:0;37158:21;;;;;;;;;;;;;37146:7;;:11;:34::i;:::-;37136:44;-1:-1:-1;36945:3:0;;;;:::i;:::-;;;;36903:289;;;-1:-1:-1;37228:7:0;;37216;;:20;;:11;:20::i;:::-;37206:7;:30;37202:61;;;37246:7;;37255;;37238:25;;;;;;;;37202:61;37282:7;;-1:-1:-1;37291:7:0;-1:-1:-1;36746:561:0;;;:::o;6628:278::-;6714:7;6749:12;6742:5;6734:28;;;;-1:-1:-1;;;6734:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6773:9:0;6785:5;6789:1;6785;:5;:::i;35800:330::-;35860:7;35869;35878;35898:12;35913:24;35929:7;35913:15;:24::i;:::-;35898:39;;35948:18;35969:30;35991:7;35969:21;:30::i;:::-;35948:51;-1:-1:-1;36010:23:0;36036:33;35948:51;36036:17;:7;36048:4;36036:11;:17::i;:::-;:21;;:33::i;:::-;36010:59;36105:4;;-1:-1:-1;36111:10:0;;-1:-1:-1;35800:330:0;;-1:-1:-1;;;35800:330:0:o;36138:429::-;36253:7;;;;36309:24;:7;36321:11;36309;:24::i;:::-;36291:42;-1:-1:-1;36344:12:0;36359:21;:4;36368:11;36359:8;:21::i;:::-;36344:36;-1:-1:-1;36391:18:0;36412:27;:10;36427:11;36412:14;:27::i;:::-;36391:48;-1:-1:-1;36450:23:0;36476:33;36391:48;36476:17;:7;36488:4;36476:11;:17::i;:33::-;36528:7;;;;-1:-1:-1;36554:4:0;;-1:-1:-1;36138:429:0;;-1:-1:-1;;;;;;;36138:429:0:o;5053:471::-;5111:7;5356:6;5352:47;;-1:-1:-1;5386:1:0;5379:8;;5352:47;5411:9;5423:5;5427:1;5423;:5;:::i;:::-;5411:17;-1:-1:-1;5456:1:0;5447:5;5451:1;5411:17;5447:5;:::i;:::-;:10;5439:56;;;;-1:-1:-1;;;5439:56:0;;;;;;;:::i;43033:589::-;43183:16;;;43197:1;43183:16;;;;;;;;43159:21;;43183:16;;;;;;;;;;-1:-1:-1;43183:16:0;43159:40;;43228:4;43210;43215:1;43210:7;;;;;;-1:-1:-1;;;43210:7:0;;;;;;;;;-1:-1:-1;;;;;43210:23:0;;;:7;;;;;;;;;;:23;;;;43254:15;;:22;;;-1:-1:-1;;;43254:22:0;;;;:15;;;;;:20;;:22;;;;;43210:7;;43254:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43244:4;43249:1;43244:7;;;;;;-1:-1:-1;;;43244:7:0;;;;;;;;;-1:-1:-1;;;;;43244:32:0;;;:7;;;;;;;;;:32;43321:15;;43289:62;;43306:4;;43321:15;43339:11;43289:8;:62::i;:::-;43390:15;;:224;;-1:-1:-1;;;43390:224:0;;-1:-1:-1;;;;;43390:15:0;;;;:66;;:224;;43471:11;;43390:15;;43541:4;;43568;;43588:15;;43390:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43630:513;43810:15;;43778:62;;43795:4;;-1:-1:-1;;;;;43810:15:0;43828:11;43778:8;:62::i;:::-;43883:15;;-1:-1:-1;;;;;43883:15:0;:31;43922:9;43955:4;43975:11;43883:15;;44087:7;:5;:7::i;:::-;44109:15;43883:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43630:513;;:::o;50560:126::-;50652:26;;-1:-1:-1;;;;;50652:18:0;;;:26;;;;;50671:6;;50652:26;;;;50671:6;50652:18;:26;;;;;;;;;;;;;;;;;;;38026:244;38072:7;;:12;:34;;;;-1:-1:-1;38088:13:0;;:18;38072:34;:54;;;;-1:-1:-1;38110:13:0;;:16;38072:54;:69;;;;-1:-1:-1;38130:8:0;;:11;38072:69;38069:81;;;38143:7;;38069:81;38182:1;38172:7;:11;;;38194:13;:17;;;38222:13;:17;;;38250:8;:12;38026:244;:::o;47807:566::-;47910:15;47927:23;47952:12;47966:23;47991:12;48005:18;48027:19;48038:7;48027:10;:19::i;:::-;-1:-1:-1;;;;;48075:15:0;;;;;;:7;:15;;;;;;47909:137;;-1:-1:-1;47909:137:0;;-1:-1:-1;47909:137:0;;-1:-1:-1;47909:137:0;-1:-1:-1;47909:137:0;-1:-1:-1;47909:137:0;-1:-1:-1;48075:28:0;;48095:7;48075:19;:28::i;:::-;-1:-1:-1;;;;;48057:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48132:7;:15;;;;:28;;48152:7;48132:19;:28::i;:::-;-1:-1:-1;;;;;48114:15:0;;;;;;;:7;:15;;;;;;:46;;;;48192:18;;;;;;;:39;;48215:15;48192:22;:39::i;:::-;-1:-1:-1;;;;;48171:18:0;;;;;;:7;:18;;;;;:60;48245:26;48260:10;48245:14;:26::i;:::-;48282:23;48294:4;48300;48282:11;:23::i;:::-;48338:9;-1:-1:-1;;;;;48321:44:0;48330:6;-1:-1:-1;;;;;48321:44:0;;48349:15;48321:44;;;;;;:::i;:::-;;;;;;;;47807:566;;;;;;;;;:::o;47213:586::-;47314:15;47331:23;47356:12;47370:23;47395:12;47409:18;47431:19;47442:7;47431:10;:19::i;:::-;-1:-1:-1;;;;;47479:15:0;;;;;;:7;:15;;;;;;47313:137;;-1:-1:-1;47313:137:0;;-1:-1:-1;47313:137:0;;-1:-1:-1;47313:137:0;-1:-1:-1;47313:137:0;-1:-1:-1;47313:137:0;-1:-1:-1;47479:28:0;;47313:137;47479:19;:28::i;:::-;-1:-1:-1;;;;;47461:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47539:18;;;;;:7;:18;;;;;:39;;47562:15;47539:22;:39::i;:::-;-1:-1:-1;;;;;47518:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47610:7;:18;;;;:39;;47633:15;47610:22;:39::i;45181:727::-;45286:15;45303:23;45328:12;45342:23;45367:12;45381:18;45403:19;45414:7;45403:10;:19::i;:::-;45285:137;;;;;;;;;;;;45470:59;45479:6;45487:15;45504;45521:7;45470:8;:59::i;:::-;45433:96;-1:-1:-1;45433:96:0;-1:-1:-1;45577:64:0;45591:6;45433:96;;45633:7;45577:13;:64::i;:::-;-1:-1:-1;;;;;45670:15:0;;;;;;:7;:15;;;;;;45540:101;;-1:-1:-1;45540:101:0;;-1:-1:-1;45670:28:0;;45690:7;45670:19;:28::i;34462:642::-;34565:15;34582:23;34607:12;34621:23;34646:12;34660:18;34682:19;34693:7;34682:10;:19::i;:::-;-1:-1:-1;;;;;34730:15:0;;;;;;:7;:15;;;;;;34564:137;;-1:-1:-1;34564:137:0;;-1:-1:-1;34564:137:0;;-1:-1:-1;34564:137:0;-1:-1:-1;34564:137:0;-1:-1:-1;34564:137:0;-1:-1:-1;34730:28:0;;34750:7;34730:19;:28::i;:::-;-1:-1:-1;;;;;34712:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34787:7;:15;;;;:28;;34807:7;34787:19;:28::i;37686:154::-;37750:7;37777:55;37816:5;37777:20;37789:7;;37777;:11;;:20;;;;:::i;37848:166::-;37918:7;37945:61;37990:5;37945:26;37957:13;;37945:7;:11;;:26;;;;:::i;37319:355::-;37382:19;37405:10;:8;:10::i;:::-;37382:33;-1:-1:-1;37426:18:0;37447:27;:10;37382:33;37447:14;:27::i;:::-;37526:4;37510:22;;;;:7;:22;;;;;;37426:48;;-1:-1:-1;37510:38:0;;37426:48;37510:26;:38::i;:::-;37501:4;37485:22;;;;:7;:22;;;;;;;;:63;;;;37562:11;:26;;;;;;37559:107;;;37644:4;37628:22;;;;:7;:22;;;;;;:38;;37655:10;37628:26;:38::i;:::-;37619:4;37603:22;;;;:7;:22;;;;;:63;37319:355;;;:::o;35218:147::-;35296:7;;:17;;35308:4;35296:11;:17::i;:::-;35286:7;:27;35337:10;;:20;;35352:4;35337:14;:20::i;:::-;35324:10;:33;-1:-1:-1;;35218:147:0:o;45918:609::-;46041:7;46050;46078:8;;46088:1;46078:11;46075:62;;;-1:-1:-1;46101:15:0;;-1:-1:-1;46118:15:0;46094:40;;46075:62;46184:8;;46147:13;;46163:30;;:16;:7;46175:3;46163:11;:16::i;:::-;:20;;:30::i;:::-;46147:46;;46204:13;46220:21;46230:10;:8;:10::i;:::-;46220:5;;:9;:21::i;:::-;46204:37;-1:-1:-1;46270:26:0;:15;46204:37;46270:19;:26::i;:::-;46252:44;-1:-1:-1;46325:26:0;:15;46345:5;46325:19;:26::i;:::-;46393:11;;-1:-1:-1;;;;;46393:11:0;46385:20;;;;:7;:20;;;;;;46307:44;;-1:-1:-1;46385:31:0;;46410:5;46385:24;:31::i;:::-;46370:11;;;-1:-1:-1;;;;;46370:11:0;;;46362:20;;;;:7;:20;;;;;;;:54;;;;46449:11;;46432:36;;46449:11;;;;46432:36;;;;;;;;46462:5;;46432:36;:::i;:::-;;;;;;;;46486:15;46503;46479:40;;;;;;45918:609;;;;;;;;:::o;46537:666::-;46665:7;46674;46702:13;;46717:1;46702:16;46699:67;;;-1:-1:-1;46730:15:0;;-1:-1:-1;46747:15:0;46723:40;;46699:67;46818:13;;46776:18;;46797:35;;:16;:7;46809:3;46797:11;:16::i;:35::-;46776:56;;46843:18;46864:26;46879:10;:8;:10::i;46864:26::-;46843:47;-1:-1:-1;46919:31:0;:15;46843:47;46919:19;:31::i;:::-;46901:49;-1:-1:-1;46979:31:0;:15;46999:10;46979:19;:31::i;:::-;47062:4;47046:22;;;;:7;:22;;;;;;46961:49;;-1:-1:-1;47046:38:0;;47073:10;47046:26;:38::i;:::-;47037:4;47021:22;;;;:7;:22;;;;;;;:63;;;;47100:43;;-1:-1:-1;;;;;47100:43:0;;;;;;;47132:10;;47100:43;:::i;14:162:1:-;81:20;;137:13;;130:21;120:32;;110:2;;166:1;163;156:12;181:259;;293:2;281:9;272:7;268:23;264:32;261:2;;;314:6;306;299:22;261:2;358:9;345:23;377:33;404:5;377:33;:::i;445:263::-;;568:2;556:9;547:7;543:23;539:32;536:2;;;589:6;581;574:22;536:2;626:9;620:16;645:33;672:5;645:33;:::i;985:402::-;;;1114:2;1102:9;1093:7;1089:23;1085:32;1082:2;;;1135:6;1127;1120:22;1082:2;1179:9;1166:23;1198:33;1225:5;1198:33;:::i;:::-;1250:5;-1:-1:-1;1307:2:1;1292:18;;1279:32;1320:35;1279:32;1320:35;:::i;:::-;1374:7;1364:17;;;1072:315;;;;;:::o;1392:470::-;;;;1538:2;1526:9;1517:7;1513:23;1509:32;1506:2;;;1559:6;1551;1544:22;1506:2;1603:9;1590:23;1622:33;1649:5;1622:33;:::i;:::-;1674:5;-1:-1:-1;1731:2:1;1716:18;;1703:32;1744:35;1703:32;1744:35;:::i;:::-;1496:366;;1798:7;;-1:-1:-1;;;1852:2:1;1837:18;;;;1824:32;;1496:366::o;1867:327::-;;;1996:2;1984:9;1975:7;1971:23;1967:32;1964:2;;;2017:6;2009;2002:22;1964:2;2061:9;2048:23;2080:33;2107:5;2080:33;:::i;:::-;2132:5;2184:2;2169:18;;;;2156:32;;-1:-1:-1;;;1954:240:1:o;2199:192::-;;2308:2;2296:9;2287:7;2283:23;2279:32;2276:2;;;2329:6;2321;2314:22;2276:2;2357:28;2375:9;2357:28;:::i;2396:190::-;;2508:2;2496:9;2487:7;2483:23;2479:32;2476:2;;;2529:6;2521;2514:22;2476:2;-1:-1:-1;2557:23:1;;2466:120;-1:-1:-1;2466:120:1:o;2591:260::-;;;2717:2;2705:9;2696:7;2692:23;2688:32;2685:2;;;2738:6;2730;2723:22;2685:2;2779:9;2766:23;2756:33;;2808:37;2841:2;2830:9;2826:18;2808:37;:::i;:::-;2798:47;;2675:176;;;;;:::o;2856:316::-;;;;3013:2;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3068:9;3062:16;3052:26;;3118:2;3107:9;3103:18;3097:25;3087:35;;3162:2;3151:9;3147:18;3141:25;3131:35;;2971:201;;;;;:::o;3177:395::-;;;;;3340:3;3328:9;3319:7;3315:23;3311:33;3308:2;;;3362:6;3354;3347:22;3308:2;-1:-1:-1;;3390:23:1;;;3460:2;3445:18;;3432:32;;-1:-1:-1;3511:2:1;3496:18;;3483:32;;3562:2;3547:18;3534:32;;-1:-1:-1;3298:274:1;-1:-1:-1;3298:274:1:o;3577:203::-;-1:-1:-1;;;;;3741:32:1;;;;3723:51;;3711:2;3696:18;;3678:102::o;4225:304::-;-1:-1:-1;;;;;4455:15:1;;;4437:34;;4507:15;;4502:2;4487:18;;4480:43;4387:2;4372:18;;4354:175::o;4534:607::-;-1:-1:-1;;;;;4893:15:1;;;4875:34;;4940:2;4925:18;;4918:34;;;;4983:2;4968:18;;4961:34;;;;5026:2;5011:18;;5004:34;;;;5075:15;;;5069:3;5054:19;;5047:44;4855:3;5107:19;;5100:35;;;;4824:3;4809:19;;4791:350::o;5146:187::-;5311:14;;5304:22;5286:41;;5274:2;5259:18;;5241:92::o;5573:603::-;;5714:2;5743;5732:9;5725:21;5775:6;5769:13;5818:6;5813:2;5802:9;5798:18;5791:34;5843:4;5856:140;5870:6;5867:1;5864:13;5856:140;;;5965:14;;;5961:23;;5955:30;5931:17;;;5950:2;5927:26;5920:66;5885:10;;5856:140;;;6014:6;6011:1;6008:13;6005:2;;;6084:4;6079:2;6070:6;6059:9;6055:22;6051:31;6044:45;6005:2;-1:-1:-1;6160:2:1;6139:15;-1:-1:-1;;6135:29:1;6120:45;;;;6167:2;6116:54;;5694:482;-1:-1:-1;;;5694:482:1:o;6181:344::-;6383:2;6365:21;;;6422:2;6402:18;;;6395:30;-1:-1:-1;;;6456:2:1;6441:18;;6434:50;6516:2;6501:18;;6355:170::o;6530:401::-;6732:2;6714:21;;;6771:2;6751:18;;;6744:30;6810:34;6805:2;6790:18;;6783:62;-1:-1:-1;;;6876:2:1;6861:18;;6854:35;6921:3;6906:19;;6704:227::o;6936:406::-;7138:2;7120:21;;;7177:2;7157:18;;;7150:30;7216:34;7211:2;7196:18;;7189:62;-1:-1:-1;;;7282:2:1;7267:18;;7260:40;7332:3;7317:19;;7110:232::o;7347:402::-;7549:2;7531:21;;;7588:2;7568:18;;;7561:30;7627:34;7622:2;7607:18;;7600:62;-1:-1:-1;;;7693:2:1;7678:18;;7671:36;7739:3;7724:19;;7521:228::o;7754:398::-;7956:2;7938:21;;;7995:2;7975:18;;;7968:30;8034:34;8029:2;8014:18;;8007:62;-1:-1:-1;;;8100:2:1;8085:18;;8078:32;8142:3;8127:19;;7928:224::o;8157:351::-;8359:2;8341:21;;;8398:2;8378:18;;;8371:30;8437:29;8432:2;8417:18;;8410:57;8499:2;8484:18;;8331:177::o;8513:351::-;8715:2;8697:21;;;8754:2;8734:18;;;8727:30;8793:29;8788:2;8773:18;;8766:57;8855:2;8840:18;;8687:177::o;8869:340::-;9071:2;9053:21;;;9110:2;9090:18;;;9083:30;-1:-1:-1;;;9144:2:1;9129:18;;9122:46;9200:2;9185:18;;9043:166::o;9214:355::-;9416:2;9398:21;;;9455:2;9435:18;;;9428:30;9494:33;9489:2;9474:18;;9467:61;9560:2;9545:18;;9388:181::o;9574:404::-;9776:2;9758:21;;;9815:2;9795:18;;;9788:30;9854:34;9849:2;9834:18;;9827:62;-1:-1:-1;;;9920:2:1;9905:18;;9898:38;9968:3;9953:19;;9748:230::o;9983:400::-;10185:2;10167:21;;;10224:2;10204:18;;;10197:30;10263:34;10258:2;10243:18;;10236:62;-1:-1:-1;;;10329:2:1;10314:18;;10307:34;10373:3;10358:19;;10157:226::o;10388:397::-;10590:2;10572:21;;;10629:2;10609:18;;;10602:30;10668:34;10663:2;10648:18;;10641:62;-1:-1:-1;;;10734:2:1;10719:18;;10712:31;10775:3;10760:19;;10562:223::o;10790:356::-;10992:2;10974:21;;;11011:18;;;11004:30;11070:34;11065:2;11050:18;;11043:62;11137:2;11122:18;;10964:182::o;11151:405::-;11353:2;11335:21;;;11392:2;11372:18;;;11365:30;11431:34;11426:2;11411:18;;11404:62;-1:-1:-1;;;11497:2:1;11482:18;;11475:39;11546:3;11531:19;;11325:231::o;11561:401::-;11763:2;11745:21;;;11802:2;11782:18;;;11775:30;11841:34;11836:2;11821:18;;11814:62;-1:-1:-1;;;11907:2:1;11892:18;;11885:35;11952:3;11937:19;;11735:227::o;11967:400::-;12169:2;12151:21;;;12208:2;12188:18;;;12181:30;12247:34;12242:2;12227:18;;12220:62;-1:-1:-1;;;12313:2:1;12298:18;;12291:34;12357:3;12342:19;;12141:226::o;12372:355::-;12574:2;12556:21;;;12613:2;12593:18;;;12586:30;12652:33;12647:2;12632:18;;12625:61;12718:2;12703:18;;12546:181::o;12732:420::-;12934:2;12916:21;;;12973:2;12953:18;;;12946:30;13012:34;13007:2;12992:18;;12985:62;13083:26;13078:2;13063:18;;13056:54;13142:3;13127:19;;12906:246::o;13157:408::-;13359:2;13341:21;;;13398:2;13378:18;;;13371:30;13437:34;13432:2;13417:18;;13410:62;-1:-1:-1;;;13503:2:1;13488:18;;13481:42;13555:3;13540:19;;13331:234::o;13570:399::-;13772:2;13754:21;;;13811:2;13791:18;;;13784:30;13850:34;13845:2;13830:18;;13823:62;-1:-1:-1;;;13916:2:1;13901:18;;13894:33;13959:3;13944:19;;13744:225::o;13974:177::-;14120:25;;;14108:2;14093:18;;14075:76::o;14156:983::-;;14466:3;14455:9;14451:19;14497:6;14486:9;14479:25;14523:2;14561:6;14556:2;14545:9;14541:18;14534:34;14604:3;14599:2;14588:9;14584:18;14577:31;14628:6;14663;14657:13;14694:6;14686;14679:22;14732:3;14721:9;14717:19;14710:26;;14771:2;14763:6;14759:15;14745:29;;14792:4;14805:195;14819:6;14816:1;14813:13;14805:195;;;14884:13;;-1:-1:-1;;;;;14880:39:1;14868:52;;14975:15;;;;14940:12;;;;14916:1;14834:9;14805:195;;;-1:-1:-1;;;;;;;15056:32:1;;;;15051:2;15036:18;;15029:60;-1:-1:-1;;;15120:3:1;15105:19;15098:35;15017:3;14427:712;-1:-1:-1;;;14427:712:1:o;15144:319::-;15346:25;;;15402:2;15387:18;;15380:34;;;;15445:2;15430:18;;15423:34;15334:2;15319:18;;15301:162::o;15468:184::-;15640:4;15628:17;;;;15610:36;;15598:2;15583:18;;15565:87::o;15657:128::-;;15728:1;15724:6;15721:1;15718:13;15715:2;;;15734:18;;:::i;:::-;-1:-1:-1;15770:9:1;;15705:80::o;15790:217::-;;15856:1;15846:2;;-1:-1:-1;;;15881:31:1;;15935:4;15932:1;15925:15;15963:4;15888:1;15953:15;15846:2;-1:-1:-1;15992:9:1;;15836:171::o;16012:453::-;16108:6;16131:5;16145:314;16194:1;16231:2;16221:8;16218:16;16208:2;;16238:5;;;16208:2;16279:4;16274:3;16270:14;16264:4;16261:24;16258:2;;;16288:18;;:::i;:::-;16338:2;16328:8;16324:17;16321:2;;;16353:16;;;;16321:2;16432:17;;;;;16392:15;;16145:314;;16470:148;;16557:55;-1:-1:-1;;16598:4:1;16584:19;;16578:4;16623:922;16707:8;16697:2;;-1:-1:-1;16748:1:1;16762:5;;16697:2;16796:4;16786:2;;-1:-1:-1;16833:1:1;16847:5;;16786:2;16878:4;16896:1;16891:59;;;;16964:1;16959:183;;;;16871:271;;16891:59;16921:1;16912:10;;16935:5;;;16959:183;16996:3;16986:8;16983:17;16980:2;;;17003:18;;:::i;:::-;17059:1;17049:8;17045:16;17036:25;;17087:3;17080:5;17077:14;17074:2;;;17094:18;;:::i;:::-;17127:5;;;16871:271;;17226:2;17216:8;17213:16;17207:3;17201:4;17198:13;17194:36;17188:2;17178:8;17175:16;17170:2;17164:4;17161:12;17157:35;17154:77;17151:2;;;-1:-1:-1;17263:19:1;;;17298:14;;;17295:2;;;17315:18;;:::i;:::-;17348:5;;17151:2;17395:42;17433:3;17423:8;17417:4;17414:1;17395:42;:::i;:::-;17470:6;17465:3;17461:16;17452:7;17449:29;17446:2;;;17481:18;;:::i;:::-;17519:20;;16687:858;-1:-1:-1;;;;16687:858:1:o;17550:168::-;;17656:1;17652;17648:6;17644:14;17641:1;17638:21;17633:1;17626:9;17619:17;17615:45;17612:2;;;17663:18;;:::i;:::-;-1:-1:-1;17703:9:1;;17602:116::o;17723:125::-;;17791:1;17788;17785:8;17782:2;;;17796:18;;:::i;:::-;-1:-1:-1;17833:9:1;;17772:76::o;17853:380::-;17938:1;17928:12;;17985:1;17975:12;;;17996:2;;18050:4;18042:6;18038:17;18028:27;;17996:2;18103;18095:6;18092:14;18072:18;18069:38;18066:2;;;18149:10;18144:3;18140:20;18137:1;18130:31;18184:4;18181:1;18174:15;18212:4;18209:1;18202:15;18066:2;;17908:325;;;:::o;18238:135::-;;-1:-1:-1;;18298:17:1;;18295:2;;;18318:18;;:::i;:::-;-1:-1:-1;18365:1:1;18354:13;;18285:88::o;18378:127::-;18439:10;18434:3;18430:20;18427:1;18420:31;18470:4;18467:1;18460:15;18494:4;18491:1;18484:15;18510:133;-1:-1:-1;;;;;18587:31:1;;18577:42;;18567:2;;18633:1;18630;18623:12;18567:2;18557:86;:::o
Swarm Source
ipfs://fdc8bb20a3af5fd31f7caf19e0658d275bf2aade8f930db802da2ecf481b8670
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.