ERC-20
Overview
Max Total Supply
1,000,000,000,000 DARTY🎯
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
4,059,859,626.099121624 DARTY🎯Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DARTY
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-23 */ // SPDX-License-Identifier: Unlicensed 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; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } 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 implementarion contract DARTY is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private _isWhitelist; mapping (address => uint256) private _lockedTime; mapping (address => uint256) private _lockedAmount; mapping (address => uint256) private _antiBot; mapping (address => uint256) private _lockPreSale; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = 'DARTY🎯'; string private _symbol = 'DARTY🎯'; uint8 private _decimals = 9; uint256 public _taxFee = 2; uint256 public _charityFee = 5; uint256 public _burnFee = 3; uint256 private _previousTaxFee = _taxFee; uint256 private _previousCharityFee = _charityFee; uint256 private _previousBurnFee = _burnFee; bool public _isAntiDumpEnabled = false; uint256 public antiDumpTime; address payable public _charityWalletAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwap = false; bool public swapEnabled = true; uint256 private _maxTxAmount = 1000000000000 * 10**9; uint256 private _numOfTokensToExchangeForCharity = 5 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapEnabledUpdated(bool enabled); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor (address payable charityWalletAddress) public { _charityWalletAddress = charityWalletAddress; _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; // Exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcluded(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 excludeAccount(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 includeAccount(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 removeAllFee() private { if(_taxFee == 0 && _charityFee == 0 && _burnFee == 0) return; _previousTaxFee = _taxFee; _previousCharityFee = _charityFee; _previousBurnFee = _burnFee; _taxFee = 0; _charityFee = 0; _burnFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _charityFee = _previousCharityFee; _burnFee = _previousBurnFee; } 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(amount > 0, "Transfer amount must be greater than zero"); if(_isAntiDumpEnabled == true && sender != owner() && recipient != owner()){ if(sender == uniswapV2Pair){ uint256 timePassed = block.timestamp - _antiBot[recipient]; require(timePassed > antiDumpTime,'You must wait between trades'); _antiBot[recipient] = block.timestamp; } else if(recipient == uniswapV2Pair){ uint256 timePassed = block.timestamp - _antiBot[sender]; require(timePassed > antiDumpTime,'You must wait between trades'); _antiBot[sender] = block.timestamp; } else if(sender != uniswapV2Pair && recipient != uniswapV2Pair){ uint256 timePassed1 = block.timestamp - _antiBot[sender]; uint256 timePassed2 = block.timestamp - _antiBot[recipient]; require(timePassed1 > antiDumpTime && timePassed2 > antiDumpTime, 'You Must Wait Some Time Between Transactions'); _antiBot[sender] = block.timestamp; _antiBot[recipient] = block.timestamp; } } //If sender has purchased during presale, must wait lockPreSale to transfer. if(_isWhitelist[sender] == true) { uint256 time_since_purchase = block.timestamp - _lockedTime[sender]; if(time_since_purchase < _lockPreSale[sender]){ require((balanceOf(sender) - amount) >= _lockedAmount[sender], 'You Must Wait Some Time From Original Transaction'); } else { _isWhitelist[sender] == false; } } if(sender != owner() && recipient != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap? // also, don't get caught in a circular charity event. // also, don't swap if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForCharity; if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) { // We need to swap the current tokens to ETH and send to the charity wallet swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToCharity(address(this).balance); } } //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 swapTokensForEth(uint256 tokenAmount) private lockTheSwap{ // 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 sendETHToCharity(uint256 amount) private { _charityWalletAddress.transfer(amount); } // 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() external onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToCharity(contractETHBalance); } function setSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { if(!takeFee) removeAllFee(); uint256 burnAmt = amount.mul(_burnFee).div(100); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount.sub(burnAmt)); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount.sub(burnAmt)); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount.sub(burnAmt)); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount.sub(burnAmt)); } else { _transferStandard(sender, recipient, amount.sub(burnAmt)); } //remove fees to burn tokens _taxFee = 0; _charityFee = 0; _transferStandard(sender, address(0), burnAmt); _taxFee = _previousTaxFee; _charityFee = _previousBurnFee; if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeCharity(tCharity); _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 tCharity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeCharity(tCharity); _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 tCharity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeCharity(tCharity); _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 tCharity) = _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); _takeCharity(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeCharity(uint256 tCharity) private { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rCharity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tCharity); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _getTValues(tAmount, _taxFee, _charityFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tCharity); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 charityFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tCharity = tAmount.mul(charityFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tCharity); return (tTransferAmount, tFee, tCharity); } 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() { _taxFee = taxFee; } function _setCharityFee(uint256 charityFee) external onlyOwner() { _charityFee = charityFee; } function _setCharityWallet(address payable charityWalletAddress) external onlyOwner() { _charityWalletAddress = charityWalletAddress; } function distTokens(address[] memory recipients, uint256[] memory amounts, uint256 time) external onlyOwner{ require(recipients.length == amounts.length, 'Arrays must have same size'); for(uint i = 0; i< recipients.length; i++){ _isWhitelist[recipients[i]] = true; _lockedTime[recipients[i]] = block.timestamp; _lockPreSale[recipients[i]] = time * 1 hours; uint256 amt = amounts[i].mul(10**9); _lockedAmount[recipients[i]] = amt; _tokenTransfer(msg.sender, recipients[i], amt, false); } } function setLockPreSaleTime(address _address, uint256 hour) external onlyOwner{ _lockPreSale[_address] = hour * 1 hours; } function setAntiDumpEnabled(bool value, uint256 time) external onlyOwner{ _isAntiDumpEnabled = value; antiDumpTime = time * 1 minutes; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { _maxTxAmount = maxTxAmount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isAntiDumpEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFee","type":"uint256"}],"name":"_setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"name":"_setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiDumpTime","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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"time","type":"uint256"}],"name":"distTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"},{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setAntiDumpEnabled","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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"hour","type":"uint256"}],"name":"setLockPreSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
683635c9adc5dea00000600e556818ce40f6d0219fffff19600f55610100604052600960c0819052684441525459f09f8eaf60b81b60e090815262000048916011919062000417565b50604080518082019091526009808252684441525459f09f8eaf60b81b60209092019182526200007b9160129162000417565b506013805460ff19908116600917909155600260148190556005601581905560036016819055601792909255601855601955601a80549091169055601c805461ffff60a01b1916600160a81b179055683635c9adc5dea00000601d556611c37937e08000601e55348015620000ef57600080fd5b506040516200391838038062003918833981810160405260208110156200011557600080fd5b505160006200012362000404565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601c80546001600160a01b0319166001600160a01b038316179055600f54600360006200019962000404565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021057600080fd5b505afa15801562000225573d6000803e3d6000fd5b505050506040513d60208110156200023c57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200028d57600080fd5b505afa158015620002a2573d6000803e3d6000fd5b505050506040513d6020811015620002b957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200030c57600080fd5b505af115801562000321573d6000803e3d6000fd5b505050506040513d60208110156200033857600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036562000408565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003af62000404565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e546040518082815260200191505060405180910390a35050620004b3565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045a57805160ff19168380011785556200048a565b828001600101855582156200048a579182015b828111156200048a5782518255916020019190600101906200046d565b50620004989291506200049c565b5090565b5b808211156200049857600081556001016200049d565b60805160601c60a05160601c61341362000505600039806111a25280611fa75280612077528061214752806121845280612415525080610bce52806129665280612a1e5280612a4552506134136000f3fe6080604052600436106102815760003560e01c8063715018a61161014f578063c0b0fda2116100c1578063e01af92c1161007a578063e01af92c14610a23578063f2cc0c1814610a4f578063f2fde38b14610a82578063f429389014610ab5578063f815a84214610aca578063f84354f114610adf57610288565b8063c0b0fda21461092e578063cba0e99614610943578063cf996edd14610976578063d047e4b71461098b578063dd467064146109be578063dd62ed3e146109e857610288565b8063a24a8d0f11610113578063a24a8d0f1461082d578063a457c2d714610857578063a69df4b514610890578063a9059cbb146108a5578063af9549e0146108de578063b6c523241461091957610288565b8063715018a6146107c457806376d4ab99146107d95780638da5cb5b146107ee57806395d89b41146108035780639c7a91fe1461081857610288565b806339509351116101f35780635066d6ff116101ac5780635066d6ff146106d157806351bc3c851461070a5780635342acb41461071f5780635880b873146107525780636ddd17131461077c57806370a082311461079157610288565b806339509351146105fd5780633b124fe7146106365780633bd5d1731461064b57806340f8007a146106755780634549b0391461068a57806349bd5a5e146106bc57610288565b80631bbae6e0116102455780631bbae6e0146103d157806323b872dd146103fd5780632d838119146104405780632e6c27741461046a5780632ee9cfdb146105a0578063313ce567146105d257610288565b806306fdde031461028d578063095ea7b31461031757806313114a9d146103645780631694505e1461038b57806318160ddd146103bc57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610b12565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610ba8565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610bc6565b60408051918252519081900360200190f35b34801561039757600080fd5b506103a0610bcc565b604080516001600160a01b039092168252519081900360200190f35b3480156103c857600080fd5b50610379610bf0565b3480156103dd57600080fd5b506103fb600480360360208110156103f457600080fd5b5035610bf6565b005b34801561040957600080fd5b506103506004803603606081101561042057600080fd5b506001600160a01b03813581169160208101359091169060400135610c53565b34801561044c57600080fd5b506103796004803603602081101561046357600080fd5b5035610cda565b34801561047657600080fd5b506103fb6004803603606081101561048d57600080fd5b8101906020810181356401000000008111156104a857600080fd5b8201836020820111156104ba57600080fd5b803590602001918460208302840111640100000000831117156104dc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561052c57600080fd5b82018360208201111561053e57600080fd5b8035906020019184602083028401116401000000008311171561056057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610d3c915050565b3480156105ac57600080fd5b506103fb600480360360408110156105c357600080fd5b50803515159060200135610f5f565b3480156105de57600080fd5b506105e7610fd1565b6040805160ff9092168252519081900360200190f35b34801561060957600080fd5b506103506004803603604081101561062057600080fd5b506001600160a01b038135169060200135610fda565b34801561064257600080fd5b50610379611028565b34801561065757600080fd5b506103fb6004803603602081101561066e57600080fd5b503561102e565b34801561068157600080fd5b50610379611108565b34801561069657600080fd5b50610379600480360360408110156106ad57600080fd5b5080359060200135151561110e565b3480156106c857600080fd5b506103a06111a0565b3480156106dd57600080fd5b506103fb600480360360408110156106f457600080fd5b506001600160a01b0381351690602001356111c4565b34801561071657600080fd5b506103fb61123f565b34801561072b57600080fd5b506103506004803603602081101561074257600080fd5b50356001600160a01b03166112b0565b34801561075e57600080fd5b506103fb6004803603602081101561077557600080fd5b50356112ce565b34801561078857600080fd5b5061035061132b565b34801561079d57600080fd5b50610379600480360360208110156107b457600080fd5b50356001600160a01b031661133b565b3480156107d057600080fd5b506103fb61139d565b3480156107e557600080fd5b506103a061142d565b3480156107fa57600080fd5b506103a061143c565b34801561080f57600080fd5b506102a261144b565b34801561082457600080fd5b506103796114ac565b34801561083957600080fd5b506103fb6004803603602081101561085057600080fd5b50356114b2565b34801561086357600080fd5b506103506004803603604081101561087a57600080fd5b506001600160a01b03813516906020013561150f565b34801561089c57600080fd5b506103fb611577565b3480156108b157600080fd5b50610350600480360360408110156108c857600080fd5b506001600160a01b038135169060200135611665565b3480156108ea57600080fd5b506103fb6004803603604081101561090157600080fd5b506001600160a01b0381351690602001351515611679565b34801561092557600080fd5b506103796116fc565b34801561093a57600080fd5b50610379611702565b34801561094f57600080fd5b506103506004803603602081101561096657600080fd5b50356001600160a01b0316611708565b34801561098257600080fd5b50610350611726565b34801561099757600080fd5b506103fb600480360360208110156109ae57600080fd5b50356001600160a01b031661172f565b3480156109ca57600080fd5b506103fb600480360360208110156109e157600080fd5b50356117a9565b3480156109f457600080fd5b5061037960048036036040811015610a0b57600080fd5b506001600160a01b0381358116916020013516611847565b348015610a2f57600080fd5b506103fb60048036036020811015610a4657600080fd5b50351515611872565b348015610a5b57600080fd5b506103fb60048036036020811015610a7257600080fd5b50356001600160a01b03166118e8565b348015610a8e57600080fd5b506103fb60048036036020811015610aa557600080fd5b50356001600160a01b0316611aca565b348015610ac157600080fd5b506103fb611bb0565b348015610ad657600080fd5b50610379611c12565b348015610aeb57600080fd5b506103fb60048036036020811015610b0257600080fd5b50356001600160a01b0316611c16565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b5050505050905090565b6000610bbc610bb5611dd7565b8484611ddb565b5060015b92915050565b60105490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e5490565b610bfe611dd7565b6000546001600160a01b03908116911614610c4e576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601d55565b6000610c60848484611ec7565b610cd084610c6c611dd7565b610ccb8560405180606001604052806028815260200161326e602891396001600160a01b038a16600090815260056020526040812090610caa611dd7565b6001600160a01b0316815260208101919091526040016000205491906124c9565b611ddb565b5060019392505050565b6000600f54821115610d1d5760405162461bcd60e51b815260040180806020018281038252602a815260200180613187602a913960400191505060405180910390fd5b6000610d27612560565b9050610d338382612583565b9150505b919050565b610d44611dd7565b6000546001600160a01b03908116911614610d94576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b8151835114610dea576040805162461bcd60e51b815260206004820152601a60248201527f417272617973206d75737420686176652073616d652073697a65000000000000604482015290519081900360640190fd5b60005b8351811015610f5957600160096000868481518110610e0857fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555042600a6000868481518110610e5857fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555081610e1002600d6000868481518110610e9957fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055506000610ef1633b9aca00858481518110610edb57fe5b60200260200101516125cc90919063ffffffff16565b905080600b6000878581518110610f0457fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550610f5033868481518110610f4057fe5b6020026020010151836000612625565b50600101610ded565b50505050565b610f67611dd7565b6000546001600160a01b03908116911614610fb7576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601a805460ff191692151592909217909155603c02601b55565b60135460ff1690565b6000610bbc610fe7611dd7565b84610ccb8560056000610ff8611dd7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061280b565b60145481565b6000611038611dd7565b6001600160a01b03811660009081526007602052604090205490915060ff16156110935760405162461bcd60e51b815260040180806020018281038252602c81526020018061336a602c913960400191505060405180910390fd5b600061109e83612865565b505050506001600160a01b0384166000908152600360205260409020549192506110ca919050826128c1565b6001600160a01b038316600090815260036020526040902055600f546110f090826128c1565b600f55601054611100908461280b565b601055505050565b60155481565b6000600e54831115611167576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161118657600061117784612865565b50939550610bc0945050505050565b600061119184612865565b50929550610bc0945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6111cc611dd7565b6000546001600160a01b0390811691161461121c576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b039091166000908152600d60205260409020610e109091029055565b611247611dd7565b6000546001600160a01b03908116911614611297576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b60006112a23061133b565b90506112ad81612903565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b6112d6611dd7565b6000546001600160a01b03908116911614611326576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601455565b601c54600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561137b57506001600160a01b038116600090815260046020526040902054610d37565b6001600160a01b038216600090815260036020526040902054610bc090610cda565b6113a5611dd7565b6000546001600160a01b039081169116146113f5576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206132b6833981519152908390a3600080546001600160a01b0319169055565b601c546001600160a01b031681565b6000546001600160a01b031690565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b601b5481565b6114ba611dd7565b6000546001600160a01b0390811691161461150a576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601555565b6000610bbc61151c611dd7565b84610ccb856040518060600160405280602581526020016133b96025913960056000611546611dd7565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906124c9565b6001546001600160a01b031633146115c05760405162461bcd60e51b81526004018080602001828103825260238152602001806133966023913960400191505060405180910390fd5b6002544211611616576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206132b683398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bbc611672611dd7565b8484611ec7565b611681611dd7565b6000546001600160a01b039081169116146116d1576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b60165481565b6001600160a01b031660009081526007602052604090205460ff1690565b601a5460ff1681565b611737611dd7565b6000546001600160a01b03908116911614611787576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6117b1611dd7565b6000546001600160a01b03908116911614611801576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206132b6833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61187a611dd7565b6000546001600160a01b039081169116146118ca576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601c8054911515600160a81b0260ff60a81b19909216919091179055565b6118f0611dd7565b6000546001600160a01b03908116911614611940576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561199c5760405162461bcd60e51b81526004018080602001828103825260228152602001806133486022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611a0a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a64576001600160a01b038116600090815260036020526040902054611a4a90610cda565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611ad2611dd7565b6000546001600160a01b03908116911614611b22576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b038116611b675760405162461bcd60e51b81526004018080602001828103825260268152602001806131b16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206132b683398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611bb8611dd7565b6000546001600160a01b03908116911614611c08576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b476112ad81612b3a565b4790565b611c1e611dd7565b6000546001600160a01b03908116911614611c6e576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611cdb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015611dd357816001600160a01b031660088281548110611cff57fe5b6000918252602090912001546001600160a01b03161415611dcb57600880546000198101908110611d2c57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d5257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480611da457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611dd3565b600101611cde565b5050565b3390565b6001600160a01b038316611e205760405162461bcd60e51b81526004018080602001828103825260248152602001806133246024913960400191505060405180910390fd5b6001600160a01b038216611e655760405162461bcd60e51b81526004018080602001828103825260228152602001806131d76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f0c5760405162461bcd60e51b81526004018080602001828103825260258152602001806132ff6025913960400191505060405180910390fd5b60008111611f4b5760405162461bcd60e51b81526004018080602001828103825260298152602001806132d66029913960400191505060405180910390fd5b601a5460ff1615156001148015611f7b5750611f6561143c565b6001600160a01b0316836001600160a01b031614155b8015611fa05750611f8a61143c565b6001600160a01b0316826001600160a01b031614155b15612262577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415612075576001600160a01b0382166000908152600c6020526040902054601b544291909103908111612054576040805162461bcd60e51b815260206004820152601c60248201527f596f75206d7573742077616974206265747765656e2074726164657300000000604482015290519081900360640190fd5b506001600160a01b0382166000908152600c60205260409020429055612262565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415612145576001600160a01b0383166000908152600c6020526040902054601b544291909103908111612124576040805162461bcd60e51b815260206004820152601c60248201527f596f75206d7573742077616974206265747765656e2074726164657300000000604482015290519081900360640190fd5b506001600160a01b0383166000908152600c60205260409020429055612262565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141580156121b957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15612262576001600160a01b038084166000908152600c6020526040808220549285168252902054601b5442928303929190910390821180156121fd5750601b5481115b6122385760405162461bcd60e51b815260040180806020018281038252602c8152602001806131f9602c913960400191505060405180910390fd5b50506001600160a01b038084166000908152600c6020526040808220429081905592851682529020555b6001600160a01b03831660009081526009602052604090205460ff16151560011415612335576001600160a01b0383166000908152600a6020908152604080832054600d90925290912054429190910390811015612320576001600160a01b0384166000908152600b6020526040902054826122dd8661133b565b03101561231b5760405162461bcd60e51b81526004018080602001828103825260318152602001806131566031913960400191505060405180910390fd5b612333565b6001600160a01b03841660005260096020525b505b61233d61143c565b6001600160a01b0316836001600160a01b031614158015612377575061236161143c565b6001600160a01b0316826001600160a01b031614155b156123bd57601d548111156123bd5760405162461bcd60e51b81526004018080602001828103825260288152602001806132256028913960400191505060405180910390fd5b60006123c83061133b565b9050601d5481106123d85750601d545b601e54601c549082101590600160a01b900460ff161580156124035750601c54600160a81b900460ff165b801561240c5750805b801561244a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561246a5761245882612903565b4780156124685761246847612b3a565b505b6001600160a01b03851660009081526006602052604090205460019060ff16806124ac57506001600160a01b03851660009081526006602052604090205460ff165b156124b5575060005b6124c186868684612625565b505050505050565b600081848411156125585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561251d578181015183820152602001612505565b50505050905090810190601f16801561254a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061256d612b74565b909250905061257c8282612583565b9250505090565b60006125c583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cd7565b9392505050565b6000826125db57506000610bc0565b828202828482816125e857fe5b04146125c55760405162461bcd60e51b815260040180806020018281038252602181526020018061324d6021913960400191505060405180910390fd5b8061263257612632612d3c565b6000612654606461264e601654866125cc90919063ffffffff16565b90612583565b6001600160a01b03861660009081526007602052604090205490915060ff16801561269857506001600160a01b03841660009081526007602052604090205460ff16155b156126b6576126b185856126ac86856128c1565b612d85565b6127d3565b6001600160a01b03851660009081526007602052604090205460ff161580156126f757506001600160a01b03841660009081526007602052604090205460ff165b15612710576126b1858561270b86856128c1565b612ea9565b6001600160a01b03851660009081526007602052604090205460ff1615801561275257506001600160a01b03841660009081526007602052604090205460ff16155b1561276b576126b1858561276686856128c1565b612f52565b6001600160a01b03851660009081526007602052604090205460ff1680156127ab57506001600160a01b03841660009081526007602052604090205460ff165b156127c4576126b185856127bf86856128c1565b612f96565b6127d3858561276686856128c1565b6000601481905560158190556127eb90869083612f52565b6017546014556019546015558161280457612804613009565b5050505050565b6000828201838110156125c5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006128828a60145460155461301d565b9250925092506000612892612560565b905060008060006128a48e878661306c565b919e509c509a509598509396509194505050505091939550919395565b60006125c583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c9565b601c805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061294457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129bd57600080fd5b505afa1580156129d1573d6000803e3d6000fd5b505050506040513d60208110156129e757600080fd5b50518151829060019081106129f857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a43307f000000000000000000000000000000000000000000000000000000000000000084611ddb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612ae8578181015183820152602001612ad0565b505050509050019650505050505050600060405180830381600087803b158015612b1157600080fd5b505af1158015612b25573d6000803e3d6000fd5b5050601c805460ff60a01b1916905550505050565b601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611dd3573d6000803e3d6000fd5b600f54600e546000918291825b600854811015612ca557826003600060088481548110612b9d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612c025750816004600060088481548110612bdb57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612c1957600f54600e5494509450505050612cd3565b612c596003600060088481548110612c2d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906128c1565b9250612c9b6004600060088481548110612c6f57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906128c1565b9150600101612b81565b50600e54600f54612cb591612583565b821015612ccd57600f54600e54935093505050612cd3565b90925090505b9091565b60008183612d265760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561251d578181015183820152602001612505565b506000838581612d3257fe5b0495945050505050565b601454158015612d4c5750601554155b8015612d585750601654155b15612d6257612d83565b60148054601755601580546018556016805460195560009283905590829055555b565b600080600080600080612d9787612865565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612dc990886128c1565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612df890876128c1565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e27908661280b565b6001600160a01b038916600090815260036020526040902055612e49816130a8565b612e538483613131565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ebb87612865565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612eed90876128c1565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f23908461280b565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e27908661280b565b600080600080600080612f6487612865565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612df890876128c1565b600080600080600080612fa887612865565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fda90886128c1565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612eed90876128c1565b601754601455601854601555601954601655565b6000808080613031606461264e89896125cc565b90506000613044606461264e8a896125cc565b9050600061305c826130568b866128c1565b906128c1565b9992985090965090945050505050565b600080808061307b87866125cc565b9050600061308987876125cc565b9050600061309783836128c1565b929992985090965090945050505050565b60006130b2612560565b905060006130c083836125cc565b306000908152600360205260409020549091506130dd908261280b565b3060009081526003602090815260408083209390935560079052205460ff161561312c573060009081526004602052604090205461311b908461280b565b306000908152600460205260409020555b505050565b600f5461313e90836128c1565b600f5560105461314e908261280b565b601055505056fe596f75204d757374205761697420536f6d652054696d652046726f6d204f726967696e616c205472616e73616374696f6e416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373596f75204d757374205761697420536f6d652054696d65204265747765656e205472616e73616374696f6e735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e6305706c84141e99bdb9be788ee518f4d3ce7dbf604c16b3b6422f32f6aae1a64736f6c634300060c0033000000000000000000000000e2dec0750f92ea0971e4bd221471e272e9033c64
Deployed Bytecode
0x6080604052600436106102815760003560e01c8063715018a61161014f578063c0b0fda2116100c1578063e01af92c1161007a578063e01af92c14610a23578063f2cc0c1814610a4f578063f2fde38b14610a82578063f429389014610ab5578063f815a84214610aca578063f84354f114610adf57610288565b8063c0b0fda21461092e578063cba0e99614610943578063cf996edd14610976578063d047e4b71461098b578063dd467064146109be578063dd62ed3e146109e857610288565b8063a24a8d0f11610113578063a24a8d0f1461082d578063a457c2d714610857578063a69df4b514610890578063a9059cbb146108a5578063af9549e0146108de578063b6c523241461091957610288565b8063715018a6146107c457806376d4ab99146107d95780638da5cb5b146107ee57806395d89b41146108035780639c7a91fe1461081857610288565b806339509351116101f35780635066d6ff116101ac5780635066d6ff146106d157806351bc3c851461070a5780635342acb41461071f5780635880b873146107525780636ddd17131461077c57806370a082311461079157610288565b806339509351146105fd5780633b124fe7146106365780633bd5d1731461064b57806340f8007a146106755780634549b0391461068a57806349bd5a5e146106bc57610288565b80631bbae6e0116102455780631bbae6e0146103d157806323b872dd146103fd5780632d838119146104405780632e6c27741461046a5780632ee9cfdb146105a0578063313ce567146105d257610288565b806306fdde031461028d578063095ea7b31461031757806313114a9d146103645780631694505e1461038b57806318160ddd146103bc57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610b12565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102dc5781810151838201526020016102c4565b50505050905090810190601f1680156103095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032357600080fd5b506103506004803603604081101561033a57600080fd5b506001600160a01b038135169060200135610ba8565b604080519115158252519081900360200190f35b34801561037057600080fd5b50610379610bc6565b60408051918252519081900360200190f35b34801561039757600080fd5b506103a0610bcc565b604080516001600160a01b039092168252519081900360200190f35b3480156103c857600080fd5b50610379610bf0565b3480156103dd57600080fd5b506103fb600480360360208110156103f457600080fd5b5035610bf6565b005b34801561040957600080fd5b506103506004803603606081101561042057600080fd5b506001600160a01b03813581169160208101359091169060400135610c53565b34801561044c57600080fd5b506103796004803603602081101561046357600080fd5b5035610cda565b34801561047657600080fd5b506103fb6004803603606081101561048d57600080fd5b8101906020810181356401000000008111156104a857600080fd5b8201836020820111156104ba57600080fd5b803590602001918460208302840111640100000000831117156104dc57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561052c57600080fd5b82018360208201111561053e57600080fd5b8035906020019184602083028401116401000000008311171561056057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505091359250610d3c915050565b3480156105ac57600080fd5b506103fb600480360360408110156105c357600080fd5b50803515159060200135610f5f565b3480156105de57600080fd5b506105e7610fd1565b6040805160ff9092168252519081900360200190f35b34801561060957600080fd5b506103506004803603604081101561062057600080fd5b506001600160a01b038135169060200135610fda565b34801561064257600080fd5b50610379611028565b34801561065757600080fd5b506103fb6004803603602081101561066e57600080fd5b503561102e565b34801561068157600080fd5b50610379611108565b34801561069657600080fd5b50610379600480360360408110156106ad57600080fd5b5080359060200135151561110e565b3480156106c857600080fd5b506103a06111a0565b3480156106dd57600080fd5b506103fb600480360360408110156106f457600080fd5b506001600160a01b0381351690602001356111c4565b34801561071657600080fd5b506103fb61123f565b34801561072b57600080fd5b506103506004803603602081101561074257600080fd5b50356001600160a01b03166112b0565b34801561075e57600080fd5b506103fb6004803603602081101561077557600080fd5b50356112ce565b34801561078857600080fd5b5061035061132b565b34801561079d57600080fd5b50610379600480360360208110156107b457600080fd5b50356001600160a01b031661133b565b3480156107d057600080fd5b506103fb61139d565b3480156107e557600080fd5b506103a061142d565b3480156107fa57600080fd5b506103a061143c565b34801561080f57600080fd5b506102a261144b565b34801561082457600080fd5b506103796114ac565b34801561083957600080fd5b506103fb6004803603602081101561085057600080fd5b50356114b2565b34801561086357600080fd5b506103506004803603604081101561087a57600080fd5b506001600160a01b03813516906020013561150f565b34801561089c57600080fd5b506103fb611577565b3480156108b157600080fd5b50610350600480360360408110156108c857600080fd5b506001600160a01b038135169060200135611665565b3480156108ea57600080fd5b506103fb6004803603604081101561090157600080fd5b506001600160a01b0381351690602001351515611679565b34801561092557600080fd5b506103796116fc565b34801561093a57600080fd5b50610379611702565b34801561094f57600080fd5b506103506004803603602081101561096657600080fd5b50356001600160a01b0316611708565b34801561098257600080fd5b50610350611726565b34801561099757600080fd5b506103fb600480360360208110156109ae57600080fd5b50356001600160a01b031661172f565b3480156109ca57600080fd5b506103fb600480360360208110156109e157600080fd5b50356117a9565b3480156109f457600080fd5b5061037960048036036040811015610a0b57600080fd5b506001600160a01b0381358116916020013516611847565b348015610a2f57600080fd5b506103fb60048036036020811015610a4657600080fd5b50351515611872565b348015610a5b57600080fd5b506103fb60048036036020811015610a7257600080fd5b50356001600160a01b03166118e8565b348015610a8e57600080fd5b506103fb60048036036020811015610aa557600080fd5b50356001600160a01b0316611aca565b348015610ac157600080fd5b506103fb611bb0565b348015610ad657600080fd5b50610379611c12565b348015610aeb57600080fd5b506103fb60048036036020811015610b0257600080fd5b50356001600160a01b0316611c16565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b5050505050905090565b6000610bbc610bb5611dd7565b8484611ddb565b5060015b92915050565b60105490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5490565b610bfe611dd7565b6000546001600160a01b03908116911614610c4e576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601d55565b6000610c60848484611ec7565b610cd084610c6c611dd7565b610ccb8560405180606001604052806028815260200161326e602891396001600160a01b038a16600090815260056020526040812090610caa611dd7565b6001600160a01b0316815260208101919091526040016000205491906124c9565b611ddb565b5060019392505050565b6000600f54821115610d1d5760405162461bcd60e51b815260040180806020018281038252602a815260200180613187602a913960400191505060405180910390fd5b6000610d27612560565b9050610d338382612583565b9150505b919050565b610d44611dd7565b6000546001600160a01b03908116911614610d94576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b8151835114610dea576040805162461bcd60e51b815260206004820152601a60248201527f417272617973206d75737420686176652073616d652073697a65000000000000604482015290519081900360640190fd5b60005b8351811015610f5957600160096000868481518110610e0857fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555042600a6000868481518110610e5857fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555081610e1002600d6000868481518110610e9957fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055506000610ef1633b9aca00858481518110610edb57fe5b60200260200101516125cc90919063ffffffff16565b905080600b6000878581518110610f0457fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550610f5033868481518110610f4057fe5b6020026020010151836000612625565b50600101610ded565b50505050565b610f67611dd7565b6000546001600160a01b03908116911614610fb7576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601a805460ff191692151592909217909155603c02601b55565b60135460ff1690565b6000610bbc610fe7611dd7565b84610ccb8560056000610ff8611dd7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061280b565b60145481565b6000611038611dd7565b6001600160a01b03811660009081526007602052604090205490915060ff16156110935760405162461bcd60e51b815260040180806020018281038252602c81526020018061336a602c913960400191505060405180910390fd5b600061109e83612865565b505050506001600160a01b0384166000908152600360205260409020549192506110ca919050826128c1565b6001600160a01b038316600090815260036020526040902055600f546110f090826128c1565b600f55601054611100908461280b565b601055505050565b60155481565b6000600e54831115611167576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161118657600061117784612865565b50939550610bc0945050505050565b600061119184612865565b50929550610bc0945050505050565b7f0000000000000000000000004a091bbd2841dfc7f0873399f5962214ba784b5d81565b6111cc611dd7565b6000546001600160a01b0390811691161461121c576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b039091166000908152600d60205260409020610e109091029055565b611247611dd7565b6000546001600160a01b03908116911614611297576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b60006112a23061133b565b90506112ad81612903565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b6112d6611dd7565b6000546001600160a01b03908116911614611326576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601455565b601c54600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561137b57506001600160a01b038116600090815260046020526040902054610d37565b6001600160a01b038216600090815260036020526040902054610bc090610cda565b6113a5611dd7565b6000546001600160a01b039081169116146113f5576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206132b6833981519152908390a3600080546001600160a01b0319169055565b601c546001600160a01b031681565b6000546001600160a01b031690565b60128054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b601b5481565b6114ba611dd7565b6000546001600160a01b0390811691161461150a576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601555565b6000610bbc61151c611dd7565b84610ccb856040518060600160405280602581526020016133b96025913960056000611546611dd7565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906124c9565b6001546001600160a01b031633146115c05760405162461bcd60e51b81526004018080602001828103825260238152602001806133966023913960400191505060405180910390fd5b6002544211611616576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206132b683398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610bbc611672611dd7565b8484611ec7565b611681611dd7565b6000546001600160a01b039081169116146116d1576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b60165481565b6001600160a01b031660009081526007602052604090205460ff1690565b601a5460ff1681565b611737611dd7565b6000546001600160a01b03908116911614611787576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b6117b1611dd7565b6000546001600160a01b03908116911614611801576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206132b6833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61187a611dd7565b6000546001600160a01b039081169116146118ca576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b601c8054911515600160a81b0260ff60a81b19909216919091179055565b6118f0611dd7565b6000546001600160a01b03908116911614611940576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038216141561199c5760405162461bcd60e51b81526004018080602001828103825260228152602001806133486022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611a0a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611a64576001600160a01b038116600090815260036020526040902054611a4a90610cda565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611ad2611dd7565b6000546001600160a01b03908116911614611b22576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b038116611b675760405162461bcd60e51b81526004018080602001828103825260268152602001806131b16026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206132b683398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611bb8611dd7565b6000546001600160a01b03908116911614611c08576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b476112ad81612b3a565b4790565b611c1e611dd7565b6000546001600160a01b03908116911614611c6e576040805162461bcd60e51b81526020600482018190526024820152600080516020613296833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611cdb576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015611dd357816001600160a01b031660088281548110611cff57fe5b6000918252602090912001546001600160a01b03161415611dcb57600880546000198101908110611d2c57fe5b600091825260209091200154600880546001600160a01b039092169183908110611d5257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480611da457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611dd3565b600101611cde565b5050565b3390565b6001600160a01b038316611e205760405162461bcd60e51b81526004018080602001828103825260248152602001806133246024913960400191505060405180910390fd5b6001600160a01b038216611e655760405162461bcd60e51b81526004018080602001828103825260228152602001806131d76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611f0c5760405162461bcd60e51b81526004018080602001828103825260258152602001806132ff6025913960400191505060405180910390fd5b60008111611f4b5760405162461bcd60e51b81526004018080602001828103825260298152602001806132d66029913960400191505060405180910390fd5b601a5460ff1615156001148015611f7b5750611f6561143c565b6001600160a01b0316836001600160a01b031614155b8015611fa05750611f8a61143c565b6001600160a01b0316826001600160a01b031614155b15612262577f0000000000000000000000004a091bbd2841dfc7f0873399f5962214ba784b5d6001600160a01b0316836001600160a01b03161415612075576001600160a01b0382166000908152600c6020526040902054601b544291909103908111612054576040805162461bcd60e51b815260206004820152601c60248201527f596f75206d7573742077616974206265747765656e2074726164657300000000604482015290519081900360640190fd5b506001600160a01b0382166000908152600c60205260409020429055612262565b7f0000000000000000000000004a091bbd2841dfc7f0873399f5962214ba784b5d6001600160a01b0316826001600160a01b03161415612145576001600160a01b0383166000908152600c6020526040902054601b544291909103908111612124576040805162461bcd60e51b815260206004820152601c60248201527f596f75206d7573742077616974206265747765656e2074726164657300000000604482015290519081900360640190fd5b506001600160a01b0383166000908152600c60205260409020429055612262565b7f0000000000000000000000004a091bbd2841dfc7f0873399f5962214ba784b5d6001600160a01b0316836001600160a01b0316141580156121b957507f0000000000000000000000004a091bbd2841dfc7f0873399f5962214ba784b5d6001600160a01b0316826001600160a01b031614155b15612262576001600160a01b038084166000908152600c6020526040808220549285168252902054601b5442928303929190910390821180156121fd5750601b5481115b6122385760405162461bcd60e51b815260040180806020018281038252602c8152602001806131f9602c913960400191505060405180910390fd5b50506001600160a01b038084166000908152600c6020526040808220429081905592851682529020555b6001600160a01b03831660009081526009602052604090205460ff16151560011415612335576001600160a01b0383166000908152600a6020908152604080832054600d90925290912054429190910390811015612320576001600160a01b0384166000908152600b6020526040902054826122dd8661133b565b03101561231b5760405162461bcd60e51b81526004018080602001828103825260318152602001806131566031913960400191505060405180910390fd5b612333565b6001600160a01b03841660005260096020525b505b61233d61143c565b6001600160a01b0316836001600160a01b031614158015612377575061236161143c565b6001600160a01b0316826001600160a01b031614155b156123bd57601d548111156123bd5760405162461bcd60e51b81526004018080602001828103825260288152602001806132256028913960400191505060405180910390fd5b60006123c83061133b565b9050601d5481106123d85750601d545b601e54601c549082101590600160a01b900460ff161580156124035750601c54600160a81b900460ff165b801561240c5750805b801561244a57507f0000000000000000000000004a091bbd2841dfc7f0873399f5962214ba784b5d6001600160a01b0316856001600160a01b031614155b1561246a5761245882612903565b4780156124685761246847612b3a565b505b6001600160a01b03851660009081526006602052604090205460019060ff16806124ac57506001600160a01b03851660009081526006602052604090205460ff165b156124b5575060005b6124c186868684612625565b505050505050565b600081848411156125585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561251d578181015183820152602001612505565b50505050905090810190601f16801561254a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061256d612b74565b909250905061257c8282612583565b9250505090565b60006125c583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cd7565b9392505050565b6000826125db57506000610bc0565b828202828482816125e857fe5b04146125c55760405162461bcd60e51b815260040180806020018281038252602181526020018061324d6021913960400191505060405180910390fd5b8061263257612632612d3c565b6000612654606461264e601654866125cc90919063ffffffff16565b90612583565b6001600160a01b03861660009081526007602052604090205490915060ff16801561269857506001600160a01b03841660009081526007602052604090205460ff16155b156126b6576126b185856126ac86856128c1565b612d85565b6127d3565b6001600160a01b03851660009081526007602052604090205460ff161580156126f757506001600160a01b03841660009081526007602052604090205460ff165b15612710576126b1858561270b86856128c1565b612ea9565b6001600160a01b03851660009081526007602052604090205460ff1615801561275257506001600160a01b03841660009081526007602052604090205460ff16155b1561276b576126b1858561276686856128c1565b612f52565b6001600160a01b03851660009081526007602052604090205460ff1680156127ab57506001600160a01b03841660009081526007602052604090205460ff165b156127c4576126b185856127bf86856128c1565b612f96565b6127d3858561276686856128c1565b6000601481905560158190556127eb90869083612f52565b6017546014556019546015558161280457612804613009565b5050505050565b6000828201838110156125c5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006128828a60145460155461301d565b9250925092506000612892612560565b905060008060006128a48e878661306c565b919e509c509a509598509396509194505050505091939550919395565b60006125c583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c9565b601c805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061294457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129bd57600080fd5b505afa1580156129d1573d6000803e3d6000fd5b505050506040513d60208110156129e757600080fd5b50518151829060019081106129f857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a43307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ddb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612ae8578181015183820152602001612ad0565b505050509050019650505050505050600060405180830381600087803b158015612b1157600080fd5b505af1158015612b25573d6000803e3d6000fd5b5050601c805460ff60a01b1916905550505050565b601c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611dd3573d6000803e3d6000fd5b600f54600e546000918291825b600854811015612ca557826003600060088481548110612b9d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612c025750816004600060088481548110612bdb57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612c1957600f54600e5494509450505050612cd3565b612c596003600060088481548110612c2d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906128c1565b9250612c9b6004600060088481548110612c6f57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906128c1565b9150600101612b81565b50600e54600f54612cb591612583565b821015612ccd57600f54600e54935093505050612cd3565b90925090505b9091565b60008183612d265760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561251d578181015183820152602001612505565b506000838581612d3257fe5b0495945050505050565b601454158015612d4c5750601554155b8015612d585750601654155b15612d6257612d83565b60148054601755601580546018556016805460195560009283905590829055555b565b600080600080600080612d9787612865565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612dc990886128c1565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612df890876128c1565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612e27908661280b565b6001600160a01b038916600090815260036020526040902055612e49816130a8565b612e538483613131565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612ebb87612865565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612eed90876128c1565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612f23908461280b565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612e27908661280b565b600080600080600080612f6487612865565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612df890876128c1565b600080600080600080612fa887612865565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612fda90886128c1565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612eed90876128c1565b601754601455601854601555601954601655565b6000808080613031606461264e89896125cc565b90506000613044606461264e8a896125cc565b9050600061305c826130568b866128c1565b906128c1565b9992985090965090945050505050565b600080808061307b87866125cc565b9050600061308987876125cc565b9050600061309783836128c1565b929992985090965090945050505050565b60006130b2612560565b905060006130c083836125cc565b306000908152600360205260409020549091506130dd908261280b565b3060009081526003602090815260408083209390935560079052205460ff161561312c573060009081526004602052604090205461311b908461280b565b306000908152600460205260409020555b505050565b600f5461313e90836128c1565b600f5560105461314e908261280b565b601055505056fe596f75204d757374205761697420536f6d652054696d652046726f6d204f726967696e616c205472616e73616374696f6e416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373596f75204d757374205761697420536f6d652054696d65204265747765656e205472616e73616374696f6e735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e6305706c84141e99bdb9be788ee518f4d3ce7dbf604c16b3b6422f32f6aae1a64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e2dec0750f92ea0971e4bd221471e272e9033c64
-----Decoded View---------------
Arg [0] : charityWalletAddress (address): 0xe2dEC0750F92eA0971e4bD221471e272E9033C64
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e2dec0750f92ea0971e4bd221471e272e9033c64
Deployed Bytecode Sourcemap
26519:22427:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29547:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30551:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30551:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31899:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28102:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28102:51:0;;;;;;;;;;;;;;29860:103;;;;;;;;;;;;;:::i;48819:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48819:120:0;;:::i;:::-;;30736:329;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30736:329:0;;;;;;;;;;;;;;;;;:::i;32907:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32907:269:0;;:::i;47806:638::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47806:638:0;;;;;;;;-1:-1:-1;47806:638:0;;-1:-1:-1;;47806:638:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47806:638:0;;-1:-1:-1;;47806:638:0;;;-1:-1:-1;47806:638:0;;-1:-1:-1;;47806:638:0:i;48628:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48628:171:0;;;;;;;;;:::i;29757:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31077:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31077:230:0;;;;;;;;:::i;27663:26::-;;;;;;;;;;;;;:::i;32006:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32006:405:0;;:::i;27701:30::-;;;;;;;;;;;;;:::i;32423:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32423:472:0;;;;;;;;;:::i;28164:38::-;;;;;;;;;;;;;:::i;48464:144::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48464:144:0;;;;;;;;:::i;40007:168::-;;;;;;;;;;;;;:::i;34776:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34776:131:0;-1:-1:-1;;;;;34776:131:0;;:::i;47381:100::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47381:100:0;;:::i;28245:30::-;;;;;;;;;;;;;:::i;29975:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29975:210:0;-1:-1:-1;;;;;29975:210:0;;:::i;16354:160::-;;;;;;;;;;;;;:::i;28045:44::-;;;;;;;;;;;;;:::i;15652:87::-;;;;;;;;;;;;;:::i;29650:95::-;;;;;;;;;;;;;:::i;28005:27::-;;;;;;;;;;;;;:::i;47493:116::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47493:116:0;;:::i;31319:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31319:281:0;;;;;;;;:::i;17461:313::-;;;;;;;;;;;;;:::i;30197:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30197:179:0;;;;;;;;:::i;31742:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31742:145:0;;;;;;;;;;:::i;16958:97::-;;;;;;;;;;;;;:::i;27742:27::-;;;;;;;;;;;;;:::i;31612:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31612:118:0;-1:-1:-1;;;;;31612:118:0;;:::i;27956:38::-;;;;;;;;;;;;;:::i;47629:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47629:157:0;-1:-1:-1;;;;;47629:157:0;;:::i;17139:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17139:234:0;;:::i;30388:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30388:151:0;;;;;;;;;;:::i;40378:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40378:106:0;;;;:::i;33188:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33188:475:0;-1:-1:-1;;;;;33188:475:0;;:::i;16686:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16686:260:0;-1:-1:-1;;;;;16686:260:0;;:::i;40195:171::-;;;;;;;;;;;;;:::i;47243:118::-;;;;;;;;;;;;;:::i;33675:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33675:522:0;-1:-1:-1;;;;;33675:522:0;;:::i;29547:91::-;29621:5;29614:12;;;;;;;;-1:-1:-1;;29614:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29584:13;;29614:12;;29621:5;;29614:12;;29621:5;29614:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29547:91;:::o;30551:173::-;30626:4;30647:39;30656:12;:10;:12::i;:::-;30670:7;30679:6;30647:8;:39::i;:::-;-1:-1:-1;30708:4:0;30551:173;;;;;:::o;31899:95::-;31972:10;;31899:95;:::o;28102:51::-;;;:::o;29860:103::-;29944:7;;29860:103;:::o;48819:120::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;48901:12:::1;:26:::0;48819:120::o;30736:329::-;30834:4;30855:36;30865:6;30873:9;30884:6;30855:9;:36::i;:::-;30906:121;30915:6;30923:12;:10;:12::i;:::-;30937:89;30975:6;30937:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30937:19:0;;;;;;:11;:19;;;;;;30957:12;:10;:12::i;:::-;-1:-1:-1;;;;;30937:33:0;;;;;;;;;;;;-1:-1:-1;30937:33:0;;;:89;:37;:89::i;:::-;30906:8;:121::i;:::-;-1:-1:-1;31049:4:0;30736:329;;;;;:::o;32907:269::-;32973:7;33016;;33005;:18;;32997:73;;;;-1:-1:-1;;;32997:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33085:19;33108:10;:8;:10::i;:::-;33085:33;-1:-1:-1;33140:24:0;:7;33085:33;33140:11;:24::i;:::-;33133:31;;;32907:269;;;;:::o;47806:638::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;47957:7:::1;:14;47936:10;:17;:35;47928:74;;;::::0;;-1:-1:-1;;;47928:74:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48021:6;48017:416;48036:10;:17;48033:1;:20;48017:416;;;48108:4;48078:12;:27;48091:10;48102:1;48091:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;48078:27:0::1;-1:-1:-1::0;;;;;48078:27:0::1;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;48160:15;48131:11;:26;48143:10;48154:1;48143:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;48131:26:0::1;-1:-1:-1::0;;;;;48131:26:0::1;;;;;;;;;;;;:44;;;;48224:4;48231:7;48224:14;48194:12;:27;48207:10;48218:1;48207:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;48194:27:0::1;-1:-1:-1::0;;;;;48194:27:0::1;;;;;;;;;;;;:44;;;;48257:11;48271:21;48286:5;48271:7;48279:1;48271:10;;;;;;;;;;;;;;:14;;:21;;;;:::i;:::-;48257:35;;48342:3;48311:13;:28;48325:10;48336:1;48325:13;;;;;;;;;;;;;;-1:-1:-1::0;;;;;48311:28:0::1;-1:-1:-1::0;;;;;48311:28:0::1;;;;;;;;;;;;:34;;;;48364:53;48379:10;48391;48402:1;48391:13;;;;;;;;;;;;;;48406:3;48411:5;48364:14;:53::i;:::-;-1:-1:-1::0;48055:3:0::1;;48017:416;;;;47806:638:::0;;;:::o;48628:171::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;48715:18:::1;:26:::0;;-1:-1:-1;;48715:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;48778:9:::1;48771:16;48756:12;:31:::0;48628:171::o;29757:91::-;29827:9;;;;29757:91;:::o;31077:230::-;31165:4;31186:83;31195:12;:10;:12::i;:::-;31209:7;31218:50;31257:10;31218:11;:25;31230:12;:10;:12::i;:::-;-1:-1:-1;;;;;31218:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31218:25:0;;;:34;;;;;;;;;;;:38;:50::i;27663:26::-;;;;:::o;32006:405::-;32062:14;32079:12;:10;:12::i;:::-;-1:-1:-1;;;;;32115:19:0;;;;;;:11;:19;;;;;;32062:29;;-1:-1:-1;32115:19:0;;32114:20;32106:77;;;;-1:-1:-1;;;32106:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32199:15;32223:19;32234:7;32223:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32275:15:0;;;;;;:7;:15;;;;;;32198:44;;-1:-1:-1;32275:28:0;;:15;-1:-1:-1;32198:44:0;32275:19;:28::i;:::-;-1:-1:-1;;;;;32257:15:0;;;;;;:7;:15;;;;;:46;32328:7;;:20;;32340:7;32328:11;:20::i;:::-;32318:7;:30;32376:10;;:23;;32391:7;32376:14;:23::i;:::-;32363:10;:36;-1:-1:-1;;;32006:405:0:o;27701:30::-;;;;:::o;32423:472::-;32513:7;32556;;32545;:18;;32537:62;;;;;-1:-1:-1;;;32537:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32619:17;32614:270;;32658:15;32682:19;32693:7;32682:10;:19::i;:::-;-1:-1:-1;32657:44:0;;-1:-1:-1;32720:14:0;;-1:-1:-1;;;;;32720:14:0;32614:270;32777:23;32808:19;32819:7;32808:10;:19::i;:::-;-1:-1:-1;32775:52:0;;-1:-1:-1;32846:22:0;;-1:-1:-1;;;;;32846:22:0;28164:38;;;:::o;48464:144::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;48557:22:0;;::::1;;::::0;;;:12:::1;:22;::::0;;;;48589:7:::1;48582:14:::0;;::::1;48557:39:::0;;48464:144::o;40007:168::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;40065:23:::1;40091:24;40109:4;40091:9;:24::i;:::-;40065:50;;40130:33;40147:15;40130:16;:33::i;:::-;15964:1;40007:168::o:0;34776:131::-;-1:-1:-1;;;;;34868:27:0;34840:4;34868:27;;;:18;:27;;;;;;;;;34776:131::o;47381:100::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;47453:7:::1;:16:::0;47381:100::o;28245:30::-;;;-1:-1:-1;;;28245:30:0;;;;;:::o;29975:210::-;-1:-1:-1;;;;;30069:20:0;;30041:7;30069:20;;;:11;:20;;;;;;;;30065:49;;;-1:-1:-1;;;;;;30098:16:0;;;;;;:7;:16;;;;;;30091:23;;30065:49;-1:-1:-1;;;;;30156:16:0;;;;;;:7;:16;;;;;;30136:37;;:19;:37::i;16354:160::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;16465:1:::1;16449:6:::0;;16428:40:::1;::::0;-1:-1:-1;;;;;16449:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16428:40:0;16465:1;;16428:40:::1;16500:1;16483:19:::0;;-1:-1:-1;;;;;;16483:19:0::1;::::0;;16354:160::o;28045:44::-;;;-1:-1:-1;;;;;28045:44:0;;:::o;15652:87::-;15690:7;15721:6;-1:-1:-1;;;;;15721:6:0;15652:87;:::o;29650:95::-;29726:7;29719:14;;;;;;;;-1:-1:-1;;29719:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29689:13;;29719:14;;29726:7;;29719:14;;29726:7;29719:14;;;;;;;;;;;;;;;;;;;;;;;;28005:27;;;;:::o;47493:116::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;47573:11:::1;:24:::0;47493:116::o;31319:281::-;31412:4;31433:129;31442:12;:10;:12::i;:::-;31456:7;31465:96;31504:15;31465:96;;;;;;;;;;;;;;;;;:11;:25;31477:12;:10;:12::i;:::-;-1:-1:-1;;;;;31465:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31465:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17461:313::-;17517:14;;-1:-1:-1;;;;;17517:14:0;17535:10;17517:28;17509:76;;;;-1:-1:-1;;;17509:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17614:9;;17608:3;:15;17600:60;;;;;-1:-1:-1;;;17600:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17709:14;;;17701:6;;17680:44;;-1:-1:-1;;;;;17709:14:0;;;;17701:6;;;;-1:-1:-1;;;;;;;;;;;17680:44:0;;17748:14;;;17739:23;;-1:-1:-1;;;;;;17739:23:0;-1:-1:-1;;;;;17748:14:0;;;17739:23;;;;;;17461:313::o;30197:179::-;30275:4;30296:42;30306:12;:10;:12::i;:::-;30320:9;30331:6;30296:9;:42::i;31742:145::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31837:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;31837:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31742:145::o;16958:97::-;17034:9;;16958:97;:::o;27742:27::-;;;;:::o;31612:118::-;-1:-1:-1;;;;;31698:20:0;31670:4;31698:20;;;:11;:20;;;;;;;;;31612:118::o;27956:38::-;;;;;;:::o;47629:157::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;47730:21:::1;:44:::0;;-1:-1:-1;;;;;;47730:44:0::1;-1:-1:-1::0;;;;;47730:44:0;;;::::1;::::0;;;::::1;::::0;;47629:157::o;17139:234::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;17224:6:::1;::::0;;;17207:23;;-1:-1:-1;;;;;;17207:23:0;;::::1;-1:-1:-1::0;;;;;17224:6:0;::::1;17207:23;::::0;;;17245:19:::1;::::0;;17291:3:::1;:10:::0;::::1;17279:9;:22:::0;17321:40:::1;::::0;17224:6;;-1:-1:-1;;;;;;;;;;;17321:40:0;17224:6;;17321:40:::1;17139:234:::0;:::o;30388:151::-;-1:-1:-1;;;;;30500:18:0;;;30469:7;30500:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30388:151::o;40378:106::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;40451:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;40451:21:0::1;-1:-1:-1::0;;;;40451:21:0;;::::1;::::0;;;::::1;::::0;;40378:106::o;33188:475::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;33284:42:::1;-1:-1:-1::0;;;;;33273:53:0;::::1;;;33265:100;;;;-1:-1:-1::0;;;33265:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33389:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33388:21;33380:61;;;::::0;;-1:-1:-1;;;33380:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33459:16:0;::::1;33478:1;33459:16:::0;;;:7:::1;:16;::::0;;;;;:20;33456:116:::1;;-1:-1:-1::0;;;;;33539:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33519:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33500:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33456:116:::1;-1:-1:-1::0;;;;;33586:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33586:27:0::1;33609:4;33586:27:::0;;::::1;::::0;;;33628:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33628:23:0::1;::::0;;::::1;::::0;;33188:475::o;16686:260::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16779:22:0;::::1;16771:73;;;;-1:-1:-1::0;;;16771:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16885:6;::::0;;16864:38:::1;::::0;-1:-1:-1;;;;;16864:38:0;;::::1;::::0;16885:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16864:38:0;::::1;16917:6;:17:::0;;-1:-1:-1;;;;;;16917:17:0::1;-1:-1:-1::0;;;;;16917:17:0;;;::::1;::::0;;;::::1;::::0;;16686:260::o;40195:171::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;40282:21:::1;40318:36;40282:21:::0;40318:16:::1;:36::i;47243:118::-:0;47328:21;47243:118;:::o;33675:522::-;15900:12;:10;:12::i;:::-;15890:6;;-1:-1:-1;;;;;15890:6:0;;;:22;;;15882:67;;;;;-1:-1:-1;;;15882:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15882:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33760:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33752:60;;;::::0;;-1:-1:-1;;;33752:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33832:9;33827:359;33851:9;:16:::0;33847:20;::::1;33827:359;;;33913:7;-1:-1:-1::0;;;;;33897:23:0::1;:9;33907:1;33897:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33897:12:0::1;:23;33893:278;;;33960:9;33970:16:::0;;-1:-1:-1;;33970:20:0;;;33960:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33945:9:::1;:12:::0;;-1:-1:-1;;;;;33960:31:0;;::::1;::::0;33955:1;;33945:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33945:46:0::1;-1:-1:-1::0;;;;;33945:46:0;;::::1;;::::0;;34014:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34057:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34057:28:0::1;::::0;;34108:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34108:15:0;;;;;-1:-1:-1;;;;;;34108:15:0::1;::::0;;;;;34146:5:::1;;33893:278;33869:3;;33827:359;;;;33675:522:::0;:::o;109:114::-;201:10;109:114;:::o;34919:357::-;-1:-1:-1;;;;;35016:19:0;;35008:68;;;;-1:-1:-1;;;35008:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35099:21:0;;35091:68;;;;-1:-1:-1;;;35091:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35176:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35232:32;;;;;;;;;;;;;;;;;34919:357;;;:::o;35288:3746::-;-1:-1:-1;;;;;35389:20:0;;35381:70;;;;-1:-1:-1;;;35381:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35483:1;35474:6;:10;35466:64;;;;-1:-1:-1;;;35466:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35548:18;;;;:26;;:18;:26;:47;;;;;35588:7;:5;:7::i;:::-;-1:-1:-1;;;;;35578:17:0;:6;-1:-1:-1;;;;;35578:17:0;;;35548:47;:71;;;;;35612:7;:5;:7::i;:::-;-1:-1:-1;;;;;35599:20:0;:9;-1:-1:-1;;;;;35599:20:0;;;35548:71;35545:1195;;;35652:13;-1:-1:-1;;;;;35642:23:0;:6;-1:-1:-1;;;;;35642:23:0;;35639:1086;;;-1:-1:-1;;;;;35728:19:0;;35689:18;35728:19;;;:8;:19;;;;;;35791:12;;35710:15;:37;;;;;35778:25;;35770:65;;;;;-1:-1:-1;;;35770:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35858:19:0;;;;;;:8;:19;;;;;35880:15;35858:37;;35639:1086;;;35954:13;-1:-1:-1;;;;;35941:26:0;:9;-1:-1:-1;;;;;35941:26:0;;35938:787;;;-1:-1:-1;;;;;36030:16:0;;35991:18;36030:16;;;:8;:16;;;;;;36090:12;;36012:15;:34;;;;;36077:25;;36069:65;;;;;-1:-1:-1;;;36069:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36157:16:0;;;;;;:8;:16;;;;;36176:15;36157:34;;35938:787;;;36247:13;-1:-1:-1;;;;;36237:23:0;:6;-1:-1:-1;;;;;36237:23:0;;;:53;;;;;36277:13;-1:-1:-1;;;;;36264:26:0;:9;-1:-1:-1;;;;;36264:26:0;;;36237:53;36234:491;;;-1:-1:-1;;;;;36354:16:0;;;36314:19;36354:16;;;:8;:16;;;;;;;36433:19;;;;;;;;36497:12;;36336:15;:34;;;;36415:37;;;;;36483:26;;:56;;;;;36527:12;;36513:11;:26;36483:56;36475:113;;;;-1:-1:-1;;;36475:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;36611:16:0;;;;;;;:8;:16;;;;;;36630:15;36611:34;;;;36668:19;;;;;;;:37;36234:491;-1:-1:-1;;;;;36861:20:0;;;;;;:12;:20;;;;;;;;:28;;:20;:28;36858:452;;;-1:-1:-1;;;;;36958:19:0;;36910:27;36958:19;;;:11;:19;;;;;;;;;37021:12;:20;;;;;;;36940:15;:37;;;;;36999:42;;36996:299;;;-1:-1:-1;;;;;37105:21:0;;;;;;:13;:21;;;;;;37094:6;37074:17;37119:6;37074:9;:17::i;:::-;:26;37073:53;;37065:115;;;;-1:-1:-1;;;37065:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36996:299;;;-1:-1:-1;;;;;37246:20:0;;;;:12;:20;;36996:299;36858:452;;37337:7;:5;:7::i;:::-;-1:-1:-1;;;;;37327:17:0;:6;-1:-1:-1;;;;;37327:17:0;;;:41;;;;;37361:7;:5;:7::i;:::-;-1:-1:-1;;;;;37348:20:0;:9;-1:-1:-1;;;;;37348:20:0;;;37327:41;37324:138;;;37405:12;;37395:6;:22;;37387:75;;;;-1:-1:-1;;;37387:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37748:28;37779:24;37797:4;37779:9;:24::i;:::-;37748:55;;37859:12;;37835:20;:36;37832:124;;-1:-1:-1;37928:12:0;;37832:124;38035:32;;38087:6;;38011:56;;;;;-1:-1:-1;;;38087:6:0;;;;38086:7;:22;;;;-1:-1:-1;38097:11:0;;-1:-1:-1;;;38097:11:0;;;;38086:22;:45;;;;;38112:19;38086:45;:72;;;;;38145:13;-1:-1:-1;;;;;38135:23:0;:6;-1:-1:-1;;;;;38135:23:0;;;38086:72;38082:458;;;38272:38;38289:20;38272:16;:38::i;:::-;38376:21;38419:22;;38416:109;;38466:39;38483:21;38466:16;:39::i;:::-;38082:458;;-1:-1:-1;;;;;38772:26:0;;38633:12;38772:26;;;:18;:26;;;;;;38648:4;;38772:26;;;:59;;-1:-1:-1;;;;;;38802:29:0;;;;;;:18;:29;;;;;;;;38772:59;38769:113;;;-1:-1:-1;38861:5:0;38769:113;38975:47;38990:6;38997:9;39007:6;39014:7;38975:14;:47::i;:::-;35288:3746;;;;;;:::o;4636:208::-;4722:7;4762:12;4754:6;;;;4746:29;;;;-1:-1:-1;;;4746:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4802:5:0;;;4636:208::o;46215:175::-;46256:7;46281:15;46298;46317:19;:17;:19::i;:::-;46280:56;;-1:-1:-1;46280:56:0;-1:-1:-1;46358:20:0;46280:56;;46358:11;:20::i;:::-;46351:27;;;;46215:175;:::o;6166:140::-;6224:7;6255:39;6259:1;6262;6255:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6248:46;6166:140;-1:-1:-1;;;6166:140:0:o;5138:511::-;5196:7;5457:6;5453:55;;-1:-1:-1;5491:1:0;5484:8;;5453:55;5536:5;;;5540:1;5536;:5;:1;5564:5;;;;;:10;5556:56;;;;-1:-1:-1;;;5556:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40504:1322;40620:7;40616:44;;40646:14;:12;:14::i;:::-;40689:15;40707:29;40732:3;40707:20;40718:8;;40707:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;-1:-1:-1;;;;;40757:19:0;;;;;;:11;:19;;;;;;40689:47;;-1:-1:-1;40757:19:0;;:46;;;;-1:-1:-1;;;;;;40781:22:0;;;;;;:11;:22;;;;;;;;40780:23;40757:46;40753:702;;;40824:61;40846:6;40854:9;40865:19;:6;40876:7;40865:10;:19::i;:::-;40824:21;:61::i;:::-;40753:702;;;-1:-1:-1;;;;;40912:19:0;;;;;;:11;:19;;;;;;;;40911:20;:46;;;;-1:-1:-1;;;;;;40935:22:0;;;;;;:11;:22;;;;;;;;40911:46;40907:548;;;40978:59;40998:6;41006:9;41017:19;:6;41028:7;41017:10;:19::i;:::-;40978;:59::i;40907:548::-;-1:-1:-1;;;;;41064:19:0;;;;;;:11;:19;;;;;;;;41063:20;:47;;;;-1:-1:-1;;;;;;41088:22:0;;;;;;:11;:22;;;;;;;;41087:23;41063:47;41059:396;;;41131:57;41149:6;41157:9;41168:19;:6;41179:7;41168:10;:19::i;:::-;41131:17;:57::i;41059:396::-;-1:-1:-1;;;;;41214:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41237:22:0;;;;;;:11;:22;;;;;;;;41214:45;41210:245;;;41280:61;41302:6;41310:9;41321:19;:6;41332:7;41321:10;:19::i;:::-;41280:21;:61::i;41210:245::-;41382:57;41400:6;41408:9;41419:19;:6;41430:7;41419:10;:19::i;41382:57::-;41535:1;41525:7;:11;;;41551;:15;;;41595:46;;41613:6;;41633:7;41595:17;:46::i;:::-;41680:15;;41670:7;:25;41724:16;;41710:11;:30;41773:7;41769:45;;41799:15;:13;:15::i;:::-;40504:1322;;;;;:::o;3639:197::-;3697:7;3733:5;;;3761:6;;;;3753:46;;;;;-1:-1:-1;;;3753:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;44949:490;45008:7;45017;45026;45035;45044;45053;45078:23;45103:12;45117:16;45137:42;45149:7;45158;;45167:11;;45137;:42::i;:::-;45077:102;;;;;;45194:19;45217:10;:8;:10::i;:::-;45194:33;;45243:15;45260:23;45285:12;45301:39;45313:7;45322:4;45328:11;45301;:39::i;:::-;45242:98;;-1:-1:-1;45242:98:0;-1:-1:-1;45242:98:0;-1:-1:-1;45395:15:0;;-1:-1:-1;45412:4:0;;-1:-1:-1;45418:8:0;;-1:-1:-1;;;;;44949:490:0;;;;;;;:::o;4154:144::-;4212:7;4243:43;4247:1;4250;4243:43;;;;;;;;;;;;;;;;;:3;:43::i;39046:656::-;28591:6;:13;;-1:-1:-1;;;;28591:13:0;-1:-1:-1;;;28591:13:0;;;39215:16:::1;::::0;;39229:1:::1;39215:16:::0;;;39191:21:::1;39215:16:::0;;::::1;::::0;;39191:21;39215:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39215:16:0::1;39191:40;;39264:4;39246;39251:1;39246:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;39246:23:0::1;;;-1:-1:-1::0;;;;;39246:23:0::1;;;::::0;::::1;39294:15;-1:-1:-1::0;;;;;39294:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;39294:22:0;39284:7;;:4;;39289:1:::1;::::0;39284:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;39284:32:0::1;;;-1:-1:-1::0;;;;;39284:32:0::1;;;::::0;::::1;39333:62;39350:4;39365:15;39383:11;39333:8;:62::i;:::-;39442:15;-1:-1:-1::0;;;;;39442:66:0::1;;39527:11;39557:1;39605:4;39636;39660:15;39442:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;39442:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28635:6:0;:14;;-1:-1:-1;;;;28635:14:0;;;-1:-1:-1;;;;39046:656:0:o;39722:115::-;39787:21;;:38;;-1:-1:-1;;;;;39787:21:0;;;;:38;;;;;39818:6;;39787:21;:38;:21;:38;39818:6;39787:21;:38;;;;;;;;;;;;;;;;;;;46402:601;46503:7;;46543;;46452;;;;;46571:305;46595:9;:16;46591:20;;46571:305;;;46665:7;46641;:21;46649:9;46659:1;46649:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46649:12:0;46641:21;;;;;;;;;;;;;:31;;:66;;;46700:7;46676;:21;46684:9;46694:1;46684:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46684:12:0;46676:21;;;;;;;;;;;;;:31;46641:66;46637:97;;;46717:7;;46726;;46709:25;;;;;;;;;46637:97;46763:34;46775:7;:21;46783:9;46793:1;46783:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46783:12:0;46775:21;;;;;;;;;;;;;46763:7;;:11;:34::i;:::-;46753:44;;46826:34;46838:7;:21;46846:9;46856:1;46846:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46846:12:0;46838:21;;;;;;;;;;;;;46826:7;;:11;:34::i;:::-;46816:44;-1:-1:-1;46613:3:0;;46571:305;;;-1:-1:-1;46916:7:0;;46904;;:20;;:11;:20::i;:::-;46894:7;:30;46890:61;;;46934:7;;46943;;46926:25;;;;;;;;46890:61;46974:7;;-1:-1:-1;46983:7:0;-1:-1:-1;46402:601:0;;;:::o;6843:298::-;6929:7;6968:12;6961:5;6953:28;;;;-1:-1:-1;;;6953:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6996:9;7012:1;7008;:5;;;;;;;6843:298;-1:-1:-1;;;;;6843:298:0:o;34209:360::-;34259:7;;:12;:32;;;;-1:-1:-1;34275:11:0;;:16;34259:32;:49;;;;-1:-1:-1;34295:8:0;;:13;34259:49;34256:61;;;34310:7;;34256:61;34363:7;;;34345:15;:25;34407:11;;;34385:19;:33;34452:8;;;34433:16;:27;-1:-1:-1;34489:11:0;;;;34515:15;;;;34545:12;34209:360;:::o;43004:593::-;43111:15;43128:23;43153:12;43167:23;43192:12;43206:16;43226:19;43237:7;43226:10;:19::i;:::-;-1:-1:-1;;;;;43278:15:0;;;;;;:7;:15;;;;;;43110:135;;-1:-1:-1;43110:135:0;;-1:-1:-1;43110:135:0;;-1:-1:-1;43110:135:0;-1:-1:-1;43110:135:0;-1:-1:-1;43110:135:0;-1:-1:-1;43278:28:0;;43298:7;43278:19;:28::i;:::-;-1:-1:-1;;;;;43260:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43339:7;:15;;;;:28;;43359:7;43339:19;:28::i;:::-;-1:-1:-1;;;;;43321:15:0;;;;;;;:7;:15;;;;;;:46;;;;43403:18;;;;;;;:39;;43426:15;43403:22;:39::i;:::-;-1:-1:-1;;;;;43382:18:0;;;;;;:7;:18;;;;;:60;43458:22;43471:8;43458:12;:22::i;:::-;43498:23;43510:4;43516;43498:11;:23::i;:::-;43558:9;-1:-1:-1;;;;;43541:44:0;43550:6;-1:-1:-1;;;;;43541:44:0;;43569:15;43541:44;;;;;;;;;;;;;;;;;;43004:593;;;;;;;;;:::o;42376:616::-;42481:15;42498:23;42523:12;42537:23;42562:12;42576:16;42596:19;42607:7;42596:10;:19::i;:::-;-1:-1:-1;;;;;42648:15:0;;;;;;:7;:15;;;;;;42480:135;;-1:-1:-1;42480:135:0;;-1:-1:-1;42480:135:0;;-1:-1:-1;42480:135:0;-1:-1:-1;42480:135:0;-1:-1:-1;42480:135:0;-1:-1:-1;42648:28:0;;42480:135;42648:19;:28::i;:::-;-1:-1:-1;;;;;42630:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42712:18;;;;;:7;:18;;;;;:39;;42735:15;42712:22;:39::i;:::-;-1:-1:-1;;;;;42691:18:0;;;;;;:7;:18;;;;;;;;:60;;;;42787:7;:18;;;;:39;;42810:15;42787:22;:39::i;41838:526::-;41941:15;41958:23;41983:12;41997:23;42022:12;42036:16;42056:19;42067:7;42056:10;:19::i;:::-;-1:-1:-1;;;;;42108:15:0;;;;;;:7;:15;;;;;;41940:135;;-1:-1:-1;41940:135:0;;-1:-1:-1;41940:135:0;;-1:-1:-1;41940:135:0;-1:-1:-1;41940:135:0;-1:-1:-1;41940:135:0;-1:-1:-1;42108:28:0;;41940:135;42108:19;:28::i;43609:676::-;43716:15;43733:23;43758:12;43772:23;43797:12;43811:16;43831:19;43842:7;43831:10;:19::i;:::-;-1:-1:-1;;;;;43883:15:0;;;;;;:7;:15;;;;;;43715:135;;-1:-1:-1;43715:135:0;;-1:-1:-1;43715:135:0;;-1:-1:-1;43715:135:0;-1:-1:-1;43715:135:0;-1:-1:-1;43715:135:0;-1:-1:-1;43883:28:0;;43903:7;43883:19;:28::i;:::-;-1:-1:-1;;;;;43865:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43944:7;:15;;;;:28;;43964:7;43944:19;:28::i;34585:175::-;34643:15;;34633:7;:25;34687:19;;34673:11;:33;34732:16;;34721:8;:27;34585:175::o;45451:386::-;45547:7;;;;45604:28;45628:3;45604:19;:7;45616:6;45604:11;:19::i;:28::-;45589:43;-1:-1:-1;45647:16:0;45666:32;45694:3;45666:23;:7;45678:10;45666:11;:23::i;:32::-;45647:51;-1:-1:-1;45713:23:0;45739:31;45647:51;45739:17;:7;45751:4;45739:11;:17::i;:::-;:21;;:31::i;:::-;45713:57;45810:4;;-1:-1:-1;45816:8:0;;-1:-1:-1;45451:386:0;;-1:-1:-1;;;;;45451:386:0:o;45849:354::-;45944:7;;;;46004:24;:7;46016:11;46004;:24::i;:::-;45986:42;-1:-1:-1;46043:12:0;46058:21;:4;46067:11;46058:8;:21::i;:::-;46043:36;-1:-1:-1;46094:23:0;46120:17;:7;46043:36;46120:11;:17::i;:::-;46160:7;;;;-1:-1:-1;46186:4:0;;-1:-1:-1;45849:354:0;;-1:-1:-1;;;;;45849:354:0:o;44297:367::-;44360:19;44383:10;:8;:10::i;:::-;44360:33;-1:-1:-1;44408:16:0;44427:25;:8;44360:33;44427:12;:25::i;:::-;44508:4;44492:22;;;;:7;:22;;;;;;44408:44;;-1:-1:-1;44492:36:0;;44408:44;44492:26;:36::i;:::-;44483:4;44467:22;;;;:7;:22;;;;;;;;:61;;;;44546:11;:26;;;;;;44543:109;;;44632:4;44616:22;;;;:7;:22;;;;;;:36;;44643:8;44616:26;:36::i;:::-;44607:4;44591:22;;;;:7;:22;;;;;:61;44543:109;44297:367;;;:::o;44676:159::-;44758:7;;:17;;44770:4;44758:11;:17::i;:::-;44748:7;:27;44803:10;;:20;;44818:4;44803:14;:20::i;:::-;44790:10;:33;-1:-1:-1;;44676:159:0:o
Swarm Source
ipfs://e6305706c84141e99bdb9be788ee518f4d3ce7dbf604c16b3b6422f32f6aae1a
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.