ERC-20
Overview
Max Total Supply
100,000,000,000,000 HOME ⚽
Holders
36
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
521,730,523,172.168072756 HOME ⚽Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
HOME
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-09 */ /** _____ _______ _ _____ _____ ____ __ __ _____ _ _ _____ _ _ ____ __ __ ______ |_ _||__ __|( )/ ____| / ____|/ __ \ | \/ ||_ _|| \ | | / ____| | | | | / __ \ | \/ || ____| | | | | |/| (___ | | | | | || \ / | | | | \| || | __ | |__| || | | || \ / || |__ | | | | \___ \ | | | | | || |\/| | | | | . ` || | |_ | | __ || | | || |\/| || __| _| |_ | | ____) | | |____| |__| || | | | _| |_ | |\ || |__| | | | | || |__| || | | || |____ |_____| |_| |_____/ \_____|\____/ |_| |_||_____||_| \_| \_____| |_| |_| \____/ |_| |_||______| */ // IT'S COMING $HOME // Telegram: t.me/ItsComingHomeOfficial // Fair Launch, no Dev Tokens. 100% LP. // Sniper protection. // Ownership will be renounced 60 minutes after launch. // Slippage Recommended: 15%+ // Fair Launched by TSI, The Secret Initiative. // 5% AIRDROP POOL // 5% TEAM // 3% REFLECTION TO HOLDERS // 2% AUTO ADD LIQUIDITY // IF INGERLAND WINS THE ENTIRETY OF THE AIRDROP POOL IS SPREAD LIKE A BIRDS LEGS BETWEEN 10 FUCKIN LUCKY HOLDERS USING A LIVE STREAMED NUMBA GENERATOR FOR HOLDER # SELECTION // IF ITALY WINS THE ENTIRETY OF THE AIRDROP POOL GOES AS A DONATION TO https://footballfoundation.org.uk/ CUS WE IZ FUCKIN SHITE DEN AND NEED BETTER PLAYERS, FUCKS SAKE //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // AIRDROP POOL: https://etherscan.io/address/0xB260b1e3F3a7086412092E5B4f92dFDB54A886A8 //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> // Total supply: 100.000.000.000.000 // Tx limits (time after launch): // 5 Minutes: 100.000.000 (0,0001%) (Fack off bots) // < 6 Hours: 100.000.000.000 (1%) // 6 + Hours: No Limit //SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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; } } 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); } } } } contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // Contract implementation contract HOME is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; // excluded from reward address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100_000_000_000_000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'Its coming home | t.me/ItsComingHomeOfficial'; string private _symbol = 'HOME \xE2\x9A\xBD'; uint8 private _decimals = 9; uint256 private _taxFee = 3; // 3% reflection fee for every holder uint256 private _marketingFee = 10; // 5% marketing + 5% Airdrop Pool uint256 private _liquidityFee = 2; // 2% into liquidity uint256 private _previousTaxFee = _taxFee; uint256 private _previousMarketingFee = _marketingFee; uint256 private _previousLiquidityFee = _liquidityFee; address payable private _marketingWalletAddress; address payable private _airdropPool; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify = false; bool public swapAndLiquifyEnabled = true; bool public tradingOpen = false; uint256 public launchTime; uint256 private _maxTxAmount = _tTotal; // We will set a minimum amount of tokens to be swapped uint256 private _numTokensSellToAddToLiquidity = 1000000000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor (address payable ingerland) public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network // 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; _marketingWalletAddress = payable(ingerland); _airdropPool = payable(0xB260b1e3F3a7086412092E5B4f92dFDB54A886A8); // Exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingWalletAddress] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function openTrading() external onlyOwner() { tradingOpen = true; launchTime = block.timestamp; } 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 setExcludeFromFee(address account, bool excluded) external onlyOwner() { _isExcludedFromFee[account] = excluded; } 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) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already 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 addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function removeAllFee() private { if(_taxFee == 0 && _marketingFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _marketingFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _marketingFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingFee = _previousMarketingFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[sender], "You have no power here!"); require(!_isBlackListedBot[recipient], "You have no power here!"); require(!_isBlackListedBot[tx.origin], "You have no power here!"); if(sender != owner() && recipient != owner()) { require(tradingOpen); if (block.timestamp < (launchTime + 6 hours)){ if (block.timestamp < (launchTime + 5 minutes)){ require(amount <= _maxTxAmount.div(1000000)); } else { require(amount <= _maxTxAmount.div(100)); } } require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); require(balanceOf(recipient).add(amount) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off"); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numTokensSellToAddToLiquidity; if (!inSwapAndLiquify && swapAndLiquifyEnabled && overMinTokenBalance && sender != uniswapV2Pair) { contractTokenBalance = _numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){ takeFee = false; } //transfer amount, it will take tax and charity fee _tokenTransfer(sender, recipient, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 toMarketing = contractTokenBalance.mul(_marketingFee).div(_marketingFee.add(_liquidityFee)); uint256 toLiquify = contractTokenBalance.sub(toMarketing); // split the contract balance into halves uint256 half = toLiquify.div(2); uint256 otherHalf = toLiquify.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 uint256 toSwapForEth = half.add(toMarketing); swapTokensForEth(toSwapForEth); // <- this breaks the ETH -> swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 fromSwap = address(this).balance.sub(initialBalance); uint256 newBalance = fromSwap.mul(half).div(toSwapForEth); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); sendETHToMarketing(fromSwap.sub(newBalance)); } 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 ); } function sendETHToMarketing(uint256 amount) private { _marketingWalletAddress.transfer(amount.div(2)); _airdropPool.transfer(amount.div(2)); } // We are exposing these functions to be able to manual swap and send // in case the token is highly valued and 5M becomes too much function manualSwap() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() public onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToMarketing(contractETHBalance); } function setSwapAndLiquifyEnabled(bool _swapAndLiquifyEnabled) external onlyOwner(){ swapAndLiquifyEnabled = _swapAndLiquifyEnabled; } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _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 tMarketingLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidity) = _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); _takeMarketingLiquidity(tMarketingLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeMarketingLiquidity(uint256 tMarketingLiquidity) private { uint256 currentRate = _getRate(); uint256 rMarketingLiquidity = tMarketingLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketingLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketingLiquidity); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tMarketingLiquidityFee) = _getTValues(tAmount, _taxFee, _marketingFee.add(_liquidityFee)); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketingLiquidityFee); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 marketingLiquidityFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tMarketingLiquidityFee = tAmount.mul(marketingLiquidityFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(marketingLiquidityFee); return (tTransferAmount, tFee, tMarketingLiquidityFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); 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 _getTaxFee() private view returns(uint256) { return _taxFee; } function _getMaxTxAmount() private view returns(uint256) { return _maxTxAmount; } function _getETHBalance() public view returns(uint256 balance) { return address(this).balance; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 1 && taxFee <= 49, 'taxFee should be in 1 - 49'); _taxFee = taxFee; } function _setMarketingFee(uint256 marketingFee) external onlyOwner() { require(marketingFee >= 1 && marketingFee <= 49, 'marketingFee should be in 1 - 11'); _marketingFee = marketingFee; } function _setLiquidityFee(uint256 liquidityFee) external onlyOwner() { require(liquidityFee >= 1 && liquidityFee <= 49, 'liquidityFee should be in 1 - 11'); _liquidityFee = liquidityFee; } function _setNumTokensSellToAddToLiquidity(uint256 numTokensSellToAddToLiquidity) external onlyOwner() { require(numTokensSellToAddToLiquidity >= 10**9 , 'numTokensSellToAddToLiquidity should be greater than total 1e9'); _numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { require(maxTxAmount >= 10**9 , 'maxTxAmount should be greater than total 1e9'); _maxTxAmount = maxTxAmount; } function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() { _approve(address(this), owner(), tokenAmount); _transfer(address(this), owner(), tokenAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"ingerland","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"_setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity","type":"uint256"}],"name":"_setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapAndLiquifyEnabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69152d02c7e14af6800000600b5569085afffa6ff50bffffff19600c55610120604052602d60c0818152906200393160e03980516200004791600e9160209091019062000445565b5060408051808201909152600880825267484f4d4520e29abd60c01b60209092019182526200007991600f9162000445565b506010805460ff1916600917905560036011819055600a6012819055600260138190556014929092556015556016556018805460ff60b01b1961ffff60a01b19909116600160a81b17169055600b54601a55670de0b6b3a7640000601b55348015620000e457600080fd5b506040516200395e3803806200395e833981810160405260208110156200010a57600080fd5b505160006200011862000432565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600360006200017362000432565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ea57600080fd5b505afa158015620001ff573d6000803e3d6000fd5b505050506040513d60208110156200021657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200026757600080fd5b505afa1580156200027c573d6000803e3d6000fd5b505050506040513d60208110156200029357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002e657600080fd5b505af1158015620002fb573d6000803e3d6000fd5b505050506040513d60208110156200031257600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052601780546001600160a01b0384166001600160a01b0319918216179091556018805490911673b260b1e3f3a7086412092e5b4f92dfdb54a886a81790556001600660006200037c62000436565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155601754909116835291208054909216179055620003dd62000432565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35050620004e1565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200048857805160ff1916838001178555620004b8565b82800160010185558215620004b8579182015b82811115620004b85782518255916020019190600101906200049b565b50620004c6929150620004ca565b5090565b5b80821115620004c65760008155600101620004cb565b60805160601c60a05160601c61340862000529600039806111f252806121fe525080610a14528061250452806125bc52806125e35280612c845280612cab52506134086000f3fe60806040526004361061024a5760003560e01c80635342acb411610139578063a52fe9bb116100b6578063c9567bf91161007a578063c9567bf914610896578063dd62ed3e146108ab578063f2fde38b146108e6578063f429389014610919578063f815a8421461092e578063ffb54a991461094357610251565b8063a52fe9bb146107a2578063a9059cbb146107cc578063af9549e014610805578063bcd6d44614610840578063c49b9a801461086a57610251565b80637ded4d6a116100fd5780637ded4d6a146106d957806388f820201461070c5780638da5cb5b1461073f57806395d89b4114610754578063a457c2d71461076957610251565b80635342acb41461061f5780635880b8731461065257806370a082311461067c578063715018a6146106af578063790ca413146106c457610251565b8063313ce567116101c75780634549b0391161018b5780634549b0391461057b57806349bd5a5e146105ad5780634a74bb02146105c257806351bc3c85146105d757806352390c02146105ec57610251565b8063313ce567146104875780633685d419146104b257806339509351146104e55780633bd5d1731461051e5780634303443d1461054857610251565b80631bbae6e01161020e5780631bbae6e01461039a5780631decaadc146103c657806323b872dd146103f05780632d8381191461043357806330599fc51461045d57610251565b806306fdde0314610256578063095ea7b3146102e057806313114a9d1461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610958565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b0381351690602001356109ee565b604080519115158252519081900360200190f35b34801561033957600080fd5b50610342610a0c565b60408051918252519081900360200190f35b34801561036057600080fd5b50610369610a12565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b50610342610a36565b3480156103a657600080fd5b506103c4600480360360208110156103bd57600080fd5b5035610a3c565b005b3480156103d257600080fd5b506103c4600480360360208110156103e957600080fd5b5035610adc565b3480156103fc57600080fd5b506103196004803603606081101561041357600080fd5b506001600160a01b03813581169160208101359091169060400135610b7c565b34801561043f57600080fd5b506103426004803603602081101561045657600080fd5b5035610c03565b34801561046957600080fd5b506103c46004803603602081101561048057600080fd5b5035610c65565b34801561049357600080fd5b5061049c610ce4565b6040805160ff9092168252519081900360200190f35b3480156104be57600080fd5b506103c4600480360360208110156104d557600080fd5b50356001600160a01b0316610ced565b3480156104f157600080fd5b506103196004803603604081101561050857600080fd5b506001600160a01b038135169060200135610eae565b34801561052a57600080fd5b506103c46004803603602081101561054157600080fd5b5035610efc565b34801561055457600080fd5b506103c46004803603602081101561056b57600080fd5b50356001600160a01b0316610fd6565b34801561058757600080fd5b506103426004803603604081101561059e57600080fd5b5080359060200135151561115e565b3480156105b957600080fd5b506103696111f0565b3480156105ce57600080fd5b50610319611214565b3480156105e357600080fd5b506103c4611224565b3480156105f857600080fd5b506103c46004803603602081101561060f57600080fd5b50356001600160a01b0316611292565b34801561062b57600080fd5b506103196004803603602081101561064257600080fd5b50356001600160a01b0316611474565b34801561065e57600080fd5b506103c46004803603602081101561067557600080fd5b5035611492565b34801561068857600080fd5b506103426004803603602081101561069f57600080fd5b50356001600160a01b0316611552565b3480156106bb57600080fd5b506103c46115b4565b3480156106d057600080fd5b50610342611656565b3480156106e557600080fd5b506103c4600480360360208110156106fc57600080fd5b50356001600160a01b031661165c565b34801561071857600080fd5b506103196004803603602081101561072f57600080fd5b50356001600160a01b03166117e9565b34801561074b57600080fd5b50610369611807565b34801561076057600080fd5b5061026b611816565b34801561077557600080fd5b506103196004803603604081101561078c57600080fd5b506001600160a01b038135169060200135611877565b3480156107ae57600080fd5b506103c4600480360360208110156107c557600080fd5b50356118df565b3480156107d857600080fd5b50610319600480360360408110156107ef57600080fd5b506001600160a01b03813516906020013561199f565b34801561081157600080fd5b506103c46004803603604081101561082857600080fd5b506001600160a01b03813516906020013515156119b3565b34801561084c57600080fd5b506103c46004803603602081101561086357600080fd5b5035611a36565b34801561087657600080fd5b506103c46004803603602081101561088d57600080fd5b50351515611af6565b3480156108a257600080fd5b506103c4611b6c565b3480156108b757600080fd5b50610342600480360360408110156108ce57600080fd5b506001600160a01b0381358116916020013516611bdd565b3480156108f257600080fd5b506103c46004803603602081101561090957600080fd5b50356001600160a01b0316611c08565b34801561092557600080fd5b506103c4611d00565b34801561093a57600080fd5b50610342611d62565b34801561094f57600080fd5b50610319611d66565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b6000610a026109fb611d76565b8484611d7a565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610a44611d76565b6000546001600160a01b03908116911614610a94576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b633b9aca00811015610ad75760405162461bcd60e51b815260040180806020018281038252602c8152602001806131f7602c913960400191505060405180910390fd5b601a55565b610ae4611d76565b6000546001600160a01b03908116911614610b34576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b633b9aca00811015610b775760405162461bcd60e51b815260040180806020018281038252603e815260200180613322603e913960400191505060405180910390fd5b601b55565b6000610b89848484611e66565b610bf984610b95611d76565b610bf485604051806060016040528060288152602001613244602891396001600160a01b038a16600090815260056020526040812090610bd3611d76565b6001600160a01b0316815260208101919091526040016000205491906122a5565b611d7a565b5060019392505050565b6000600c54821115610c465760405162461bcd60e51b815260040180806020018281038252602a81526020018061312e602a913960400191505060405180910390fd5b6000610c5061233c565b9050610c5c838261235f565b9150505b919050565b610c6d611d76565b6000546001600160a01b03908116911614610cbd576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b610ccf30610cc9611807565b83611d7a565b610ce130610cdb611807565b83611e66565b50565b60105460ff1690565b610cf5611d76565b6000546001600160a01b03908116911614610d45576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610db2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610eaa57816001600160a01b031660088281548110610dd657fe5b6000918252602090912001546001600160a01b03161415610ea257600880546000198101908110610e0357fe5b600091825260209091200154600880546001600160a01b039092169183908110610e2957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e7b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610eaa565b600101610db5565b5050565b6000610a02610ebb611d76565b84610bf48560056000610ecc611d76565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123a8565b6000610f06611d76565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f615760405162461bcd60e51b815260040180806020018281038252602c815260200180613382602c913960400191505060405180910390fd5b6000610f6c83612402565b505050506001600160a01b038416600090815260036020526040902054919250610f9891905082612472565b6001600160a01b038316600090815260036020526040902055600c54610fbe9082612472565b600c55600d54610fce90846123a8565b600d55505050565b610fde611d76565b6000546001600160a01b0390811691161461102e576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561108a5760405162461bcd60e51b81526004018080602001828103825260248152602001806132b56024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff16156110f8576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b548311156111b7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111d65760006111c784612402565b50939550610a06945050505050565b60006111e184612402565b50929550610a06945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601854600160a81b900460ff1681565b61122c611d76565b6000546001600160a01b0390811691161461127c576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b600061128730611552565b9050610ce1816124b4565b61129a611d76565b6000546001600160a01b039081169116146112ea576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156113465760405162461bcd60e51b81526004018080602001828103825260228152602001806133606022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156113b4576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561140e576001600160a01b0381166000908152600360205260409020546113f490610c03565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b61149a611d76565b6000546001600160a01b039081169116146114ea576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b600181101580156114fc575060318111155b61154d576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203439000000000000604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561159257506001600160a01b038116600090815260046020526040902054610c60565b6001600160a01b038216600090815260036020526040902054610a0690610c03565b6115bc611d76565b6000546001600160a01b0390811691161461160c576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60195481565b611664611d76565b6000546001600160a01b039081169116146116b4576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611721576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610eaa57816001600160a01b0316600a828154811061174557fe5b6000918252602090912001546001600160a01b031614156117e157600a8054600019810190811061177257fe5b600091825260209091200154600a80546001600160a01b03909216918390811061179857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610e7b57fe5b600101611724565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109e45780601f106109b9576101008083540402835291602001916109e4565b6000610a02611884611d76565b84610bf4856040518060600160405280602581526020016133ae60259139600560006118ae611d76565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122a5565b6118e7611d76565b6000546001600160a01b03908116911614611937576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b60018110158015611949575060318111155b61199a576040805162461bcd60e51b815260206004820181905260248201527f6d61726b6574696e674665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601255565b6000610a026119ac611d76565b8484611e66565b6119bb611d76565b6000546001600160a01b03908116911614611a0b576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b611a3e611d76565b6000546001600160a01b03908116911614611a8e576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b60018110158015611aa0575060318111155b611af1576040805162461bcd60e51b815260206004820181905260248201527f6c69717569646974794665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601355565b611afe611d76565b6000546001600160a01b03908116911614611b4e576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b60188054911515600160a81b0260ff60a81b19909216919091179055565b611b74611d76565b6000546001600160a01b03908116911614611bc4576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6018805460ff60b01b1916600160b01b17905542601955565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c10611d76565b6000546001600160a01b03908116911614611c60576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b038116611ca55760405162461bcd60e51b81526004018080602001828103825260268152602001806131586026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d08611d76565b6000546001600160a01b03908116911614611d58576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b47610ce1816126c3565b4790565b601854600160b01b900460ff1681565b3390565b6001600160a01b038316611dbf5760405162461bcd60e51b81526004018080602001828103825260248152602001806132fe6024913960400191505060405180910390fd5b6001600160a01b038216611e045760405162461bcd60e51b815260040180806020018281038252602281526020018061317e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eab5760405162461bcd60e51b81526004018080602001828103825260258152602001806132d96025913960400191505060405180910390fd5b6001600160a01b038216611ef05760405162461bcd60e51b815260040180806020018281038252602381526020018061310b6023913960400191505060405180910390fd5b60008111611f2f5760405162461bcd60e51b815260040180806020018281038252602981526020018061328c6029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f97576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611fff576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561205e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612066611807565b6001600160a01b0316836001600160a01b0316141580156120a0575061208a611807565b6001600160a01b0316826001600160a01b031614155b156121a657601854600160b01b900460ff166120bb57600080fd5b601954615460014210156121125760195461012c014210156120f857601a546120e790620f424061235f565b8111156120f357600080fd5b612112565b601a5461210690606461235f565b81111561211257600080fd5b601a548111156121535760405162461bcd60e51b81526004018080602001828103825260288152602001806131cf6028913960400191505060405180910390fd5b601a546121698261216385611552565b906123a8565b11156121a65760405162461bcd60e51b815260040180806020018281038252602f8152602001806131a0602f913960400191505060405180910390fd5b60006121b130611552565b9050601a5481106121c15750601a545b601b546018549082101590600160a01b900460ff161580156121ec5750601854600160a81b900460ff165b80156121f55750805b801561223357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561224657601b54915061224682612748565b6001600160a01b03851660009081526006602052604090205460019060ff168061228857506001600160a01b03851660009081526006602052604090205460ff165b15612291575060005b61229d8686868461285e565b505050505050565b600081848411156123345760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122f95781810151838201526020016122e1565b50505050905090810190601f1680156123265780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006123496129d2565b9092509050612358828261235f565b9250505090565b60006123a183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b35565b9392505050565b6000828201838110156123a1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006124338a60115461242e6013546012546123a890919063ffffffff16565b612b9a565b925092509250600061244361233c565b905060008060006124558e8786612be9565b919e509c509a509598509396509194505050505091939550919395565b60006123a183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122a5565b604080516002808252606080830184529260208301908036833701905050905030816000815181106124e257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561255b57600080fd5b505afa15801561256f573d6000803e3d6000fd5b505050506040513d602081101561258557600080fd5b505181518290600190811061259657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506125e1307f000000000000000000000000000000000000000000000000000000000000000084611d7a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561268657818101518382015260200161266e565b505050509050019650505050505050600060405180830381600087803b1580156126af57600080fd5b505af115801561229d573d6000803e3d6000fd5b6017546001600160a01b03166108fc6126dd83600261235f565b6040518115909202916000818181858888f19350505050158015612705573d6000803e3d6000fd5b506018546001600160a01b03166108fc61272083600261235f565b6040518115909202916000818181858888f19350505050158015610eaa573d6000803e3d6000fd5b6018805460ff60a01b1916600160a01b17905560135460125460009161278591612771916123a8565b60125461277f908590612c25565b9061235f565b905060006127938383612472565b905060006127a282600261235f565b905060006127b08383612472565b90504760006127bf84876123a8565b90506127ca816124b4565b60006127d64784612472565b905060006127e88361277f8489612c25565b90506127f48582612c7e565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16128466128418383612472565b6126c3565b50506018805460ff60a01b1916905550505050505050565b8061286b5761286b612d7c565b6001600160a01b03841660009081526007602052604090205460ff1680156128ac57506001600160a01b03831660009081526007602052604090205460ff16155b156128c1576128bc848484612dc5565b6129bf565b6001600160a01b03841660009081526007602052604090205460ff1615801561290257506001600160a01b03831660009081526007602052604090205460ff165b15612912576128bc848484612ee9565b6001600160a01b03841660009081526007602052604090205460ff1615801561295457506001600160a01b03831660009081526007602052604090205460ff16155b15612964576128bc848484612f92565b6001600160a01b03841660009081526007602052604090205460ff1680156129a457506001600160a01b03831660009081526007602052604090205460ff165b156129b4576128bc848484612fd6565b6129bf848484612f92565b806129cc576129cc613049565b50505050565b600c54600b546000918291825b600854811015612b03578260036000600884815481106129fb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a605750816004600060088481548110612a3957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a7757600c54600b5494509450505050612b31565b612ab76003600060088481548110612a8b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612472565b9250612af96004600060088481548110612acd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612472565b91506001016129df565b50600b54600c54612b139161235f565b821015612b2b57600c54600b54935093505050612b31565b90925090505b9091565b60008183612b845760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122f95781810151838201526020016122e1565b506000838581612b9057fe5b0495945050505050565b6000808080612bae606461277f8989612c25565b90506000612bc1606461277f8a89612c25565b90506000612bd987612bd38b86612472565b90612472565b9992985090965090945050505050565b6000808080612bf88786612c25565b90506000612c068787612c25565b90506000612c148383612472565b929992985090965090945050505050565b600082612c3457506000610a06565b82820282848281612c4157fe5b04146123a15760405162461bcd60e51b81526004018080602001828103825260218152602001806132236021913960400191505060405180910390fd5b612ca9307f000000000000000000000000000000000000000000000000000000000000000084611d7a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612ce6611807565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612d5157600080fd5b505af1158015612d65573d6000803e3d6000fd5b50505050506040513d60608110156129cc57600080fd5b601154158015612d8c5750601254155b8015612d985750601354155b15612da257612dc3565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612dd787612402565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612e099088612472565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e389087612472565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e6790866123a8565b6001600160a01b038916600090815260036020526040902055612e898161305d565b612e9384836130e6565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612efb87612402565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612f2d9087612472565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f6390846123a8565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e6790866123a8565b600080600080600080612fa487612402565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e389087612472565b600080600080600080612fe887612402565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061301a9088612472565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612f2d9087612472565b601454601155601554601255601654601355565b600061306761233c565b905060006130758383612c25565b3060009081526003602052604090205490915061309290826123a8565b3060009081526003602090815260408083209390935560079052205460ff16156130e157306000908152600460205260409020546130d090846123a8565b306000908152600460205260409020555b505050565b600c546130f39083612472565b600c55600d5461310390826123a8565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208c0973cc6a7e07925cc4773a7c607e46c475660db84c0b4daf1ac936615ba55d64736f6c634300060c003349747320636f6d696e6720686f6d65207c2020742e6d652f497473436f6d696e67486f6d654f6666696369616c0000000000000000000000002e8b733df7e00de43bb74ec4cef2037aa1bacf75
Deployed Bytecode
0x60806040526004361061024a5760003560e01c80635342acb411610139578063a52fe9bb116100b6578063c9567bf91161007a578063c9567bf914610896578063dd62ed3e146108ab578063f2fde38b146108e6578063f429389014610919578063f815a8421461092e578063ffb54a991461094357610251565b8063a52fe9bb146107a2578063a9059cbb146107cc578063af9549e014610805578063bcd6d44614610840578063c49b9a801461086a57610251565b80637ded4d6a116100fd5780637ded4d6a146106d957806388f820201461070c5780638da5cb5b1461073f57806395d89b4114610754578063a457c2d71461076957610251565b80635342acb41461061f5780635880b8731461065257806370a082311461067c578063715018a6146106af578063790ca413146106c457610251565b8063313ce567116101c75780634549b0391161018b5780634549b0391461057b57806349bd5a5e146105ad5780634a74bb02146105c257806351bc3c85146105d757806352390c02146105ec57610251565b8063313ce567146104875780633685d419146104b257806339509351146104e55780633bd5d1731461051e5780634303443d1461054857610251565b80631bbae6e01161020e5780631bbae6e01461039a5780631decaadc146103c657806323b872dd146103f05780632d8381191461043357806330599fc51461045d57610251565b806306fdde0314610256578063095ea7b3146102e057806313114a9d1461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610958565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b0381351690602001356109ee565b604080519115158252519081900360200190f35b34801561033957600080fd5b50610342610a0c565b60408051918252519081900360200190f35b34801561036057600080fd5b50610369610a12565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b50610342610a36565b3480156103a657600080fd5b506103c4600480360360208110156103bd57600080fd5b5035610a3c565b005b3480156103d257600080fd5b506103c4600480360360208110156103e957600080fd5b5035610adc565b3480156103fc57600080fd5b506103196004803603606081101561041357600080fd5b506001600160a01b03813581169160208101359091169060400135610b7c565b34801561043f57600080fd5b506103426004803603602081101561045657600080fd5b5035610c03565b34801561046957600080fd5b506103c46004803603602081101561048057600080fd5b5035610c65565b34801561049357600080fd5b5061049c610ce4565b6040805160ff9092168252519081900360200190f35b3480156104be57600080fd5b506103c4600480360360208110156104d557600080fd5b50356001600160a01b0316610ced565b3480156104f157600080fd5b506103196004803603604081101561050857600080fd5b506001600160a01b038135169060200135610eae565b34801561052a57600080fd5b506103c46004803603602081101561054157600080fd5b5035610efc565b34801561055457600080fd5b506103c46004803603602081101561056b57600080fd5b50356001600160a01b0316610fd6565b34801561058757600080fd5b506103426004803603604081101561059e57600080fd5b5080359060200135151561115e565b3480156105b957600080fd5b506103696111f0565b3480156105ce57600080fd5b50610319611214565b3480156105e357600080fd5b506103c4611224565b3480156105f857600080fd5b506103c46004803603602081101561060f57600080fd5b50356001600160a01b0316611292565b34801561062b57600080fd5b506103196004803603602081101561064257600080fd5b50356001600160a01b0316611474565b34801561065e57600080fd5b506103c46004803603602081101561067557600080fd5b5035611492565b34801561068857600080fd5b506103426004803603602081101561069f57600080fd5b50356001600160a01b0316611552565b3480156106bb57600080fd5b506103c46115b4565b3480156106d057600080fd5b50610342611656565b3480156106e557600080fd5b506103c4600480360360208110156106fc57600080fd5b50356001600160a01b031661165c565b34801561071857600080fd5b506103196004803603602081101561072f57600080fd5b50356001600160a01b03166117e9565b34801561074b57600080fd5b50610369611807565b34801561076057600080fd5b5061026b611816565b34801561077557600080fd5b506103196004803603604081101561078c57600080fd5b506001600160a01b038135169060200135611877565b3480156107ae57600080fd5b506103c4600480360360208110156107c557600080fd5b50356118df565b3480156107d857600080fd5b50610319600480360360408110156107ef57600080fd5b506001600160a01b03813516906020013561199f565b34801561081157600080fd5b506103c46004803603604081101561082857600080fd5b506001600160a01b03813516906020013515156119b3565b34801561084c57600080fd5b506103c46004803603602081101561086357600080fd5b5035611a36565b34801561087657600080fd5b506103c46004803603602081101561088d57600080fd5b50351515611af6565b3480156108a257600080fd5b506103c4611b6c565b3480156108b757600080fd5b50610342600480360360408110156108ce57600080fd5b506001600160a01b0381358116916020013516611bdd565b3480156108f257600080fd5b506103c46004803603602081101561090957600080fd5b50356001600160a01b0316611c08565b34801561092557600080fd5b506103c4611d00565b34801561093a57600080fd5b50610342611d62565b34801561094f57600080fd5b50610319611d66565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b6000610a026109fb611d76565b8484611d7a565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610a44611d76565b6000546001600160a01b03908116911614610a94576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b633b9aca00811015610ad75760405162461bcd60e51b815260040180806020018281038252602c8152602001806131f7602c913960400191505060405180910390fd5b601a55565b610ae4611d76565b6000546001600160a01b03908116911614610b34576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b633b9aca00811015610b775760405162461bcd60e51b815260040180806020018281038252603e815260200180613322603e913960400191505060405180910390fd5b601b55565b6000610b89848484611e66565b610bf984610b95611d76565b610bf485604051806060016040528060288152602001613244602891396001600160a01b038a16600090815260056020526040812090610bd3611d76565b6001600160a01b0316815260208101919091526040016000205491906122a5565b611d7a565b5060019392505050565b6000600c54821115610c465760405162461bcd60e51b815260040180806020018281038252602a81526020018061312e602a913960400191505060405180910390fd5b6000610c5061233c565b9050610c5c838261235f565b9150505b919050565b610c6d611d76565b6000546001600160a01b03908116911614610cbd576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b610ccf30610cc9611807565b83611d7a565b610ce130610cdb611807565b83611e66565b50565b60105460ff1690565b610cf5611d76565b6000546001600160a01b03908116911614610d45576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610db2576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610eaa57816001600160a01b031660088281548110610dd657fe5b6000918252602090912001546001600160a01b03161415610ea257600880546000198101908110610e0357fe5b600091825260209091200154600880546001600160a01b039092169183908110610e2957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e7b57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610eaa565b600101610db5565b5050565b6000610a02610ebb611d76565b84610bf48560056000610ecc611d76565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906123a8565b6000610f06611d76565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f615760405162461bcd60e51b815260040180806020018281038252602c815260200180613382602c913960400191505060405180910390fd5b6000610f6c83612402565b505050506001600160a01b038416600090815260036020526040902054919250610f9891905082612472565b6001600160a01b038316600090815260036020526040902055600c54610fbe9082612472565b600c55600d54610fce90846123a8565b600d55505050565b610fde611d76565b6000546001600160a01b0390811691161461102e576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561108a5760405162461bcd60e51b81526004018080602001828103825260248152602001806132b56024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff16156110f8576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b548311156111b7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816111d65760006111c784612402565b50939550610a06945050505050565b60006111e184612402565b50929550610a06945050505050565b7f000000000000000000000000cd2c7205e0a6ed1b6cb5b6a24afd8f6a170e7c9981565b601854600160a81b900460ff1681565b61122c611d76565b6000546001600160a01b0390811691161461127c576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b600061128730611552565b9050610ce1816124b4565b61129a611d76565b6000546001600160a01b039081169116146112ea576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156113465760405162461bcd60e51b81526004018080602001828103825260228152602001806133606022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff16156113b4576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561140e576001600160a01b0381166000908152600360205260409020546113f490610c03565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b61149a611d76565b6000546001600160a01b039081169116146114ea576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b600181101580156114fc575060318111155b61154d576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203439000000000000604482015290519081900360640190fd5b601155565b6001600160a01b03811660009081526007602052604081205460ff161561159257506001600160a01b038116600090815260046020526040902054610c60565b6001600160a01b038216600090815260036020526040902054610a0690610c03565b6115bc611d76565b6000546001600160a01b0390811691161461160c576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60195481565b611664611d76565b6000546001600160a01b039081169116146116b4576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16611721576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610eaa57816001600160a01b0316600a828154811061174557fe5b6000918252602090912001546001600160a01b031614156117e157600a8054600019810190811061177257fe5b600091825260209091200154600a80546001600160a01b03909216918390811061179857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610e7b57fe5b600101611724565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109e45780601f106109b9576101008083540402835291602001916109e4565b6000610a02611884611d76565b84610bf4856040518060600160405280602581526020016133ae60259139600560006118ae611d76565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906122a5565b6118e7611d76565b6000546001600160a01b03908116911614611937576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b60018110158015611949575060318111155b61199a576040805162461bcd60e51b815260206004820181905260248201527f6d61726b6574696e674665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601255565b6000610a026119ac611d76565b8484611e66565b6119bb611d76565b6000546001600160a01b03908116911614611a0b576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b611a3e611d76565b6000546001600160a01b03908116911614611a8e576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b60018110158015611aa0575060318111155b611af1576040805162461bcd60e51b815260206004820181905260248201527f6c69717569646974794665652073686f756c6420626520696e2031202d203131604482015290519081900360640190fd5b601355565b611afe611d76565b6000546001600160a01b03908116911614611b4e576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b60188054911515600160a81b0260ff60a81b19909216919091179055565b611b74611d76565b6000546001600160a01b03908116911614611bc4576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6018805460ff60b01b1916600160b01b17905542601955565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611c10611d76565b6000546001600160a01b03908116911614611c60576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b6001600160a01b038116611ca55760405162461bcd60e51b81526004018080602001828103825260268152602001806131586026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d08611d76565b6000546001600160a01b03908116911614611d58576040805162461bcd60e51b8152602060048201819052602482015260008051602061326c833981519152604482015290519081900360640190fd5b47610ce1816126c3565b4790565b601854600160b01b900460ff1681565b3390565b6001600160a01b038316611dbf5760405162461bcd60e51b81526004018080602001828103825260248152602001806132fe6024913960400191505060405180910390fd5b6001600160a01b038216611e045760405162461bcd60e51b815260040180806020018281038252602281526020018061317e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eab5760405162461bcd60e51b81526004018080602001828103825260258152602001806132d96025913960400191505060405180910390fd5b6001600160a01b038216611ef05760405162461bcd60e51b815260040180806020018281038252602381526020018061310b6023913960400191505060405180910390fd5b60008111611f2f5760405162461bcd60e51b815260040180806020018281038252602981526020018061328c6029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611f97576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff1615611fff576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561205e576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612066611807565b6001600160a01b0316836001600160a01b0316141580156120a0575061208a611807565b6001600160a01b0316826001600160a01b031614155b156121a657601854600160b01b900460ff166120bb57600080fd5b601954615460014210156121125760195461012c014210156120f857601a546120e790620f424061235f565b8111156120f357600080fd5b612112565b601a5461210690606461235f565b81111561211257600080fd5b601a548111156121535760405162461bcd60e51b81526004018080602001828103825260288152602001806131cf6028913960400191505060405180910390fd5b601a546121698261216385611552565b906123a8565b11156121a65760405162461bcd60e51b815260040180806020018281038252602f8152602001806131a0602f913960400191505060405180910390fd5b60006121b130611552565b9050601a5481106121c15750601a545b601b546018549082101590600160a01b900460ff161580156121ec5750601854600160a81b900460ff165b80156121f55750805b801561223357507f000000000000000000000000cd2c7205e0a6ed1b6cb5b6a24afd8f6a170e7c996001600160a01b0316856001600160a01b031614155b1561224657601b54915061224682612748565b6001600160a01b03851660009081526006602052604090205460019060ff168061228857506001600160a01b03851660009081526006602052604090205460ff165b15612291575060005b61229d8686868461285e565b505050505050565b600081848411156123345760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122f95781810151838201526020016122e1565b50505050905090810190601f1680156123265780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006123496129d2565b9092509050612358828261235f565b9250505090565b60006123a183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b35565b9392505050565b6000828201838110156123a1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006124338a60115461242e6013546012546123a890919063ffffffff16565b612b9a565b925092509250600061244361233c565b905060008060006124558e8786612be9565b919e509c509a509598509396509194505050505091939550919395565b60006123a183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506122a5565b604080516002808252606080830184529260208301908036833701905050905030816000815181106124e257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561255b57600080fd5b505afa15801561256f573d6000803e3d6000fd5b505050506040513d602081101561258557600080fd5b505181518290600190811061259657fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506125e1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d7a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561268657818101518382015260200161266e565b505050509050019650505050505050600060405180830381600087803b1580156126af57600080fd5b505af115801561229d573d6000803e3d6000fd5b6017546001600160a01b03166108fc6126dd83600261235f565b6040518115909202916000818181858888f19350505050158015612705573d6000803e3d6000fd5b506018546001600160a01b03166108fc61272083600261235f565b6040518115909202916000818181858888f19350505050158015610eaa573d6000803e3d6000fd5b6018805460ff60a01b1916600160a01b17905560135460125460009161278591612771916123a8565b60125461277f908590612c25565b9061235f565b905060006127938383612472565b905060006127a282600261235f565b905060006127b08383612472565b90504760006127bf84876123a8565b90506127ca816124b4565b60006127d64784612472565b905060006127e88361277f8489612c25565b90506127f48582612c7e565b604080518781526020810183905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a16128466128418383612472565b6126c3565b50506018805460ff60a01b1916905550505050505050565b8061286b5761286b612d7c565b6001600160a01b03841660009081526007602052604090205460ff1680156128ac57506001600160a01b03831660009081526007602052604090205460ff16155b156128c1576128bc848484612dc5565b6129bf565b6001600160a01b03841660009081526007602052604090205460ff1615801561290257506001600160a01b03831660009081526007602052604090205460ff165b15612912576128bc848484612ee9565b6001600160a01b03841660009081526007602052604090205460ff1615801561295457506001600160a01b03831660009081526007602052604090205460ff16155b15612964576128bc848484612f92565b6001600160a01b03841660009081526007602052604090205460ff1680156129a457506001600160a01b03831660009081526007602052604090205460ff165b156129b4576128bc848484612fd6565b6129bf848484612f92565b806129cc576129cc613049565b50505050565b600c54600b546000918291825b600854811015612b03578260036000600884815481106129fb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612a605750816004600060088481548110612a3957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612a7757600c54600b5494509450505050612b31565b612ab76003600060088481548110612a8b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612472565b9250612af96004600060088481548110612acd57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612472565b91506001016129df565b50600b54600c54612b139161235f565b821015612b2b57600c54600b54935093505050612b31565b90925090505b9091565b60008183612b845760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122f95781810151838201526020016122e1565b506000838581612b9057fe5b0495945050505050565b6000808080612bae606461277f8989612c25565b90506000612bc1606461277f8a89612c25565b90506000612bd987612bd38b86612472565b90612472565b9992985090965090945050505050565b6000808080612bf88786612c25565b90506000612c068787612c25565b90506000612c148383612472565b929992985090965090945050505050565b600082612c3457506000610a06565b82820282848281612c4157fe5b04146123a15760405162461bcd60e51b81526004018080602001828103825260218152602001806132236021913960400191505060405180910390fd5b612ca9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d7a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612ce6611807565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015612d5157600080fd5b505af1158015612d65573d6000803e3d6000fd5b50505050506040513d60608110156129cc57600080fd5b601154158015612d8c5750601254155b8015612d985750601354155b15612da257612dc3565b60118054601455601280546015556013805460165560009283905590829055555b565b600080600080600080612dd787612402565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612e099088612472565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612e389087612472565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e6790866123a8565b6001600160a01b038916600090815260036020526040902055612e898161305d565b612e9384836130e6565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612efb87612402565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612f2d9087612472565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f6390846123a8565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e6790866123a8565b600080600080600080612fa487612402565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612e389087612472565b600080600080600080612fe887612402565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061301a9088612472565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612f2d9087612472565b601454601155601554601255601654601355565b600061306761233c565b905060006130758383612c25565b3060009081526003602052604090205490915061309290826123a8565b3060009081526003602090815260408083209390935560079052205460ff16156130e157306000908152600460205260409020546130d090846123a8565b306000908152600460205260409020555b505050565b600c546130f39083612472565b600c55600d5461310390826123a8565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573736e756d546f6b656e7353656c6c546f416464546f4c69717569646974792073686f756c642062652067726561746572207468616e20746f74616c2031653957652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212208c0973cc6a7e07925cc4773a7c607e46c475660db84c0b4daf1ac936615ba55d64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002e8b733df7e00de43bb74ec4cef2037aa1bacf75
-----Decoded View---------------
Arg [0] : ingerland (address): 0x2e8b733Df7E00DE43BB74EC4CEF2037AA1bacF75
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002e8b733df7e00de43bb74ec4cef2037aa1bacf75
Deployed Bytecode Sourcemap
25344:22756:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28644:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29556:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29556:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30822:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26757:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26757:51:0;;;;;;;;;;;;;;28921:95;;;;;;;;;;;;;:::i;47696:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47696:201:0;;:::i;:::-;;47379:309;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47379:309:0;;:::i;29725:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29725:313:0;;;;;;;;;;;;;;;;;:::i;31746:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31746:253:0;;:::i;47905:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47905:192:0;;:::i;28830:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32461:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32461:479:0;-1:-1:-1;;;;;32461:479:0;;:::i;30046:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30046:218:0;;;;;;;;:::i;30917:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30917:377:0;;:::i;32948:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32948:352:0;-1:-1:-1;;;;;32948:352:0;;:::i;31302:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31302:436:0;;;;;;;;;:::i;26815:38::-;;;;;;;;;;;;;:::i;26898:40::-;;;;;;;;;;;;;:::i;40018:156::-;;;;;;;;;;;;;:::i;32007:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32007:446:0;-1:-1:-1;;;;;32007:446:0;;:::i;34337:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34337:123:0;-1:-1:-1;;;;;34337:123:0;;:::i;46764:169::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46764:169:0;;:::i;29024:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29024:198:0;-1:-1:-1;;;;;29024:198:0;;:::i;16836:148::-;;;;;;;;;;;;;:::i;26983:25::-;;;;;;;;;;;;;:::i;33308:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33308:500:0;-1:-1:-1;;;;;33308:500:0;;:::i;30549:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30549:120:0;-1:-1:-1;;;;;30549:120:0;;:::i;16202:79::-;;;;;;;;;;;;;:::i;28735:87::-;;;;;;;;;;;;;:::i;30272:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30272:269:0;;;;;;;;:::i;46941:211::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46941:211:0;;:::i;29230:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29230:167:0;;;;;;;;:::i;30677:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30677:137:0;;;;;;;;;;:::i;47160:211::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47160:211:0;;:::i;40349:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40349:148:0;;;;:::i;28516:120::-;;;;;;;;;;;;;:::i;29405:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29405:143:0;;;;;;;;;;:::i;17136:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17136:244:0;-1:-1:-1;;;;;17136:244:0;;:::i;40182:159::-;;;;;;;;;;;;;:::i;46646:110::-;;;;;;;;;;;;;:::i;26945:31::-;;;;;;;;;;;;;:::i;28644:83::-;28714:5;28707:12;;;;;;;;-1:-1:-1;;28707:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28681:13;;28707:12;;28714:5;;28707:12;;28714:5;28707:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28644:83;:::o;29556:161::-;29631:4;29648:39;29657:12;:10;:12::i;:::-;29671:7;29680:6;29648:8;:39::i;:::-;-1:-1:-1;29705:4:0;29556:161;;;;;:::o;30822:87::-;30891:10;;30822:87;:::o;26757:51::-;;;:::o;28921:95::-;29001:7;;28921:95;:::o;47696:201::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;47797:5:::1;47782:11;:20;;47774:78;;;;-1:-1:-1::0;;;47774:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47863:12;:26:::0;47696:201::o;47379:309::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;47534:5:::1;47501:29;:38;;47493:114;;;;-1:-1:-1::0;;;47493:114:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47618:30;:62:::0;47379:309::o;29725:313::-;29823:4;29840:36;29850:6;29858:9;29869:6;29840:9;:36::i;:::-;29887:121;29896:6;29904:12;:10;:12::i;:::-;29918:89;29956:6;29918:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29918:19:0;;;;;;:11;:19;;;;;;29938:12;:10;:12::i;:::-;-1:-1:-1;;;;;29918:33:0;;;;;;;;;;;;-1:-1:-1;29918:33:0;;;:89;:37;:89::i;:::-;29887:8;:121::i;:::-;-1:-1:-1;30026:4:0;29725:313;;;;;:::o;31746:253::-;31812:7;31851;;31840;:18;;31832:73;;;;-1:-1:-1;;;31832:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31916:19;31939:10;:8;:10::i;:::-;31916:33;-1:-1:-1;31967:24:0;:7;31916:33;31967:11;:24::i;:::-;31960:31;;;31746:253;;;;:::o;47905:192::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;47987:45:::1;48004:4;48011:7;:5;:7::i;:::-;48020:11;47987:8;:45::i;:::-;48043:46;48061:4;48068:7;:5;:7::i;:::-;48077:11;48043:9;:46::i;:::-;47905:192:::0;:::o;28830:83::-;28896:9;;;;28830:83;:::o;32461:479::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32543:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32535:60;;;::::0;;-1:-1:-1;;;32535:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32611:9;32606:327;32630:9;:16:::0;32626:20;::::1;32606:327;;;32688:7;-1:-1:-1::0;;;;;32672:23:0::1;:9;32682:1;32672:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32672:12:0::1;:23;32668:254;;;32731:9;32741:16:::0;;-1:-1:-1;;32741:20:0;;;32731:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32716:9:::1;:12:::0;;-1:-1:-1;;;;;32731:31:0;;::::1;::::0;32726:1;;32716:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32716:46:0::1;-1:-1:-1::0;;;;;32716:46:0;;::::1;;::::0;;32781:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32820:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32820:28:0::1;::::0;;32867:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32867:15:0;;;;;-1:-1:-1;;;;;;32867:15:0::1;::::0;;;;;32901:5:::1;;32668:254;32648:3;;32606:327;;;;32461:479:::0;:::o;30046:218::-;30134:4;30151:83;30160:12;:10;:12::i;:::-;30174:7;30183:50;30222:10;30183:11;:25;30195:12;:10;:12::i;:::-;-1:-1:-1;;;;;30183:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30183:25:0;;;:34;;;;;;;;;;;:38;:50::i;30917:377::-;30969:14;30986:12;:10;:12::i;:::-;-1:-1:-1;;;;;31018:19:0;;;;;;:11;:19;;;;;;30969:29;;-1:-1:-1;31018:19:0;;31017:20;31009:77;;;;-1:-1:-1;;;31009:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31098:15;31122:19;31133:7;31122:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31170:15:0;;;;;;:7;:15;;;;;;31097:44;;-1:-1:-1;31170:28:0;;:15;-1:-1:-1;31097:44:0;31170:19;:28::i;:::-;-1:-1:-1;;;;;31152:15:0;;;;;;:7;:15;;;;;:46;31219:7;;:20;;31231:7;31219:11;:20::i;:::-;31209:7;:30;31263:10;;:23;;31278:7;31263:14;:23::i;:::-;31250:10;:36;-1:-1:-1;;;30917:377:0:o;32948:352::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;33043:42:::1;-1:-1:-1::0;;;;;33032:53:0;::::1;;;33024:102;;;;-1:-1:-1::0;;;33024:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33146:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;33145:27;33137:70;;;::::0;;-1:-1:-1;;;33137:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33218:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;33218:33:0::1;33247:4;33218:33:::0;;::::1;::::0;;;33262:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33262:30:0::1;::::0;;::::1;::::0;;32948:352::o;31302:436::-;31392:7;31431;;31420;:18;;31412:62;;;;;-1:-1:-1;;;31412:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31490:17;31485:246;;31525:15;31549:19;31560:7;31549:10;:19::i;:::-;-1:-1:-1;31524:44:0;;-1:-1:-1;31583:14:0;;-1:-1:-1;;;;;31583:14:0;31485:246;31632:23;31663:19;31674:7;31663:10;:19::i;:::-;-1:-1:-1;31630:52:0;;-1:-1:-1;31697:22:0;;-1:-1:-1;;;;;31697:22:0;26815:38;;;:::o;26898:40::-;;;-1:-1:-1;;;26898:40:0;;;;;:::o;40018:156::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;40072:23:::1;40098:24;40116:4;40098:9;:24::i;:::-;40072:50;;40133:33;40150:15;40133:16;:33::i;32007:446::-:0;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;32102:42:::1;-1:-1:-1::0;;;;;32091:53:0;::::1;;;32083:100;;;;-1:-1:-1::0;;;32083:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32203:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32202:21;32194:61;;;::::0;;-1:-1:-1;;;32194:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32269:16:0;::::1;32288:1;32269:16:::0;;;:7:::1;:16;::::0;;;;;:20;32266:108:::1;;-1:-1:-1::0;;;;;32345:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32325:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32306:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32266:108:::1;-1:-1:-1::0;;;;;32384:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32384:27:0::1;32407:4;32384:27:::0;;::::1;::::0;;;32422:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32422:23:0::1;::::0;;::::1;::::0;;32007:446::o;34337:123::-;-1:-1:-1;;;;;34425:27:0;34401:4;34425:27;;;:18;:27;;;;;;;;;34337:123::o;46764:169::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;46850:1:::1;46840:6;:11;;:27;;;;;46865:2;46855:6;:12;;46840:27;46832:66;;;::::0;;-1:-1:-1;;;46832:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46909:7;:16:::0;46764:169::o;29024:198::-;-1:-1:-1;;;;;29114:20:0;;29090:7;29114:20;;;:11;:20;;;;;;;;29110:49;;;-1:-1:-1;;;;;;29143:16:0;;;;;;:7;:16;;;;;;29136:23;;29110:49;-1:-1:-1;;;;;29197:16:0;;;;;;:7;:16;;;;;;29177:37;;:19;:37::i;16836:148::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;16943:1:::1;16927:6:::0;;16906:40:::1;::::0;-1:-1:-1;;;;;16927:6:0;;::::1;::::0;16906:40:::1;::::0;16943:1;;16906:40:::1;16974:1;16957:19:::0;;-1:-1:-1;;;;;;16957:19:0::1;::::0;;16836:148::o;26983:25::-;;;;:::o;33308:500::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33397:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;33389:65;;;::::0;;-1:-1:-1;;;33389:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33470:9;33465:336;33489:16;:23:::0;33485:27;::::1;33465:336;;;33561:7;-1:-1:-1::0;;;;;33538:30:0::1;:16;33555:1;33538:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33538:19:0::1;:30;33534:256;;;33611:16;33628:23:::0;;-1:-1:-1;;33628:27:0;;;33611:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33589:16:::1;:19:::0;;-1:-1:-1;;;;;33611:45:0;;::::1;::::0;33606:1;;33589:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;33589:67:0::1;-1:-1:-1::0;;;;;33589:67:0;;::::1;;::::0;;33675:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;33675:34:0::1;::::0;;33728:16:::1;:22:::0;;;::::1;;;33534:256;33514:3;;33465:336;;30549:120:::0;-1:-1:-1;;;;;30641:20:0;30617:4;30641:20;;;:11;:20;;;;;;;;;30549:120::o;16202:79::-;16240:7;16267:6;-1:-1:-1;;;;;16267:6:0;16202:79;:::o;28735:87::-;28807:7;28800:14;;;;;;;;-1:-1:-1;;28800:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28774:13;;28800:14;;28807:7;;28800:14;;28807:7;28800:14;;;;;;;;;;;;;;;;;;;;;;;;30272:269;30365:4;30382:129;30391:12;:10;:12::i;:::-;30405:7;30414:96;30453:15;30414:96;;;;;;;;;;;;;;;;;:11;:25;30426:12;:10;:12::i;:::-;-1:-1:-1;;;;;30414:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30414:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;46941:211::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;47045:1:::1;47029:12;:17;;:39;;;;;47066:2;47050:12;:18;;47029:39;47021:84;;;::::0;;-1:-1:-1;;;47021:84:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47116:13;:28:::0;46941:211::o;29230:167::-;29308:4;29325:42;29335:12;:10;:12::i;:::-;29349:9;29360:6;29325:9;:42::i;30677:137::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30768:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;30768:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30677:137::o;47160:211::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;47264:1:::1;47248:12;:17;;:39;;;;;47285:2;47269:12;:18;;47248:39;47240:84;;;::::0;;-1:-1:-1;;;47240:84:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;47335:13;:28:::0;47160:211::o;40349:148::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;40443:21:::1;:46:::0;;;::::1;;-1:-1:-1::0;;;40443:46:0::1;-1:-1:-1::0;;;;40443:46:0;;::::1;::::0;;;::::1;::::0;;40349:148::o;28516:120::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;28571:11:::1;:18:::0;;-1:-1:-1;;;;28571:18:0::1;-1:-1:-1::0;;;28571:18:0::1;::::0;;28613:15:::1;28600:10;:28:::0;28516:120::o;29405:143::-;-1:-1:-1;;;;;29513:18:0;;;29486:7;29513:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29405:143::o;17136:244::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17225:22:0;::::1;17217:73;;;;-1:-1:-1::0;;;17217:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17327:6;::::0;;17306:38:::1;::::0;-1:-1:-1;;;;;17306:38:0;;::::1;::::0;17327:6;::::1;::::0;17306:38:::1;::::0;::::1;17355:6;:17:::0;;-1:-1:-1;;;;;;17355:17:0::1;-1:-1:-1::0;;;;;17355:17:0;;;::::1;::::0;;;::::1;::::0;;17136:244::o;40182:159::-;16422:12;:10;:12::i;:::-;16412:6;;-1:-1:-1;;;;;16412:6:0;;;:22;;;16404:67;;;;;-1:-1:-1;;;16404:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16404:67:0;;;;;;;;;;;;;;;40263:21:::1;40295:38;40263:21:::0;40295:18:::1;:38::i;46646:110::-:0;46727:21;46646:110;:::o;26945:31::-;;;-1:-1:-1;;;26945:31:0;;;;;:::o;2023:106::-;2111:10;2023:106;:::o;34468:337::-;-1:-1:-1;;;;;34561:19:0;;34553:68;;;;-1:-1:-1;;;34553:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34640:21:0;;34632:68;;;;-1:-1:-1;;;34632:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34713:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34765:32;;;;;;;;;;;;;;;;;34468:337;;;:::o;34813:2440::-;-1:-1:-1;;;;;34910:20:0;;34902:70;;;;-1:-1:-1;;;34902:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34991:23:0;;34983:71;;;;-1:-1:-1;;;34983:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35082:1;35073:6;:10;35065:64;;;;-1:-1:-1;;;35065:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35149:25:0;;;;;;:17;:25;;;;;;;;35148:26;35140:62;;;;;-1:-1:-1;;;35140:62:0;;;;;;;;;;;;-1:-1:-1;;;35140:62:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35222:28:0;;;;;;:17;:28;;;;;;;;35221:29;35213:65;;;;;-1:-1:-1;;;35213:65:0;;;;;;;;;;;;-1:-1:-1;;;35213:65:0;;;;;;;;;;;;;;;35316:9;35298:28;;;;:17;:28;;;;;;;;35297:29;35289:65;;;;;-1:-1:-1;;;35289:65:0;;;;;;;;;;;;-1:-1:-1;;;35289:65:0;;;;;;;;;;;;;;;35380:7;:5;:7::i;:::-;-1:-1:-1;;;;;35370:17:0;:6;-1:-1:-1;;;;;35370:17:0;;;:41;;;;;35404:7;:5;:7::i;:::-;-1:-1:-1;;;;;35391:20:0;:9;-1:-1:-1;;;;;35391:20:0;;;35370:41;35367:623;;;35436:11;;-1:-1:-1;;;35436:11:0;;;;35428:20;;;;;;35486:10;;35499:7;35486:20;35467:15;:40;35463:303;;;35550:10;;35563:9;35550:22;35531:15;:42;35527:224;;;35615:12;;:25;;35632:7;35615:16;:25::i;:::-;35605:6;:35;;35597:44;;;;;;35527:224;;;35709:12;;:21;;35726:3;35709:16;:21::i;:::-;35699:6;:31;;35691:40;;;;;;35798:12;;35788:6;:22;;35780:75;;;;-1:-1:-1;;;35780:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35914:12;;35878:32;35903:6;35878:20;35888:9;35878;:20::i;:::-;:24;;:32::i;:::-;:48;;35870:108;;;;-1:-1:-1;;;35870:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36286:28;36317:24;36335:4;36317:9;:24::i;:::-;36286:55;;36381:12;;36357:20;:36;36354:112;;-1:-1:-1;36442:12:0;;36354:112;36529:30;;36575:16;;36505:54;;;;;-1:-1:-1;;;36575:16:0;;;;36574:17;:42;;;;-1:-1:-1;36595:21:0;;-1:-1:-1;;;36595:21:0;;;;36574:42;:65;;;;;36620:19;36574:65;:92;;;;;36653:13;-1:-1:-1;;;;;36643:23:0;:6;-1:-1:-1;;;;;36643:23:0;;;36574:92;36570:258;;;36706:30;;36683:53;;36780:36;36795:20;36780:14;:36::i;:::-;-1:-1:-1;;;;;37020:26:0;;36901:12;37020:26;;;:18;:26;;;;;;36916:4;;37020:26;;;:59;;-1:-1:-1;;;;;;37050:29:0;;;;;;:18;:29;;;;;;;;37020:59;37017:105;;;-1:-1:-1;37105:5:0;37017:105;37195:50;37210:6;37218:9;37229:6;37237:7;37195:14;:50::i;:::-;34813:2440;;;;;;:::o;6110:192::-;6196:7;6232:12;6224:6;;;;6216:29;;;;-1:-1:-1;;;6216:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6268:5:0;;;6110:192::o;45716:163::-;45757:7;45778:15;45795;45814:19;:17;:19::i;:::-;45777:56;;-1:-1:-1;45777:56:0;-1:-1:-1;45851:20:0;45777:56;;45851:11;:20::i;:::-;45844:27;;;;45716:163;:::o;7488:132::-;7546:7;7573:39;7577:1;7580;7573:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7566:46;7488:132;-1:-1:-1;;;7488:132:0:o;5225:181::-;5283:7;5315:5;;;5339:6;;;;5331:46;;;;;-1:-1:-1;;;5331:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44411:518;44470:7;44479;44488;44497;44506;44515;44536:23;44561:12;44575:30;44609:63;44621:7;44630;;44639:32;44657:13;;44639;;:17;;:32;;;;:::i;:::-;44609:11;:63::i;:::-;44535:137;;;;;;44683:19;44705:10;:8;:10::i;:::-;44683:32;;44727:15;44744:23;44769:12;44785:39;44797:7;44806:4;44812:11;44785;:39::i;:::-;44726:98;;-1:-1:-1;44726:98:0;-1:-1:-1;44726:98:0;-1:-1:-1;44875:15:0;;-1:-1:-1;44892:4:0;;-1:-1:-1;44898:22:0;;-1:-1:-1;;;;;44411:518:0;;;;;;;:::o;5680:136::-;5738:7;5765:43;5769:1;5772;5765:43;;;;;;;;;;;;;;;;;:3;:43::i;38585:589::-;38735:16;;;38749:1;38735:16;;;38711:21;38735:16;;;;;38711:21;38735:16;;;;;;;;;;-1:-1:-1;38735:16:0;38711:40;;38780:4;38762;38767:1;38762:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;38762:23:0;;;-1:-1:-1;;;;;38762:23:0;;;;;38806:15;-1:-1:-1;;;;;38806:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38806:22:0;38796:7;;:4;;38801:1;;38796:7;;;;;;;;;;;:32;-1:-1:-1;;;;;38796:32:0;;;-1:-1:-1;;;;;38796:32:0;;;;;38841:62;38858:4;38873:15;38891:11;38841:8;:62::i;:::-;38942:15;-1:-1:-1;;;;;38942:66:0;;39023:11;39049:1;39093:4;39120;39140:15;38942:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38942:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39703:165;39766:23;;-1:-1:-1;;;;;39766:23:0;:47;39799:13;:6;39810:1;39799:10;:13::i;:::-;39766:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39824:12:0;;-1:-1:-1;;;;;39824:12:0;:36;39846:13;:6;39857:1;39846:10;:13::i;:::-;39824:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37261:1316;27489:16;:23;;-1:-1:-1;;;;27489:23:0;-1:-1:-1;;;27489:23:0;;;37430:13:::1;::::0;37412::::1;::::0;27489:23;;37368:77:::1;::::0;37412:32:::1;::::0;:17:::1;:32::i;:::-;37393:13;::::0;37368:39:::1;::::0;:20;;:24:::1;:39::i;:::-;:43:::0;::::1;:77::i;:::-;37346:99:::0;-1:-1:-1;37456:17:0::1;37476:37;:20:::0;37346:99;37476:24:::1;:37::i;:::-;37456:57:::0;-1:-1:-1;37577:12:0::1;37592:16;37456:57:::0;37606:1:::1;37592:13;:16::i;:::-;37577:31:::0;-1:-1:-1;37619:17:0::1;37639:19;:9:::0;37577:31;37639:13:::1;:19::i;:::-;37619:39:::0;-1:-1:-1;37961:21:0::1;37936:22;38050:21;:4:::0;38059:11;38050:8:::1;:21::i;:::-;38027:44;;38082:30;38099:12;38082:16;:30::i;:::-;38238:16;38257:41;:21;38283:14:::0;38257:25:::1;:41::i;:::-;38238:60:::0;-1:-1:-1;38309:18:0::1;38330:36;38353:12:::0;38330:18:::1;38238:60:::0;38343:4;38330:12:::1;:18::i;:36::-;38309:57;;38416:35;38429:9;38440:10;38416:12;:35::i;:::-;38469:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;38525:44;38544:24;:8:::0;38557:10;38544:12:::1;:24::i;:::-;38525:18;:44::i;:::-;-1:-1:-1::0;;27535:16:0;:24;;-1:-1:-1;;;;27535:24:0;;;-1:-1:-1;;;;;;;37261:1316:0:o;40505:819::-;40617:7;40613:40;;40639:14;:12;:14::i;:::-;-1:-1:-1;;;;;40670:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;40694:22:0;;;;;;:11;:22;;;;;;;;40693:23;40670:46;40666:597;;;40733:48;40755:6;40763:9;40774:6;40733:21;:48::i;:::-;40666:597;;;-1:-1:-1;;;;;40804:19:0;;;;;;:11;:19;;;;;;;;40803:20;:46;;;;-1:-1:-1;;;;;;40827:22:0;;;;;;:11;:22;;;;;;;;40803:46;40799:464;;;40866:46;40886:6;40894:9;40905:6;40866:19;:46::i;40799:464::-;-1:-1:-1;;;;;40935:19:0;;;;;;:11;:19;;;;;;;;40934:20;:47;;;;-1:-1:-1;;;;;;40959:22:0;;;;;;:11;:22;;;;;;;;40958:23;40934:47;40930:333;;;40998:44;41016:6;41024:9;41035:6;40998:17;:44::i;40930:333::-;-1:-1:-1;;;;;41064:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41087:22:0;;;;;;:11;:22;;;;;;;;41064:45;41060:203;;;41126:48;41148:6;41156:9;41167:6;41126:21;:48::i;41060:203::-;41207:44;41225:6;41233:9;41244:6;41207:17;:44::i;:::-;41279:7;41275:41;;41301:15;:13;:15::i;:::-;40505:819;;;;:::o;45887:555::-;45984:7;;46020;;45937;;;;;46038:289;46062:9;:16;46058:20;;46038:289;;;46128:7;46104;:21;46112:9;46122:1;46112:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46112:12:0;46104:21;;;;;;;;;;;;;:31;;:66;;;46163:7;46139;:21;46147:9;46157:1;46147:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46147:12:0;46139:21;;;;;;;;;;;;;:31;46104:66;46100:97;;;46180:7;;46189;;46172:25;;;;;;;;;46100:97;46222:34;46234:7;:21;46242:9;46252:1;46242:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46242:12:0;46234:21;;;;;;;;;;;;;46222:7;;:11;:34::i;:::-;46212:44;;46281:34;46293:7;:21;46301:9;46311:1;46301:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46301:12:0;46293:21;;;;;;;;;;;;;46281:7;;:11;:34::i;:::-;46271:44;-1:-1:-1;46080:3:0;;46038:289;;;-1:-1:-1;46363:7:0;;46351;;:20;;:11;:20::i;:::-;46341:7;:30;46337:61;;;46381:7;;46390;;46373:25;;;;;;;;46337:61;46417:7;;-1:-1:-1;46426:7:0;-1:-1:-1;45887:555:0;;;:::o;8105:278::-;8191:7;8226:12;8219:5;8211:28;;;;-1:-1:-1;;;8211:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8250:9;8266:1;8262;:5;;;;;;;8105:278;-1:-1:-1;;;;;8105:278:0:o;44937:429::-;45044:7;;;;45097:28;45121:3;45097:19;:7;45109:6;45097:11;:19::i;:28::-;45082:43;-1:-1:-1;45136:30:0;45169:43;45208:3;45169:34;:7;45181:21;45169:11;:34::i;:43::-;45136:76;-1:-1:-1;45223:23:0;45249:44;45271:21;45249:17;:7;45261:4;45249:11;:17::i;:::-;:21;;:44::i;:::-;45223:70;45329:4;;-1:-1:-1;45335:22:0;;-1:-1:-1;44937:429:0;;-1:-1:-1;;;;;44937:429:0:o;45374:334::-;45469:7;;;;45525:24;:7;45537:11;45525;:24::i;:::-;45507:42;-1:-1:-1;45560:12:0;45575:21;:4;45584:11;45575:8;:21::i;:::-;45560:36;-1:-1:-1;45607:23:0;45633:17;:7;45560:36;45633:11;:17::i;:::-;45669:7;;;;-1:-1:-1;45695:4:0;;-1:-1:-1;45374:334:0;;-1:-1:-1;;;;;45374:334:0:o;6552:471::-;6610:7;6855:6;6851:47;;-1:-1:-1;6885:1:0;6878:8;;6851:47;6922:5;;;6926:1;6922;:5;:1;6946:5;;;;;:10;6938:56;;;;-1:-1:-1;;;6938:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39182:513;39330:62;39347:4;39362:15;39380:11;39330:8;:62::i;:::-;39435:15;-1:-1:-1;;;;;39435:31:0;;39474:9;39507:4;39527:11;39553:1;39596;39639:7;:5;:7::i;:::-;39661:15;39435:252;;;;;;;;;;;;;-1:-1:-1;;;;;39435:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39435:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33816:332;33862:7;;:12;:34;;;;-1:-1:-1;33878:13:0;;:18;33862:34;:56;;;;-1:-1:-1;33900:13:0;;:18;33862:56;33859:68;;;33920:7;;33859:68;33957:7;;;33939:15;:25;33999:13;;;33975:21;:37;34047:13;;;34023:21;:37;-1:-1:-1;34073:11:0;;;;34095:17;;;;34123;33816:332;:::o;42479:590::-;42582:15;42599:23;42624:12;42638:23;42663:12;42677:27;42708:19;42719:7;42708:10;:19::i;:::-;-1:-1:-1;;;;;42756:15:0;;;;;;:7;:15;;;;;;42581:146;;-1:-1:-1;42581:146:0;;-1:-1:-1;42581:146:0;;-1:-1:-1;42581:146:0;-1:-1:-1;42581:146:0;-1:-1:-1;42581:146:0;-1:-1:-1;42756:28:0;;42776:7;42756:19;:28::i;:::-;-1:-1:-1;;;;;42738:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42813:7;:15;;;;:28;;42833:7;42813:19;:28::i;:::-;-1:-1:-1;;;;;42795:15:0;;;;;;;:7;:15;;;;;;:46;;;;42873:18;;;;;;;:39;;42896:15;42873:22;:39::i;:::-;-1:-1:-1;;;;;42852:18:0;;;;;;:7;:18;;;;;:60;42923:44;42947:19;42923:23;:44::i;:::-;42978:23;42990:4;42996;42978:11;:23::i;:::-;43034:9;-1:-1:-1;;;;;43017:44:0;43026:6;-1:-1:-1;;;;;43017:44:0;;43045:15;43017:44;;;;;;;;;;;;;;;;;;42479:590;;;;;;;;;:::o;41869:602::-;41970:15;41987:23;42012:12;42026:23;42051:12;42065:27;42096:19;42107:7;42096:10;:19::i;:::-;-1:-1:-1;;;;;42144:15:0;;;;;;:7;:15;;;;;;41969:146;;-1:-1:-1;41969:146:0;;-1:-1:-1;41969:146:0;;-1:-1:-1;41969:146:0;-1:-1:-1;41969:146:0;-1:-1:-1;41969:146:0;-1:-1:-1;42144:28:0;;41969:146;42144:19;:28::i;:::-;-1:-1:-1;;;;;42126:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42204:18;;;;;:7;:18;;;;;:39;;42227:15;42204:22;:39::i;:::-;-1:-1:-1;;;;;42183:18:0;;;;;;:7;:18;;;;;;;;:60;;;;42275:7;:18;;;;:39;;42298:15;42275:22;:39::i;41332:529::-;41431:15;41448:23;41473:12;41487:23;41512:12;41526:27;41557:19;41568:7;41557:10;:19::i;:::-;-1:-1:-1;;;;;41605:15:0;;;;;;:7;:15;;;;;;41430:146;;-1:-1:-1;41430:146:0;;-1:-1:-1;41430:146:0;;-1:-1:-1;41430:146:0;-1:-1:-1;41430:146:0;-1:-1:-1;41430:146:0;-1:-1:-1;41605:28:0;;41430:146;41605:19;:28::i;43077:661::-;43180:15;43197:23;43222:12;43236:23;43261:12;43275:27;43306:19;43317:7;43306:10;:19::i;:::-;-1:-1:-1;;;;;43354:15:0;;;;;;:7;:15;;;;;;43179:146;;-1:-1:-1;43179:146:0;;-1:-1:-1;43179:146:0;;-1:-1:-1;43179:146:0;-1:-1:-1;43179:146:0;-1:-1:-1;43179:146:0;-1:-1:-1;43354:28:0;;43374:7;43354:19;:28::i;:::-;-1:-1:-1;;;;;43336:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43411:7;:15;;;;:28;;43431:7;43411:19;:28::i;34156:173::-;34210:15;;34200:7;:25;34252:21;;34236:13;:37;34300:21;;34284:13;:37;34156:173::o;43746:408::-;43827:19;43849:10;:8;:10::i;:::-;43827:32;-1:-1:-1;43870:27:0;43900:36;:19;43827:32;43900:23;:36::i;:::-;43988:4;43972:22;;;;:7;:22;;;;;;43870:66;;-1:-1:-1;43972:47:0;;43870:66;43972:26;:47::i;:::-;43963:4;43947:22;;;;:7;:22;;;;;;;;:72;;;;44033:11;:26;;;;;;44030:116;;;44115:4;44099:22;;;;:7;:22;;;;;;:47;;44126:19;44099:26;:47::i;:::-;44090:4;44074:22;;;;:7;:22;;;;;:72;44030:116;43746:408;;;:::o;44162:147::-;44240:7;;:17;;44252:4;44240:11;:17::i;:::-;44230:7;:27;44281:10;;:20;;44296:4;44281:14;:20::i;:::-;44268:10;:33;-1:-1:-1;;44162:147:0:o
Swarm Source
ipfs://8c0973cc6a7e07925cc4773a7c607e46c475660db84c0b4daf1ac936615ba55d
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.