ERC-20
Overview
Max Total Supply
500,000,000 $SMASH
Holders
179
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
11.150907232 $SMASHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SMASHCOIN
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-29 */ /* Website - https://www.smash-cryptocoin.com Telegram - https://t.me/smashcryptocoin Twitter - https://twitter.com/smashcryptocoin */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.10; interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { 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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); 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, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 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, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SMASHCOIN is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; address[] private _excluded; mapping(address => bool) private _isExcludedFromLimit; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 500000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address payable public _marketingAddress = payable(address(0x678B0621Cfa5BC2087f0c6A6a69BaBa51D8ff22d)); address private _burnAddress = 0x000000000000000000000000000000000000dEaD; string private _name = "SMASHCOIN"; string private _symbol = "$SMASH"; uint8 private _decimals = 9; struct BuyFee { uint8 reflection; uint8 liquidity; uint8 marketing; uint8 burn; } struct SellFee { uint8 reflection; uint8 liquidity; uint8 marketing; uint8 burn; } BuyFee public buyFee; SellFee public sellFee; uint8 private _reflectionFee; uint8 private _liquidityFee; uint8 private _marketingFee; uint8 private _burnFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = _tTotal.div(1000).mul(1); //0.1% uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(1); //0.1% uint256 public _maxWalletSize = _tTotal.div(1000).mul(3); // 1.5% event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } uint256 public deadBlocks = 2; uint256 public launchedAt = 0; bool tradingOpen = false; mapping (address => uint256) public _lastTrade; constructor() { _rOwned[_msgSender()] = _rTotal; buyFee.reflection = 1; buyFee.liquidity = 2; buyFee.marketing = 6; buyFee.burn = 1; sellFee.reflection = 1; sellFee.liquidity = 6; sellFee.marketing = 92; sellFee.burn = 1; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner, and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingAddress] = true; _isExcludedFromLimit[_marketingAddress] = true; _isExcludedFromLimit[owner()] = true; _isExcludedFromLimit[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function burnAddress() public view returns (address) { return _burnAddress; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); ( , uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn ) = _getTValues(tAmount); (uint256 rAmount, , ) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tBurn, _getRate() ); _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"); ( , uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tBurn, _getRate() ); if (!deductTransferFee) { return rAmount; } else { 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 updateMarketingWallet(address payable newAddress) external onlyOwner { _marketingAddress = newAddress; } function excludeFromReward(address account) public onlyOwner { require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is not 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 excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function excludeFromLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = true; } function includeInLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = false; } function setSellFee( uint8 reflection, uint8 liquidity, uint8 marketing, uint8 burn ) external onlyOwner { sellFee.reflection = reflection; sellFee.marketing = marketing; sellFee.liquidity = liquidity; sellFee.burn = burn; } function setBuyFee( uint8 reflection, uint8 liquidity, uint8 marketing, uint8 burn ) external onlyOwner { buyFee.reflection = reflection; buyFee.marketing = marketing; buyFee.liquidity = liquidity; buyFee.burn = burn; } function setBothFees( uint8 buy_reflection, uint8 buy_liquidity, uint8 buy_marketing, uint8 buy_burn, uint8 sell_reflection, uint8 sell_liquidity, uint8 sell_marketing, uint8 sell_burn ) external onlyOwner { buyFee.reflection = buy_reflection; buyFee.marketing = buy_marketing; buyFee.liquidity = buy_liquidity; buyFee.burn = buy_burn; sellFee.reflection = sell_reflection; sellFee.marketing = sell_marketing; sellFee.liquidity = sell_liquidity; sellFee.burn = sell_burn; } function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner { numTokensSellToAddToLiquidity = numTokens; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3); } function _setMaxWalletSizePercent(uint256 maxWalletSize) external onlyOwner { _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateReflectionFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tWallet = calculateMarketingFee(tAmount); uint256 tBurn = calculateBurnFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); tTransferAmount = tTransferAmount.sub(tWallet); tTransferAmount = tTransferAmount.sub(tBurn); return (tTransferAmount, tFee, tLiquidity, tWallet, tBurn); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rWallet = tWallet.mul(currentRate); uint256 rBurn = tBurn.mul(currentRate); uint256 rTransferAmount = rAmount .sub(rFee) .sub(rLiquidity) .sub(rWallet) .sub(rBurn); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeWalletFee(uint256 tWallet) private { uint256 currentRate = _getRate(); uint256 rWallet = tWallet.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rWallet); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tWallet); } function _takeBurnFee(uint256 tBurn) private { uint256 currentRate = _getRate(); uint256 rBurn = tBurn.mul(currentRate); _rOwned[_burnAddress] = _rOwned[_burnAddress].add(rBurn); if (_isExcluded[_burnAddress]) _tOwned[_burnAddress] = _tOwned[_burnAddress].add( tBurn ); } function calculateReflectionFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_reflectionFee).div(10**2); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div(10**2); } function calculateBurnFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_burnFee).div(10**2); } function removeAllFee() private { _reflectionFee = 0; _liquidityFee = 0; _marketingFee = 0; _burnFee = 0; } function setBuy() private { _reflectionFee = buyFee.reflection; _liquidityFee = buyFee.liquidity; _marketingFee = buyFee.marketing; _burnFee = buyFee.burn; } function setSell() private { _reflectionFee = sellFee.reflection; _liquidityFee = sellFee.liquidity; _marketingFee = sellFee.marketing; _burnFee = sellFee.burn; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function isExcludedFromLimit(address account) public view returns (bool) { return _isExcludedFromLimit[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } if (takeFee) { if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { require( amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount." ); if (to != uniswapV2Pair) { require( amount + balanceOf(to) <= _maxWalletSize, "Recipient exceeds max wallet size." ); } } } //transfer amount, it will take reflection, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 tokens) private lockTheSwap { // Split the contract balance into halves uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2; uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator; uint256 toSwap = tokens - tokensToAddLiquidityWith; uint256 initialBalance = address(this).balance; swapTokensForEth(toSwap); uint256 deltaBalance = address(this).balance - initialBalance; uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)); uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity); if (ethToAddLiquidityWith > 0) { // Add liquidity to uniswap addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith); } // Send ETH to marketing uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing); if (marketingAmt > 0) { payable(_marketingAddress).transfer(marketingAmt); } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (takeFee) { removeAllFee(); if (sender == uniswapV2Pair) { setBuy(); } if (recipient == uniswapV2Pair) { setSell(); } } 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); } removeAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tBurn, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeBurnFee(tBurn); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tBurn, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeBurnFee(tBurn); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tBurn, _getRate() ); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeBurnFee(tBurn); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tBurn ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tBurn, _getRate() ); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeBurnFee(tBurn); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() { tradingOpen = _status; excludeFromReward(address(this)); excludeFromReward(uniswapV2Pair); if(tradingOpen && launchedAt == 0){ launchedAt = block.number; deadBlocks = _deadBlocks; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","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":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","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":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"buy_burn","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_burn","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"},{"internalType":"uint8","name":"burn","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526706f05b59d3b20000600981905562000020906000196200069e565b6200002e90600019620006cb565b600a55600c80546001600160a01b031990811673678b0621cfa5bc2087f0c6a6a69baba51d8ff22d17909155600d805490911661dead1790556040805180820190915260098082526829a6a0a9a421a7a4a760b91b60209092019182526200009991600e91620005e2565b5060408051808201909152600680825265048a69a82a6960d31b6020909201918252620000c991600f91620005e2565b506010805460ff191660099081179091556013805460ff60281b19166501000000000017905554620001299060019062000115906103e862001738620004c5602090811b91909117901c565b6200051860201b6200177a1790919060201c565b601455620001506001620001156103e8600954620004c560201b620017381790919060201c565b601555620001776003620001156103e8600954620004c560201b620017381790919060201c565b601655600260175560006018556019805460ff191690553480156200019b57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5433600090815260026020908152604091829020929092556011805463ffffffff199081166301060201179091556012805490911663015c0601179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f9190620006e5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003039190620006e5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000351573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003779190620006e5565b6001600160a01b0390811660a0528116608052600160056000620003a36000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c805484168352848320805488168317905554909216815260089384905291822080549094168117909355620004266000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260089092529020805490911660011790556200046e3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600954604051620004b691815260200190565b60405180910390a350620007dd565b60006200050f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005a660201b60201c565b90505b92915050565b6000826000036200052c5750600062000512565b60006200053a838562000710565b90508262000549858362000732565b146200050f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005ca5760405162461bcd60e51b81526004016200059d919062000749565b506000620005d9848662000732565b95945050505050565b828054620005f090620007a1565b90600052602060002090601f0160209004810192826200061457600085556200065f565b82601f106200062f57805160ff19168380011785556200065f565b828001600101855582156200065f579182015b828111156200065f57825182559160200191906001019062000642565b506200066d92915062000671565b5090565b5b808211156200066d576000815560010162000672565b634e487b7160e01b600052601260045260246000fd5b600082620006b057620006b062000688565b500690565b634e487b7160e01b600052601160045260246000fd5b600082821015620006e057620006e0620006b5565b500390565b600060208284031215620006f857600080fd5b81516001600160a01b03811681146200050f57600080fd5b60008160001904831182151516156200072d576200072d620006b5565b500290565b60008262000744576200074462000688565b500490565b600060208083528351808285015260005b8181101562000778578581018301518582016040015282016200075a565b818111156200078b576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c90821680620007b657607f821691505b602082108103620007d757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161323d620008496000396000818161058d01528181610bb601528181611b0e01528181611c6a0152818161214101526121cb01526000818161035101528181612616015281816126cf0152818161270b0152818161277d01526127d9015261323d6000f3fe6080604052600436106102975760003560e01c806370d5ae051161015a578063af2ce614116100c1578063dd62ed3e1161007a578063dd62ed3e146108b2578063ea2f0b37146108f8578063f0f165af14610918578063f2fde38b14610938578063fabb0b4f14610958578063fe63178f1461096e57600080fd5b8063af2ce614146107e3578063bf56b37114610803578063c49b9a8014610819578063caac793414610839578063d543dbeb14610859578063d94160e01461087957600080fd5b806391d919a91161011357806391d919a91461072157806395d89b4114610741578063a457c2d714610756578063a87859f614610776578063a9059cbb146107a3578063aacebbe3146107c357600080fd5b806370d5ae051461066b578063715018a6146106895780637d1db4a51461069e57806388f82020146106b45780638da5cb5b146106ed5780638f9a55c01461070b57600080fd5b80633685d419116101fe57806349bd5a5e116101b757806349bd5a5e1461057b5780634a74bb02146105af57806350d4e15f146105d257806352390c02146105f25780635342acb41461061257806370a082311461064b57600080fd5b80633685d419146104a557806339509351146104c55780633bd5d173146104e5578063437823ec146105055780634549b03914610525578063470624021461054557600080fd5b80631f8d2779116102505780631f8d2779146103a057806323b872dd146103c05780632b14ca56146103e05780632d4103d6146104435780632d83811914610463578063313ce5671461048357600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630bd3a7f9146102fe57806313114a9d146103205780631694505e1461033f57806318160ddd1461038b57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b861098e565b6040516102c59190612cb9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612d26565b610a20565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031e610319366004612d52565b610a37565b005b34801561032c57600080fd5b50600b545b6040519081526020016102c5565b34801561034b57600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102c5565b34801561039757600080fd5b50600954610331565b3480156103ac57600080fd5b5061031e6103bb366004612d85565b610a8e565b3480156103cc57600080fd5b506102ee6103db366004612dd9565b610b07565b3480156103ec57600080fd5b506012546104169060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102c5565b34801561044f57600080fd5b5061031e61045e366004612e2a565b610b70565b34801561046f57600080fd5b5061033161047e366004612e46565b610bff565b34801561048f57600080fd5b5060105460405160ff90911681526020016102c5565b3480156104b157600080fd5b5061031e6104c0366004612d52565b610c83565b3480156104d157600080fd5b506102ee6104e0366004612d26565b610e35565b3480156104f157600080fd5b5061031e610500366004612e46565b610e6b565b34801561051157600080fd5b5061031e610520366004612d52565b610f79565b34801561053157600080fd5b50610331610540366004612e5f565b610fc7565b34801561055157600080fd5b506011546104169060ff808216916101008104821691620100008204811691630100000090041684565b34801561058757600080fd5b506103737f000000000000000000000000000000000000000000000000000000000000000081565b3480156105bb57600080fd5b506013546102ee9065010000000000900460ff1681565b3480156105de57600080fd5b5061031e6105ed366004612e8b565b61106a565b3480156105fe57600080fd5b5061031e61060d366004612d52565b611111565b34801561061e57600080fd5b506102ee61062d366004612d52565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561065757600080fd5b50610331610666366004612d52565b611264565b34801561067757600080fd5b50600d546001600160a01b0316610373565b34801561069557600080fd5b5061031e6112c3565b3480156106aa57600080fd5b5061033160145481565b3480156106c057600080fd5b506102ee6106cf366004612d52565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106f957600080fd5b506000546001600160a01b0316610373565b34801561071757600080fd5b5061033160165481565b34801561072d57600080fd5b5061031e61073c366004612d52565b611337565b34801561074d57600080fd5b506102b8611382565b34801561076257600080fd5b506102ee610771366004612d26565b611391565b34801561078257600080fd5b50610331610791366004612d52565b601a6020526000908152604090205481565b3480156107af57600080fd5b506102ee6107be366004612d26565b6113e0565b3480156107cf57600080fd5b5061031e6107de366004612d52565b6113ed565b3480156107ef57600080fd5b5061031e6107fe366004612e46565b611439565b34801561080f57600080fd5b5061033160185481565b34801561082557600080fd5b5061031e610834366004612f22565b61148a565b34801561084557600080fd5b50600c54610373906001600160a01b031681565b34801561086557600080fd5b5061031e610874366004612e46565b611510565b34801561088557600080fd5b506102ee610894366004612d52565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108be57600080fd5b506103316108cd366004612f3d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061031e610913366004612d52565b61155b565b34801561092457600080fd5b5061031e610933366004612e46565b6115a6565b34801561094457600080fd5b5061031e610953366004612d52565b6115d5565b34801561096457600080fd5b5061033160175481565b34801561097a57600080fd5b5061031e610989366004612d85565b6116bf565b6060600e805461099d90612f76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612f76565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2d3384846117fc565b5060015b92915050565b6000546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610a6190612fb0565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610a6190612fb0565b6012805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610b14848484611920565b610b668433610b61856040518060600160405280602881526020016131bb602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611d24565b6117fc565b5060019392505050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610a6190612fb0565b6019805460ff1916831515179055610bb130611111565b610bda7f0000000000000000000000000000000000000000000000000000000000000000611111565b60195460ff168015610bec5750601854155b15610bfb574360185560178190555b5050565b6000600a54821115610c665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a61565b6000610c70611d5e565b9050610c7c8382611738565b9392505050565b6000546001600160a01b03163314610cad5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a61565b60005b600754811015610bfb57816001600160a01b031660078281548110610d3f57610d3f612fe5565b6000918252602090912001546001600160a01b031603610e235760078054610d6990600190613011565b81548110610d7957610d79612fe5565b600091825260209091200154600780546001600160a01b039092169183908110610da557610da5612fe5565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610dfd57610dfd613028565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e2d8161303e565b915050610d18565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a2d918590610b619086611d81565b3360008181526006602052604090205460ff1615610ee05760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a61565b600080600080610eef86611de0565b9450945094509450506000610f0f8786868686610f0a611d5e565b611e5c565b50506001600160a01b038716600090815260026020526040902054909150610f379082611ed0565b6001600160a01b038716600090815260026020526040902055600a54610f5d9082611ed0565b600a55600b54610f6d9088611d81565b600b5550505050505050565b6000546001600160a01b03163314610fa35760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600060095483111561101b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a61565b60008060008061102a87611de0565b9450945094509450506000806110468987878787610f0a611d5e565b50915091508761105d57509450610a319350505050565b9550610a31945050505050565b6000546001600160a01b031633146110945760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560128054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16156111a45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a61565b6001600160a01b038116600090815260026020526040902054156111fe576001600160a01b0381166000908152600260205260409020546111e490610bff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156112a157506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610a3190610bff565b6000546001600160a01b031633146112ed5760405162461bcd60e51b8152600401610a6190612fb0565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113615760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600f805461099d90612f76565b6000610a2d3384610b61856040518060600160405280602581526020016131e3602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611d24565b6000610a2d338484611920565b6000546001600160a01b031633146114175760405162461bcd60e51b8152600401610a6190612fb0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114635760405162461bcd60e51b8152600401610a6190612fb0565b6114846103e861147e8360095461177a90919063ffffffff16565b90611738565b60165550565b6000546001600160a01b031633146114b45760405162461bcd60e51b8152600401610a6190612fb0565b60138054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061150590831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461153a5760405162461bcd60e51b8152600401610a6190612fb0565b6115556103e861147e8360095461177a90919063ffffffff16565b60145550565b6000546001600160a01b031633146115855760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146115d05760405162461bcd60e51b8152600401610a6190612fb0565b601555565b6000546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b0381166116645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a61565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116e95760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610c7c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f12565b60008260000361178c57506000610a31565b60006117988385613057565b9050826117a58583613076565b14610c7c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a61565b6001600160a01b03831661185e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a61565b6001600160a01b0382166118bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a61565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a61565b6001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a61565b60008111611a485760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a61565b6000546001600160a01b03848116911614801590611a7457506000546001600160a01b03838116911614155b15611acb5760195460ff16611acb5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a61565b6000611ad630611264565b90506014548110611ae657506014545b60155481108015908190611b055750601354640100000000900460ff16155b8015611b4357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611b5a575060135465010000000000900460ff165b15611b6d576015549150611b6d82611f40565b6001600160a01b03851660009081526005602052604090205460019060ff1680611baf57506001600160a01b03851660009081526005602052604090205460ff165b15611bb8575060005b8015611d10576001600160a01b03861660009081526008602052604090205460ff16158015611c0057506001600160a01b03851660009081526008602052604090205460ff16155b15611d1057601454841115611c685760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a61565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611d1057601654611cad86611264565b611cb79086613098565b1115611d105760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a61565b611d1c86868684612127565b505050505050565b60008184841115611d485760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613011565b95945050505050565b6000806000611d6b6123bf565b9092509050611d7a8282611738565b9250505090565b600080611d8e8385613098565b905083811015610c7c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a61565b600080600080600080611df287612541565b90506000611dff8861255c565b90506000611e0c8961257c565b90506000611e198a61259d565b90506000611e3184611e2b8d88611ed0565b90611ed0565b9050611e3d8184611ed0565b9050611e498183611ed0565b9b949a5092985090965094509092505050565b6000808080611e6b8a8661177a565b90506000611e798a8761177a565b90506000611e878a8861177a565b90506000611e958a8961177a565b90506000611ea38a8a61177a565b90506000611eb982611e2b858188818c8c611ed0565b959f959e50939c50939a5050505050505050505050565b6000610c7c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d24565b60008183611f335760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613076565b6013805464ff0000000019166401000000001790556012546011546000916201000080820460ff90811693918204811692611f889261010091829004831692919004166130b0565b611f9291906130b0565b611f9c91906130b0565b611fa79060026130d5565b60125460115460ff92831693506000928492611fd09261010091829004831692919004166130b0565b611fdd9060ff1685613057565b611fe79190613076565b90506000611ff58285613011565b905047612001826125bf565b600061200d8247613011565b6012546011549192506000916120339160ff6101009182900481169291909104166130b0565b6120409060ff1687613011565b61204a9083613076565b6012546011549192506000916120709160ff6101009182900481169291909104166130b0565b61207d9060ff1683613057565b9050801561208f5761208f8682612777565b6012546011546000916120b29160ff6201000092839004811692909104166130b0565b60ff166120c0846002613057565b6120ca9190613057565b9050801561210e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561210c573d6000803e3d6000fd5b505b50506013805464ff000000001916905550505050505050565b80156122535761213f6013805463ffffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036121c9576011546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603612253576012546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561229457506001600160a01b03831660009081526006602052604090205460ff16155b156122a9576122a4848484612857565b6123a7565b6001600160a01b03841660009081526006602052604090205460ff161580156122ea57506001600160a01b03831660009081526006602052604090205460ff165b156122fa576122a48484846129a8565b6001600160a01b03841660009081526006602052604090205460ff1615801561233c57506001600160a01b03831660009081526006602052604090205460ff16155b1561234c576122a4848484612a68565b6001600160a01b03841660009081526006602052604090205460ff16801561238c57506001600160a01b03831660009081526006602052604090205460ff165b1561239c576122a4848484612ac3565b6123a7848484612a68565b6123b96013805463ffffffff19169055565b50505050565b600a546009546000918291825b600754811015612511578260026000600784815481106123ee576123ee612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612459575081600360006007848154811061243257612432612fe5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561246f57600a54600954945094505050509091565b6124b5600260006007848154811061248957612489612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ed0565b92506124fd60036000600784815481106124d1576124d1612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ed0565b9150806125098161303e565b9150506123cc565b50600954600a5461252191611738565b82101561253857600a546009549350935050509091565b90939092509050565b601354600090610a319060649061147e90859060ff1661177a565b601354600090610a319060649061147e908590610100900460ff1661177a565b601354600090610a319060649061147e90859062010000900460ff1661177a565b601354600090610a319060649061147e9085906301000000900460ff1661177a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125f4576125f4612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269691906130fe565b816001815181106126a9576126a9612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250506126f4307f0000000000000000000000000000000000000000000000000000000000000000846117fc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061274990859060009086903090429060040161311b565b600060405180830381600087803b15801561276357600080fd5b505af1158015611d1c573d6000803e3d6000fd5b6127a2307f0000000000000000000000000000000000000000000000000000000000000000846117fc565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561282b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612850919061318c565b5050505050565b600080600080600061286886611de0565b9450945094509450945060008060006128878988888888610f0a611d5e565b6001600160a01b038e1660009081526003602052604090205492955090935091506128b2908a611ed0565b6001600160a01b038c166000908152600360209081526040808320939093556002905220546128e19084611ed0565b6001600160a01b03808d1660009081526002602052604080822093909355908c16815220546129109083611d81565b6001600160a01b038b1660009081526002602052604090205561293286612b4d565b61293b85612b4d565b61294484612bd6565b61294e8188612c95565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161299391815260200190565b60405180910390a35050505050505050505050565b60008060008060006129b986611de0565b9450945094509450945060008060006129d88988888888610f0a611d5e565b6001600160a01b038e166000908152600260205260409020549295509093509150612a039084611ed0565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612a399089611d81565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546129109083611d81565b6000806000806000612a7986611de0565b945094509450945094506000806000612a988988888888610f0a611d5e565b6001600160a01b038e1660009081526002602052604090205492955090935091506128e19084611ed0565b6000806000806000612ad486611de0565b945094509450945094506000806000612af38988888888610f0a611d5e565b6001600160a01b038e166000908152600360205260409020549295509093509150612b1e908a611ed0565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612a039084611ed0565b6000612b57611d5e565b90506000612b65838361177a565b30600090815260026020526040902054909150612b829082611d81565b3060009081526002602090815260408083209390935560069052205460ff1615612bd15730600090815260036020526040902054612bc09084611d81565b306000908152600360205260409020555b505050565b6000612be0611d5e565b90506000612bee838361177a565b600d546001600160a01b0316600090815260026020526040902054909150612c169082611d81565b600d80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612bd157600d546001600160a01b0316600090815260036020526040902054612c759084611d81565b600d546001600160a01b0316600090815260036020526040902055505050565b600a54612ca29083611ed0565b600a55600b54612cb29082611d81565b600b555050565b600060208083528351808285015260005b81811015612ce657858101830151858201604001528201612cca565b81811115612cf8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612d2357600080fd5b50565b60008060408385031215612d3957600080fd5b8235612d4481612d0e565b946020939093013593505050565b600060208284031215612d6457600080fd5b8135610c7c81612d0e565b803560ff81168114612d8057600080fd5b919050565b60008060008060808587031215612d9b57600080fd5b612da485612d6f565b9350612db260208601612d6f565b9250612dc060408601612d6f565b9150612dce60608601612d6f565b905092959194509250565b600080600060608486031215612dee57600080fd5b8335612df981612d0e565b92506020840135612e0981612d0e565b929592945050506040919091013590565b80358015158114612d8057600080fd5b60008060408385031215612e3d57600080fd5b612d4483612e1a565b600060208284031215612e5857600080fd5b5035919050565b60008060408385031215612e7257600080fd5b82359150612e8260208401612e1a565b90509250929050565b600080600080600080600080610100898b031215612ea857600080fd5b612eb189612d6f565b9750612ebf60208a01612d6f565b9650612ecd60408a01612d6f565b9550612edb60608a01612d6f565b9450612ee960808a01612d6f565b9350612ef760a08a01612d6f565b9250612f0560c08a01612d6f565b9150612f1360e08a01612d6f565b90509295985092959890939650565b600060208284031215612f3457600080fd5b610c7c82612e1a565b60008060408385031215612f5057600080fd5b8235612f5b81612d0e565b91506020830135612f6b81612d0e565b809150509250929050565b600181811c90821680612f8a57607f821691505b602082108103612faa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561302357613023612ffb565b500390565b634e487b7160e01b600052603160045260246000fd5b60006001820161305057613050612ffb565b5060010190565b600081600019048311821515161561307157613071612ffb565b500290565b60008261309357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130ab576130ab612ffb565b500190565b600060ff821660ff84168060ff038211156130cd576130cd612ffb565b019392505050565b600060ff821660ff84168160ff04811182151516156130f6576130f6612ffb565b029392505050565b60006020828403121561311057600080fd5b8151610c7c81612d0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561316b5784516001600160a01b031683529383019391830191600101613146565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131a157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202c79a0be19fea2b1e6921d5b103f467acde8c021776c09e757fbcb5400938cff64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102975760003560e01c806370d5ae051161015a578063af2ce614116100c1578063dd62ed3e1161007a578063dd62ed3e146108b2578063ea2f0b37146108f8578063f0f165af14610918578063f2fde38b14610938578063fabb0b4f14610958578063fe63178f1461096e57600080fd5b8063af2ce614146107e3578063bf56b37114610803578063c49b9a8014610819578063caac793414610839578063d543dbeb14610859578063d94160e01461087957600080fd5b806391d919a91161011357806391d919a91461072157806395d89b4114610741578063a457c2d714610756578063a87859f614610776578063a9059cbb146107a3578063aacebbe3146107c357600080fd5b806370d5ae051461066b578063715018a6146106895780637d1db4a51461069e57806388f82020146106b45780638da5cb5b146106ed5780638f9a55c01461070b57600080fd5b80633685d419116101fe57806349bd5a5e116101b757806349bd5a5e1461057b5780634a74bb02146105af57806350d4e15f146105d257806352390c02146105f25780635342acb41461061257806370a082311461064b57600080fd5b80633685d419146104a557806339509351146104c55780633bd5d173146104e5578063437823ec146105055780634549b03914610525578063470624021461054557600080fd5b80631f8d2779116102505780631f8d2779146103a057806323b872dd146103c05780632b14ca56146103e05780632d4103d6146104435780632d83811914610463578063313ce5671461048357600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630bd3a7f9146102fe57806313114a9d146103205780631694505e1461033f57806318160ddd1461038b57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b861098e565b6040516102c59190612cb9565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004612d26565b610a20565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031e610319366004612d52565b610a37565b005b34801561032c57600080fd5b50600b545b6040519081526020016102c5565b34801561034b57600080fd5b506103737f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102c5565b34801561039757600080fd5b50600954610331565b3480156103ac57600080fd5b5061031e6103bb366004612d85565b610a8e565b3480156103cc57600080fd5b506102ee6103db366004612dd9565b610b07565b3480156103ec57600080fd5b506012546104169060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102c5565b34801561044f57600080fd5b5061031e61045e366004612e2a565b610b70565b34801561046f57600080fd5b5061033161047e366004612e46565b610bff565b34801561048f57600080fd5b5060105460405160ff90911681526020016102c5565b3480156104b157600080fd5b5061031e6104c0366004612d52565b610c83565b3480156104d157600080fd5b506102ee6104e0366004612d26565b610e35565b3480156104f157600080fd5b5061031e610500366004612e46565b610e6b565b34801561051157600080fd5b5061031e610520366004612d52565b610f79565b34801561053157600080fd5b50610331610540366004612e5f565b610fc7565b34801561055157600080fd5b506011546104169060ff808216916101008104821691620100008204811691630100000090041684565b34801561058757600080fd5b506103737f0000000000000000000000008569a8fe2f077de3577af011e58a827f0c62b52381565b3480156105bb57600080fd5b506013546102ee9065010000000000900460ff1681565b3480156105de57600080fd5b5061031e6105ed366004612e8b565b61106a565b3480156105fe57600080fd5b5061031e61060d366004612d52565b611111565b34801561061e57600080fd5b506102ee61062d366004612d52565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561065757600080fd5b50610331610666366004612d52565b611264565b34801561067757600080fd5b50600d546001600160a01b0316610373565b34801561069557600080fd5b5061031e6112c3565b3480156106aa57600080fd5b5061033160145481565b3480156106c057600080fd5b506102ee6106cf366004612d52565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106f957600080fd5b506000546001600160a01b0316610373565b34801561071757600080fd5b5061033160165481565b34801561072d57600080fd5b5061031e61073c366004612d52565b611337565b34801561074d57600080fd5b506102b8611382565b34801561076257600080fd5b506102ee610771366004612d26565b611391565b34801561078257600080fd5b50610331610791366004612d52565b601a6020526000908152604090205481565b3480156107af57600080fd5b506102ee6107be366004612d26565b6113e0565b3480156107cf57600080fd5b5061031e6107de366004612d52565b6113ed565b3480156107ef57600080fd5b5061031e6107fe366004612e46565b611439565b34801561080f57600080fd5b5061033160185481565b34801561082557600080fd5b5061031e610834366004612f22565b61148a565b34801561084557600080fd5b50600c54610373906001600160a01b031681565b34801561086557600080fd5b5061031e610874366004612e46565b611510565b34801561088557600080fd5b506102ee610894366004612d52565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156108be57600080fd5b506103316108cd366004612f3d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061031e610913366004612d52565b61155b565b34801561092457600080fd5b5061031e610933366004612e46565b6115a6565b34801561094457600080fd5b5061031e610953366004612d52565b6115d5565b34801561096457600080fd5b5061033160175481565b34801561097a57600080fd5b5061031e610989366004612d85565b6116bf565b6060600e805461099d90612f76565b80601f01602080910402602001604051908101604052809291908181526020018280546109c990612f76565b8015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b5050505050905090565b6000610a2d3384846117fc565b5060015b92915050565b6000546001600160a01b03163314610a6a5760405162461bcd60e51b8152600401610a6190612fb0565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610ab85760405162461bcd60e51b8152600401610a6190612fb0565b6012805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610b14848484611920565b610b668433610b61856040518060600160405280602881526020016131bb602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611d24565b6117fc565b5060019392505050565b6000546001600160a01b03163314610b9a5760405162461bcd60e51b8152600401610a6190612fb0565b6019805460ff1916831515179055610bb130611111565b610bda7f0000000000000000000000008569a8fe2f077de3577af011e58a827f0c62b523611111565b60195460ff168015610bec5750601854155b15610bfb574360185560178190555b5050565b6000600a54821115610c665760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a61565b6000610c70611d5e565b9050610c7c8382611738565b9392505050565b6000546001600160a01b03163314610cad5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16610d155760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610a61565b60005b600754811015610bfb57816001600160a01b031660078281548110610d3f57610d3f612fe5565b6000918252602090912001546001600160a01b031603610e235760078054610d6990600190613011565b81548110610d7957610d79612fe5565b600091825260209091200154600780546001600160a01b039092169183908110610da557610da5612fe5565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610dfd57610dfd613028565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e2d8161303e565b915050610d18565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a2d918590610b619086611d81565b3360008181526006602052604090205460ff1615610ee05760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a61565b600080600080610eef86611de0565b9450945094509450506000610f0f8786868686610f0a611d5e565b611e5c565b50506001600160a01b038716600090815260026020526040902054909150610f379082611ed0565b6001600160a01b038716600090815260026020526040902055600a54610f5d9082611ed0565b600a55600b54610f6d9088611d81565b600b5550505050505050565b6000546001600160a01b03163314610fa35760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b600060095483111561101b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a61565b60008060008061102a87611de0565b9450945094509450506000806110468987878787610f0a611d5e565b50915091508761105d57509450610a319350505050565b9550610a31945050505050565b6000546001600160a01b031633146110945760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560128054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b0316331461113b5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03811660009081526006602052604090205460ff16156111a45760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a61565b6001600160a01b038116600090815260026020526040902054156111fe576001600160a01b0381166000908152600260205260409020546111e490610bff565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156112a157506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610a3190610bff565b6000546001600160a01b031633146112ed5760405162461bcd60e51b8152600401610a6190612fb0565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146113615760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600f805461099d90612f76565b6000610a2d3384610b61856040518060600160405280602581526020016131e3602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611d24565b6000610a2d338484611920565b6000546001600160a01b031633146114175760405162461bcd60e51b8152600401610a6190612fb0565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114635760405162461bcd60e51b8152600401610a6190612fb0565b6114846103e861147e8360095461177a90919063ffffffff16565b90611738565b60165550565b6000546001600160a01b031633146114b45760405162461bcd60e51b8152600401610a6190612fb0565b60138054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061150590831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461153a5760405162461bcd60e51b8152600401610a6190612fb0565b6115556103e861147e8360095461177a90919063ffffffff16565b60145550565b6000546001600160a01b031633146115855760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146115d05760405162461bcd60e51b8152600401610a6190612fb0565b601555565b6000546001600160a01b031633146115ff5760405162461bcd60e51b8152600401610a6190612fb0565b6001600160a01b0381166116645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a61565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116e95760405162461bcd60e51b8152600401610a6190612fb0565b6011805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610c7c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611f12565b60008260000361178c57506000610a31565b60006117988385613057565b9050826117a58583613076565b14610c7c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a61565b6001600160a01b03831661185e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a61565b6001600160a01b0382166118bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a61565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a61565b6001600160a01b0382166119e65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a61565b60008111611a485760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a61565b6000546001600160a01b03848116911614801590611a7457506000546001600160a01b03838116911614155b15611acb5760195460ff16611acb5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610a61565b6000611ad630611264565b90506014548110611ae657506014545b60155481108015908190611b055750601354640100000000900460ff16155b8015611b4357507f0000000000000000000000008569a8fe2f077de3577af011e58a827f0c62b5236001600160a01b0316856001600160a01b031614155b8015611b5a575060135465010000000000900460ff165b15611b6d576015549150611b6d82611f40565b6001600160a01b03851660009081526005602052604090205460019060ff1680611baf57506001600160a01b03851660009081526005602052604090205460ff165b15611bb8575060005b8015611d10576001600160a01b03861660009081526008602052604090205460ff16158015611c0057506001600160a01b03851660009081526008602052604090205460ff16155b15611d1057601454841115611c685760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a61565b7f0000000000000000000000008569a8fe2f077de3577af011e58a827f0c62b5236001600160a01b0316856001600160a01b031614611d1057601654611cad86611264565b611cb79086613098565b1115611d105760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610a61565b611d1c86868684612127565b505050505050565b60008184841115611d485760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613011565b95945050505050565b6000806000611d6b6123bf565b9092509050611d7a8282611738565b9250505090565b600080611d8e8385613098565b905083811015610c7c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a61565b600080600080600080611df287612541565b90506000611dff8861255c565b90506000611e0c8961257c565b90506000611e198a61259d565b90506000611e3184611e2b8d88611ed0565b90611ed0565b9050611e3d8184611ed0565b9050611e498183611ed0565b9b949a5092985090965094509092505050565b6000808080611e6b8a8661177a565b90506000611e798a8761177a565b90506000611e878a8861177a565b90506000611e958a8961177a565b90506000611ea38a8a61177a565b90506000611eb982611e2b858188818c8c611ed0565b959f959e50939c50939a5050505050505050505050565b6000610c7c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d24565b60008183611f335760405162461bcd60e51b8152600401610a619190612cb9565b506000611d558486613076565b6013805464ff0000000019166401000000001790556012546011546000916201000080820460ff90811693918204811692611f889261010091829004831692919004166130b0565b611f9291906130b0565b611f9c91906130b0565b611fa79060026130d5565b60125460115460ff92831693506000928492611fd09261010091829004831692919004166130b0565b611fdd9060ff1685613057565b611fe79190613076565b90506000611ff58285613011565b905047612001826125bf565b600061200d8247613011565b6012546011549192506000916120339160ff6101009182900481169291909104166130b0565b6120409060ff1687613011565b61204a9083613076565b6012546011549192506000916120709160ff6101009182900481169291909104166130b0565b61207d9060ff1683613057565b9050801561208f5761208f8682612777565b6012546011546000916120b29160ff6201000092839004811692909104166130b0565b60ff166120c0846002613057565b6120ca9190613057565b9050801561210e57600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561210c573d6000803e3d6000fd5b505b50506013805464ff000000001916905550505050505050565b80156122535761213f6013805463ffffffff19169055565b7f0000000000000000000000008569a8fe2f077de3577af011e58a827f0c62b5236001600160a01b0316846001600160a01b0316036121c9576011546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f0000000000000000000000008569a8fe2f077de3577af011e58a827f0c62b5236001600160a01b0316836001600160a01b031603612253576012546013805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561229457506001600160a01b03831660009081526006602052604090205460ff16155b156122a9576122a4848484612857565b6123a7565b6001600160a01b03841660009081526006602052604090205460ff161580156122ea57506001600160a01b03831660009081526006602052604090205460ff165b156122fa576122a48484846129a8565b6001600160a01b03841660009081526006602052604090205460ff1615801561233c57506001600160a01b03831660009081526006602052604090205460ff16155b1561234c576122a4848484612a68565b6001600160a01b03841660009081526006602052604090205460ff16801561238c57506001600160a01b03831660009081526006602052604090205460ff165b1561239c576122a4848484612ac3565b6123a7848484612a68565b6123b96013805463ffffffff19169055565b50505050565b600a546009546000918291825b600754811015612511578260026000600784815481106123ee576123ee612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612459575081600360006007848154811061243257612432612fe5565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561246f57600a54600954945094505050509091565b6124b5600260006007848154811061248957612489612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ed0565b92506124fd60036000600784815481106124d1576124d1612fe5565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ed0565b9150806125098161303e565b9150506123cc565b50600954600a5461252191611738565b82101561253857600a546009549350935050509091565b90939092509050565b601354600090610a319060649061147e90859060ff1661177a565b601354600090610a319060649061147e908590610100900460ff1661177a565b601354600090610a319060649061147e90859062010000900460ff1661177a565b601354600090610a319060649061147e9085906301000000900460ff1661177a565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106125f4576125f4612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269691906130fe565b816001815181106126a9576126a9612fe5565b60200260200101906001600160a01b031690816001600160a01b0316815250506126f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117fc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061274990859060009086903090429060040161311b565b600060405180830381600087803b15801561276357600080fd5b505af1158015611d1c573d6000803e3d6000fd5b6127a2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117fc565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af115801561282b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612850919061318c565b5050505050565b600080600080600061286886611de0565b9450945094509450945060008060006128878988888888610f0a611d5e565b6001600160a01b038e1660009081526003602052604090205492955090935091506128b2908a611ed0565b6001600160a01b038c166000908152600360209081526040808320939093556002905220546128e19084611ed0565b6001600160a01b03808d1660009081526002602052604080822093909355908c16815220546129109083611d81565b6001600160a01b038b1660009081526002602052604090205561293286612b4d565b61293b85612b4d565b61294484612bd6565b61294e8188612c95565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161299391815260200190565b60405180910390a35050505050505050505050565b60008060008060006129b986611de0565b9450945094509450945060008060006129d88988888888610f0a611d5e565b6001600160a01b038e166000908152600260205260409020549295509093509150612a039084611ed0565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612a399089611d81565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546129109083611d81565b6000806000806000612a7986611de0565b945094509450945094506000806000612a988988888888610f0a611d5e565b6001600160a01b038e1660009081526002602052604090205492955090935091506128e19084611ed0565b6000806000806000612ad486611de0565b945094509450945094506000806000612af38988888888610f0a611d5e565b6001600160a01b038e166000908152600360205260409020549295509093509150612b1e908a611ed0565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612a039084611ed0565b6000612b57611d5e565b90506000612b65838361177a565b30600090815260026020526040902054909150612b829082611d81565b3060009081526002602090815260408083209390935560069052205460ff1615612bd15730600090815260036020526040902054612bc09084611d81565b306000908152600360205260409020555b505050565b6000612be0611d5e565b90506000612bee838361177a565b600d546001600160a01b0316600090815260026020526040902054909150612c169082611d81565b600d80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff1615612bd157600d546001600160a01b0316600090815260036020526040902054612c759084611d81565b600d546001600160a01b0316600090815260036020526040902055505050565b600a54612ca29083611ed0565b600a55600b54612cb29082611d81565b600b555050565b600060208083528351808285015260005b81811015612ce657858101830151858201604001528201612cca565b81811115612cf8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612d2357600080fd5b50565b60008060408385031215612d3957600080fd5b8235612d4481612d0e565b946020939093013593505050565b600060208284031215612d6457600080fd5b8135610c7c81612d0e565b803560ff81168114612d8057600080fd5b919050565b60008060008060808587031215612d9b57600080fd5b612da485612d6f565b9350612db260208601612d6f565b9250612dc060408601612d6f565b9150612dce60608601612d6f565b905092959194509250565b600080600060608486031215612dee57600080fd5b8335612df981612d0e565b92506020840135612e0981612d0e565b929592945050506040919091013590565b80358015158114612d8057600080fd5b60008060408385031215612e3d57600080fd5b612d4483612e1a565b600060208284031215612e5857600080fd5b5035919050565b60008060408385031215612e7257600080fd5b82359150612e8260208401612e1a565b90509250929050565b600080600080600080600080610100898b031215612ea857600080fd5b612eb189612d6f565b9750612ebf60208a01612d6f565b9650612ecd60408a01612d6f565b9550612edb60608a01612d6f565b9450612ee960808a01612d6f565b9350612ef760a08a01612d6f565b9250612f0560c08a01612d6f565b9150612f1360e08a01612d6f565b90509295985092959890939650565b600060208284031215612f3457600080fd5b610c7c82612e1a565b60008060408385031215612f5057600080fd5b8235612f5b81612d0e565b91506020830135612f6b81612d0e565b809150509250929050565b600181811c90821680612f8a57607f821691505b602082108103612faa57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561302357613023612ffb565b500390565b634e487b7160e01b600052603160045260246000fd5b60006001820161305057613050612ffb565b5060010190565b600081600019048311821515161561307157613071612ffb565b500290565b60008261309357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130ab576130ab612ffb565b500190565b600060ff821660ff84168060ff038211156130cd576130cd612ffb565b019392505050565b600060ff821660ff84168160ff04811182151516156130f6576130f6612ffb565b029392505050565b60006020828403121561311057600080fd5b8151610c7c81612d0e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561316b5784516001600160a01b031683529383019391830191600101613146565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131a157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202c79a0be19fea2b1e6921d5b103f467acde8c021776c09e757fbcb5400938cff64736f6c634300080d0033
Deployed Bytecode Sourcemap
25270:26900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28813:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29798:193;;;;;;;;;;-1:-1:-1;29798:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29798:193:0;1072:187:1;34501:115:0;;;;;;;;;;-1:-1:-1;34501:115:0;;;;;:::i;:::-;;:::i;:::-;;31297:87;;;;;;;;;;-1:-1:-1;31366:10:0;;31297:87;;;1662:25:1;;;1650:2;1635:18;31297:87:0;1516:177:1;26728:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;26728:51:0;1698:230:1;29090:95:0;;;;;;;;;;-1:-1:-1;29170:7:0;;29090:95;;34746:306;;;;;;;;;;-1:-1:-1;34746:306:0;;;;;:::i;:::-;;:::i;29999:446::-;;;;;;;;;;-1:-1:-1;29999:446:0;;;;;:::i;:::-;;:::i;26563:22::-;;;;;;;;;;-1:-1:-1;26563:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198:4:1;3186:17;;;3168:36;;3240:17;;;3235:2;3220:18;;3213:45;3294:17;;;3274:18;;;3267:45;;;;3348:17;;;3343:2;3328:18;;3321:45;3155:3;3140:19;26563:22:0;2953:419:1;51830:337:0;;;;;;;;;;-1:-1:-1;51830:337:0;;;;;:::i;:::-;;:::i;32976:322::-;;;;;;;;;;-1:-1:-1;32976:322:0;;;;;:::i;:::-;;:::i;28999:83::-;;;;;;;;;;-1:-1:-1;29065:9:0;;28999:83;;29065:9;;;;4122:36:1;;4110:2;4095:18;28999:83:0;3980:184:1;33783:473:0;;;;;;;;;;-1:-1:-1;33783:473:0;;;;;:::i;:::-;;:::i;30453:300::-;;;;;;;;;;-1:-1:-1;30453:300:0;;;;;:::i;:::-;;:::i;31491:731::-;;;;;;;;;;-1:-1:-1;31491:731:0;;;;;:::i;:::-;;:::i;34264:111::-;;;;;;;;;;-1:-1:-1;34264:111:0;;;;;:::i;:::-;;:::i;32230:738::-;;;;;;;;;;-1:-1:-1;32230:738:0;;;;;:::i;:::-;;:::i;26536:20::-;;;;;;;;;;-1:-1:-1;26536:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26786:38;;;;;;;;;;;;;;;26861:40;;;;;;;;;;-1:-1:-1;26861:40:0;;;;;;;;;;;35369:645;;;;;;;;;;-1:-1:-1;35369:645:0;;;;;:::i;:::-;;:::i;33443:332::-;;;;;;;;;;-1:-1:-1;33443:332:0;;;;;:::i;:::-;;:::i;41576:124::-;;;;;;;;;;-1:-1:-1;41576:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;41665:27:0;41641:4;41665:27;;;:18;:27;;;;;;;;;41576:124;29193:198;;;;;;;;;;-1:-1:-1;29193:198:0;;;;;:::i;:::-;;:::i;31392:91::-;;;;;;;;;;-1:-1:-1;31463:12:0;;-1:-1:-1;;;;;31463:12:0;31392:91;;15334:148;;;;;;;;;;;;;:::i;26910:54::-;;;;;;;;;;;;;;;;31169:120;;;;;;;;;;-1:-1:-1;31169:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31261:20:0;31237:4;31261:20;;;:11;:20;;;;;;;;;31169:120;14692:79;;;;;;;;;;-1:-1:-1;14730:7:0;14757:6;-1:-1:-1;;;;;14757:6:0;14692:79;;27064:56;;;;;;;;;;;;;;;;34624:114;;;;;;;;;;-1:-1:-1;34624:114:0;;;;;:::i;:::-;;:::i;28904:87::-;;;;;;;;;;;;;:::i;30761:400::-;;;;;;;;;;-1:-1:-1;30761:400:0;;;;;:::i;:::-;;:::i;27620:46::-;;;;;;;;;;-1:-1:-1;27620:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29399:199;;;;;;;;;;-1:-1:-1;29399:199:0;;;;;:::i;:::-;;:::i;33308:127::-;;;;;;;;;;-1:-1:-1;33308:127:0;;;;;:::i;:::-;;:::i;36314:172::-;;;;;;;;;;-1:-1:-1;36314:172:0;;;;;:::i;:::-;;:::i;27551:29::-;;;;;;;;;;;;;;;;36494:171;;;;;;;;;;-1:-1:-1;36494:171:0;;;;;:::i;:::-;;:::i;25966:103::-;;;;;;;;;;-1:-1:-1;25966:103:0;;;;-1:-1:-1;;;;;25966:103:0;;;36170:136;;;;;;;;;;-1:-1:-1;36170:136:0;;;;;:::i;:::-;;:::i;41708:128::-;;;;;;;;;;-1:-1:-1;41708:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;41799:29:0;41775:4;41799:29;;;:20;:29;;;;;;;;;41708:128;29606:184;;;;;;;;;;-1:-1:-1;29606:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29755:18:0;;;29723:7;29755:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29606:184;34383:110;;;;;;;;;;-1:-1:-1;34383:110:0;;;;;:::i;:::-;;:::i;36022:140::-;;;;;;;;;;-1:-1:-1;36022:140:0;;;;;:::i;:::-;;:::i;15637:281::-;;;;;;;;;;-1:-1:-1;15637:281:0;;;;;:::i;:::-;;:::i;27515:29::-;;;;;;;;;;;;;;;;35060:301;;;;;;;;;;-1:-1:-1;35060:301:0;;;;;:::i;:::-;;:::i;28813:83::-;28850:13;28883:5;28876:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28813:83;:::o;29798:193::-;29900:4;29922:39;7536:10;29945:7;29954:6;29922:8;:39::i;:::-;-1:-1:-1;29979:4:0;29798:193;;;;;:::o;34501:115::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34572:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;34572:36:0::1;34604:4;34572:36;::::0;;34501:115::o;34746:306::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;34903:7:::1;:31:::0;;::::1;35025:19:::0;;::::1;::::0;::::1;-1:-1:-1::0;;34985:29:0;;::::1;34903:31;34985:29;35025:19:::0;;;;-1:-1:-1;;34945:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;34945:29:0;;;34903:31;;;::::1;34945:29:::0;;;;;;;::::1;35025:19:::0;;;;;;;;::::1;::::0;;34746:306::o;29999:446::-;30131:4;30148:36;30158:6;30166:9;30177:6;30148:9;:36::i;:::-;30195:220;30218:6;7536:10;30266:138;30322:6;30266:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30266:19:0;;;;;;:11;:19;;;;;;;;7536:10;30266:33;;;;;;;;;;:37;:138::i;:::-;30195:8;:220::i;:::-;-1:-1:-1;30433:4:0;29999:446;;;;;:::o;51830:337::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;51917:11:::1;:21:::0;;-1:-1:-1;;51917:21:0::1;::::0;::::1;;;::::0;;51949:32:::1;51975:4;51949:17;:32::i;:::-;51992;52010:13;51992:17;:32::i;:::-;52038:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;52053:10:0::1;::::0;:15;52038:30:::1;52035:125;;;52097:12;52084:10;:25:::0;52124:10:::1;:24:::0;;;52035:125:::1;51830:337:::0;;:::o;32976:322::-;33070:7;33128;;33117;:18;;33095:110;;;;-1:-1:-1;;;33095:110:0;;7322:2:1;33095:110:0;;;7304:21:1;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:40;7501:19;;33095:110:0;7120:406:1;33095:110:0;33216:19;33238:10;:8;:10::i;:::-;33216:32;-1:-1:-1;33266:24:0;:7;33216:32;33266:11;:24::i;:::-;33259:31;32976:322;-1:-1:-1;;;32976:322:0:o;33783:473::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33863:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33855:56;;;::::0;-1:-1:-1;;;33855:56:0;;7733:2:1;33855:56:0::1;::::0;::::1;7715:21:1::0;7772:2;7752:18;;;7745:30;7811:25;7791:18;;;7784:53;7854:18;;33855:56:0::1;7531:347:1::0;33855:56:0::1;33927:9;33922:327;33946:9;:16:::0;33942:20;::::1;33922:327;;;34004:7;-1:-1:-1::0;;;;;33988:23:0::1;:9;33998:1;33988:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33988:12:0::1;:23:::0;33984:254:::1;;34047:9;34057:16:::0;;:20:::1;::::0;34076:1:::1;::::0;34057:20:::1;:::i;:::-;34047:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;34032:9:::1;:12:::0;;-1:-1:-1;;;;;34047:31:0;;::::1;::::0;34042:1;;34032:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34032:46:0::1;-1:-1:-1::0;;;;;34032:46:0;;::::1;;::::0;;34097:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34136:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34136:28:0::1;::::0;;34183:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34183:15:0;;;;;-1:-1:-1;;;;;;34183:15:0::1;::::0;;;;;51830:337;;:::o;33984:254::-:1;33964:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33922:327;;30453:300:::0;7536:10;30568:4;30662:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30662:34:0;;;;;;;;;;30568:4;;30590:133;;30640:7;;30662:50;;30701:10;30662:38;:50::i;31491:731::-;7536:10;31543:14;31606:19;;;:11;:19;;;;;;;;31605:20;31583:114;;;;-1:-1:-1;;;31583:114:0;;8751:2:1;31583:114:0;;;8733:21:1;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:42;8932:19;;31583:114:0;8549:408:1;31583:114:0;31740:12;31767:18;31800:15;31830:13;31857:20;31869:7;31857:11;:20::i;:::-;31710:167;;;;;;;;;31889:15;31912:155;31938:7;31960:4;31979:10;32004:7;32026:5;32046:10;:8;:10::i;:::-;31912:11;:155::i;:::-;-1:-1:-1;;;;;;;32098:15:0;;;;;;:7;:15;;;;;;31888:179;;-1:-1:-1;32098:28:0;;31888:179;32098:19;:28::i;:::-;-1:-1:-1;;;;;32080:15:0;;;;;;:7;:15;;;;;:46;32147:7;;:20;;32159:7;32147:11;:20::i;:::-;32137:7;:30;32191:10;;:23;;32206:7;32191:14;:23::i;:::-;32178:10;:36;-1:-1:-1;;;;;;;31491:731:0:o;34264:111::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34333:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34333:34:0::1;34363:4;34333:34;::::0;;34264:111::o;32230:738::-;32348:7;32392;;32381;:18;;32373:62;;;;-1:-1:-1;;;32373:62:0;;9164:2:1;32373:62:0;;;9146:21:1;9203:2;9183:18;;;9176:30;9242:33;9222:18;;;9215:61;9293:18;;32373:62:0;8962:355:1;32373:62:0;32478:12;32505:18;32538:15;32568:13;32595:20;32607:7;32595:11;:20::i;:::-;32448:167;;;;;;;;;32627:15;32644:23;32673:155;32699:7;32721:4;32740:10;32765:7;32787:5;32807:10;:8;:10::i;32673:155::-;32626:202;;;;;32846:17;32841:120;;-1:-1:-1;32887:7:0;-1:-1:-1;32880:14:0;;-1:-1:-1;;;;32880:14:0;32841:120;32934:15;-1:-1:-1;32927:22:0;;-1:-1:-1;;;;;32927:22:0;35369:645;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;35665:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;35710:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;35806:22:0;;;35665:34:::1;35753:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;35806:22:0;;;;;;;;;;::::1;::::0;::::1;;::::0;;;35841:7:::1;:36:::0;;;;::::1;35888:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;35982:24:::0;;;35933:34;;::::1;::::0;;::::1;35982:24:::0;;;;;;;;;;::::1;::::0;;::::1;;::::0;;35369:645::o;33443:332::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33524:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33523:21;33515:61;;;::::0;-1:-1:-1;;;33515:61:0;;9524:2:1;33515:61:0::1;::::0;::::1;9506:21:1::0;9563:2;9543:18;;;9536:30;9602:29;9582:18;;;9575:57;9649:18;;33515:61:0::1;9322:351:1::0;33515:61:0::1;-1:-1:-1::0;;;;;33591:16:0;::::1;33610:1;33591:16:::0;;;:7:::1;:16;::::0;;;;;:20;33587:109:::1;;-1:-1:-1::0;;;;;33667:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33647:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33628:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33587:109:::1;-1:-1:-1::0;;;;;33706:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33706:27:0::1;33729:4;33706:27:::0;;::::1;::::0;;;33744:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33744:23:0::1;::::0;;::::1;::::0;;33443:332::o;29193:198::-;-1:-1:-1;;;;;29283:20:0;;29259:7;29283:20;;;:11;:20;;;;;;;;29279:49;;;-1:-1:-1;;;;;;29312:16:0;;;;;:7;:16;;;;;;;29193:198::o;29279:49::-;-1:-1:-1;;;;;29366:16:0;;;;;;:7;:16;;;;;;29346:37;;:19;:37::i;15334:148::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;15441:1:::1;15425:6:::0;;15404:40:::1;::::0;-1:-1:-1;;;;;15425:6:0;;::::1;::::0;15404:40:::1;::::0;15441:1;;15404:40:::1;15472:1;15455:19:::0;;-1:-1:-1;;;;;;15455:19:0::1;::::0;;15334:148::o;34624:114::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34693:29:0::1;34725:5;34693:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;34693:37:0::1;::::0;;34624:114::o;28904:87::-;28943:13;28976:7;28969:14;;;;;:::i;30761:400::-;30881:4;30903:228;7536:10;30953:7;30975:145;31032:15;30975:145;;;;;;;;;;;;;;;;;7536:10;30975:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30975:34:0;;;;;;;;;;;;:38;:145::i;29399:199::-;29504:4;29526:42;7536:10;29550:9;29561:6;29526:9;:42::i;33308:127::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;33397:17:::1;:30:::0;;-1:-1:-1;;;;;;33397:30:0::1;-1:-1:-1::0;;;;;33397:30:0;;;::::1;::::0;;;::::1;::::0;;33308:127::o;36314:172::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36441:37:::1;36472:5;36441:26;36453:13;36441:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;36424:14;:54:::0;-1:-1:-1;36314:172:0:o;36494:171::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36571:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36571:32:0;;::::1;;::::0;;36619:38:::1;::::0;::::1;::::0;::::1;::::0;36595:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;36619:38:0::1;;;;;;;;36494:171:::0;:::o;36170:136::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36262:36:::1;36292:5;36262:25;36274:12;36262:7;;:11;;:25;;;;:::i;:36::-;36247:12;:51:::0;-1:-1:-1;36170:136:0:o;34383:110::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34450:27:0::1;34480:5;34450:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34450:35:0::1;::::0;;34383:110::o;36022:140::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36113:29:::1;:41:::0;36022:140::o;15637:281::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15740:22:0;::::1;15718:110;;;::::0;-1:-1:-1;;;15718:110:0;;9880:2:1;15718:110:0::1;::::0;::::1;9862:21:1::0;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;-1:-1:-1;;;10009:18:1;;;10002:36;10055:19;;15718:110:0::1;9678:402:1::0;15718:110:0::1;15865:6;::::0;;15844:38:::1;::::0;-1:-1:-1;;;;;15844:38:0;;::::1;::::0;15865:6;::::1;::::0;15844:38:::1;::::0;::::1;15893:6;:17:::0;;-1:-1:-1;;;;;;15893:17:0::1;-1:-1:-1::0;;;;;15893:17:0;;;::::1;::::0;;;::::1;::::0;;15637:281::o;35060:301::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;35216:6:::1;:30:::0;;::::1;35335:18:::0;;::::1;::::0;::::1;-1:-1:-1::0;;35296:28:0;;::::1;35216:30;35296:28;35335:18:::0;;;;-1:-1:-1;;35257:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;35257:28:0;;;35216:30;;;::::1;35257:28:::0;;;;;;;::::1;35335:18:::0;;;;;;;;::::1;::::0;;35060:301::o;5180:132::-;5238:7;5265:39;5269:1;5272;5265:39;;;;;;;;;;;;;;;;;:3;:39::i;4685:252::-;4743:7;4769:1;4774;4769:6;4765:47;;-1:-1:-1;4799:1:0;4792:8;;4765:47;4824:9;4836:5;4840:1;4836;:5;:::i;:::-;4824:17;-1:-1:-1;4869:1:0;4860:5;4864:1;4824:17;4860:5;:::i;:::-;:10;4852:56;;;;-1:-1:-1;;;4852:56:0;;10682:2:1;4852:56:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;-1:-1:-1;;;10811:18:1;;;10804:31;10852:19;;4852:56:0;10480:397:1;41844:371:0;-1:-1:-1;;;;;41971:19:0;;41963:68;;;;-1:-1:-1;;;41963:68:0;;11084:2:1;41963:68:0;;;11066:21:1;11123:2;11103:18;;;11096:30;11162:34;11142:18;;;11135:62;-1:-1:-1;;;11213:18:1;;;11206:34;11257:19;;41963:68:0;10882:400:1;41963:68:0;-1:-1:-1;;;;;42050:21:0;;42042:68;;;;-1:-1:-1;;;42042:68:0;;11489:2:1;42042:68:0;;;11471:21:1;11528:2;11508:18;;;11501:30;11567:34;11547:18;;;11540:62;-1:-1:-1;;;11618:18:1;;;11611:32;11660:19;;42042:68:0;11287:398:1;42042:68:0;-1:-1:-1;;;;;42123:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42175:32;;1662:25:1;;;42175:32:0;;1635:18:1;42175:32:0;;;;;;;41844:371;;;:::o;42223:2349::-;-1:-1:-1;;;;;42345:18:0;;42337:68;;;;-1:-1:-1;;;42337:68:0;;11892:2:1;42337:68:0;;;11874:21:1;11931:2;11911:18;;;11904:30;11970:34;11950:18;;;11943:62;-1:-1:-1;;;12021:18:1;;;12014:35;12066:19;;42337:68:0;11690:401:1;42337:68:0;-1:-1:-1;;;;;42424:16:0;;42416:64;;;;-1:-1:-1;;;42416:64:0;;12298:2:1;42416:64:0;;;12280:21:1;12337:2;12317:18;;;12310:30;12376:34;12356:18;;;12349:62;-1:-1:-1;;;12427:18:1;;;12420:33;12470:19;;42416:64:0;12096:399:1;42416:64:0;42508:1;42499:6;:10;42491:64;;;;-1:-1:-1;;;42491:64:0;;12702:2:1;42491:64:0;;;12684:21:1;12741:2;12721:18;;;12714:30;12780:34;12760:18;;;12753:62;-1:-1:-1;;;12831:18:1;;;12824:39;12880:19;;42491:64:0;12500:405:1;42491:64:0;14730:7;14757:6;-1:-1:-1;;;;;42581:15:0;;;14757:6;;42581:15;;;;:32;;-1:-1:-1;14730:7:0;14757:6;-1:-1:-1;;;;;42600:13:0;;;14757:6;;42600:13;;42581:32;42576:88;;;42624:11;;;;42616:48;;;;-1:-1:-1;;;42616:48:0;;13112:2:1;42616:48:0;;;13094:21:1;13151:2;13131:18;;;13124:30;13190:26;13170:18;;;13163:54;13234:18;;42616:48:0;12910:348:1;42616:48:0;42999:28;43030:24;43048:4;43030:9;:24::i;:::-;42999:55;;43095:12;;43071:20;:36;43067:104;;-1:-1:-1;43147:12:0;;43067:104;43247:29;;43210:66;;;;;;;43305:53;;-1:-1:-1;43342:16:0;;;;;;;43341:17;43305:53;:91;;;;;43383:13;-1:-1:-1;;;;;43375:21:0;:4;-1:-1:-1;;;;;43375:21:0;;;43305:91;:129;;;;-1:-1:-1;43413:21:0;;;;;;;43305:129;43287:318;;;43484:29;;43461:52;;43557:36;43572:20;43557:14;:36::i;:::-;-1:-1:-1;;;;;43798:24:0;;43678:12;43798:24;;;:18;:24;;;;;;43693:4;;43798:24;;;:50;;-1:-1:-1;;;;;;43826:22:0;;;;;;:18;:22;;;;;;;;43798:50;43794:98;;;-1:-1:-1;43875:5:0;43794:98;43906:7;43902:536;;;-1:-1:-1;;;;;43935:26:0;;;;;;:20;:26;;;;;;;;43934:27;:56;;;;-1:-1:-1;;;;;;43966:24:0;;;;;;:20;:24;;;;;;;;43965:25;43934:56;43930:497;;;44051:12;;44041:6;:22;;44011:136;;;;-1:-1:-1;;;44011:136:0;;13465:2:1;44011:136:0;;;13447:21:1;13504:2;13484:18;;;13477:30;13543:34;13523:18;;;13516:62;-1:-1:-1;;;13594:18:1;;;13587:38;13642:19;;44011:136:0;13263:404:1;44011:136:0;44176:13;-1:-1:-1;;;;;44170:19:0;:2;-1:-1:-1;;;;;44170:19:0;;44166:228;;44274:14;;44257:13;44267:2;44257:9;:13::i;:::-;44248:22;;:6;:22;:::i;:::-;:40;;44214:160;;;;-1:-1:-1;;;44214:160:0;;14007:2:1;44214:160:0;;;13989:21:1;14046:2;14026:18;;;14019:30;14085:34;14065:18;;;14058:62;-1:-1:-1;;;14136:18:1;;;14129:32;14178:19;;44214:160:0;13805:398:1;44214:160:0;44523:41;44538:4;44544:2;44548:6;44556:7;44523:14;:41::i;:::-;42326:2246;;;42223:2349;;;:::o;4200:226::-;4320:7;4356:12;4348:6;;;;4340:29;;;;-1:-1:-1;;;4340:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4380:9:0;4392:5;4396:1;4392;:5;:::i;:::-;4380:17;4200:226;-1:-1:-1;;;;;4200:226:0:o;38428:164::-;38470:7;38491:15;38508;38527:19;:17;:19::i;:::-;38490:56;;-1:-1:-1;38490:56:0;-1:-1:-1;38564:20:0;38490:56;;38564:11;:20::i;:::-;38557:27;;;;38428:164;:::o;3297:181::-;3355:7;;3387:5;3391:1;3387;:5;:::i;:::-;3375:17;;3416:1;3411;:6;;3403:46;;;;-1:-1:-1;;;3403:46:0;;14410:2:1;3403:46:0;;;14392:21:1;14449:2;14429:18;;;14422:30;14488:29;14468:18;;;14461:57;14535:18;;3403:46:0;14208:351:1;36922:704:0;37023:7;37045;37067;37089;37111;37146:12;37161:31;37184:7;37161:22;:31::i;:::-;37146:46;;37203:18;37224:30;37246:7;37224:21;:30::i;:::-;37203:51;;37265:15;37283:30;37305:7;37283:21;:30::i;:::-;37265:48;;37324:13;37340:25;37357:7;37340:16;:25::i;:::-;37324:41;-1:-1:-1;37376:23:0;37402:33;37424:10;37402:17;:7;37414:4;37402:11;:17::i;:::-;:21;;:33::i;:::-;37376:59;-1:-1:-1;37464:28:0;37376:59;37484:7;37464:19;:28::i;:::-;37446:46;-1:-1:-1;37521:26:0;37446:46;37541:5;37521:19;:26::i;:::-;37503:44;37585:4;;-1:-1:-1;37591:10:0;;-1:-1:-1;37603:7:0;;-1:-1:-1;37591:10:0;-1:-1:-1;36922:704:0;;-1:-1:-1;;;36922:704:0:o;37634:786::-;37883:7;;;;37980:24;:7;37992:11;37980;:24::i;:::-;37962:42;-1:-1:-1;38015:12:0;38030:21;:4;38039:11;38030:8;:21::i;:::-;38015:36;-1:-1:-1;38062:18:0;38083:27;:10;38098:11;38083:14;:27::i;:::-;38062:48;-1:-1:-1;38121:15:0;38139:24;:7;38151:11;38139;:24::i;:::-;38121:42;-1:-1:-1;38174:13:0;38190:22;:5;38200:11;38190:9;:22::i;:::-;38174:38;-1:-1:-1;38223:23:0;38249:113;38174:38;38249:88;38329:7;38249:88;38299:10;38249:88;:7;38275:4;38249:25;:31::i;:113::-;38381:7;;;;-1:-1:-1;38407:4:0;;-1:-1:-1;37634:786:0;;-1:-1:-1;;;;;;;;;;;37634:786:0:o;3761:136::-;3819:7;3846:43;3850:1;3853;3846:43;;;;;;;;;;;;;;;;;:3;:43::i;5808:312::-;5928:7;5963:12;5956:5;5948:28;;;;-1:-1:-1;;;5948:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5987:9:0;5999:5;6003:1;5999;:5;:::i;44580:1195::-;27429:16;:23;;-1:-1:-1;;27429:23:0;;;;;44783:7:::1;:17:::0;44764:6:::1;:16:::0;27429:23;;44783:17;;;::::1;27429:23:::0;44783:17;;::::1;::::0;44764:16;;::::1;::::0;::::1;::::0;44725:36:::1;::::0;27429:23;44744:17;;;::::1;::::0;::::1;::::0;44725:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;44724:81;::::0;44804:1:::1;44724:81;:::i;:::-;44881:7;:17:::0;44862:6:::1;:16:::0;44702:103:::1;::::0;;::::1;::::0;-1:-1:-1;44816:32:0::1;::::0;44702:103;;44862:36:::1;::::0;44881:17:::1;::::0;;;::::1;::::0;::::1;::::0;44862:16;;::::1;;:36;:::i;:::-;44852:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;44851:63;;;;:::i;:::-;44816:98:::0;-1:-1:-1;44925:14:0::1;44942:33;44816:98:::0;44942:6;:33:::1;:::i;:::-;44925:50:::0;-1:-1:-1;45013:21:0::1;45047:24;44925:50:::0;45047:16:::1;:24::i;:::-;45084:20;45107:38;45131:14:::0;45107:21:::1;:38;:::i;:::-;45228:7;:17:::0;45209:6:::1;:16:::0;45084:61;;-1:-1:-1;45156:19:0::1;::::0;45209:36:::1;::::0;45228:17:::1;;::::0;;;::::1;::::0;::::1;::::0;45209:16;;;::::1;;:36;:::i;:::-;45194:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;45178:69;::::0;:12;:69:::1;:::i;:::-;45324:7;:17:::0;45305:6:::1;:16:::0;45156:91;;-1:-1:-1;45258:29:0::1;::::0;45305:36:::1;::::0;45324:17:::1;;::::0;;;::::1;::::0;::::1;::::0;45305:16;;;::::1;;:36;:::i;:::-;45290:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;45258:84:::0;-1:-1:-1;45359:25:0;;45355:160:::1;;45442:61;45455:24;45481:21;45442:12;:61::i;:::-;45622:7;:17:::0;45603:6:::1;:16:::0;45561:20:::1;::::0;45603:36:::1;::::0;45622:17:::1;::::0;;;;::::1;::::0;::::1;::::0;45603:16;;::::1;;:36;:::i;:::-;45584:56;;:15;:11:::0;45598:1:::1;45584:15;:::i;:::-;:56;;;;:::i;:::-;45561:79:::0;-1:-1:-1;45666:16:0;;45662:98:::1;;45707:17;::::0;45699:49:::1;::::0;-1:-1:-1;;;;;45707:17:0;;::::1;::::0;45699:49;::::1;;;::::0;45735:12;;45707:17:::1;45699:49:::0;45707:17;45699:49;45735:12;45707:17;45699:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45662:98;-1:-1:-1::0;;27475:16:0;:24;;-1:-1:-1;;27475:24:0;;;-1:-1:-1;;;;;;;44580:1195:0:o;46980:1022::-;47135:7;47131:230;;;47159:14;41023;:18;;-1:-1:-1;;41108:12:0;;;40980:155;47159:14;47202:13;-1:-1:-1;;;;;47192:23:0;:6;-1:-1:-1;;;;;47192:23:0;;47188:72;;41197:6;:17;41180:14;:34;;41197:17;;;;-1:-1:-1;;41225:32:0;;;;;;;41197:17;41241:16;;;;;41225:32;;-1:-1:-1;;41311:22:0;41284:16;;;;;;41268:32;-1:-1:-1;;41311:22:0;;41322:11;;;;;;;;;41311:22;;;;;;;;;47236:8;47291:13;-1:-1:-1;;;;;47278:26:0;:9;-1:-1:-1;;;;;47278:26:0;;47274:76;;41412:7;:18;41395:14;:35;;41412:18;;;;-1:-1:-1;;41441:33:0;;;;;;;41412:18;41457:17;;;;;41441:33;;-1:-1:-1;;41529:23:0;41501:17;;;;;;41485:33;-1:-1:-1;;41529:23:0;;41540:12;;;;;;;;;41529:23;;;;;;;;;47325:9;-1:-1:-1;;;;;47377:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;47401:22:0;;;;;;:11;:22;;;;;;;;47400:23;47377:46;47373:597;;;47440:48;47462:6;47470:9;47481:6;47440:21;:48::i;:::-;47373:597;;;-1:-1:-1;;;;;47511:19:0;;;;;;:11;:19;;;;;;;;47510:20;:46;;;;-1:-1:-1;;;;;;47534:22:0;;;;;;:11;:22;;;;;;;;47510:46;47506:464;;;47573:46;47593:6;47601:9;47612:6;47573:19;:46::i;47506:464::-;-1:-1:-1;;;;;47642:19:0;;;;;;:11;:19;;;;;;;;47641:20;:47;;;;-1:-1:-1;;;;;;47666:22:0;;;;;;:11;:22;;;;;;;;47665:23;47641:47;47637:333;;;47705:44;47723:6;47731:9;47742:6;47705:17;:44::i;47637:333::-;-1:-1:-1;;;;;47771:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47794:22:0;;;;;;:11;:22;;;;;;;;47771:45;47767:203;;;47833:48;47855:6;47863:9;47874:6;47833:21;:48::i;47767:203::-;47914:44;47932:6;47940:9;47951:6;47914:17;:44::i;:::-;47980:14;41023;:18;;-1:-1:-1;;41108:12:0;;;40980:155;47980:14;46980:1022;;;;:::o;38600:605::-;38698:7;;38734;;38651;;;;;38752:338;38776:9;:16;38772:20;;38752:338;;;38860:7;38836;:21;38844:9;38854:1;38844:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38844:12:0;38836:21;;;;;;;;;;;;;:31;;:83;;;38912:7;38888;:21;38896:9;38906:1;38896:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38896:12:0;38888:21;;;;;;;;;;;;;:31;38836:83;38814:146;;;38943:7;;38952;;38935:25;;;;;;;38600:605;;:::o;38814:146::-;38985:34;38997:7;:21;39005:9;39015:1;39005:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39005:12:0;38997:21;;;;;;;;;;;;;38985:7;;:11;:34::i;:::-;38975:44;;39044:34;39056:7;:21;39064:9;39074:1;39064:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39064:12:0;39056:21;;;;;;;;;;;;;39044:7;;:11;:34::i;:::-;39034:44;-1:-1:-1;38794:3:0;;;;:::i;:::-;;;;38752:338;;;-1:-1:-1;39126:7:0;;39114;;:20;;:11;:20::i;:::-;39104:7;:30;39100:61;;;39144:7;;39153;;39136:25;;;;;;38600:605;;:::o;39100:61::-;39180:7;;39189;;-1:-1:-1;38600:605:0;-1:-1:-1;38600:605:0:o;40287:144::-;40397:14;;40358:7;;40385:38;;40417:5;;40385:27;;:7;;40397:14;;40385:11;:27::i;40439:174::-;40580:13;;40536:7;;40568:37;;40599:5;;40568:26;;:7;;40580:13;;;;;40568:11;:26::i;40621:174::-;40762:13;;40718:7;;40750:37;;40781:5;;40750:26;;:7;;40762:13;;;;;40750:11;:26::i;40803:164::-;40939:8;;40895:7;;40927:32;;40953:5;;40927:21;;:7;;40939:8;;;;;40927:11;:21::i;45783:589::-;45933:16;;;45947:1;45933:16;;;;;;;;45909:21;;45933:16;;;;;;;;;;-1:-1:-1;45933:16:0;45909:40;;45978:4;45960;45965:1;45960:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45960:23:0;;;-1:-1:-1;;;;;45960:23:0;;;;;46004:15;-1:-1:-1;;;;;46004:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45994:4;45999:1;45994:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45994:32:0;;;-1:-1:-1;;;;;45994:32:0;;;;;46039:62;46056:4;46071:15;46089:11;46039:8;:62::i;:::-;46140:224;;-1:-1:-1;;;46140:224:0;;-1:-1:-1;;;;;46140:15:0;:66;;;;:224;;46221:11;;46247:1;;46291:4;;46318;;46338:15;;46140:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46380:519;46528:62;46545:4;46560:15;46578:11;46528:8;:62::i;:::-;46633:258;;-1:-1:-1;;;46633:258:0;;46705:4;46633:258;;;16730:34:1;;;16780:18;;;16773:34;;;46751:1:0;16823:18:1;;;16816:34;;;16866:18;;;16859:34;16909:19;;;16902:44;46865:15:0;16962:19:1;;;16955:35;46633:15:0;-1:-1:-1;;;;;46633:31:0;;;;46672:9;;16664:19:1;;46633:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46380:519;;:::o;49861:941::-;50012:23;50050:12;50077:18;50110:15;50140:13;50167:20;50179:7;50167:11;:20::i;:::-;49997:190;;;;;;;;;;50199:15;50216:23;50241:12;50257:155;50283:7;50305:4;50324:10;50349:7;50371:5;50391:10;:8;:10::i;50257:155::-;-1:-1:-1;;;;;50443:15:0;;;;;;:7;:15;;;;;;50198:214;;-1:-1:-1;50198:214:0;;-1:-1:-1;50198:214:0;-1:-1:-1;50443:28:0;;50463:7;50443:19;:28::i;:::-;-1:-1:-1;;;;;50425:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50500:7;:15;;;;:28;;50520:7;50500:19;:28::i;:::-;-1:-1:-1;;;;;50482:15:0;;;;;;;:7;:15;;;;;;:46;;;;50560:18;;;;;;;:39;;50583:15;50560:22;:39::i;:::-;-1:-1:-1;;;;;50539:18:0;;;;;;:7;:18;;;;;:60;50610:26;50625:10;50610:14;:26::i;:::-;50647:23;50662:7;50647:14;:23::i;:::-;50681:19;50694:5;50681:12;:19::i;:::-;50711:23;50723:4;50729;50711:11;:23::i;:::-;50767:9;-1:-1:-1;;;;;50750:44:0;50759:6;-1:-1:-1;;;;;50750:44:0;;50778:15;50750:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;50750:44:0;;;;;;;;49986:816;;;;;;;;49861:941;;;:::o;48900:953::-;49049:23;49087:12;49114:18;49147:15;49177:13;49204:20;49216:7;49204:11;:20::i;:::-;49034:190;;;;;;;;;;49236:15;49253:23;49278:12;49294:155;49320:7;49342:4;49361:10;49386:7;49408:5;49428:10;:8;:10::i;49294:155::-;-1:-1:-1;;;;;49480:15:0;;;;;;:7;:15;;;;;;49235:214;;-1:-1:-1;49235:214:0;;-1:-1:-1;49235:214:0;-1:-1:-1;49480:28:0;;49235:214;49480:19;:28::i;:::-;-1:-1:-1;;;;;49462:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;49540:18;;;;;:7;:18;;;;;:39;;49563:15;49540:22;:39::i;:::-;-1:-1:-1;;;;;49519:18:0;;;;;;:7;:18;;;;;;;;:60;;;;49611:7;:18;;;;:39;;49634:15;49611:22;:39::i;48010:880::-;48157:23;48195:12;48222:18;48255:15;48285:13;48312:20;48324:7;48312:11;:20::i;:::-;48142:190;;;;;;;;;;48344:15;48361:23;48386:12;48402:155;48428:7;48450:4;48469:10;48494:7;48516:5;48536:10;:8;:10::i;48402:155::-;-1:-1:-1;;;;;48588:15:0;;;;;;:7;:15;;;;;;48343:214;;-1:-1:-1;48343:214:0;;-1:-1:-1;48343:214:0;-1:-1:-1;48588:28:0;;48343:214;48588:19;:28::i;50810:1012::-;50961:23;50999:12;51026:18;51059:15;51089:13;51116:20;51128:7;51116:11;:20::i;:::-;50946:190;;;;;;;;;;51148:15;51165:23;51190:12;51206:155;51232:7;51254:4;51273:10;51298:7;51320:5;51340:10;:8;:10::i;51206:155::-;-1:-1:-1;;;;;51392:15:0;;;;;;:7;:15;;;;;;51147:214;;-1:-1:-1;51147:214:0;;-1:-1:-1;51147:214:0;-1:-1:-1;51392:28:0;;51412:7;51392:19;:28::i;:::-;-1:-1:-1;;;;;51374:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51449:7;:15;;;;:28;;51469:7;51449:19;:28::i;39213:355::-;39276:19;39298:10;:8;:10::i;:::-;39276:32;-1:-1:-1;39319:18:0;39340:27;:10;39276:32;39340:14;:27::i;:::-;39419:4;39403:22;;;;:7;:22;;;;;;39319:48;;-1:-1:-1;39403:38:0;;39319:48;39403:26;:38::i;:::-;39394:4;39378:22;;;;:7;:22;;;;;;;;:63;;;;39456:11;:26;;;;;;39452:108;;;39538:4;39522:22;;;;:7;:22;;;;;;:38;;39549:10;39522:26;:38::i;:::-;39513:4;39497:22;;;;:7;:22;;;;;:63;39452:108;39265:303;;39213:355;:::o;39924:::-;39980:19;40002:10;:8;:10::i;:::-;39980:32;-1:-1:-1;40023:13:0;40039:22;:5;39980:32;40039:9;:22::i;:::-;40104:12;;-1:-1:-1;;;;;40104:12:0;40096:21;;;;:7;:21;;;;;;40023:38;;-1:-1:-1;40096:32:0;;40023:38;40096:25;:32::i;:::-;40080:12;;;-1:-1:-1;;;;;40080:12:0;;;40072:21;;;;:7;:21;;;;;;;;:56;;;;40155:12;;;;;40143:25;;:11;:25;;;;;;;40139:132;;;40215:12;;-1:-1:-1;;;;;40215:12:0;40207:21;;;;:7;:21;;;;;;:64;;40251:5;40207:25;:64::i;:::-;40191:12;;-1:-1:-1;;;;;40191:12:0;40183:21;;;;:7;:21;;;;;:88;39969:310;;39924:355;:::o;36767:147::-;36845:7;;:17;;36857:4;36845:11;:17::i;:::-;36835:7;:27;36886:10;;:20;;36901:4;36886:14;:20::i;:::-;36873:10;:33;-1:-1:-1;;36767:147:0:o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:156::-;1999:20;;2059:4;2048:16;;2038:27;;2028:55;;2079:1;2076;2069:12;2028:55;1933:156;;;:::o;2094:393::-;2172:6;2180;2188;2196;2249:3;2237:9;2228:7;2224:23;2220:33;2217:53;;;2266:1;2263;2256:12;2217:53;2289:27;2306:9;2289:27;:::i;:::-;2279:37;;2335:36;2367:2;2356:9;2352:18;2335:36;:::i;:::-;2325:46;;2390:36;2422:2;2411:9;2407:18;2390:36;:::i;:::-;2380:46;;2445:36;2477:2;2466:9;2462:18;2445:36;:::i;:::-;2435:46;;2094:393;;;;;;;:::o;2492:456::-;2569:6;2577;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:52;;;2654:1;2651;2644:12;2606:52;2693:9;2680:23;2712:31;2737:5;2712:31;:::i;:::-;2762:5;-1:-1:-1;2819:2:1;2804:18;;2791:32;2832:33;2791:32;2832:33;:::i;:::-;2492:456;;2884:7;;-1:-1:-1;;;2938:2:1;2923:18;;;;2910:32;;2492:456::o;3377:160::-;3442:20;;3498:13;;3491:21;3481:32;;3471:60;;3527:1;3524;3517:12;3542:248;3607:6;3615;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3707:26;3723:9;3707:26;:::i;3795:180::-;3854:6;3907:2;3895:9;3886:7;3882:23;3878:32;3875:52;;;3923:1;3920;3913:12;3875:52;-1:-1:-1;3946:23:1;;3795:180;-1:-1:-1;3795:180:1:o;4169:248::-;4234:6;4242;4295:2;4283:9;4274:7;4270:23;4266:32;4263:52;;;4311:1;4308;4301:12;4263:52;4347:9;4334:23;4324:33;;4376:35;4407:2;4396:9;4392:18;4376:35;:::i;:::-;4366:45;;4169:248;;;;;:::o;4630:677::-;4736:6;4744;4752;4760;4768;4776;4784;4792;4845:3;4833:9;4824:7;4820:23;4816:33;4813:53;;;4862:1;4859;4852:12;4813:53;4885:27;4902:9;4885:27;:::i;:::-;4875:37;;4931:36;4963:2;4952:9;4948:18;4931:36;:::i;:::-;4921:46;;4986:36;5018:2;5007:9;5003:18;4986:36;:::i;:::-;4976:46;;5041:36;5073:2;5062:9;5058:18;5041:36;:::i;:::-;5031:46;;5096:37;5128:3;5117:9;5113:19;5096:37;:::i;:::-;5086:47;;5152:37;5184:3;5173:9;5169:19;5152:37;:::i;:::-;5142:47;;5208:37;5240:3;5229:9;5225:19;5208:37;:::i;:::-;5198:47;;5264:37;5296:3;5285:9;5281:19;5264:37;:::i;:::-;5254:47;;4630:677;;;;;;;;;;;:::o;5572:180::-;5628:6;5681:2;5669:9;5660:7;5656:23;5652:32;5649:52;;;5697:1;5694;5687:12;5649:52;5720:26;5736:9;5720:26;:::i;5981:388::-;6049:6;6057;6110:2;6098:9;6089:7;6085:23;6081:32;6078:52;;;6126:1;6123;6116:12;6078:52;6165:9;6152:23;6184:31;6209:5;6184:31;:::i;:::-;6234:5;-1:-1:-1;6291:2:1;6276:18;;6263:32;6304:33;6263:32;6304:33;:::i;:::-;6356:7;6346:17;;;5981:388;;;;;:::o;6374:380::-;6453:1;6449:12;;;;6496;;;6517:61;;6571:4;6563:6;6559:17;6549:27;;6517:61;6624:2;6616:6;6613:14;6593:18;6590:38;6587:161;;6670:10;6665:3;6661:20;6658:1;6651:31;6705:4;6702:1;6695:15;6733:4;6730:1;6723:15;6587:161;;6374:380;;;:::o;6759:356::-;6961:2;6943:21;;;6980:18;;;6973:30;7039:34;7034:2;7019:18;;7012:62;7106:2;7091:18;;6759:356::o;7883:127::-;7944:10;7939:3;7935:20;7932:1;7925:31;7975:4;7972:1;7965:15;7999:4;7996:1;7989:15;8015:127;8076:10;8071:3;8067:20;8064:1;8057:31;8107:4;8104:1;8097:15;8131:4;8128:1;8121:15;8147:125;8187:4;8215:1;8212;8209:8;8206:34;;;8220:18;;:::i;:::-;-1:-1:-1;8257:9:1;;8147:125::o;8277:127::-;8338:10;8333:3;8329:20;8326:1;8319:31;8369:4;8366:1;8359:15;8393:4;8390:1;8383:15;8409:135;8448:3;8469:17;;;8466:43;;8489:18;;:::i;:::-;-1:-1:-1;8536:1:1;8525:13;;8409:135::o;10085:168::-;10125:7;10191:1;10187;10183:6;10179:14;10176:1;10173:21;10168:1;10161:9;10154:17;10150:45;10147:71;;;10198:18;;:::i;:::-;-1:-1:-1;10238:9:1;;10085:168::o;10258:217::-;10298:1;10324;10314:132;;10368:10;10363:3;10359:20;10356:1;10349:31;10403:4;10400:1;10393:15;10431:4;10428:1;10421:15;10314:132;-1:-1:-1;10460:9:1;;10258:217::o;13672:128::-;13712:3;13743:1;13739:6;13736:1;13733:13;13730:39;;;13749:18;;:::i;:::-;-1:-1:-1;13785:9:1;;13672:128::o;14564:204::-;14602:3;14638:4;14635:1;14631:12;14670:4;14667:1;14663:12;14705:3;14699:4;14695:14;14690:3;14687:23;14684:49;;;14713:18;;:::i;:::-;14749:13;;14564:204;-1:-1:-1;;;14564:204:1:o;14773:238::-;14811:7;14851:4;14848:1;14844:12;14883:4;14880:1;14876:12;14943:3;14937:4;14933:14;14928:3;14925:23;14918:3;14911:11;14904:19;14900:49;14897:75;;;14952:18;;:::i;:::-;14992:13;;14773:238;-1:-1:-1;;;14773:238:1:o;15148:251::-;15218:6;15271:2;15259:9;15250:7;15246:23;15242:32;15239:52;;;15287:1;15284;15277:12;15239:52;15319:9;15313:16;15338:31;15363:5;15338:31;:::i;15404:980::-;15666:4;15714:3;15703:9;15699:19;15745:6;15734:9;15727:25;15771:2;15809:6;15804:2;15793:9;15789:18;15782:34;15852:3;15847:2;15836:9;15832:18;15825:31;15876:6;15911;15905:13;15942:6;15934;15927:22;15980:3;15969:9;15965:19;15958:26;;16019:2;16011:6;16007:15;15993:29;;16040:1;16050:195;16064:6;16061:1;16058:13;16050:195;;;16129:13;;-1:-1:-1;;;;;16125:39:1;16113:52;;16220:15;;;;16185:12;;;;16161:1;16079:9;16050:195;;;-1:-1:-1;;;;;;;16301:32:1;;;;16296:2;16281:18;;16274:60;-1:-1:-1;;;16365:3:1;16350:19;16343:35;16262:3;15404:980;-1:-1:-1;;;15404:980:1:o;17001:306::-;17089:6;17097;17105;17158:2;17146:9;17137:7;17133:23;17129:32;17126:52;;;17174:1;17171;17164:12;17126:52;17203:9;17197:16;17187:26;;17253:2;17242:9;17238:18;17232:25;17222:35;;17297:2;17286:9;17282:18;17276:25;17266:35;;17001:306;;;;;:::o
Swarm Source
ipfs://2c79a0be19fea2b1e6921d5b103f467acde8c021776c09e757fbcb5400938cff
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.