ERC-20
MEME
Overview
Max Total Supply
1,000,000,000,000,000 REAPER
Holders
277 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
108.414640927 REAPERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ReaperInu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-23 */ /* Telegram: https://t.me/ReaperInu Website: www.reaperinu.com This launch brought to you by A+ Tokens Calls, please join their telegram channel - https://t.me/APlusTokens */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed 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 implementation contract ReaperInu 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 => uint256) public timestamp; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private _isBlackListedBot; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 public _CoolDown = 45 seconds; string private _name = 'Reaper Inu'; string private _symbol = 'REAPER'; uint8 private _decimals = 9; uint256 private _taxFee = 3; uint256 private _teamFee = 7; uint256 private _previousTaxFee = _taxFee; uint256 private _previousteamFee = _teamFee; address payable public _teamWalletAddress; address payable public _marketingWalletAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwap = false; bool public swapEnabled = true; bool public tradingEnabled = false; bool public cooldownEnabled = true; uint256 public _maxTxAmount = 3000000 * 10**6 * 10**9; //no max tx limit at deploy uint256 private _numOfTokensToExchangeForteam = 5000000000000000; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapEnabledUpdated(bool enabled); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor (address payable teamWalletAddress, address payable marketingWalletAddress) public { _teamWalletAddress = teamWalletAddress; _marketingWalletAddress = marketingWalletAddress; _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; _isBlackListedBot[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true; _blackListedBots.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1)); _isBlackListedBot[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true; _blackListedBots.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)); _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true; _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)); _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true; _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)); _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true; _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)); _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true; _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)); _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true; _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)); _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true; _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)); _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true; _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848)); _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true; _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)); _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true; _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679)); _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true; _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)); _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true; _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)); _isBlackListedBot[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true; _blackListedBots.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)); _isBlackListedBot[address(0x000000000000084e91743124a982076C59f10084)] = true; _blackListedBots.push(address(0x000000000000084e91743124a982076C59f10084)); _isBlackListedBot[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true; _blackListedBots.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)); _isBlackListedBot[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true; _blackListedBots.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)); _isBlackListedBot[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true; _blackListedBots.push(address(0x000000005804B22091aa9830E50459A15E7C9241)); _isBlackListedBot[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true; _blackListedBots.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553)); _isBlackListedBot[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true; _blackListedBots.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD)); _isBlackListedBot[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true; _blackListedBots.push(address(0x0000000000007673393729D5618DC555FD13f9aA)); _isBlackListedBot[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true; _blackListedBots.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)); _isBlackListedBot[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true; _blackListedBots.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)); _isBlackListedBot[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true; _blackListedBots.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd)); _isBlackListedBot[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true; _blackListedBots.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)); _isBlackListedBot[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true; _blackListedBots.push(address(0x72b30cDc1583224381132D379A052A6B10725415)); _isBlackListedBot[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true; _blackListedBots.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)); _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true; _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)); _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true; _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)); _isBlackListedBot[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true; _blackListedBots.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)); _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true; _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)); _isBlackListedBot[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true; _blackListedBots.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)); _isBlackListedBot[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true; _blackListedBots.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)); _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true; _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)); _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true; _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)); _isBlackListedBot[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true; _blackListedBots.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)); 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 isBlackListed(address account) public view returns (bool) { return _isBlackListedBot[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 addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function removeAllFee() private { if(_taxFee == 0 && _teamFee == 0) return; _previousTaxFee = _taxFee; _previousteamFee = _teamFee; _taxFee = 0; _teamFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _teamFee = _previousteamFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(!_isBlackListedBot[recipient], "You have no power here!"); require(!_isBlackListedBot[sender], "You have no power here!"); if(sender != owner() && recipient != owner()) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); //you can't trade this on a dex until trading enabled if (sender == uniswapV2Pair || recipient == uniswapV2Pair) { require(tradingEnabled, "Trading is not enabled yet");} } //cooldown logic starts if(cooldownEnabled) { //perform all cooldown checks below only if enabled if (sender == uniswapV2Pair ) { //they just bought add cooldown if (!_isExcluded[recipient]) { timestamp[recipient] = block.timestamp.add(_CoolDown); } } // exclude owner and uniswap if(sender != owner() && sender != uniswapV2Pair) { // dont apply cooldown to other excluded addresses if (!_isExcluded[sender]) { require(block.timestamp >= timestamp[sender], "Cooldown"); } } } // 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 team event. // also, don't swap if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForteam; if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) { // We need to swap the current tokens to ETH and send to the team wallet swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToteam(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 team 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 sendETHToteam(uint256 amount) private { _teamWalletAddress.transfer(amount.div(2)); _marketingWalletAddress.transfer(amount.div(2)); } // We are exposing these functions to be able to manual swap and send // in case the token is highly valued and 5M becomes too much function manualSwap() external onlyOwner() { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() external onlyOwner() { uint256 contractETHBalance = address(this).balance; sendETHToteam(contractETHBalance); } function setSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tteam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _taketeam(tteam); _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 tteam) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _taketeam(tteam); _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 tteam) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _taketeam(tteam); _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 tteam) = _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); _taketeam(tteam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _taketeam(uint256 tteam) private { uint256 currentRate = _getRate(); uint256 rteam = tteam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rteam); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tteam); } 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 tteam) = _getTValues(tAmount, _taxFee, _teamFee); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tteam); } function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(taxFee).div(100); uint256 tteam = tAmount.mul(teamFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tteam); return (tTransferAmount, tFee, tteam); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _getTaxFee() private view returns(uint256) { return _taxFee; } function _getMaxTxAmount() private view returns(uint256) { return _maxTxAmount; } function _getETHBalance() public view returns(uint256 balance) { return address(this).balance; } function _setTaxFee(uint256 taxFee) external onlyOwner() { require(taxFee >= 1 && taxFee <= 10, 'taxFee should be in 1 - 10'); _taxFee = taxFee; } function _setteamFee(uint256 teamFee) external onlyOwner() { require(teamFee >= 1 && teamFee <= 11, 'teamFee should be in 1 - 11'); _teamFee = teamFee; } function _setteamWallet(address payable teamWalletAddress) external onlyOwner() { _teamWalletAddress = teamWalletAddress; } function _setmarketingWallet(address payable marketingWalletAddress) external onlyOwner() { _marketingWalletAddress = marketingWalletAddress; } function LetTradingBegin(bool _tradingEnabled) external onlyOwner() { tradingEnabled = _tradingEnabled; } function ToggleCoolDown(bool _cooldownEnabled) external onlyOwner() { cooldownEnabled = _cooldownEnabled; } function setCoolDown(uint256 CoolDown) external onlyOwner() { _CoolDown = (CoolDown * 1 seconds); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","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":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"LetTradingBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_cooldownEnabled","type":"bool"}],"name":"ToggleCoolDown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_CoolDown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setteamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","type":"address"}],"name":"_setteamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_teamWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"CoolDown","type":"uint256"}],"name":"setCoolDown","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":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","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":"address","name":"","type":"address"}],"name":"timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69d3c21bcecceda1000000600c5569085afffa6ff50bffffff19600d55602d600f55610100604052600a60c08190526952656170657220496e7560b01b60e090815262000050916010919062000eec565b50604080518082019091526006808252652922a0a822a960d11b6020909201918252620000809160119162000eec565b506012805460ff1916600917905560036013819055600760148190556015919091556016556018805461ffff60b01b1961ffff60a01b19909116600160a81b1716600160b81b17905568a2a15d09519be000006019556611c37937e08000601a55348015620000ee57600080fd5b506040516200463e3803806200463e833981810160405260408110156200011457600080fd5b50805160209091015160006200012962000ed9565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601780546001600160a01b038085166001600160a01b0319928316179092556018805492841692909116919091179055600d5460036000620001b462000ed9565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022b57600080fd5b505afa15801562000240573d6000803e3d6000fd5b505050506040513d60208110156200025757600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002a857600080fd5b505afa158015620002bd573d6000803e3d6000fd5b505050506040513d6020811015620002d457600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032757600080fd5b505af11580156200033c573d6000803e3d6000fd5b505050506040513d60208110156200035357600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600760006200038062000edd565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600a9092527f4777d92e592f2fa8390fa48c8824c65e93bffeaaf19b5e78702f374b7185cff18054841683179055600b805480840182557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557fdc914f9280e3bf508019c453219bd8772b25f5bd33cb2e400a6d3a3ef5b8a7328054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557f998a942c5b07a457c1c745d8872225c6e7a179ed6fde5bfb692b69ae70f05fb280548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f7448ef692eb22b90051ee7bb93f7f0bec25e320b568420fe8d685c03f99bcda680548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f33585703c4f432691140342bf67b6aa54c45f613466cbb9648c8ebdc59ab51fe80548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557ffba5a2784f63caf056a136b81f2ac0f10327e1cd2fcc376d9117328b6715bbad80548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557f2063099f98622176f7a9dab7c96355197697679ded73d22ee92fafe3f7dc818980548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f7b1842781ea8d74bd5a863e148fa18d771dedc1fed888acc0b24b912c26e29f780548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fc0020013c6d8595c68014b16713d0a57240f075db12290e54cb3bd5b3843c02c8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fca4a506b5a56b6ba07b0a9d4d66b0f1540cc9b80e4b3cdfd8d5f141115bbde6c8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557ff6212472f5e0a52c2fec3ac5fcad601c59d6ff1e96bdbdafb42829d3edbd6a93805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557f2af88a6d7dae65d6f610a890dbaa61f2824a039572abef40bf47657129a70b9880548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f7966a96da7d4dbc43e90c4a05d6081ea9a91b17729f7b3dbda42ffbd6eeecd3e805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f724025a98f534d1309e69bda52a09889b613c546a0620f14f372b402dc7bff268054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fcd74986290e61ec10dad061b400b86dbc1ec586079bd390b4568960f464200bd805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f63679658c139b9c632697fe9ed7ac19e1fe3f543e06a57327e69fed698adb7bc80548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f23e50dbd7cbb74df02fe617013720045098f5efa3a1b88c39e80ff824645416b8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fdc987018d848576249961f02f9f7ed1731f448763a4b412eca2e6bc74126495980548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557ff39a91af98ae2b73dc9413871c0acb2ceb4c7b70cae5eb58eb458116e77db88980548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f162a1f8a785159eed011c60298c07e3524613b71a599d19744c8d6f71c96fb2b8054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557fa65db558bd82b4053113a6519ad4564189065cd183f86fc6b00387f9d41bc0ec8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fa58330920200a0932da2b374c9d20c7c472483bed80061b1d413d9672d5ebde08054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f7cdf1f9da93d80ed9a798cebe4e6f6004bf8f95a7de67429ea0199a704acad2580548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f29f6c3b9d2e36abe8bdc900bc60e22583fba659c2d53a44eee0dd709801ea97d805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f6d65c65c35d6610b1200fe6cfe593318beb7893a4c03bf503f1d9d9e940fefba8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557fa064b1fb0114f75e10beb90c8a29d47f54dd994e59433940d481b05c7a8412d8805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f686148b1caf780c4d22c6aacf115180ebb69c181e844afce5bbb3b709ef082ed80548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f9bfda5ddf3bd831ffd2394205d842c39e6b71e9a402694563d77490a84c6161a8054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f3b3fd9d1e8f96da8faf46a3c453226258db5fd46463cbe4c94c46725c18c854180548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557fa5bcf367515080dcf00ba24a8f13316bd1cd41a9ec18ad53c08e66f5b64f32f28054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557ff42d6f970ece9bfc747567e954d2e575ff81c6db9ab98a11162aecdd7c7762d780548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557ff9a54afda4266d0074bb9475c43164c2aaff7e83a5840148c16c0350af2fc5f4805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557fbd5bb69fd63981ca863b1c9542c22b5b327280aee3e76e2824e23873f1050fb180548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557f4fc612e08b493416d29ed3554c22384cccb8fee4e3a4cdcc444d412a1299652480549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000e8362000ed9565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350505062000f88565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000f2f57805160ff191683800117855562000f5f565b8280016001018555821562000f5f579182015b8281111562000f5f57825182559160200191906001019062000f42565b5062000f6d92915062000f71565b5090565b5b8082111562000f6d576000815560010162000f72565b60805160601c60a05160601c61366462000fda60003980611142528061242a5280612465528061251052806125b652806126c0525080610cd552806129d25280612a8a5280612ab152506136646000f3fe6080604052600436106102e85760003560e01c80637d1db4a511610190578063cba0e996116100dc578063ee59c3ac11610095578063f42938901161006f578063f429389014610ae7578063f815a84214610afc578063f84354f114610b11578063fd62d67514610b44576102ef565b8063ee59c3ac14610a6c578063f2cc0c1814610a81578063f2fde38b14610ab4576102ef565b8063cba0e9961461094b578063d543dbeb1461097e578063dd467064146109a8578063dd62ed3e146109d2578063e01af92c14610a0d578063e47d606014610a39576102ef565b8063a457c2d711610149578063a985ceef11610123578063a985ceef146108ba578063abdef31d146108cf578063af9549e0146108fb578063b6c5232414610936576102ef565b8063a457c2d714610833578063a69df4b51461086c578063a9059cbb14610881576102ef565b80637d1db4a51461075b5780637ded4d6a14610770578063813194d3146107a35780638da5cb5b146107d657806395d89b41146107eb5780639ca1523914610800576102ef565b80634303443d1161024f5780635880b87311610208578063715018a6116101e2578063715018a6146106bd5780637302dacf146106d25780637a6cdbc3146107055780637c56687a14610731576102ef565b80635880b8731461064b5780636ddd17131461067557806370a082311461068a576102ef565b80634303443d146105745780634549b039146105a757806349bd5a5e146105d95780634ada218b146105ee57806351bc3c85146106035780635342acb414610618576102ef565b806323b872dd116102a157806323b872dd146104645780632d838119146104a7578063313ce567146104d157806339509351146104fc5780633bd5d173146105355780634144d9e41461055f576102ef565b806306fdde03146102f4578063095ea7b31461037e578063109c45aa146103cb57806313114a9d146103f75780631694505e1461041e57806318160ddd1461044f576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610b59565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034357818101518382015260200161032b565b50505050905090810190601f1680156103705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038a57600080fd5b506103b7600480360360408110156103a157600080fd5b506001600160a01b038135169060200135610bef565b604080519115158252519081900360200190f35b3480156103d757600080fd5b506103f5600480360360208110156103ee57600080fd5b5035610c0d565b005b34801561040357600080fd5b5061040c610ccd565b60408051918252519081900360200190f35b34801561042a57600080fd5b50610433610cd3565b604080516001600160a01b039092168252519081900360200190f35b34801561045b57600080fd5b5061040c610cf7565b34801561047057600080fd5b506103b76004803603606081101561048757600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b3480156104b357600080fd5b5061040c600480360360208110156104ca57600080fd5b5035610d84565b3480156104dd57600080fd5b506104e6610de6565b6040805160ff9092168252519081900360200190f35b34801561050857600080fd5b506103b76004803603604081101561051f57600080fd5b506001600160a01b038135169060200135610def565b34801561054157600080fd5b506103f56004803603602081101561055857600080fd5b5035610e3d565b34801561056b57600080fd5b50610433610f17565b34801561058057600080fd5b506103f56004803603602081101561059757600080fd5b50356001600160a01b0316610f26565b3480156105b357600080fd5b5061040c600480360360408110156105ca57600080fd5b508035906020013515156110ae565b3480156105e557600080fd5b50610433611140565b3480156105fa57600080fd5b506103b7611164565b34801561060f57600080fd5b506103f5611174565b34801561062457600080fd5b506103b76004803603602081101561063b57600080fd5b50356001600160a01b03166111e5565b34801561065757600080fd5b506103f56004803603602081101561066e57600080fd5b5035611203565b34801561068157600080fd5b506103b76112c3565b34801561069657600080fd5b5061040c600480360360208110156106ad57600080fd5b50356001600160a01b03166112d3565b3480156106c957600080fd5b506103f5611335565b3480156106de57600080fd5b5061040c600480360360208110156106f557600080fd5b50356001600160a01b03166113c5565b34801561071157600080fd5b506103f56004803603602081101561072857600080fd5b503515156113d7565b34801561073d57600080fd5b506103f56004803603602081101561075457600080fd5b503561144d565b34801561076757600080fd5b5061040c6114aa565b34801561077c57600080fd5b506103f56004803603602081101561079357600080fd5b50356001600160a01b03166114b0565b3480156107af57600080fd5b506103f5600480360360208110156107c657600080fd5b50356001600160a01b0316611668565b3480156107e257600080fd5b506104336116e2565b3480156107f757600080fd5b506103096116f1565b34801561080c57600080fd5b506103f56004803603602081101561082357600080fd5b50356001600160a01b0316611752565b34801561083f57600080fd5b506103b76004803603604081101561085657600080fd5b506001600160a01b0381351690602001356117cc565b34801561087857600080fd5b506103f5611834565b34801561088d57600080fd5b506103b7600480360360408110156108a457600080fd5b506001600160a01b038135169060200135611922565b3480156108c657600080fd5b506103b7611936565b3480156108db57600080fd5b506103f5600480360360208110156108f257600080fd5b50351515611946565b34801561090757600080fd5b506103f56004803603604081101561091e57600080fd5b506001600160a01b03813516906020013515156119bc565b34801561094257600080fd5b5061040c611a3f565b34801561095757600080fd5b506103b76004803603602081101561096e57600080fd5b50356001600160a01b0316611a45565b34801561098a57600080fd5b506103f5600480360360208110156109a157600080fd5b5035611a63565b3480156109b457600080fd5b506103f5600480360360208110156109cb57600080fd5b5035611ae1565b3480156109de57600080fd5b5061040c600480360360408110156109f557600080fd5b506001600160a01b0381358116916020013516611b7f565b348015610a1957600080fd5b506103f560048036036020811015610a3057600080fd5b50351515611baa565b348015610a4557600080fd5b506103b760048036036020811015610a5c57600080fd5b50356001600160a01b0316611c20565b348015610a7857600080fd5b5061040c611c3e565b348015610a8d57600080fd5b506103f560048036036020811015610aa457600080fd5b50356001600160a01b0316611c44565b348015610ac057600080fd5b506103f560048036036020811015610ad757600080fd5b50356001600160a01b0316611e26565b348015610af357600080fd5b506103f5611f0c565b348015610b0857600080fd5b5061040c611f6e565b348015610b1d57600080fd5b506103f560048036036020811015610b3457600080fd5b50356001600160a01b0316611f72565b348015610b5057600080fd5b50610433612108565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b6000610c03610bfc612117565b848461211b565b5060015b92915050565b610c15612117565b6000546001600160a01b03908116911614610c65576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60018110158015610c775750600b8111155b610cc8576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2031310000000000604482015290519081900360640190fd5b601455565b600e5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5490565b6000610d0a848484612207565b610d7a84610d16612117565b610d758560405180606001604052806028815260200161349b602891396001600160a01b038a16600090815260056020526040812090610d54612117565b6001600160a01b031681526020810191909152604001600020549190612774565b61211b565b5060019392505050565b6000600d54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806133e0602a913960400191505060405180910390fd5b6000610dd161280b565b9050610ddd838261282e565b9150505b919050565b60125460ff1690565b6000610c03610dfc612117565b84610d758560056000610e0d612117565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612877565b6000610e47612117565b6001600160a01b03811660009081526008602052604090205490915060ff1615610ea25760405162461bcd60e51b815260040180806020018281038252602c8152602001806135bb602c913960400191505060405180910390fd5b6000610ead836128d1565b505050506001600160a01b038416600090815260036020526040902054919250610ed99190508261292d565b6001600160a01b038316600090815260036020526040902055600d54610eff908261292d565b600d55600e54610f0f9084612877565b600e55505050565b6018546001600160a01b031681565b610f2e612117565b6000546001600160a01b03908116911614610f7e576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610fda5760405162461bcd60e51b815260040180806020018281038252602481526020018061352c6024913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611048576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6000600c54831115611107576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611126576000611117846128d1565b50939550610c07945050505050565b6000611131846128d1565b50929550610c07945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601854600160b01b900460ff1681565b61117c612117565b6000546001600160a01b039081169116146111cc576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60006111d7306112d3565b90506111e28161296f565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b61120b612117565b6000546001600160a01b0390811691161461125b576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001811015801561126d5750600a8111155b6112be576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601355565b601854600160a81b900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff161561131357506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610c0790610d84565b61133d612117565b6000546001600160a01b0390811691161461138d576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206134e3833981519152908390a3600080546001600160a01b0319169055565b60066020526000908152604090205481565b6113df612117565b6000546001600160a01b0390811691161461142f576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60188054911515600160b81b0260ff60b81b19909216919091179055565b611455612117565b6000546001600160a01b039081169116146114a5576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b600f55565b60195481565b6114b8612117565b6000546001600160a01b03908116911614611508576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611575576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561166457816001600160a01b0316600b828154811061159957fe5b6000918252602090912001546001600160a01b0316141561165c57600b805460001981019081106115c657fe5b600091825260209091200154600b80546001600160a01b0390921691839081106115ec57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b80548061163557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611664565b600101611578565b5050565b611670612117565b6000546001600160a01b039081169116146116c0576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be55780601f10610bba57610100808354040283529160200191610be5565b61175a612117565b6000546001600160a01b039081169116146117aa576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c036117d9612117565b84610d758560405180606001604052806025815260200161360a6025913960056000611803612117565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612774565b6001546001600160a01b0316331461187d5760405162461bcd60e51b81526004018080602001828103825260238152602001806135e76023913960400191505060405180910390fd5b60025442116118d3576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206134e383398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610c0361192f612117565b8484612207565b601854600160b81b900460ff1681565b61194e612117565b6000546001600160a01b0390811691161461199e576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60188054911515600160b01b0260ff60b01b19909216919091179055565b6119c4612117565b6000546001600160a01b03908116911614611a14576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b611a6b612117565b6000546001600160a01b03908116911614611abb576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b611adb6064611ad583600c54612ba690919063ffffffff16565b9061282e565b60195550565b611ae9612117565b6000546001600160a01b03908116911614611b39576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206134e3833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611bb2612117565b6000546001600160a01b03908116911614611c02576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60188054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b600f5481565b611c4c612117565b6000546001600160a01b03908116911614611c9c576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415611cf85760405162461bcd60e51b81526004018080602001828103825260228152602001806135996022913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff1615611d66576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611dc0576001600160a01b038116600090815260036020526040902054611da690610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b611e2e612117565b6000546001600160a01b03908116911614611e7e576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b038116611ec35760405162461bcd60e51b815260040180806020018281038252602681526020018061340a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206134e383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611f14612117565b6000546001600160a01b03908116911614611f64576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b476111e281612bff565b4790565b611f7a612117565b6000546001600160a01b03908116911614611fca576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16612037576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60095481101561166457816001600160a01b03166009828154811061205b57fe5b6000918252602090912001546001600160a01b031614156121005760098054600019810190811061208857fe5b600091825260209091200154600980546001600160a01b0390921691839081106120ae57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff19169055600980548061163557fe5b60010161203a565b6017546001600160a01b031681565b3390565b6001600160a01b0383166121605760405162461bcd60e51b81526004018080602001828103825260248152602001806135756024913960400191505060405180910390fd5b6001600160a01b0382166121a55760405162461bcd60e51b81526004018080602001828103825260228152602001806134306022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661224c5760405162461bcd60e51b81526004018080602001828103825260258152602001806135506025913960400191505060405180910390fd5b6001600160a01b0382166122915760405162461bcd60e51b81526004018080602001828103825260238152602001806133bd6023913960400191505060405180910390fd5b600081116122d05760405162461bcd60e51b81526004018080602001828103825260298152602001806135036029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612338576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16156123a0576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6123a86116e2565b6001600160a01b0316836001600160a01b0316141580156123e257506123cc6116e2565b6001600160a01b0316826001600160a01b031614155b156124fc576019548111156124285760405162461bcd60e51b81526004018080602001828103825260288152602001806134526028913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061249957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b156124fc57601854600160b01b900460ff166124fc576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b601854600160b81b900460ff1615612668577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415612590576001600160a01b03821660009081526008602052604090205460ff1661259057600f54612576904290612877565b6001600160a01b0383166000908152600660205260409020555b6125986116e2565b6001600160a01b0316836001600160a01b0316141580156125eb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b15612668576001600160a01b03831660009081526008602052604090205460ff16612668576001600160a01b038316600090815260066020526040902054421015612668576040805162461bcd60e51b815260206004820152600860248201526721b7b7b63237bbb760c11b604482015290519081900360640190fd5b6000612673306112d3565b9050601954811061268357506019545b601a546018549082101590600160a01b900460ff161580156126ae5750601854600160a81b900460ff165b80156126b75750805b80156126f557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15612715576127038261296f565b4780156127135761271347612bff565b505b6001600160a01b03851660009081526007602052604090205460019060ff168061275757506001600160a01b03851660009081526007602052604090205460ff165b15612760575060005b61276c86868684612c84565b505050505050565b600081848411156128035760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127c85781810151838201526020016127b0565b50505050905090810190601f1680156127f55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612818612df8565b9092509050612827828261282e565b9250505090565b600061287083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f5b565b9392505050565b600082820183811015612870576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006128ee8a601354601454612fc0565b92509250925060006128fe61280b565b905060008060006129108e878661300f565b919e509c509a509598509396509194505050505091939550919395565b600061287083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612774565b6018805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106129b057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a2957600080fd5b505afa158015612a3d573d6000803e3d6000fd5b505050506040513d6020811015612a5357600080fd5b5051815182906001908110612a6457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612aaf307f00000000000000000000000000000000000000000000000000000000000000008461211b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b54578181015183820152602001612b3c565b505050509050019650505050505050600060405180830381600087803b158015612b7d57600080fd5b505af1158015612b91573d6000803e3d6000fd5b50506018805460ff60a01b1916905550505050565b600082612bb557506000610c07565b82820282848281612bc257fe5b04146128705760405162461bcd60e51b815260040180806020018281038252602181526020018061347a6021913960400191505060405180910390fd5b6017546001600160a01b03166108fc612c1983600261282e565b6040518115909202916000818181858888f19350505050158015612c41573d6000803e3d6000fd5b506018546001600160a01b03166108fc612c5c83600261282e565b6040518115909202916000818181858888f19350505050158015611664573d6000803e3d6000fd5b80612c9157612c9161304b565b6001600160a01b03841660009081526008602052604090205460ff168015612cd257506001600160a01b03831660009081526008602052604090205460ff16155b15612ce757612ce284848461307d565b612de5565b6001600160a01b03841660009081526008602052604090205460ff16158015612d2857506001600160a01b03831660009081526008602052604090205460ff165b15612d3857612ce28484846131a1565b6001600160a01b03841660009081526008602052604090205460ff16158015612d7a57506001600160a01b03831660009081526008602052604090205460ff16155b15612d8a57612ce284848461324a565b6001600160a01b03841660009081526008602052604090205460ff168015612dca57506001600160a01b03831660009081526008602052604090205460ff165b15612dda57612ce284848461328e565b612de584848461324a565b80612df257612df2613301565b50505050565b600d54600c546000918291825b600954811015612f2957826003600060098481548110612e2157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612e865750816004600060098481548110612e5f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612e9d57600d54600c5494509450505050612f57565b612edd6003600060098481548110612eb157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061292d565b9250612f1f6004600060098481548110612ef357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061292d565b9150600101612e05565b50600c54600d54612f399161282e565b821015612f5157600d54600c54935093505050612f57565b90925090505b9091565b60008183612faa5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156127c85781810151838201526020016127b0565b506000838581612fb657fe5b0495945050505050565b6000808080612fd46064611ad58989612ba6565b90506000612fe76064611ad58a89612ba6565b90506000612fff82612ff98b8661292d565b9061292d565b9992985090965090945050505050565b600080808061301e8786612ba6565b9050600061302c8787612ba6565b9050600061303a838361292d565b929992985090965090945050505050565b60135415801561305b5750601454155b156130655761307b565b6013805460155560148054601655600091829055555b565b60008060008060008061308f876128d1565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506130c1908861292d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546130f0908761292d565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461311f9086612877565b6001600160a01b0389166000908152600360205260409020556131418161330f565b61314b8483613398565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806131b3876128d1565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506131e5908761292d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461321b9084612877565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461311f9086612877565b60008060008060008061325c876128d1565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506130f0908761292d565b6000806000806000806132a0876128d1565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506132d2908861292d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546131e5908761292d565b601554601355601654601455565b600061331961280b565b905060006133278383612ba6565b306000908152600360205260409020549091506133449082612877565b3060009081526003602090815260408083209390935560089052205460ff161561339357306000908152600460205260409020546133829084612877565b306000908152600460205260409020555b505050565b600d546133a5908361292d565b600d55600e546133b59082612877565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c91813e9f710d52c448da4487025f522e6853f2a4636a1e515917d01d8a6a09c64736f6c634300060c0033000000000000000000000000b3ca8c28f4bfc570e4643dadf88d5a9293fcb71a000000000000000000000000a9833e5de579d8263be8d1e83cb784d602ce04aa
Deployed Bytecode
0x6080604052600436106102e85760003560e01c80637d1db4a511610190578063cba0e996116100dc578063ee59c3ac11610095578063f42938901161006f578063f429389014610ae7578063f815a84214610afc578063f84354f114610b11578063fd62d67514610b44576102ef565b8063ee59c3ac14610a6c578063f2cc0c1814610a81578063f2fde38b14610ab4576102ef565b8063cba0e9961461094b578063d543dbeb1461097e578063dd467064146109a8578063dd62ed3e146109d2578063e01af92c14610a0d578063e47d606014610a39576102ef565b8063a457c2d711610149578063a985ceef11610123578063a985ceef146108ba578063abdef31d146108cf578063af9549e0146108fb578063b6c5232414610936576102ef565b8063a457c2d714610833578063a69df4b51461086c578063a9059cbb14610881576102ef565b80637d1db4a51461075b5780637ded4d6a14610770578063813194d3146107a35780638da5cb5b146107d657806395d89b41146107eb5780639ca1523914610800576102ef565b80634303443d1161024f5780635880b87311610208578063715018a6116101e2578063715018a6146106bd5780637302dacf146106d25780637a6cdbc3146107055780637c56687a14610731576102ef565b80635880b8731461064b5780636ddd17131461067557806370a082311461068a576102ef565b80634303443d146105745780634549b039146105a757806349bd5a5e146105d95780634ada218b146105ee57806351bc3c85146106035780635342acb414610618576102ef565b806323b872dd116102a157806323b872dd146104645780632d838119146104a7578063313ce567146104d157806339509351146104fc5780633bd5d173146105355780634144d9e41461055f576102ef565b806306fdde03146102f4578063095ea7b31461037e578063109c45aa146103cb57806313114a9d146103f75780631694505e1461041e57806318160ddd1461044f576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610b59565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034357818101518382015260200161032b565b50505050905090810190601f1680156103705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038a57600080fd5b506103b7600480360360408110156103a157600080fd5b506001600160a01b038135169060200135610bef565b604080519115158252519081900360200190f35b3480156103d757600080fd5b506103f5600480360360208110156103ee57600080fd5b5035610c0d565b005b34801561040357600080fd5b5061040c610ccd565b60408051918252519081900360200190f35b34801561042a57600080fd5b50610433610cd3565b604080516001600160a01b039092168252519081900360200190f35b34801561045b57600080fd5b5061040c610cf7565b34801561047057600080fd5b506103b76004803603606081101561048757600080fd5b506001600160a01b03813581169160208101359091169060400135610cfd565b3480156104b357600080fd5b5061040c600480360360208110156104ca57600080fd5b5035610d84565b3480156104dd57600080fd5b506104e6610de6565b6040805160ff9092168252519081900360200190f35b34801561050857600080fd5b506103b76004803603604081101561051f57600080fd5b506001600160a01b038135169060200135610def565b34801561054157600080fd5b506103f56004803603602081101561055857600080fd5b5035610e3d565b34801561056b57600080fd5b50610433610f17565b34801561058057600080fd5b506103f56004803603602081101561059757600080fd5b50356001600160a01b0316610f26565b3480156105b357600080fd5b5061040c600480360360408110156105ca57600080fd5b508035906020013515156110ae565b3480156105e557600080fd5b50610433611140565b3480156105fa57600080fd5b506103b7611164565b34801561060f57600080fd5b506103f5611174565b34801561062457600080fd5b506103b76004803603602081101561063b57600080fd5b50356001600160a01b03166111e5565b34801561065757600080fd5b506103f56004803603602081101561066e57600080fd5b5035611203565b34801561068157600080fd5b506103b76112c3565b34801561069657600080fd5b5061040c600480360360208110156106ad57600080fd5b50356001600160a01b03166112d3565b3480156106c957600080fd5b506103f5611335565b3480156106de57600080fd5b5061040c600480360360208110156106f557600080fd5b50356001600160a01b03166113c5565b34801561071157600080fd5b506103f56004803603602081101561072857600080fd5b503515156113d7565b34801561073d57600080fd5b506103f56004803603602081101561075457600080fd5b503561144d565b34801561076757600080fd5b5061040c6114aa565b34801561077c57600080fd5b506103f56004803603602081101561079357600080fd5b50356001600160a01b03166114b0565b3480156107af57600080fd5b506103f5600480360360208110156107c657600080fd5b50356001600160a01b0316611668565b3480156107e257600080fd5b506104336116e2565b3480156107f757600080fd5b506103096116f1565b34801561080c57600080fd5b506103f56004803603602081101561082357600080fd5b50356001600160a01b0316611752565b34801561083f57600080fd5b506103b76004803603604081101561085657600080fd5b506001600160a01b0381351690602001356117cc565b34801561087857600080fd5b506103f5611834565b34801561088d57600080fd5b506103b7600480360360408110156108a457600080fd5b506001600160a01b038135169060200135611922565b3480156108c657600080fd5b506103b7611936565b3480156108db57600080fd5b506103f5600480360360208110156108f257600080fd5b50351515611946565b34801561090757600080fd5b506103f56004803603604081101561091e57600080fd5b506001600160a01b03813516906020013515156119bc565b34801561094257600080fd5b5061040c611a3f565b34801561095757600080fd5b506103b76004803603602081101561096e57600080fd5b50356001600160a01b0316611a45565b34801561098a57600080fd5b506103f5600480360360208110156109a157600080fd5b5035611a63565b3480156109b457600080fd5b506103f5600480360360208110156109cb57600080fd5b5035611ae1565b3480156109de57600080fd5b5061040c600480360360408110156109f557600080fd5b506001600160a01b0381358116916020013516611b7f565b348015610a1957600080fd5b506103f560048036036020811015610a3057600080fd5b50351515611baa565b348015610a4557600080fd5b506103b760048036036020811015610a5c57600080fd5b50356001600160a01b0316611c20565b348015610a7857600080fd5b5061040c611c3e565b348015610a8d57600080fd5b506103f560048036036020811015610aa457600080fd5b50356001600160a01b0316611c44565b348015610ac057600080fd5b506103f560048036036020811015610ad757600080fd5b50356001600160a01b0316611e26565b348015610af357600080fd5b506103f5611f0c565b348015610b0857600080fd5b5061040c611f6e565b348015610b1d57600080fd5b506103f560048036036020811015610b3457600080fd5b50356001600160a01b0316611f72565b348015610b5057600080fd5b50610433612108565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b6000610c03610bfc612117565b848461211b565b5060015b92915050565b610c15612117565b6000546001600160a01b03908116911614610c65576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60018110158015610c775750600b8111155b610cc8576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2031310000000000604482015290519081900360640190fd5b601455565b600e5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5490565b6000610d0a848484612207565b610d7a84610d16612117565b610d758560405180606001604052806028815260200161349b602891396001600160a01b038a16600090815260056020526040812090610d54612117565b6001600160a01b031681526020810191909152604001600020549190612774565b61211b565b5060019392505050565b6000600d54821115610dc75760405162461bcd60e51b815260040180806020018281038252602a8152602001806133e0602a913960400191505060405180910390fd5b6000610dd161280b565b9050610ddd838261282e565b9150505b919050565b60125460ff1690565b6000610c03610dfc612117565b84610d758560056000610e0d612117565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612877565b6000610e47612117565b6001600160a01b03811660009081526008602052604090205490915060ff1615610ea25760405162461bcd60e51b815260040180806020018281038252602c8152602001806135bb602c913960400191505060405180910390fd5b6000610ead836128d1565b505050506001600160a01b038416600090815260036020526040902054919250610ed99190508261292d565b6001600160a01b038316600090815260036020526040902055600d54610eff908261292d565b600d55600e54610f0f9084612877565b600e55505050565b6018546001600160a01b031681565b610f2e612117565b6000546001600160a01b03908116911614610f7e576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610fda5760405162461bcd60e51b815260040180806020018281038252602481526020018061352c6024913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615611048576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6000600c54831115611107576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611126576000611117846128d1565b50939550610c07945050505050565b6000611131846128d1565b50929550610c07945050505050565b7f000000000000000000000000423e8642242ea75f9f8b39526a9dfc185ff5c7a381565b601854600160b01b900460ff1681565b61117c612117565b6000546001600160a01b039081169116146111cc576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60006111d7306112d3565b90506111e28161296f565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b61120b612117565b6000546001600160a01b0390811691161461125b576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001811015801561126d5750600a8111155b6112be576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b601355565b601854600160a81b900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff161561131357506001600160a01b038116600090815260046020526040902054610de1565b6001600160a01b038216600090815260036020526040902054610c0790610d84565b61133d612117565b6000546001600160a01b0390811691161461138d576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206134e3833981519152908390a3600080546001600160a01b0319169055565b60066020526000908152604090205481565b6113df612117565b6000546001600160a01b0390811691161461142f576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60188054911515600160b81b0260ff60b81b19909216919091179055565b611455612117565b6000546001600160a01b039081169116146114a5576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b600f55565b60195481565b6114b8612117565b6000546001600160a01b03908116911614611508576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16611575576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561166457816001600160a01b0316600b828154811061159957fe5b6000918252602090912001546001600160a01b0316141561165c57600b805460001981019081106115c657fe5b600091825260209091200154600b80546001600160a01b0390921691839081106115ec57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b80548061163557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611664565b600101611578565b5050565b611670612117565b6000546001600160a01b039081169116146116c0576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610be55780601f10610bba57610100808354040283529160200191610be5565b61175a612117565b6000546001600160a01b039081169116146117aa576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c036117d9612117565b84610d758560405180606001604052806025815260200161360a6025913960056000611803612117565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612774565b6001546001600160a01b0316331461187d5760405162461bcd60e51b81526004018080602001828103825260238152602001806135e76023913960400191505060405180910390fd5b60025442116118d3576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206134e383398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610c0361192f612117565b8484612207565b601854600160b81b900460ff1681565b61194e612117565b6000546001600160a01b0390811691161461199e576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60188054911515600160b01b0260ff60b01b19909216919091179055565b6119c4612117565b6000546001600160a01b03908116911614611a14576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b611a6b612117565b6000546001600160a01b03908116911614611abb576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b611adb6064611ad583600c54612ba690919063ffffffff16565b9061282e565b60195550565b611ae9612117565b6000546001600160a01b03908116911614611b39576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206134e3833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611bb2612117565b6000546001600160a01b03908116911614611c02576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b60188054911515600160a81b0260ff60a81b19909216919091179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b600f5481565b611c4c612117565b6000546001600160a01b03908116911614611c9c576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415611cf85760405162461bcd60e51b81526004018080602001828103825260228152602001806135996022913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff1615611d66576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611dc0576001600160a01b038116600090815260036020526040902054611da690610d84565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b611e2e612117565b6000546001600160a01b03908116911614611e7e576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b038116611ec35760405162461bcd60e51b815260040180806020018281038252602681526020018061340a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206134e383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611f14612117565b6000546001600160a01b03908116911614611f64576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b476111e281612bff565b4790565b611f7a612117565b6000546001600160a01b03908116911614611fca576040805162461bcd60e51b815260206004820181905260248201526000805160206134c3833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16612037576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b60095481101561166457816001600160a01b03166009828154811061205b57fe5b6000918252602090912001546001600160a01b031614156121005760098054600019810190811061208857fe5b600091825260209091200154600980546001600160a01b0390921691839081106120ae57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff19169055600980548061163557fe5b60010161203a565b6017546001600160a01b031681565b3390565b6001600160a01b0383166121605760405162461bcd60e51b81526004018080602001828103825260248152602001806135756024913960400191505060405180910390fd5b6001600160a01b0382166121a55760405162461bcd60e51b81526004018080602001828103825260228152602001806134306022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661224c5760405162461bcd60e51b81526004018080602001828103825260258152602001806135506025913960400191505060405180910390fd5b6001600160a01b0382166122915760405162461bcd60e51b81526004018080602001828103825260238152602001806133bd6023913960400191505060405180910390fd5b600081116122d05760405162461bcd60e51b81526004018080602001828103825260298152602001806135036029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff1615612338576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16156123a0576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6123a86116e2565b6001600160a01b0316836001600160a01b0316141580156123e257506123cc6116e2565b6001600160a01b0316826001600160a01b031614155b156124fc576019548111156124285760405162461bcd60e51b81526004018080602001828103825260288152602001806134526028913960400191505060405180910390fd5b7f000000000000000000000000423e8642242ea75f9f8b39526a9dfc185ff5c7a36001600160a01b0316836001600160a01b0316148061249957507f000000000000000000000000423e8642242ea75f9f8b39526a9dfc185ff5c7a36001600160a01b0316826001600160a01b0316145b156124fc57601854600160b01b900460ff166124fc576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b601854600160b81b900460ff1615612668577f000000000000000000000000423e8642242ea75f9f8b39526a9dfc185ff5c7a36001600160a01b0316836001600160a01b03161415612590576001600160a01b03821660009081526008602052604090205460ff1661259057600f54612576904290612877565b6001600160a01b0383166000908152600660205260409020555b6125986116e2565b6001600160a01b0316836001600160a01b0316141580156125eb57507f000000000000000000000000423e8642242ea75f9f8b39526a9dfc185ff5c7a36001600160a01b0316836001600160a01b031614155b15612668576001600160a01b03831660009081526008602052604090205460ff16612668576001600160a01b038316600090815260066020526040902054421015612668576040805162461bcd60e51b815260206004820152600860248201526721b7b7b63237bbb760c11b604482015290519081900360640190fd5b6000612673306112d3565b9050601954811061268357506019545b601a546018549082101590600160a01b900460ff161580156126ae5750601854600160a81b900460ff165b80156126b75750805b80156126f557507f000000000000000000000000423e8642242ea75f9f8b39526a9dfc185ff5c7a36001600160a01b0316856001600160a01b031614155b15612715576127038261296f565b4780156127135761271347612bff565b505b6001600160a01b03851660009081526007602052604090205460019060ff168061275757506001600160a01b03851660009081526007602052604090205460ff165b15612760575060005b61276c86868684612c84565b505050505050565b600081848411156128035760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127c85781810151838201526020016127b0565b50505050905090810190601f1680156127f55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000612818612df8565b9092509050612827828261282e565b9250505090565b600061287083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f5b565b9392505050565b600082820183811015612870576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006128ee8a601354601454612fc0565b92509250925060006128fe61280b565b905060008060006129108e878661300f565b919e509c509a509598509396509194505050505091939550919395565b600061287083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612774565b6018805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106129b057fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612a2957600080fd5b505afa158015612a3d573d6000803e3d6000fd5b505050506040513d6020811015612a5357600080fd5b5051815182906001908110612a6457fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612aaf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461211b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b54578181015183820152602001612b3c565b505050509050019650505050505050600060405180830381600087803b158015612b7d57600080fd5b505af1158015612b91573d6000803e3d6000fd5b50506018805460ff60a01b1916905550505050565b600082612bb557506000610c07565b82820282848281612bc257fe5b04146128705760405162461bcd60e51b815260040180806020018281038252602181526020018061347a6021913960400191505060405180910390fd5b6017546001600160a01b03166108fc612c1983600261282e565b6040518115909202916000818181858888f19350505050158015612c41573d6000803e3d6000fd5b506018546001600160a01b03166108fc612c5c83600261282e565b6040518115909202916000818181858888f19350505050158015611664573d6000803e3d6000fd5b80612c9157612c9161304b565b6001600160a01b03841660009081526008602052604090205460ff168015612cd257506001600160a01b03831660009081526008602052604090205460ff16155b15612ce757612ce284848461307d565b612de5565b6001600160a01b03841660009081526008602052604090205460ff16158015612d2857506001600160a01b03831660009081526008602052604090205460ff165b15612d3857612ce28484846131a1565b6001600160a01b03841660009081526008602052604090205460ff16158015612d7a57506001600160a01b03831660009081526008602052604090205460ff16155b15612d8a57612ce284848461324a565b6001600160a01b03841660009081526008602052604090205460ff168015612dca57506001600160a01b03831660009081526008602052604090205460ff165b15612dda57612ce284848461328e565b612de584848461324a565b80612df257612df2613301565b50505050565b600d54600c546000918291825b600954811015612f2957826003600060098481548110612e2157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612e865750816004600060098481548110612e5f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612e9d57600d54600c5494509450505050612f57565b612edd6003600060098481548110612eb157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061292d565b9250612f1f6004600060098481548110612ef357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061292d565b9150600101612e05565b50600c54600d54612f399161282e565b821015612f5157600d54600c54935093505050612f57565b90925090505b9091565b60008183612faa5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156127c85781810151838201526020016127b0565b506000838581612fb657fe5b0495945050505050565b6000808080612fd46064611ad58989612ba6565b90506000612fe76064611ad58a89612ba6565b90506000612fff82612ff98b8661292d565b9061292d565b9992985090965090945050505050565b600080808061301e8786612ba6565b9050600061302c8787612ba6565b9050600061303a838361292d565b929992985090965090945050505050565b60135415801561305b5750601454155b156130655761307b565b6013805460155560148054601655600091829055555b565b60008060008060008061308f876128d1565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506130c1908861292d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546130f0908761292d565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461311f9086612877565b6001600160a01b0389166000908152600360205260409020556131418161330f565b61314b8483613398565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806131b3876128d1565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506131e5908761292d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461321b9084612877565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461311f9086612877565b60008060008060008061325c876128d1565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506130f0908761292d565b6000806000806000806132a0876128d1565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506132d2908861292d565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546131e5908761292d565b601554601355601654601455565b600061331961280b565b905060006133278383612ba6565b306000908152600360205260409020549091506133449082612877565b3060009081526003602090815260408083209390935560089052205460ff161561339357306000908152600460205260409020546133829084612877565b306000908152600460205260409020555b505050565b600d546133a5908361292d565b600d55600e546133b59082612877565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c91813e9f710d52c448da4487025f522e6853f2a4636a1e515917d01d8a6a09c64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b3ca8c28f4bfc570e4643dadf88d5a9293fcb71a000000000000000000000000a9833e5de579d8263be8d1e83cb784d602ce04aa
-----Decoded View---------------
Arg [0] : teamWalletAddress (address): 0xb3cA8c28F4BfC570E4643DaDF88D5A9293FCb71a
Arg [1] : marketingWalletAddress (address): 0xa9833E5de579D8263BE8d1e83Cb784d602cE04aa
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b3ca8c28f4bfc570e4643dadf88d5a9293fcb71a
Arg [1] : 000000000000000000000000a9833e5de579d8263be8d1e83cb784d602ce04aa
Deployed Bytecode Sourcemap
26701:29329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36658:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37662:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37662:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;55009:188;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55009:188:0;;:::i;:::-;;39157:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28064:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28064:51:0;;;;;;;;;;;;;;36971:103;;;;;;;;;;;;;:::i;37847:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37847:329:0;;;;;;;;;;;;;;;;;:::i;40165:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40165:269:0;;:::i;36868:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38188:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38188:230:0;;;;;;;;:::i;39264:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39264:405:0;;:::i;27997:46::-;;;;;;;;;;;;;:::i;41475:372::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41475:372:0;-1:-1:-1;;;;;41475:372:0;;:::i;39681:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39681:472:0;;;;;;;;;:::i;28126:38::-;;;;;;;;;;;;;:::i;28248:34::-;;;;;;;;;;;;;:::i;47962:168::-;;;;;;;;;;;;;:::i;42836:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42836:131:0;-1:-1:-1;;;;;42836:131:0;;:::i;54816:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54816:181:0;;:::i;28207:30::-;;;;;;;;;;;;;:::i;37086:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37086:210:0;-1:-1:-1;;;;;37086:210:0;;:::i;16536:160::-;;;;;;;;;;;;;:::i;27024:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27024:45:0;-1:-1:-1;;;;;27024:45:0;;:::i;55720:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55720:131:0;;;;:::i;55874:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55874:125:0;;:::i;28340:53::-;;;;;;;;;;;;;:::i;41863:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41863:540:0;-1:-1:-1;;;;;41863:540:0;;:::i;55383:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55383:165:0;-1:-1:-1;;;;;55383:165:0;;:::i;15834:87::-;;;;;;;;;;;;;:::i;36761:95::-;;;;;;;;;;;;;:::i;55217:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55217:145:0;-1:-1:-1;;;;;55217:145:0;;:::i;38430:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38430:281:0;;;;;;;;:::i;17643:313::-;;;;;;;;;;;;;:::i;37308:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37308:179:0;;;;;;;;:::i;28293:34::-;;;;;;;;;;;;;:::i;55569:129::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55569:129:0;;;;:::i;39000:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39000:145:0;;;;;;;;;;:::i;17140:97::-;;;;;;;;;;;;;:::i;38723:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38723:118:0;-1:-1:-1;;;;;38723:118:0;;:::i;42991:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42991:166:0;;:::i;17321:234::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17321:234:0;;:::i;37499:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37499:151:0;;;;;;;;;;:::i;48330:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48330:106:0;;;;:::i;38861:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38861:127:0;-1:-1:-1;;;;;38861:127:0;;:::i;27571:37::-;;;;;;;;;;;;;:::i;40446:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40446:475:0;-1:-1:-1;;;;;40446:475:0;;:::i;16868:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16868:260:0;-1:-1:-1;;;;;16868:260:0;;:::i;48150:168::-;;;;;;;;;;;;;:::i;54678:118::-;;;;;;;;;;;;;:::i;40933:522::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40933:522:0;-1:-1:-1;;;;;40933:522:0;;:::i;27945:41::-;;;;;;;;;;;;;:::i;36658:91::-;36732:5;36725:12;;;;;;;;-1:-1:-1;;36725:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36695:13;;36725:12;;36732:5;;36725:12;;36732:5;36725:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36658:91;:::o;37662:173::-;37737:4;37758:39;37767:12;:10;:12::i;:::-;37781:7;37790:6;37758:8;:39::i;:::-;-1:-1:-1;37819:4:0;37662:173;;;;;:::o;55009:188::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;55102:1:::1;55091:7;:12;;:29;;;;;55118:2;55107:7;:13;;55091:29;55083:69;;;::::0;;-1:-1:-1;;;55083:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55167:8;:18:::0;55009:188::o;39157:95::-;39230:10;;39157:95;:::o;28064:51::-;;;:::o;36971:103::-;37055:7;;36971:103;:::o;37847:329::-;37945:4;37966:36;37976:6;37984:9;37995:6;37966:9;:36::i;:::-;38017:121;38026:6;38034:12;:10;:12::i;:::-;38048:89;38086:6;38048:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38048:19:0;;;;;;:11;:19;;;;;;38068:12;:10;:12::i;:::-;-1:-1:-1;;;;;38048:33:0;;;;;;;;;;;;-1:-1:-1;38048:33:0;;;:89;:37;:89::i;:::-;38017:8;:121::i;:::-;-1:-1:-1;38160:4:0;37847:329;;;;;:::o;40165:269::-;40231:7;40274;;40263;:18;;40255:73;;;;-1:-1:-1;;;40255:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40343:19;40366:10;:8;:10::i;:::-;40343:33;-1:-1:-1;40398:24:0;:7;40343:33;40398:11;:24::i;:::-;40391:31;;;40165:269;;;;:::o;36868:91::-;36938:9;;;;36868:91;:::o;38188:230::-;38276:4;38297:83;38306:12;:10;:12::i;:::-;38320:7;38329:50;38368:10;38329:11;:25;38341:12;:10;:12::i;:::-;-1:-1:-1;;;;;38329:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;38329:25:0;;;:34;;;;;;;;;;;:38;:50::i;39264:405::-;39320:14;39337:12;:10;:12::i;:::-;-1:-1:-1;;;;;39373:19:0;;;;;;:11;:19;;;;;;39320:29;;-1:-1:-1;39373:19:0;;39372:20;39364:77;;;;-1:-1:-1;;;39364:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39457:15;39481:19;39492:7;39481:10;:19::i;:::-;-1:-1:-1;;;;;;;;;39533:15:0;;;;;;:7;:15;;;;;;39456:44;;-1:-1:-1;39533:28:0;;:15;-1:-1:-1;39456:44:0;39533:19;:28::i;:::-;-1:-1:-1;;;;;39515:15:0;;;;;;:7;:15;;;;;:46;39586:7;;:20;;39598:7;39586:11;:20::i;:::-;39576:7;:30;39634:10;;:23;;39649:7;39634:14;:23::i;:::-;39621:10;:36;-1:-1:-1;;;39264:405:0:o;27997:46::-;;;-1:-1:-1;;;;;27997:46:0;;:::o;41475:372::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;41574:42:::1;-1:-1:-1::0;;;;;41563:53:0;::::1;;;41555:102;;;;-1:-1:-1::0;;;41555:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;41681:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41680:27;41672:70;;;::::0;;-1:-1:-1;;;41672:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41757:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;41757:33:0::1;41786:4;41757:33:::0;;::::1;::::0;;;41805:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;41805:30:0::1;::::0;;::::1;::::0;;41475:372::o;39681:472::-;39771:7;39814;;39803;:18;;39795:62;;;;;-1:-1:-1;;;39795:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39877:17;39872:270;;39916:15;39940:19;39951:7;39940:10;:19::i;:::-;-1:-1:-1;39915:44:0;;-1:-1:-1;39978:14:0;;-1:-1:-1;;;;;39978:14:0;39872:270;40035:23;40066:19;40077:7;40066:10;:19::i;:::-;-1:-1:-1;40033:52:0;;-1:-1:-1;40104:22:0;;-1:-1:-1;;;;;40104:22:0;28126:38;;;:::o;28248:34::-;;;-1:-1:-1;;;28248:34:0;;;;;:::o;47962:168::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;48020:23:::1;48046:24;48064:4;48046:9;:24::i;:::-;48020:50;;48085:33;48102:15;48085:16;:33::i;:::-;16146:1;47962:168::o:0;42836:131::-;-1:-1:-1;;;;;42928:27:0;42900:4;42928:27;;;:18;:27;;;;;;;;;42836:131::o;54816:181::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;54906:1:::1;54896:6;:11;;:27;;;;;54921:2;54911:6;:12;;54896:27;54888:66;;;::::0;;-1:-1:-1;;;54888:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;54969:7;:16:::0;54816:181::o;28207:30::-;;;-1:-1:-1;;;28207:30:0;;;;;:::o;37086:210::-;-1:-1:-1;;;;;37180:20:0;;37152:7;37180:20;;;:11;:20;;;;;;;;37176:49;;;-1:-1:-1;;;;;;37209:16:0;;;;;;:7;:16;;;;;;37202:23;;37176:49;-1:-1:-1;;;;;37267:16:0;;;;;;:7;:16;;;;;;37247:37;;:19;:37::i;16536:160::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;16647:1:::1;16631:6:::0;;16610:40:::1;::::0;-1:-1:-1;;;;;16631:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16610:40:0;16647:1;;16610:40:::1;16682:1;16665:19:::0;;-1:-1:-1;;;;;;16665:19:0::1;::::0;;16536:160::o;27024:45::-;;;;;;;;;;;;;:::o;55720:131::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;55804:15:::1;:34:::0;;;::::1;;-1:-1:-1::0;;;55804:34:0::1;-1:-1:-1::0;;;;55804:34:0;;::::1;::::0;;;::::1;::::0;;55720:131::o;55874:125::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;55949:9:::1;:34:::0;55874:125::o;28340:53::-;;;;:::o;41863:540::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41956:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;41948:65;;;::::0;;-1:-1:-1;;;41948:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42033:9;42028:364;42052:16;:23:::0;42048:27;::::1;42028:364;;;42128:7;-1:-1:-1::0;;;;;42105:30:0::1;:16;42122:1;42105:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;42105:19:0::1;:30;42101:276;;;42182:16;42199:23:::0;;-1:-1:-1;;42199:27:0;;;42182:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;42160:16:::1;:19:::0;;-1:-1:-1;;;;;42182:45:0;;::::1;::::0;42177:1;;42160:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;42160:67:0::1;-1:-1:-1::0;;;;;42160:67:0;;::::1;;::::0;;42250:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;42250:34:0::1;::::0;;42307:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;42307:22:0;;;;;-1:-1:-1;;;;;;42307:22:0::1;::::0;;;;;42352:5:::1;;42101:276;42077:3;;42028:364;;;;41863:540:::0;:::o;55383:165::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;55488:23:::1;:48:::0;;-1:-1:-1;;;;;;55488:48:0::1;-1:-1:-1::0;;;;;55488:48:0;;;::::1;::::0;;;::::1;::::0;;55383:165::o;15834:87::-;15872:7;15903:6;-1:-1:-1;;;;;15903:6:0;15834:87;:::o;36761:95::-;36837:7;36830:14;;;;;;;;-1:-1:-1;;36830:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36800:13;;36830:14;;36837:7;;36830:14;;36837:7;36830:14;;;;;;;;;;;;;;;;;;;;;;;;55217:145;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;55312:18:::1;:38:::0;;-1:-1:-1;;;;;;55312:38:0::1;-1:-1:-1::0;;;;;55312:38:0;;;::::1;::::0;;;::::1;::::0;;55217:145::o;38430:281::-;38523:4;38544:129;38553:12;:10;:12::i;:::-;38567:7;38576:96;38615:15;38576:96;;;;;;;;;;;;;;;;;:11;:25;38588:12;:10;:12::i;:::-;-1:-1:-1;;;;;38576:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;38576:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17643:313::-;17699:14;;-1:-1:-1;;;;;17699:14:0;17717:10;17699:28;17691:76;;;;-1:-1:-1;;;17691:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17796:9;;17790:3;:15;17782:60;;;;;-1:-1:-1;;;17782:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17891:14;;;17883:6;;17862:44;;-1:-1:-1;;;;;17891:14:0;;;;17883:6;;;;-1:-1:-1;;;;;;;;;;;17862:44:0;;17930:14;;;17921:23;;-1:-1:-1;;;;;;17921:23:0;-1:-1:-1;;;;;17930:14:0;;;17921:23;;;;;;17643:313::o;37308:179::-;37386:4;37407:42;37417:12;:10;:12::i;:::-;37431:9;37442:6;37407:9;:42::i;28293:34::-;;;-1:-1:-1;;;28293:34:0;;;;;:::o;55569:129::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;55653:14:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;55653:32:0::1;-1:-1:-1::0;;;;55653:32:0;;::::1;::::0;;;::::1;::::0;;55569:129::o;39000:145::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39095:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;39095:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39000:145::o;17140:97::-;17216:9;;17140:97;:::o;38723:118::-;-1:-1:-1;;;;;38809:20:0;38781:4;38809:20;;;:11;:20;;;;;;;;;38723:118::o;42991:166::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;43085:60:::1;43129:5;43085:25;43097:12;43085:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;43070:12;:75:::0;-1:-1:-1;42991:166:0:o;17321:234::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;17406:6:::1;::::0;;;17389:23;;-1:-1:-1;;;;;;17389:23:0;;::::1;-1:-1:-1::0;;;;;17406:6:0;::::1;17389:23;::::0;;;17427:19:::1;::::0;;17473:3:::1;:10:::0;::::1;17461:9;:22:::0;17503:40:::1;::::0;17406:6;;-1:-1:-1;;;;;;;;;;;17503:40:0;17406:6;;17503:40:::1;17321:234:::0;:::o;37499:151::-;-1:-1:-1;;;;;37611:18:0;;;37580:7;37611:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;37499:151::o;48330:106::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;48403:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;48403:21:0::1;-1:-1:-1::0;;;;48403:21:0;;::::1;::::0;;;::::1;::::0;;48330:106::o;38861:127::-;-1:-1:-1;;;;;38950:26:0;38922:4;38950:26;;;:17;:26;;;;;;;;;38861:127::o;27571:37::-;;;;:::o;40446:475::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;40542:42:::1;-1:-1:-1::0;;;;;40531:53:0;::::1;;;40523:100;;;;-1:-1:-1::0;;;40523:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;40647:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40646:21;40638:61;;;::::0;;-1:-1:-1;;;40638:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40717:16:0;::::1;40736:1;40717:16:::0;;;:7:::1;:16;::::0;;;;;:20;40714:116:::1;;-1:-1:-1::0;;;;;40797:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40777:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40758:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40714:116:::1;-1:-1:-1::0;;;;;40844:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40844:27:0::1;40867:4;40844:27:::0;;::::1;::::0;;;40886:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40886:23:0::1;::::0;;::::1;::::0;;40446:475::o;16868:260::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16961:22:0;::::1;16953:73;;;;-1:-1:-1::0;;;16953:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17067:6;::::0;;17046:38:::1;::::0;-1:-1:-1;;;;;17046:38:0;;::::1;::::0;17067:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17046:38:0;::::1;17099:6;:17:::0;;-1:-1:-1;;;;;;17099:17:0::1;-1:-1:-1::0;;;;;17099:17:0;;;::::1;::::0;;;::::1;::::0;;16868:260::o;48150:168::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;48237:21:::1;48273:33;48237:21:::0;48273:13:::1;:33::i;54678:118::-:0;54763:21;54678:118;:::o;40933:522::-;16082:12;:10;:12::i;:::-;16072:6;;-1:-1:-1;;;;;16072:6:0;;;:22;;;16064:67;;;;;-1:-1:-1;;;16064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41018:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;41010:60;;;::::0;;-1:-1:-1;;;41010:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41090:9;41085:359;41109:9;:16:::0;41105:20;::::1;41085:359;;;41171:7;-1:-1:-1::0;;;;;41155:23:0::1;:9;41165:1;41155:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41155:12:0::1;:23;41151:278;;;41218:9;41228:16:::0;;-1:-1:-1;;41228:20:0;;;41218:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;41203:9:::1;:12:::0;;-1:-1:-1;;;;;41218:31:0;;::::1;::::0;41213:1;;41203:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;41203:46:0::1;-1:-1:-1::0;;;;;41203:46:0;;::::1;;::::0;;41272:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;41315:11:::1;:20:::0;;;;:28;;-1:-1:-1;;41315:28:0::1;::::0;;41366:9:::1;:15:::0;;;::::1;;;41151:278;41127:3;;41085:359;;27945:41:::0;;;-1:-1:-1;;;;;27945:41:0;;:::o;291:114::-;383:10;291:114;:::o;43169:357::-;-1:-1:-1;;;;;43266:19:0;;43258:68;;;;-1:-1:-1;;;43258:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43349:21:0;;43341:68;;;;-1:-1:-1;;;43341:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43426:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43482:32;;;;;;;;;;;;;;;;;43169:357;;;:::o;43538:3388::-;-1:-1:-1;;;;;43639:20:0;;43631:70;;;;-1:-1:-1;;;43631:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43724:23:0;;43716:71;;;;-1:-1:-1;;;43716:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43819:1;43810:6;:10;43802:64;;;;-1:-1:-1;;;43802:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43890:28:0;;;;;;:17;:28;;;;;;;;43889:29;43881:65;;;;;-1:-1:-1;;;43881:65:0;;;;;;;;;;;;-1:-1:-1;;;43881:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43970:25:0;;;;;;:17;:25;;;;;;;;43969:26;43961:62;;;;;-1:-1:-1;;;43961:62:0;;;;;;;;;;;;-1:-1:-1;;;43961:62:0;;;;;;;;;;;;;;;44053:7;:5;:7::i;:::-;-1:-1:-1;;;;;44043:17:0;:6;-1:-1:-1;;;;;44043:17:0;;;:41;;;;;44077:7;:5;:7::i;:::-;-1:-1:-1;;;;;44064:20:0;:9;-1:-1:-1;;;;;44064:20:0;;;44043:41;44040:429;;;44149:12;;44139:6;:22;;44131:75;;;;-1:-1:-1;;;44131:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44336:13;-1:-1:-1;;;;;44326:23:0;:6;-1:-1:-1;;;;;44326:23:0;;:53;;;;44366:13;-1:-1:-1;;;;;44353:26:0;:9;-1:-1:-1;;;;;44353:26:0;;44326:53;44322:116;;;44391:14;;-1:-1:-1;;;44391:14:0;;;;44383:53;;;;;-1:-1:-1;;;44383:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;44568:15;;-1:-1:-1;;;44568:15:0;;;;44565:805;;;44723:13;-1:-1:-1;;;;;44713:23:0;:6;-1:-1:-1;;;;;44713:23:0;;44709:258;;;-1:-1:-1;;;;;44858:22:0;;;;;;:11;:22;;;;;;;;44853:87;;44927:9;;44907:30;;:15;;:19;:30::i;:::-;-1:-1:-1;;;;;44884:20:0;;;;;;:9;:20;;;;;:53;44853:87;45082:7;:5;:7::i;:::-;-1:-1:-1;;;;;45072:17:0;:6;-1:-1:-1;;;;;45072:17:0;;;:44;;;;;45103:13;-1:-1:-1;;;;;45093:23:0;:6;-1:-1:-1;;;;;45093:23:0;;;45072:44;45069:269;;;-1:-1:-1;;;;;45228:19:0;;;;;;:11;:19;;;;;;;;45223:88;;-1:-1:-1;;;;;45278:17:0;;;;;;:9;:17;;;;;;45259:15;:36;;45251:57;;;;;-1:-1:-1;;;45251:57:0;;;;;;;;;;;;-1:-1:-1;;;45251:57:0;;;;;;;;;;;;;;;45652:28;45683:24;45701:4;45683:9;:24::i;:::-;45652:55;;45763:12;;45739:20;:36;45736:124;;-1:-1:-1;45832:12:0;;45736:124;45939:29;;45988:6;;45915:53;;;;;-1:-1:-1;;;45988:6:0;;;;45987:7;:22;;;;-1:-1:-1;45998:11:0;;-1:-1:-1;;;45998:11:0;;;;45987:22;:45;;;;;46013:19;45987:45;:72;;;;;46046:13;-1:-1:-1;;;;;46036:23:0;:6;-1:-1:-1;;;;;46036:23:0;;;45987:72;45983:452;;;46170:38;46187:20;46170:16;:38::i;:::-;46274:21;46317:22;;46314:106;;46364:36;46378:21;46364:13;:36::i;:::-;45983:452;;-1:-1:-1;;;;;46667:26:0;;46528:12;46667:26;;;:18;:26;;;;;;46543:4;;46667:26;;;:59;;-1:-1:-1;;;;;;46697:29:0;;;;;;:18;:29;;;;;;;;46667:59;46664:113;;;-1:-1:-1;46756:5:0;46664:113;46867:47;46882:6;46889:9;46899:6;46906:7;46867:14;:47::i;:::-;43538:3388;;;;;;:::o;4818:208::-;4904:7;4944:12;4936:6;;;;4928:29;;;;-1:-1:-1;;;4928:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4984:5:0;;;4818:208::o;53650:175::-;53691:7;53716:15;53733;53752:19;:17;:19::i;:::-;53715:56;;-1:-1:-1;53715:56:0;-1:-1:-1;53793:20:0;53715:56;;53793:11;:20::i;:::-;53786:27;;;;53650:175;:::o;6348:140::-;6406:7;6437:39;6441:1;6444;6437:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6430:46;6348:140;-1:-1:-1;;;6348:140:0:o;3821:197::-;3879:7;3915:5;;;3943:6;;;;3935:46;;;;;-1:-1:-1;;;3935:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52408:481;52467:7;52476;52485;52494;52503;52512;52537:23;52562:12;52576:13;52593:39;52605:7;52614;;52623:8;;52593:11;:39::i;:::-;52536:96;;;;;;52647:19;52670:10;:8;:10::i;:::-;52647:33;;52696:15;52713:23;52738:12;52754:39;52766:7;52775:4;52781:11;52754;:39::i;:::-;52695:98;;-1:-1:-1;52695:98:0;-1:-1:-1;52695:98:0;-1:-1:-1;52848:15:0;;-1:-1:-1;52865:4:0;;-1:-1:-1;52871:5:0;;-1:-1:-1;;;;;52408:481:0;;;;;;;:::o;4336:144::-;4394:7;4425:43;4429:1;4432;4425:43;;;;;;;;;;;;;;;;;:3;:43::i;46938:656::-;28678:6;:13;;-1:-1:-1;;;;28678:13:0;-1:-1:-1;;;28678:13:0;;;47107:16:::1;::::0;;47121:1:::1;47107:16:::0;;;47083:21:::1;47107:16:::0;;::::1;::::0;;47083:21;47107:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;47107:16:0::1;47083:40;;47156:4;47138;47143:1;47138:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;47138:23:0::1;;;-1:-1:-1::0;;;;;47138:23:0::1;;;::::0;::::1;47186:15;-1:-1:-1::0;;;;;47186:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;47186:22:0;47176:7;;:4;;47181:1:::1;::::0;47176:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;47176:32:0::1;;;-1:-1:-1::0;;;;;47176:32:0::1;;;::::0;::::1;47225:62;47242:4;47257:15;47275:11;47225:8;:62::i;:::-;47334:15;-1:-1:-1::0;;;;;47334:66:0::1;;47419:11;47449:1;47497:4;47528;47552:15;47334:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;47334:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28722:6:0;:14;;-1:-1:-1;;;;28722:14:0;;;-1:-1:-1;;;;46938:656:0:o;5320:511::-;5378:7;5639:6;5635:55;;-1:-1:-1;5673:1:0;5666:8;;5635:55;5718:5;;;5722:1;5718;:5;:1;5746:5;;;;;:10;5738:56;;;;-1:-1:-1;;;5738:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47614:178;47676:18;;-1:-1:-1;;;;;47676:18:0;:42;47704:13;:6;47715:1;47704:10;:13::i;:::-;47676:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47733:23:0;;-1:-1:-1;;;;;47733:23:0;:47;47766:13;:6;47777:1;47766:10;:13::i;:::-;47733:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48456:883;48572:7;48568:44;;48598:14;:12;:14::i;:::-;-1:-1:-1;;;;;48633:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48657:22:0;;;;;;:11;:22;;;;;;;;48656:23;48633:46;48629:637;;;48700:48;48722:6;48730:9;48741:6;48700:21;:48::i;:::-;48629:637;;;-1:-1:-1;;;;;48775:19:0;;;;;;:11;:19;;;;;;;;48774:20;:46;;;;-1:-1:-1;;;;;;48798:22:0;;;;;;:11;:22;;;;;;;;48774:46;48770:496;;;48841:46;48861:6;48869:9;48880:6;48841:19;:46::i;48770:496::-;-1:-1:-1;;;;;48914:19:0;;;;;;:11;:19;;;;;;;;48913:20;:47;;;;-1:-1:-1;;;;;;48938:22:0;;;;;;:11;:22;;;;;;;;48937:23;48913:47;48909:357;;;48981:44;48999:6;49007:9;49018:6;48981:17;:44::i;48909:357::-;-1:-1:-1;;;;;49051:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49074:22:0;;;;;;:11;:22;;;;;;;;49051:45;49047:219;;;49117:48;49139:6;49147:9;49158:6;49117:21;:48::i;49047:219::-;49206:44;49224:6;49232:9;49243:6;49206:17;:44::i;:::-;49286:7;49282:45;;49312:15;:13;:15::i;:::-;48456:883;;;;:::o;53837:601::-;53938:7;;53978;;53887;;;;;54006:305;54030:9;:16;54026:20;;54006:305;;;54100:7;54076;:21;54084:9;54094:1;54084:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54084:12:0;54076:21;;;;;;;;;;;;;:31;;:66;;;54135:7;54111;:21;54119:9;54129:1;54119:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54119:12:0;54111:21;;;;;;;;;;;;;:31;54076:66;54072:97;;;54152:7;;54161;;54144:25;;;;;;;;;54072:97;54198:34;54210:7;:21;54218:9;54228:1;54218:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54218:12:0;54210:21;;;;;;;;;;;;;54198:7;;:11;:34::i;:::-;54188:44;;54261:34;54273:7;:21;54281:9;54291:1;54281:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54281:12:0;54273:21;;;;;;;;;;;;;54261:7;;:11;:34::i;:::-;54251:44;-1:-1:-1;54048:3:0;;54006:305;;;-1:-1:-1;54351:7:0;;54339;;:20;;:11;:20::i;:::-;54329:7;:30;54325:61;;;54369:7;;54378;;54361:25;;;;;;;;54325:61;54409:7;;-1:-1:-1;54418:7:0;-1:-1:-1;53837:601:0;;;:::o;7025:298::-;7111:7;7150:12;7143:5;7135:28;;;;-1:-1:-1;;;7135:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7178:9;7194:1;7190;:5;;;;;;;7025:298;-1:-1:-1;;;;;7025:298:0:o;52901:371::-;52994:7;;;;53051:28;53075:3;53051:19;:7;53063:6;53051:11;:19::i;:28::-;53036:43;-1:-1:-1;53094:13:0;53110:29;53135:3;53110:20;:7;53122;53110:11;:20::i;:29::-;53094:45;-1:-1:-1;53154:23:0;53180:28;53094:45;53180:17;:7;53192:4;53180:11;:17::i;:::-;:21;;:28::i;:::-;53154:54;53248:4;;-1:-1:-1;53254:5:0;;-1:-1:-1;52901:371:0;;-1:-1:-1;;;;;52901:371:0:o;53284:354::-;53379:7;;;;53439:24;:7;53451:11;53439;:24::i;:::-;53421:42;-1:-1:-1;53478:12:0;53493:21;:4;53502:11;53493:8;:21::i;:::-;53478:36;-1:-1:-1;53529:23:0;53555:17;:7;53478:36;53555:11;:17::i;:::-;53595:7;;;;-1:-1:-1;53621:4:0;;-1:-1:-1;53284:354:0;;-1:-1:-1;;;;;53284:354:0:o;42415:262::-;42465:7;;:12;:29;;;;-1:-1:-1;42481:8:0;;:13;42465:29;42462:41;;;42496:7;;42462:41;42549:7;;;42531:15;:25;42590:8;;;42571:16;:27;-1:-1:-1;42627:11:0;;;;42653:12;42415:262;:::o;50499:584::-;50606:15;50623:23;50648:12;50662:23;50687:12;50701:13;50718:19;50729:7;50718:10;:19::i;:::-;-1:-1:-1;;;;;50770:15:0;;;;;;:7;:15;;;;;;50605:132;;-1:-1:-1;50605:132:0;;-1:-1:-1;50605:132:0;;-1:-1:-1;50605:132:0;-1:-1:-1;50605:132:0;-1:-1:-1;50605:132:0;-1:-1:-1;50770:28:0;;50790:7;50770:19;:28::i;:::-;-1:-1:-1;;;;;50752:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50831:7;:15;;;;:28;;50851:7;50831:19;:28::i;:::-;-1:-1:-1;;;;;50813:15:0;;;;;;;:7;:15;;;;;;:46;;;;50895:18;;;;;;;:39;;50918:15;50895:22;:39::i;:::-;-1:-1:-1;;;;;50874:18:0;;;;;;:7;:18;;;;;:60;50950:16;50960:5;50950:9;:16::i;:::-;50984:23;50996:4;51002;50984:11;:23::i;:::-;51044:9;-1:-1:-1;;;;;51027:44:0;51036:6;-1:-1:-1;;;;;51027:44:0;;51055:15;51027:44;;;;;;;;;;;;;;;;;;50499:584;;;;;;;;;:::o;49880:607::-;49985:15;50002:23;50027:12;50041:23;50066:12;50080:13;50097:19;50108:7;50097:10;:19::i;:::-;-1:-1:-1;;;;;50149:15:0;;;;;;:7;:15;;;;;;49984:132;;-1:-1:-1;49984:132:0;;-1:-1:-1;49984:132:0;;-1:-1:-1;49984:132:0;-1:-1:-1;49984:132:0;-1:-1:-1;49984:132:0;-1:-1:-1;50149:28:0;;49984:132;50149:19;:28::i;:::-;-1:-1:-1;;;;;50131:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50213:18;;;;;:7;:18;;;;;:39;;50236:15;50213:22;:39::i;:::-;-1:-1:-1;;;;;50192:18:0;;;;;;:7;:18;;;;;;;;:60;;;;50288:7;:18;;;;:39;;50311:15;50288:22;:39::i;49351:517::-;49454:15;49471:23;49496:12;49510:23;49535:12;49549:13;49566:19;49577:7;49566:10;:19::i;:::-;-1:-1:-1;;;;;49618:15:0;;;;;;:7;:15;;;;;;49453:132;;-1:-1:-1;49453:132:0;;-1:-1:-1;49453:132:0;;-1:-1:-1;49453:132:0;-1:-1:-1;49453:132:0;-1:-1:-1;49453:132:0;-1:-1:-1;49618:28:0;;49453:132;49618:19;:28::i;51095:667::-;51202:15;51219:23;51244:12;51258:23;51283:12;51297:13;51314:19;51325:7;51314:10;:19::i;:::-;-1:-1:-1;;;;;51366:15:0;;;;;;:7;:15;;;;;;51201:132;;-1:-1:-1;51201:132:0;;-1:-1:-1;51201:132:0;;-1:-1:-1;51201:132:0;-1:-1:-1;51201:132:0;-1:-1:-1;51201:132:0;-1:-1:-1;51366:28:0;;51386:7;51366:19;:28::i;:::-;-1:-1:-1;;;;;51348:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51427:7;:15;;;;:28;;51447:7;51427:19;:28::i;42693:127::-;42751:15;;42741:7;:25;42792:16;;42781:8;:27;42693:127::o;51774:349::-;51831:19;51854:10;:8;:10::i;:::-;51831:33;-1:-1:-1;51879:13:0;51895:22;:5;51831:33;51895:9;:22::i;:::-;51973:4;51957:22;;;;:7;:22;;;;;;51879:38;;-1:-1:-1;51957:33:0;;51879:38;51957:26;:33::i;:::-;51948:4;51932:22;;;;:7;:22;;;;;;;;:58;;;;52008:11;:26;;;;;;52005:106;;;52094:4;52078:22;;;;:7;:22;;;;;;:33;;52105:5;52078:26;:33::i;:::-;52069:4;52053:22;;;;:7;:22;;;;;:58;52005:106;51774:349;;;:::o;52135:159::-;52217:7;;:17;;52229:4;52217:11;:17::i;:::-;52207:7;:27;52262:10;;:20;;52277:4;52262:14;:20::i;:::-;52249:10;:33;-1:-1:-1;;52135:159:0:o
Swarm Source
ipfs://c91813e9f710d52c448da4487025f522e6853f2a4636a1e515917d01d8a6a09c
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.