More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 289 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Remove Bot From ... | 17592200 | 497 days ago | IN | 0 ETH | 0.0010856 | ||||
Set Both Fees | 17592138 | 497 days ago | IN | 0 ETH | 0.00082635 | ||||
Approve | 17591875 | 497 days ago | IN | 0 ETH | 0.00078597 | ||||
Increase Allowan... | 17591864 | 497 days ago | IN | 0 ETH | 0.00099649 | ||||
Approve | 17591862 | 497 days ago | IN | 0 ETH | 0.00058499 | ||||
Exclude From Fee | 17591839 | 497 days ago | IN | 0 ETH | 0.00095934 | ||||
Exclude From Lim... | 17591837 | 497 days ago | IN | 0 ETH | 0.00104548 | ||||
Exclude From Rew... | 17591835 | 497 days ago | IN | 0 ETH | 0.00170766 | ||||
Exclude From Fee | 17591810 | 497 days ago | IN | 0 ETH | 0.00067584 | ||||
Exclude From Lim... | 17591807 | 497 days ago | IN | 0 ETH | 0.0007075 | ||||
Remove Bot From ... | 17591805 | 497 days ago | IN | 0 ETH | 0.0007069 | ||||
Remove Bot From ... | 17591797 | 497 days ago | IN | 0 ETH | 0.00067959 | ||||
Add Bot To Black... | 17591786 | 497 days ago | IN | 0 ETH | 0.00176429 | ||||
Remove Bot From ... | 17591714 | 497 days ago | IN | 0 ETH | 0.00051252 | ||||
Set Num Tokens S... | 17591691 | 497 days ago | IN | 0 ETH | 0.00049944 | ||||
Exclude From Rew... | 17591689 | 497 days ago | IN | 0 ETH | 0.00146825 | ||||
Exclude From Lim... | 17591687 | 497 days ago | IN | 0 ETH | 0.00051483 | ||||
Exclude From Fee | 17591685 | 497 days ago | IN | 0 ETH | 0.00051905 | ||||
Remove Bot From ... | 17591664 | 497 days ago | IN | 0 ETH | 0.00063016 | ||||
Remove Bot From ... | 17591655 | 497 days ago | IN | 0 ETH | 0.00057357 | ||||
Add Bot To Black... | 17591653 | 497 days ago | IN | 0 ETH | 0.00162152 | ||||
Remove Bot From ... | 17591649 | 497 days ago | IN | 0 ETH | 0.00049487 | ||||
Set Max Tx Perce... | 17591635 | 497 days ago | IN | 0 ETH | 0.00057268 | ||||
Set Both Fees | 17591631 | 497 days ago | IN | 0 ETH | 0.00067609 | ||||
Set Swap And Liq... | 17591628 | 497 days ago | IN | 0 ETH | 0.000457 |
Loading...
Loading
Contract Name:
SMASHCOIN
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-17 */ /* 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 _isBlackListedBot; mapping(address => bool) private _isExcludedFromLimit; address[] private _blackListedBots; 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(0xF4814E8755ABbfECEDFa69bbD25472c3db4DA2D4)); 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(2); //0.2% uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(1); //0.1% uint256 public _maxWalletSize = _tTotal.div(1000).mul(3); // 0.3% event botAddedToBlacklist(address account); event botRemovedFromBlacklist(address account); 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 = 4; buyFee.marketing = 8; buyFee.burn = 1; sellFee.reflection = 1; sellFee.liquidity = 6; sellFee.marketing = 14; 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 addBotToBlacklist(address account) external onlyOwner { require( account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, "We cannot blacklist UniSwap router" ); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlacklist(address account) external onlyOwner { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[ _blackListedBots.length - 1 ]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function 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"); require(!_isBlackListedBot[from], "You are blacklisted"); require(!_isBlackListedBot[msg.sender], "blacklisted"); require(!_isBlackListedBot[tx.origin], "blacklisted"); if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading //antibot if( launchedAt > 0 && ( launchedAt + deadBlocks ) > block.number ){ _isBlackListedBot[to] = true; } // 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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","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":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","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
60c06040526706f05b59d3b20000600b81905562000020906000196200069d565b6200002e90600019620006ca565b600c55600e80546001600160a01b031990811673f4814e8755abbfecedfa69bbd25472c3db4da2d417909155600f805490911661dead1790556040805180820190915260098082526829a6a0a9a421a7a4a760b91b60209092019182526200009991601091620005e1565b5060408051808201909152600680825265048a69a82a6960d31b6020909201918252620000c991601191620005e1565b506012805460ff191660091790556015805460ff60281b191665010000000000179055600b54620001289060029062000114906103e862001aa1620004c4602090811b91909117901c565b6200051760201b62001ae31790919060201c565b6016556200014f6001620001146103e8600b54620004c460201b62001aa11790919060201c565b601755620001766003620001146103e8600b54620004c460201b62001aa11790919060201c565b60185560026019556000601a55601b805460ff191690553480156200019a57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c5433600090815260026020908152604091829020929092556013805463ffffffff199081166301080401179091556014805490911663010e0601179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000268573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028e9190620006e4565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003029190620006e4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000350573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003769190620006e4565b6001600160a01b0390811660a0528116608052600160056000620003a26000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600e805484168352848320805488168317905554909216815260099384905291822080549094168117909355620004256000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260099092529020805490911660011790556200046d3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b54604051620004b591815260200190565b60405180910390a350620007dc565b60006200050e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620005a560201b60201c565b90505b92915050565b6000826000036200052b5750600062000511565b60006200053983856200070f565b90508262000548858362000731565b146200050e5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005c95760405162461bcd60e51b81526004016200059c919062000748565b506000620005d8848662000731565b95945050505050565b828054620005ef90620007a0565b90600052602060002090601f0160209004810192826200061357600085556200065e565b82601f106200062e57805160ff19168380011785556200065e565b828001600101855582156200065e579182015b828111156200065e57825182559160200191906001019062000641565b506200066c92915062000670565b5090565b5b808211156200066c576000815560010162000671565b634e487b7160e01b600052601260045260246000fd5b600082620006af57620006af62000687565b500690565b634e487b7160e01b600052601160045260246000fd5b600082821015620006df57620006df620006b4565b500390565b600060208284031215620006f757600080fd5b81516001600160a01b03811681146200050e57600080fd5b60008160001904831182151516156200072c576200072c620006b4565b500290565b60008262000743576200074362000687565b500490565b600060208083528351808285015260005b81811015620007775785810183015185820160400152820162000759565b818111156200078a576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c90821680620007b557607f821691505b602082108103620007d657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516136ea62000848600039600081816105e301528181610d9c01528181611fbb01528181612117015281816125ee015261267801526000818161038701528181612ac301528181612b7c01528181612bb801528181612c2a0152612c8601526136ea6000f3fe6080604052600436106102cd5760003560e01c806370d5ae0511610175578063af2ce614116100dc578063d94160e011610095578063f0f165af1161006f578063f0f165af1461098e578063f2fde38b146109ae578063fabb0b4f146109ce578063fe63178f146109e457600080fd5b8063d94160e0146108ef578063dd62ed3e14610928578063ea2f0b371461096e57600080fd5b8063af2ce61414610839578063b030b34a14610859578063bf56b37114610879578063c49b9a801461088f578063caac7934146108af578063d543dbeb146108cf57600080fd5b806391d919a91161012e57806391d919a91461077757806395d89b4114610797578063a457c2d7146107ac578063a87859f6146107cc578063a9059cbb146107f9578063aacebbe31461081957600080fd5b806370d5ae05146106c1578063715018a6146106df5780637d1db4a5146106f457806388f820201461070a5780638da5cb5b146107435780638f9a55c01461076157600080fd5b8063313ce5671161023457806347062402116101ed57806350d4e15f116101c757806350d4e15f1461062857806352390c02146106485780635342acb41461066857806370a08231146106a157600080fd5b8063470624021461059b57806349bd5a5e146105d15780634a74bb021461060557600080fd5b8063313ce567146104d95780633685d419146104fb578063395093511461051b5780633bd5d1731461053b578063437823ec1461055b5780634549b0391461057b57600080fd5b80631d7ef879116102865780631d7ef879146103d65780631f8d2779146103f657806323b872dd146104165780632b14ca56146104365780632d4103d6146104995780632d838119146104b957600080fd5b806306fdde03146102d9578063095ea7b3146103045780630bd3a7f91461033457806313114a9d146103565780631694505e1461037557806318160ddd146103c157600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610a04565b6040516102fb9190613166565b60405180910390f35b34801561031057600080fd5b5061032461031f3660046131d3565b610a96565b60405190151581526020016102fb565b34801561034057600080fd5b5061035461034f3660046131ff565b610aad565b005b34801561036257600080fd5b50600d545b6040519081526020016102fb565b34801561038157600080fd5b506103a97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102fb565b3480156103cd57600080fd5b50600b54610367565b3480156103e257600080fd5b506103546103f13660046131ff565b610b04565b34801561040257600080fd5b50610354610411366004613232565b610c74565b34801561042257600080fd5b50610324610431366004613286565b610ced565b34801561044257600080fd5b5060145461046c9060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102fb565b3480156104a557600080fd5b506103546104b43660046132d7565b610d56565b3480156104c557600080fd5b506103676104d43660046132f3565b610de5565b3480156104e557600080fd5b5060125460405160ff90911681526020016102fb565b34801561050757600080fd5b506103546105163660046131ff565b610e69565b34801561052757600080fd5b506103246105363660046131d3565b61101b565b34801561054757600080fd5b506103546105563660046132f3565b611051565b34801561056757600080fd5b506103546105763660046131ff565b61115f565b34801561058757600080fd5b5061036761059636600461330c565b6111ad565b3480156105a757600080fd5b5060135461046c9060ff808216916101008104821691620100008204811691630100000090041684565b3480156105dd57600080fd5b506103a97f000000000000000000000000000000000000000000000000000000000000000081565b34801561061157600080fd5b506015546103249065010000000000900460ff1681565b34801561063457600080fd5b50610354610643366004613338565b611250565b34801561065457600080fd5b506103546106633660046131ff565b6112f7565b34801561067457600080fd5b506103246106833660046131ff565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156106ad57600080fd5b506103676106bc3660046131ff565b61144a565b3480156106cd57600080fd5b50600f546001600160a01b03166103a9565b3480156106eb57600080fd5b506103546114a9565b34801561070057600080fd5b5061036760165481565b34801561071657600080fd5b506103246107253660046131ff565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561074f57600080fd5b506000546001600160a01b03166103a9565b34801561076d57600080fd5b5061036760185481565b34801561078357600080fd5b506103546107923660046131ff565b61151d565b3480156107a357600080fd5b506102ee611568565b3480156107b857600080fd5b506103246107c73660046131d3565b611577565b3480156107d857600080fd5b506103676107e73660046131ff565b601c6020526000908152604090205481565b34801561080557600080fd5b506103246108143660046131d3565b6115c6565b34801561082557600080fd5b506103546108343660046131ff565b6115d3565b34801561084557600080fd5b506103546108543660046132f3565b61161f565b34801561086557600080fd5b506103546108743660046131ff565b611670565b34801561088557600080fd5b50610367601a5481565b34801561089b57600080fd5b506103546108aa3660046133cf565b6117f3565b3480156108bb57600080fd5b50600e546103a9906001600160a01b031681565b3480156108db57600080fd5b506103546108ea3660046132f3565b611879565b3480156108fb57600080fd5b5061032461090a3660046131ff565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561093457600080fd5b506103676109433660046133ea565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561097a57600080fd5b506103546109893660046131ff565b6118c4565b34801561099a57600080fd5b506103546109a93660046132f3565b61190f565b3480156109ba57600080fd5b506103546109c93660046131ff565b61193e565b3480156109da57600080fd5b5061036760195481565b3480156109f057600080fd5b506103546109ff366004613232565b611a28565b606060108054610a1390613423565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f90613423565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b5050505050905090565b6000610aa3338484611b65565b5060015b92915050565b6000546001600160a01b03163314610ae05760405162461bcd60e51b8152600401610ad79061345d565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000546001600160a01b03163314610b2e5760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d03610ba55760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610ad7565b6001600160a01b03811660009081526008602052604090205460ff1615610c0e5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610ad7565b6001600160a01b03166000818152600860205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000546001600160a01b03163314610c9e5760405162461bcd60e51b8152600401610ad79061345d565b6014805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610cfa848484611c89565b610d4c8433610d4785604051806060016040528060288152602001613668602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906121d1565b611b65565b5060019392505050565b6000546001600160a01b03163314610d805760405162461bcd60e51b8152600401610ad79061345d565b601b805460ff1916831515179055610d97306112f7565b610dc07f00000000000000000000000000000000000000000000000000000000000000006112f7565b601b5460ff168015610dd25750601a54155b15610de15743601a5560198190555b5050565b6000600c54821115610e4c5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610ad7565b6000610e5661220b565b9050610e628382611aa1565b9392505050565b6000546001600160a01b03163314610e935760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03811660009081526006602052604090205460ff16610efb5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610ad7565b60005b600754811015610de157816001600160a01b031660078281548110610f2557610f25613492565b6000918252602090912001546001600160a01b0316036110095760078054610f4f906001906134be565b81548110610f5f57610f5f613492565b600091825260209091200154600780546001600160a01b039092169183908110610f8b57610f8b613492565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610fe357610fe36134d5565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80611013816134eb565b915050610efe565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610aa3918590610d47908661222e565b3360008181526006602052604090205460ff16156110c65760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610ad7565b6000806000806110d58661228d565b94509450945094505060006110f587868686866110f061220b565b612309565b50506001600160a01b03871660009081526002602052604090205490915061111d908261237d565b6001600160a01b038716600090815260026020526040902055600c54611143908261237d565b600c55600d54611153908861222e565b600d5550505050505050565b6000546001600160a01b031633146111895760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600b548311156112015760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610ad7565b6000806000806112108761228d565b94509450945094505060008061122c89878787876110f061220b565b50915091508761124357509450610aa79350505050565b9550610aa7945050505050565b6000546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610ad79061345d565b6013805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560148054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b031633146113215760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03811660009081526006602052604090205460ff161561138a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610ad7565b6001600160a01b038116600090815260026020526040902054156113e4576001600160a01b0381166000908152600260205260409020546113ca90610de5565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561148757506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610aa790610de5565b6000546001600160a01b031633146114d35760405162461bcd60e51b8152600401610ad79061345d565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146115475760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03166000908152600960205260409020805460ff19169055565b606060118054610a1390613423565b6000610aa33384610d4785604051806060016040528060258152602001613690602591393360009081526004602090815260408083206001600160a01b038d16845290915290205491906121d1565b6000610aa3338484611c89565b6000546001600160a01b031633146115fd5760405162461bcd60e51b8152600401610ad79061345d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116495760405162461bcd60e51b8152600401610ad79061345d565b61166a6103e861166483600b54611ae390919063ffffffff16565b90611aa1565b60185550565b6000546001600160a01b0316331461169a5760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03811660009081526008602052604090205460ff166117025760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610ad7565b60005b600a54811015610de157816001600160a01b0316600a828154811061172c5761172c613492565b6000918252602090912001546001600160a01b0316036117e157600a8054611756906001906134be565b8154811061176657611766613492565b600091825260209091200154600a80546001600160a01b03909216918390811061179257611792613492565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600890915260409020805460ff19169055600a805480610fe357610fe36134d5565b806117eb816134eb565b915050611705565b6000546001600160a01b0316331461181d5760405162461bcd60e51b8152600401610ad79061345d565b60158054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061186e90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146118a35760405162461bcd60e51b8152600401610ad79061345d565b6118be6103e861166483600b54611ae390919063ffffffff16565b60165550565b6000546001600160a01b031633146118ee5760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146119395760405162461bcd60e51b8152600401610ad79061345d565b601755565b6000546001600160a01b031633146119685760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b0381166119cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ad7565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611a525760405162461bcd60e51b8152600401610ad79061345d565b6013805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610e6283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123bf565b600082600003611af557506000610aa7565b6000611b018385613504565b905082611b0e8583613523565b14610e625760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610ad7565b6001600160a01b038316611bc75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ad7565b6001600160a01b038216611c285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ad7565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ced5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ad7565b6001600160a01b038216611d4f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ad7565b60008111611db15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610ad7565b6001600160a01b03831660009081526008602052604090205460ff1615611e105760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610ad7565b3360009081526008602052604090205460ff1615611e5e5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610ad7565b3260009081526008602052604090205460ff1615611eac5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610ad7565b6000546001600160a01b03848116911614801590611ed857506000546001600160a01b03838116911614155b15611f2f57601b5460ff16611f2f5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610ad7565b6000601a54118015611f4f575043601954601a54611f4d9190613545565b115b15611f78576001600160a01b0382166000908152600860205260409020805460ff191660011790555b6000611f833061144a565b90506016548110611f9357506016545b60175481108015908190611fb25750601554640100000000900460ff16155b8015611ff057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015612007575060155465010000000000900460ff165b1561201a57601754915061201a826123ed565b6001600160a01b03851660009081526005602052604090205460019060ff168061205c57506001600160a01b03851660009081526005602052604090205460ff165b15612065575060005b80156121bd576001600160a01b03861660009081526009602052604090205460ff161580156120ad57506001600160a01b03851660009081526009602052604090205460ff16155b156121bd576016548411156121155760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610ad7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146121bd5760185461215a8661144a565b6121649086613545565b11156121bd5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610ad7565b6121c9868686846125d4565b505050505050565b600081848411156121f55760405162461bcd60e51b8152600401610ad79190613166565b50600061220284866134be565b95945050505050565b600080600061221861286c565b90925090506122278282611aa1565b9250505090565b60008061223b8385613545565b905083811015610e625760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610ad7565b60008060008060008061229f876129ee565b905060006122ac88612a09565b905060006122b989612a29565b905060006122c68a612a4a565b905060006122de846122d88d8861237d565b9061237d565b90506122ea818461237d565b90506122f6818361237d565b9b949a5092985090965094509092505050565b60008080806123188a86611ae3565b905060006123268a87611ae3565b905060006123348a88611ae3565b905060006123428a89611ae3565b905060006123508a8a611ae3565b90506000612366826122d8858188818c8c61237d565b959f959e50939c50939a5050505050505050505050565b6000610e6283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121d1565b600081836123e05760405162461bcd60e51b8152600401610ad79190613166565b5060006122028486613523565b6015805464ff0000000019166401000000001790556014546013546000916201000080820460ff9081169391820481169261243592610100918290048316929190041661355d565b61243f919061355d565b612449919061355d565b612454906002613582565b60145460135460ff9283169350600092849261247d92610100918290048316929190041661355d565b61248a9060ff1685613504565b6124949190613523565b905060006124a282856134be565b9050476124ae82612a6c565b60006124ba82476134be565b6014546013549192506000916124e09160ff61010091829004811692919091041661355d565b6124ed9060ff16876134be565b6124f79083613523565b60145460135491925060009161251d9160ff61010091829004811692919091041661355d565b61252a9060ff1683613504565b9050801561253c5761253c8682612c24565b60145460135460009161255f9160ff62010000928390048116929091041661355d565b60ff1661256d846002613504565b6125779190613504565b905080156125bb57600e546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156125b9573d6000803e3d6000fd5b505b50506015805464ff000000001916905550505050505050565b8015612700576125ec6015805463ffffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603612676576013546015805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031603612700576014546015805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561274157506001600160a01b03831660009081526006602052604090205460ff16155b1561275657612751848484612d04565b612854565b6001600160a01b03841660009081526006602052604090205460ff1615801561279757506001600160a01b03831660009081526006602052604090205460ff165b156127a757612751848484612e55565b6001600160a01b03841660009081526006602052604090205460ff161580156127e957506001600160a01b03831660009081526006602052604090205460ff16155b156127f957612751848484612f15565b6001600160a01b03841660009081526006602052604090205460ff16801561283957506001600160a01b03831660009081526006602052604090205460ff165b1561284957612751848484612f70565b612854848484612f15565b6128666015805463ffffffff19169055565b50505050565b600c54600b546000918291825b6007548110156129be5782600260006007848154811061289b5761289b613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061290657508160036000600784815481106128df576128df613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561291c57600c54600b54945094505050509091565b612962600260006007848154811061293657612936613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061237d565b92506129aa600360006007848154811061297e5761297e613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061237d565b9150806129b6816134eb565b915050612879565b50600b54600c546129ce91611aa1565b8210156129e557600c54600b549350935050509091565b90939092509050565b601554600090610aa79060649061166490859060ff16611ae3565b601554600090610aa790606490611664908590610100900460ff16611ae3565b601554600090610aa79060649061166490859062010000900460ff16611ae3565b601554600090610aa7906064906116649085906301000000900460ff16611ae3565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612aa157612aa1613492565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4391906135ab565b81600181518110612b5657612b56613492565b60200260200101906001600160a01b031690816001600160a01b031681525050612ba1307f000000000000000000000000000000000000000000000000000000000000000084611b65565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612bf69085906000908690309042906004016135c8565b600060405180830381600087803b158015612c1057600080fd5b505af11580156121c9573d6000803e3d6000fd5b612c4f307f000000000000000000000000000000000000000000000000000000000000000084611b65565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612cd8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cfd9190613639565b5050505050565b6000806000806000612d158661228d565b945094509450945094506000806000612d3489888888886110f061220b565b6001600160a01b038e166000908152600360205260409020549295509093509150612d5f908a61237d565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612d8e908461237d565b6001600160a01b03808d1660009081526002602052604080822093909355908c1681522054612dbd908361222e565b6001600160a01b038b16600090815260026020526040902055612ddf86612ffa565b612de885612ffa565b612df184613083565b612dfb8188613142565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a604051612e4091815260200190565b60405180910390a35050505050505050505050565b6000806000806000612e668661228d565b945094509450945094506000806000612e8589888888886110f061220b565b6001600160a01b038e166000908152600260205260409020549295509093509150612eb0908461237d565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612ee6908961222e565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054612dbd908361222e565b6000806000806000612f268661228d565b945094509450945094506000806000612f4589888888886110f061220b565b6001600160a01b038e166000908152600260205260409020549295509093509150612d8e908461237d565b6000806000806000612f818661228d565b945094509450945094506000806000612fa089888888886110f061220b565b6001600160a01b038e166000908152600360205260409020549295509093509150612fcb908a61237d565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612eb0908461237d565b600061300461220b565b905060006130128383611ae3565b3060009081526002602052604090205490915061302f908261222e565b3060009081526002602090815260408083209390935560069052205460ff161561307e573060009081526003602052604090205461306d908461222e565b306000908152600360205260409020555b505050565b600061308d61220b565b9050600061309b8383611ae3565b600f546001600160a01b03166000908152600260205260409020549091506130c3908261222e565b600f80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff161561307e57600f546001600160a01b0316600090815260036020526040902054613122908461222e565b600f546001600160a01b0316600090815260036020526040902055505050565b600c5461314f908361237d565b600c55600d5461315f908261222e565b600d555050565b600060208083528351808285015260005b8181101561319357858101830151858201604001528201613177565b818111156131a5576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146131d057600080fd5b50565b600080604083850312156131e657600080fd5b82356131f1816131bb565b946020939093013593505050565b60006020828403121561321157600080fd5b8135610e62816131bb565b803560ff8116811461322d57600080fd5b919050565b6000806000806080858703121561324857600080fd5b6132518561321c565b935061325f6020860161321c565b925061326d6040860161321c565b915061327b6060860161321c565b905092959194509250565b60008060006060848603121561329b57600080fd5b83356132a6816131bb565b925060208401356132b6816131bb565b929592945050506040919091013590565b8035801515811461322d57600080fd5b600080604083850312156132ea57600080fd5b6131f1836132c7565b60006020828403121561330557600080fd5b5035919050565b6000806040838503121561331f57600080fd5b8235915061332f602084016132c7565b90509250929050565b600080600080600080600080610100898b03121561335557600080fd5b61335e8961321c565b975061336c60208a0161321c565b965061337a60408a0161321c565b955061338860608a0161321c565b945061339660808a0161321c565b93506133a460a08a0161321c565b92506133b260c08a0161321c565b91506133c060e08a0161321c565b90509295985092959890939650565b6000602082840312156133e157600080fd5b610e62826132c7565b600080604083850312156133fd57600080fd5b8235613408816131bb565b91506020830135613418816131bb565b809150509250929050565b600181811c9082168061343757607f821691505b60208210810361345757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156134d0576134d06134a8565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600182016134fd576134fd6134a8565b5060010190565b600081600019048311821515161561351e5761351e6134a8565b500290565b60008261354057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613558576135586134a8565b500190565b600060ff821660ff84168060ff0382111561357a5761357a6134a8565b019392505050565b600060ff821660ff84168160ff04811182151516156135a3576135a36134a8565b029392505050565b6000602082840312156135bd57600080fd5b8151610e62816131bb565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136185784516001600160a01b0316835293830193918301916001016135f3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561364e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f22f0ae225da6c16b8e50de1ffb37c3c255ca811d3ca5a8d5f3f239d75d15f0364736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c806370d5ae0511610175578063af2ce614116100dc578063d94160e011610095578063f0f165af1161006f578063f0f165af1461098e578063f2fde38b146109ae578063fabb0b4f146109ce578063fe63178f146109e457600080fd5b8063d94160e0146108ef578063dd62ed3e14610928578063ea2f0b371461096e57600080fd5b8063af2ce61414610839578063b030b34a14610859578063bf56b37114610879578063c49b9a801461088f578063caac7934146108af578063d543dbeb146108cf57600080fd5b806391d919a91161012e57806391d919a91461077757806395d89b4114610797578063a457c2d7146107ac578063a87859f6146107cc578063a9059cbb146107f9578063aacebbe31461081957600080fd5b806370d5ae05146106c1578063715018a6146106df5780637d1db4a5146106f457806388f820201461070a5780638da5cb5b146107435780638f9a55c01461076157600080fd5b8063313ce5671161023457806347062402116101ed57806350d4e15f116101c757806350d4e15f1461062857806352390c02146106485780635342acb41461066857806370a08231146106a157600080fd5b8063470624021461059b57806349bd5a5e146105d15780634a74bb021461060557600080fd5b8063313ce567146104d95780633685d419146104fb578063395093511461051b5780633bd5d1731461053b578063437823ec1461055b5780634549b0391461057b57600080fd5b80631d7ef879116102865780631d7ef879146103d65780631f8d2779146103f657806323b872dd146104165780632b14ca56146104365780632d4103d6146104995780632d838119146104b957600080fd5b806306fdde03146102d9578063095ea7b3146103045780630bd3a7f91461033457806313114a9d146103565780631694505e1461037557806318160ddd146103c157600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610a04565b6040516102fb9190613166565b60405180910390f35b34801561031057600080fd5b5061032461031f3660046131d3565b610a96565b60405190151581526020016102fb565b34801561034057600080fd5b5061035461034f3660046131ff565b610aad565b005b34801561036257600080fd5b50600d545b6040519081526020016102fb565b34801561038157600080fd5b506103a97f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102fb565b3480156103cd57600080fd5b50600b54610367565b3480156103e257600080fd5b506103546103f13660046131ff565b610b04565b34801561040257600080fd5b50610354610411366004613232565b610c74565b34801561042257600080fd5b50610324610431366004613286565b610ced565b34801561044257600080fd5b5060145461046c9060ff808216916101008104821691620100008204811691630100000090041684565b6040805160ff958616815293851660208501529184169183019190915290911660608201526080016102fb565b3480156104a557600080fd5b506103546104b43660046132d7565b610d56565b3480156104c557600080fd5b506103676104d43660046132f3565b610de5565b3480156104e557600080fd5b5060125460405160ff90911681526020016102fb565b34801561050757600080fd5b506103546105163660046131ff565b610e69565b34801561052757600080fd5b506103246105363660046131d3565b61101b565b34801561054757600080fd5b506103546105563660046132f3565b611051565b34801561056757600080fd5b506103546105763660046131ff565b61115f565b34801561058757600080fd5b5061036761059636600461330c565b6111ad565b3480156105a757600080fd5b5060135461046c9060ff808216916101008104821691620100008204811691630100000090041684565b3480156105dd57600080fd5b506103a97f000000000000000000000000131328a7b3f0dc68d30b1d34b024e64e01e8e3be81565b34801561061157600080fd5b506015546103249065010000000000900460ff1681565b34801561063457600080fd5b50610354610643366004613338565b611250565b34801561065457600080fd5b506103546106633660046131ff565b6112f7565b34801561067457600080fd5b506103246106833660046131ff565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156106ad57600080fd5b506103676106bc3660046131ff565b61144a565b3480156106cd57600080fd5b50600f546001600160a01b03166103a9565b3480156106eb57600080fd5b506103546114a9565b34801561070057600080fd5b5061036760165481565b34801561071657600080fd5b506103246107253660046131ff565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561074f57600080fd5b506000546001600160a01b03166103a9565b34801561076d57600080fd5b5061036760185481565b34801561078357600080fd5b506103546107923660046131ff565b61151d565b3480156107a357600080fd5b506102ee611568565b3480156107b857600080fd5b506103246107c73660046131d3565b611577565b3480156107d857600080fd5b506103676107e73660046131ff565b601c6020526000908152604090205481565b34801561080557600080fd5b506103246108143660046131d3565b6115c6565b34801561082557600080fd5b506103546108343660046131ff565b6115d3565b34801561084557600080fd5b506103546108543660046132f3565b61161f565b34801561086557600080fd5b506103546108743660046131ff565b611670565b34801561088557600080fd5b50610367601a5481565b34801561089b57600080fd5b506103546108aa3660046133cf565b6117f3565b3480156108bb57600080fd5b50600e546103a9906001600160a01b031681565b3480156108db57600080fd5b506103546108ea3660046132f3565b611879565b3480156108fb57600080fd5b5061032461090a3660046131ff565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561093457600080fd5b506103676109433660046133ea565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561097a57600080fd5b506103546109893660046131ff565b6118c4565b34801561099a57600080fd5b506103546109a93660046132f3565b61190f565b3480156109ba57600080fd5b506103546109c93660046131ff565b61193e565b3480156109da57600080fd5b5061036760195481565b3480156109f057600080fd5b506103546109ff366004613232565b611a28565b606060108054610a1390613423565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f90613423565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b5050505050905090565b6000610aa3338484611b65565b5060015b92915050565b6000546001600160a01b03163314610ae05760405162461bcd60e51b8152600401610ad79061345d565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000546001600160a01b03163314610b2e5760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d03610ba55760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610ad7565b6001600160a01b03811660009081526008602052604090205460ff1615610c0e5760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610ad7565b6001600160a01b03166000818152600860205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000546001600160a01b03163314610c9e5760405162461bcd60e51b8152600401610ad79061345d565b6014805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610cfa848484611c89565b610d4c8433610d4785604051806060016040528060288152602001613668602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906121d1565b611b65565b5060019392505050565b6000546001600160a01b03163314610d805760405162461bcd60e51b8152600401610ad79061345d565b601b805460ff1916831515179055610d97306112f7565b610dc07f000000000000000000000000131328a7b3f0dc68d30b1d34b024e64e01e8e3be6112f7565b601b5460ff168015610dd25750601a54155b15610de15743601a5560198190555b5050565b6000600c54821115610e4c5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610ad7565b6000610e5661220b565b9050610e628382611aa1565b9392505050565b6000546001600160a01b03163314610e935760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03811660009081526006602052604090205460ff16610efb5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610ad7565b60005b600754811015610de157816001600160a01b031660078281548110610f2557610f25613492565b6000918252602090912001546001600160a01b0316036110095760078054610f4f906001906134be565b81548110610f5f57610f5f613492565b600091825260209091200154600780546001600160a01b039092169183908110610f8b57610f8b613492565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610fe357610fe36134d5565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80611013816134eb565b915050610efe565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610aa3918590610d47908661222e565b3360008181526006602052604090205460ff16156110c65760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610ad7565b6000806000806110d58661228d565b94509450945094505060006110f587868686866110f061220b565b612309565b50506001600160a01b03871660009081526002602052604090205490915061111d908261237d565b6001600160a01b038716600090815260026020526040902055600c54611143908261237d565b600c55600d54611153908861222e565b600d5550505050505050565b6000546001600160a01b031633146111895760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600b548311156112015760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610ad7565b6000806000806112108761228d565b94509450945094505060008061122c89878787876110f061220b565b50915091508761124357509450610aa79350505050565b9550610aa7945050505050565b6000546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610ad79061345d565b6013805460ff998a1662ff00ff199182161762010000988b1689021763ff00ff00199081166101009a8c168b0263ff00000019908116919091176301000000998d168a021790935560148054978c169790921696909617938a16909702929092179093169187169095029094169390931792909316909202179055565b6000546001600160a01b031633146113215760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03811660009081526006602052604090205460ff161561138a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610ad7565b6001600160a01b038116600090815260026020526040902054156113e4576001600160a01b0381166000908152600260205260409020546113ca90610de5565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff161561148757506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610aa790610de5565b6000546001600160a01b031633146114d35760405162461bcd60e51b8152600401610ad79061345d565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146115475760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03166000908152600960205260409020805460ff19169055565b606060118054610a1390613423565b6000610aa33384610d4785604051806060016040528060258152602001613690602591393360009081526004602090815260408083206001600160a01b038d16845290915290205491906121d1565b6000610aa3338484611c89565b6000546001600160a01b031633146115fd5760405162461bcd60e51b8152600401610ad79061345d565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146116495760405162461bcd60e51b8152600401610ad79061345d565b61166a6103e861166483600b54611ae390919063ffffffff16565b90611aa1565b60185550565b6000546001600160a01b0316331461169a5760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03811660009081526008602052604090205460ff166117025760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610ad7565b60005b600a54811015610de157816001600160a01b0316600a828154811061172c5761172c613492565b6000918252602090912001546001600160a01b0316036117e157600a8054611756906001906134be565b8154811061176657611766613492565b600091825260209091200154600a80546001600160a01b03909216918390811061179257611792613492565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600890915260409020805460ff19169055600a805480610fe357610fe36134d5565b806117eb816134eb565b915050611705565b6000546001600160a01b0316331461181d5760405162461bcd60e51b8152600401610ad79061345d565b60158054821515650100000000000265ff0000000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061186e90831515815260200190565b60405180910390a150565b6000546001600160a01b031633146118a35760405162461bcd60e51b8152600401610ad79061345d565b6118be6103e861166483600b54611ae390919063ffffffff16565b60165550565b6000546001600160a01b031633146118ee5760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146119395760405162461bcd60e51b8152600401610ad79061345d565b601755565b6000546001600160a01b031633146119685760405162461bcd60e51b8152600401610ad79061345d565b6001600160a01b0381166119cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ad7565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611a525760405162461bcd60e51b8152600401610ad79061345d565b6013805460ff92831663010000000263ff00000019958416610100029590951663ff00ff0019948416620100000262ff00ff199092169390961692909217919091179190911692909217179055565b6000610e6283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123bf565b600082600003611af557506000610aa7565b6000611b018385613504565b905082611b0e8583613523565b14610e625760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610ad7565b6001600160a01b038316611bc75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ad7565b6001600160a01b038216611c285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ad7565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ced5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ad7565b6001600160a01b038216611d4f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ad7565b60008111611db15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610ad7565b6001600160a01b03831660009081526008602052604090205460ff1615611e105760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610ad7565b3360009081526008602052604090205460ff1615611e5e5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610ad7565b3260009081526008602052604090205460ff1615611eac5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610ad7565b6000546001600160a01b03848116911614801590611ed857506000546001600160a01b03838116911614155b15611f2f57601b5460ff16611f2f5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610ad7565b6000601a54118015611f4f575043601954601a54611f4d9190613545565b115b15611f78576001600160a01b0382166000908152600860205260409020805460ff191660011790555b6000611f833061144a565b90506016548110611f9357506016545b60175481108015908190611fb25750601554640100000000900460ff16155b8015611ff057507f000000000000000000000000131328a7b3f0dc68d30b1d34b024e64e01e8e3be6001600160a01b0316856001600160a01b031614155b8015612007575060155465010000000000900460ff165b1561201a57601754915061201a826123ed565b6001600160a01b03851660009081526005602052604090205460019060ff168061205c57506001600160a01b03851660009081526005602052604090205460ff165b15612065575060005b80156121bd576001600160a01b03861660009081526009602052604090205460ff161580156120ad57506001600160a01b03851660009081526009602052604090205460ff16155b156121bd576016548411156121155760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610ad7565b7f000000000000000000000000131328a7b3f0dc68d30b1d34b024e64e01e8e3be6001600160a01b0316856001600160a01b0316146121bd5760185461215a8661144a565b6121649086613545565b11156121bd5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610ad7565b6121c9868686846125d4565b505050505050565b600081848411156121f55760405162461bcd60e51b8152600401610ad79190613166565b50600061220284866134be565b95945050505050565b600080600061221861286c565b90925090506122278282611aa1565b9250505090565b60008061223b8385613545565b905083811015610e625760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610ad7565b60008060008060008061229f876129ee565b905060006122ac88612a09565b905060006122b989612a29565b905060006122c68a612a4a565b905060006122de846122d88d8861237d565b9061237d565b90506122ea818461237d565b90506122f6818361237d565b9b949a5092985090965094509092505050565b60008080806123188a86611ae3565b905060006123268a87611ae3565b905060006123348a88611ae3565b905060006123428a89611ae3565b905060006123508a8a611ae3565b90506000612366826122d8858188818c8c61237d565b959f959e50939c50939a5050505050505050505050565b6000610e6283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121d1565b600081836123e05760405162461bcd60e51b8152600401610ad79190613166565b5060006122028486613523565b6015805464ff0000000019166401000000001790556014546013546000916201000080820460ff9081169391820481169261243592610100918290048316929190041661355d565b61243f919061355d565b612449919061355d565b612454906002613582565b60145460135460ff9283169350600092849261247d92610100918290048316929190041661355d565b61248a9060ff1685613504565b6124949190613523565b905060006124a282856134be565b9050476124ae82612a6c565b60006124ba82476134be565b6014546013549192506000916124e09160ff61010091829004811692919091041661355d565b6124ed9060ff16876134be565b6124f79083613523565b60145460135491925060009161251d9160ff61010091829004811692919091041661355d565b61252a9060ff1683613504565b9050801561253c5761253c8682612c24565b60145460135460009161255f9160ff62010000928390048116929091041661355d565b60ff1661256d846002613504565b6125779190613504565b905080156125bb57600e546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156125b9573d6000803e3d6000fd5b505b50506015805464ff000000001916905550505050505050565b8015612700576125ec6015805463ffffffff19169055565b7f000000000000000000000000131328a7b3f0dc68d30b1d34b024e64e01e8e3be6001600160a01b0316846001600160a01b031603612676576013546015805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b7f000000000000000000000000131328a7b3f0dc68d30b1d34b024e64e01e8e3be6001600160a01b0316836001600160a01b031603612700576014546015805460ff80841661ffff19909216919091176101008085048316021763ffff000019166201000080850483160263ff000000191617630100000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff16801561274157506001600160a01b03831660009081526006602052604090205460ff16155b1561275657612751848484612d04565b612854565b6001600160a01b03841660009081526006602052604090205460ff1615801561279757506001600160a01b03831660009081526006602052604090205460ff165b156127a757612751848484612e55565b6001600160a01b03841660009081526006602052604090205460ff161580156127e957506001600160a01b03831660009081526006602052604090205460ff16155b156127f957612751848484612f15565b6001600160a01b03841660009081526006602052604090205460ff16801561283957506001600160a01b03831660009081526006602052604090205460ff165b1561284957612751848484612f70565b612854848484612f15565b6128666015805463ffffffff19169055565b50505050565b600c54600b546000918291825b6007548110156129be5782600260006007848154811061289b5761289b613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061290657508160036000600784815481106128df576128df613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561291c57600c54600b54945094505050509091565b612962600260006007848154811061293657612936613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061237d565b92506129aa600360006007848154811061297e5761297e613492565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061237d565b9150806129b6816134eb565b915050612879565b50600b54600c546129ce91611aa1565b8210156129e557600c54600b549350935050509091565b90939092509050565b601554600090610aa79060649061166490859060ff16611ae3565b601554600090610aa790606490611664908590610100900460ff16611ae3565b601554600090610aa79060649061166490859062010000900460ff16611ae3565b601554600090610aa7906064906116649085906301000000900460ff16611ae3565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612aa157612aa1613492565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4391906135ab565b81600181518110612b5657612b56613492565b60200260200101906001600160a01b031690816001600160a01b031681525050612ba1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b65565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612bf69085906000908690309042906004016135c8565b600060405180830381600087803b158015612c1057600080fd5b505af11580156121c9573d6000803e3d6000fd5b612c4f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b65565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612cd8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cfd9190613639565b5050505050565b6000806000806000612d158661228d565b945094509450945094506000806000612d3489888888886110f061220b565b6001600160a01b038e166000908152600360205260409020549295509093509150612d5f908a61237d565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612d8e908461237d565b6001600160a01b03808d1660009081526002602052604080822093909355908c1681522054612dbd908361222e565b6001600160a01b038b16600090815260026020526040902055612ddf86612ffa565b612de885612ffa565b612df184613083565b612dfb8188613142565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a604051612e4091815260200190565b60405180910390a35050505050505050505050565b6000806000806000612e668661228d565b945094509450945094506000806000612e8589888888886110f061220b565b6001600160a01b038e166000908152600260205260409020549295509093509150612eb0908461237d565b6001600160a01b03808d16600090815260026020908152604080832094909455918d16815260039091522054612ee6908961222e565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054612dbd908361222e565b6000806000806000612f268661228d565b945094509450945094506000806000612f4589888888886110f061220b565b6001600160a01b038e166000908152600260205260409020549295509093509150612d8e908461237d565b6000806000806000612f818661228d565b945094509450945094506000806000612fa089888888886110f061220b565b6001600160a01b038e166000908152600360205260409020549295509093509150612fcb908a61237d565b6001600160a01b038c16600090815260036020908152604080832093909355600290522054612eb0908461237d565b600061300461220b565b905060006130128383611ae3565b3060009081526002602052604090205490915061302f908261222e565b3060009081526002602090815260408083209390935560069052205460ff161561307e573060009081526003602052604090205461306d908461222e565b306000908152600360205260409020555b505050565b600061308d61220b565b9050600061309b8383611ae3565b600f546001600160a01b03166000908152600260205260409020549091506130c3908261222e565b600f80546001600160a01b03908116600090815260026020908152604080832095909555925490911681526006909152205460ff161561307e57600f546001600160a01b0316600090815260036020526040902054613122908461222e565b600f546001600160a01b0316600090815260036020526040902055505050565b600c5461314f908361237d565b600c55600d5461315f908261222e565b600d555050565b600060208083528351808285015260005b8181101561319357858101830151858201604001528201613177565b818111156131a5576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146131d057600080fd5b50565b600080604083850312156131e657600080fd5b82356131f1816131bb565b946020939093013593505050565b60006020828403121561321157600080fd5b8135610e62816131bb565b803560ff8116811461322d57600080fd5b919050565b6000806000806080858703121561324857600080fd5b6132518561321c565b935061325f6020860161321c565b925061326d6040860161321c565b915061327b6060860161321c565b905092959194509250565b60008060006060848603121561329b57600080fd5b83356132a6816131bb565b925060208401356132b6816131bb565b929592945050506040919091013590565b8035801515811461322d57600080fd5b600080604083850312156132ea57600080fd5b6131f1836132c7565b60006020828403121561330557600080fd5b5035919050565b6000806040838503121561331f57600080fd5b8235915061332f602084016132c7565b90509250929050565b600080600080600080600080610100898b03121561335557600080fd5b61335e8961321c565b975061336c60208a0161321c565b965061337a60408a0161321c565b955061338860608a0161321c565b945061339660808a0161321c565b93506133a460a08a0161321c565b92506133b260c08a0161321c565b91506133c060e08a0161321c565b90509295985092959890939650565b6000602082840312156133e157600080fd5b610e62826132c7565b600080604083850312156133fd57600080fd5b8235613408816131bb565b91506020830135613418816131bb565b809150509250929050565b600181811c9082168061343757607f821691505b60208210810361345757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156134d0576134d06134a8565b500390565b634e487b7160e01b600052603160045260246000fd5b6000600182016134fd576134fd6134a8565b5060010190565b600081600019048311821515161561351e5761351e6134a8565b500290565b60008261354057634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115613558576135586134a8565b500190565b600060ff821660ff84168060ff0382111561357a5761357a6134a8565b019392505050565b600060ff821660ff84168160ff04811182151516156135a3576135a36134a8565b029392505050565b6000602082840312156135bd57600080fd5b8151610e62816131bb565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136185784516001600160a01b0316835293830193918301916001016135f3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561364e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f22f0ae225da6c16b8e50de1ffb37c3c255ca811d3ca5a8d5f3f239d75d15f0364736f6c634300080d0033
Deployed Bytecode Sourcemap
25270:28358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29015:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30000:193;;;;;;;;;;-1:-1:-1;30000:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;30000:193:0;1072:187:1;35607:115:0;;;;;;;;;;-1:-1:-1;35607:115:0;;;;;:::i;:::-;;:::i;:::-;;31499:87;;;;;;;;;;-1:-1:-1;31568:10:0;;31499:87;;;1662:25:1;;;1650:2;1635:18;31499:87:0;1516:177:1;26826:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;26826:51:0;1698:230:1;29292:95:0;;;;;;;;;;-1:-1:-1;29372:7:0;;29292:95;;33645:350;;;;;;;;;;-1:-1:-1;33645:350:0;;;;;:::i;:::-;;:::i;35852:306::-;;;;;;;;;;-1:-1:-1;35852:306:0;;;;;:::i;:::-;;:::i;30201:446::-;;;;;;;;;;-1:-1:-1;30201:446:0;;;;;:::i;:::-;;:::i;26661:22::-;;;;;;;;;;-1:-1:-1;26661: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;26661:22:0;2953:419:1;53288:337:0;;;;;;;;;;-1:-1:-1;53288:337:0;;;;;:::i;:::-;;:::i;33178:322::-;;;;;;;;;;-1:-1:-1;33178:322:0;;;;;:::i;:::-;;:::i;29201:83::-;;;;;;;;;;-1:-1:-1;29267:9:0;;29201:83;;29267:9;;;;4122:36:1;;4110:2;4095:18;29201:83:0;3980:184:1;34889:473:0;;;;;;;;;;-1:-1:-1;34889:473:0;;;;;:::i;:::-;;:::i;30655:300::-;;;;;;;;;;-1:-1:-1;30655:300:0;;;;;:::i;:::-;;:::i;31693:731::-;;;;;;;;;;-1:-1:-1;31693:731:0;;;;;:::i;:::-;;:::i;35370:111::-;;;;;;;;;;-1:-1:-1;35370:111:0;;;;;:::i;:::-;;:::i;32432:738::-;;;;;;;;;;-1:-1:-1;32432:738:0;;;;;:::i;:::-;;:::i;26634:20::-;;;;;;;;;;-1:-1:-1;26634:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26884:38;;;;;;;;;;;;;;;26959:40;;;;;;;;;;-1:-1:-1;26959:40:0;;;;;;;;;;;36475:645;;;;;;;;;;-1:-1:-1;36475:645:0;;;;;:::i;:::-;;:::i;34549:332::-;;;;;;;;;;-1:-1:-1;34549:332:0;;;;;:::i;:::-;;:::i;42682:124::-;;;;;;;;;;-1:-1:-1;42682:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;42771:27:0;42747:4;42771:27;;;:18;:27;;;;;;;;;42682:124;29395:198;;;;;;;;;;-1:-1:-1;29395:198:0;;;;;:::i;:::-;;:::i;31594:91::-;;;;;;;;;;-1:-1:-1;31665:12:0;;-1:-1:-1;;;;;31665:12:0;31594:91;;15334:148;;;;;;;;;;;;;:::i;27008:54::-;;;;;;;;;;;;;;;;31371:120;;;;;;;;;;-1:-1:-1;31371:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31463:20:0;31439:4;31463:20;;;:11;:20;;;;;;;;;31371:120;14692:79;;;;;;;;;;-1:-1:-1;14730:7:0;14757:6;-1:-1:-1;;;;;14757:6:0;14692:79;;27162:56;;;;;;;;;;;;;;;;35730:114;;;;;;;;;;-1:-1:-1;35730:114:0;;;;;:::i;:::-;;:::i;29106:87::-;;;;;;;;;;;;;:::i;30963:400::-;;;;;;;;;;-1:-1:-1;30963:400:0;;;;;:::i;:::-;;:::i;27822:46::-;;;;;;;;;;-1:-1:-1;27822:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29601:199;;;;;;;;;;-1:-1:-1;29601:199:0;;;;;:::i;:::-;;:::i;33510:127::-;;;;;;;;;;-1:-1:-1;33510:127:0;;;;;:::i;:::-;;:::i;37420:172::-;;;;;;;;;;-1:-1:-1;37420:172:0;;;;;:::i;:::-;;:::i;34003:538::-;;;;;;;;;;-1:-1:-1;34003:538:0;;;;;:::i;:::-;;:::i;27753:29::-;;;;;;;;;;;;;;;;37600:171;;;;;;;;;;-1:-1:-1;37600:171:0;;;;;:::i;:::-;;:::i;26064:103::-;;;;;;;;;;-1:-1:-1;26064:103:0;;;;-1:-1:-1;;;;;26064:103:0;;;37276:136;;;;;;;;;;-1:-1:-1;37276:136:0;;;;;:::i;:::-;;:::i;42814:128::-;;;;;;;;;;-1:-1:-1;42814:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;42905:29:0;42881:4;42905:29;;;:20;:29;;;;;;;;;42814:128;29808:184;;;;;;;;;;-1:-1:-1;29808:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29957:18:0;;;29925:7;29957:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29808:184;35489:110;;;;;;;;;;-1:-1:-1;35489:110:0;;;;;:::i;:::-;;:::i;37128:140::-;;;;;;;;;;-1:-1:-1;37128:140:0;;;;;:::i;:::-;;:::i;15637:281::-;;;;;;;;;;-1:-1:-1;15637:281:0;;;;;:::i;:::-;;:::i;27717:29::-;;;;;;;;;;;;;;;;36166:301;;;;;;;;;;-1:-1:-1;36166:301:0;;;;;:::i;:::-;;:::i;29015:83::-;29052:13;29085:5;29078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29015:83;:::o;30000:193::-;30102:4;30124:39;7536:10;30147:7;30156:6;30124:8;:39::i;:::-;-1:-1:-1;30181:4:0;30000:193;;;;;:::o;35607: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;;;;;35678:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;35678:36:0::1;35710:4;35678:36;::::0;;35607:115::o;33645:350::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33728:53:0;::::1;33739:42;33728:53:::0;33719:102:::1;;;::::0;-1:-1:-1;;;33719:102:0;;7322:2:1;33719:102:0::1;::::0;::::1;7304:21:1::0;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:32;7493:19;;33719:102:0::1;7120:398:1::0;33719:102:0::1;-1:-1:-1::0;;;;;33841:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;33840:27;33832:70;;;::::0;-1:-1:-1;;;33832:70:0;;7725:2:1;33832:70:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;7803:32;7783:18;;;7776:60;7853:18;;33832:70:0::1;7523:354:1::0;33832:70:0::1;-1:-1:-1::0;;;;;33913:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;33913:33:0::1;33942:4;33913:33:::0;;::::1;::::0;;;33957:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33957:30:0::1;::::0;;::::1;::::0;;33645:350::o;35852:306::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36009:7:::1;:31:::0;;::::1;36131:19:::0;;::::1;::::0;::::1;-1:-1:-1::0;;36091:29:0;;::::1;36009:31;36091:29;36131:19:::0;;;;-1:-1:-1;;36051:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;36051:29:0;;;36009:31;;;::::1;36051:29:::0;;;;;;;::::1;36131:19:::0;;;;;;;;::::1;::::0;;35852:306::o;30201:446::-;30333:4;30350:36;30360:6;30368:9;30379:6;30350:9;:36::i;:::-;30397:220;30420:6;7536:10;30468:138;30524:6;30468:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30468:19:0;;;;;;:11;:19;;;;;;;;7536:10;30468:33;;;;;;;;;;:37;:138::i;:::-;30397:8;:220::i;:::-;-1:-1:-1;30635:4:0;30201:446;;;;;:::o;53288:337::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;53375:11:::1;:21:::0;;-1:-1:-1;;53375:21:0::1;::::0;::::1;;;::::0;;53407:32:::1;53433:4;53407:17;:32::i;:::-;53450;53468:13;53450:17;:32::i;:::-;53496:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;53511:10:0::1;::::0;:15;53496:30:::1;53493:125;;;53555:12;53542:10;:25:::0;53582:10:::1;:24:::0;;;53493:125:::1;53288:337:::0;;:::o;33178:322::-;33272:7;33330;;33319;:18;;33297:110;;;;-1:-1:-1;;;33297:110:0;;8084:2:1;33297:110:0;;;8066:21:1;8123:2;8103:18;;;8096:30;8162:34;8142:18;;;8135:62;-1:-1:-1;;;8213:18:1;;;8206:40;8263:19;;33297:110:0;7882:406:1;33297:110:0;33418:19;33440:10;:8;:10::i;:::-;33418:32;-1:-1:-1;33468:24:0;:7;33418:32;33468:11;:24::i;:::-;33461:31;33178:322;-1:-1:-1;;;33178:322:0:o;34889: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;;;;;34969:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34961:56;;;::::0;-1:-1:-1;;;34961:56:0;;8495:2:1;34961:56:0::1;::::0;::::1;8477:21:1::0;8534:2;8514:18;;;8507:30;8573:25;8553:18;;;8546:53;8616:18;;34961:56:0::1;8293:347:1::0;34961:56:0::1;35033:9;35028:327;35052:9;:16:::0;35048:20;::::1;35028:327;;;35110:7;-1:-1:-1::0;;;;;35094:23:0::1;:9;35104:1;35094:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35094:12:0::1;:23:::0;35090:254:::1;;35153:9;35163:16:::0;;:20:::1;::::0;35182:1:::1;::::0;35163:20:::1;:::i;:::-;35153:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;35138:9:::1;:12:::0;;-1:-1:-1;;;;;35153:31:0;;::::1;::::0;35148:1;;35138:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35138:46:0::1;-1:-1:-1::0;;;;;35138:46:0;;::::1;;::::0;;35203:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;35242:11:::1;:20:::0;;;;:28;;-1:-1:-1;;35242:28:0::1;::::0;;35289:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35289:15:0;;;;;-1:-1:-1;;;;;;35289:15:0::1;::::0;;;;;53288:337;;:::o;35090:254::-:1;35070:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35028:327;;30655:300:::0;7536:10;30770:4;30864:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30864:34:0;;;;;;;;;;30770:4;;30792:133;;30842:7;;30864:50;;30903:10;30864:38;:50::i;31693:731::-;7536:10;31745:14;31808:19;;;:11;:19;;;;;;;;31807:20;31785:114;;;;-1:-1:-1;;;31785:114:0;;9513:2:1;31785:114:0;;;9495:21:1;9552:2;9532:18;;;9525:30;9591:34;9571:18;;;9564:62;-1:-1:-1;;;9642:18:1;;;9635:42;9694:19;;31785:114:0;9311:408:1;31785:114:0;31942:12;31969:18;32002:15;32032:13;32059:20;32071:7;32059:11;:20::i;:::-;31912:167;;;;;;;;;32091:15;32114:155;32140:7;32162:4;32181:10;32206:7;32228:5;32248:10;:8;:10::i;:::-;32114:11;:155::i;:::-;-1:-1:-1;;;;;;;32300:15:0;;;;;;:7;:15;;;;;;32090:179;;-1:-1:-1;32300:28:0;;32090:179;32300:19;:28::i;:::-;-1:-1:-1;;;;;32282:15:0;;;;;;:7;:15;;;;;:46;32349:7;;:20;;32361:7;32349:11;:20::i;:::-;32339:7;:30;32393:10;;:23;;32408:7;32393:14;:23::i;:::-;32380:10;:36;-1:-1:-1;;;;;;;31693:731:0:o;35370: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;;;;;35439:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;35439:34:0::1;35469:4;35439:34;::::0;;35370:111::o;32432:738::-;32550:7;32594;;32583;:18;;32575:62;;;;-1:-1:-1;;;32575:62:0;;9926:2:1;32575:62:0;;;9908:21:1;9965:2;9945:18;;;9938:30;10004:33;9984:18;;;9977:61;10055:18;;32575:62:0;9724:355:1;32575:62:0;32680:12;32707:18;32740:15;32770:13;32797:20;32809:7;32797:11;:20::i;:::-;32650:167;;;;;;;;;32829:15;32846:23;32875:155;32901:7;32923:4;32942:10;32967:7;32989:5;33009:10;:8;:10::i;32875:155::-;32828:202;;;;;33048:17;33043:120;;-1:-1:-1;33089:7:0;-1:-1:-1;33082:14:0;;-1:-1:-1;;;;33082:14:0;33043:120;33136:15;-1:-1:-1;33129:22:0;;-1:-1:-1;;;;;33129:22:0;36475:645;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36771:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;36816:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;36912:22:0;;;36771:34:::1;36859:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;36912:22:0;;;;;;;;;;::::1;::::0;::::1;;::::0;;;36947:7:::1;:36:::0;;;;::::1;36994:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;37088:24:::0;;;37039:34;;::::1;::::0;;::::1;37088:24:::0;;;;;;;;;;::::1;::::0;;::::1;;::::0;;36475:645::o;34549: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;;;;;34630:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;34629:21;34621:61;;;::::0;-1:-1:-1;;;34621:61:0;;10286:2:1;34621:61:0::1;::::0;::::1;10268:21:1::0;10325:2;10305:18;;;10298:30;10364:29;10344:18;;;10337:57;10411:18;;34621:61:0::1;10084:351:1::0;34621:61:0::1;-1:-1:-1::0;;;;;34697:16:0;::::1;34716:1;34697:16:::0;;;:7:::1;:16;::::0;;;;;:20;34693:109:::1;;-1:-1:-1::0;;;;;34773:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;34753:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;34734:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;34693:109:::1;-1:-1:-1::0;;;;;34812:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;34812:27:0::1;34835:4;34812:27:::0;;::::1;::::0;;;34850:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;34850:23:0::1;::::0;;::::1;::::0;;34549:332::o;29395:198::-;-1:-1:-1;;;;;29485:20:0;;29461:7;29485:20;;;:11;:20;;;;;;;;29481:49;;;-1:-1:-1;;;;;;29514:16:0;;;;;:7;:16;;;;;;;29395:198::o;29481:49::-;-1:-1:-1;;;;;29568:16:0;;;;;;:7;:16;;;;;;29548: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;35730: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;;;;;35799:29:0::1;35831:5;35799:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;35799:37:0::1;::::0;;35730:114::o;29106:87::-;29145:13;29178:7;29171:14;;;;;:::i;30963:400::-;31083:4;31105:228;7536:10;31155:7;31177:145;31234:15;31177:145;;;;;;;;;;;;;;;;;7536:10;31177:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31177:34:0;;;;;;;;;;;;:38;:145::i;29601:199::-;29706:4;29728:42;7536:10;29752:9;29763:6;29728:9;:42::i;33510:127::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;33599:17:::1;:30:::0;;-1:-1:-1;;;;;;33599:30:0::1;-1:-1:-1::0;;;;;33599:30:0;;;::::1;::::0;;;::::1;::::0;;33510:127::o;37420:172::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;37547:37:::1;37578:5;37547:26;37559:13;37547:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;37530:14;:54:::0;-1:-1:-1;37420:172:0:o;34003:538::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34090:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;34082:65;;;::::0;-1:-1:-1;;;34082:65:0;;10642:2:1;34082:65:0::1;::::0;::::1;10624:21:1::0;10681:2;10661:18;;;10654:30;10720:28;10700:18;;;10693:56;10766:18;;34082:65:0::1;10440:350:1::0;34082:65:0::1;34163:9;34158:376;34182:16;:23:::0;34178:27;::::1;34158:376;;;34254:7;-1:-1:-1::0;;;;;34231:30:0::1;:16;34248:1;34231:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34231:19:0::1;:30:::0;34227:296:::1;;34304:16;34343:23:::0;;:27:::1;::::0;34369:1:::1;::::0;34343:27:::1;:::i;:::-;34304:85;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;34282:16:::1;:19:::0;;-1:-1:-1;;;;;34304:85:0;;::::1;::::0;34299:1;;34282:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;34282:107:0::1;-1:-1:-1::0;;;;;34282:107:0;;::::1;;::::0;;34408:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;34408:34:0::1;::::0;;34461:16:::1;:22:::0;;;::::1;;;;:::i;34227:296::-;34207:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34158:376;;37600:171:::0;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;37677:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37677:32:0;;::::1;;::::0;;37725:38:::1;::::0;::::1;::::0;::::1;::::0;37701:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;37725:38:0::1;;;;;;;;37600:171:::0;:::o;37276:136::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;37368:36:::1;37398:5;37368:25;37380:12;37368:7;;:11;;:25;;;;:::i;:36::-;37353:12;:51:::0;-1:-1:-1;37276:136:0:o;35489: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;;;;;35556:27:0::1;35586:5;35556:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35556:35:0::1;::::0;;35489:110::o;37128:140::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;37219:29:::1;:41:::0;37128: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;;10997:2:1;15718:110:0::1;::::0;::::1;10979:21:1::0;11036:2;11016:18;;;11009:30;11075:34;11055:18;;;11048:62;-1:-1:-1;;;11126:18:1;;;11119:36;11172:19;;15718:110:0::1;10795: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;36166:301::-;14904:6;;-1:-1:-1;;;;;14904:6:0;7536:10;14904:22;14896:67;;;;-1:-1:-1;;;14896:67:0;;;;;;;:::i;:::-;36322:6:::1;:30:::0;;::::1;36441:18:::0;;::::1;::::0;::::1;-1:-1:-1::0;;36402:28:0;;::::1;36322:30;36402:28;36441:18:::0;;;;-1:-1:-1;;36363:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;36363:28:0;;;36322:30;;;::::1;36363:28:::0;;;;;;;::::1;36441:18:::0;;;;;;;;::::1;::::0;;36166: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;;11799:2:1;4852:56:0;;;11781:21:1;11838:2;11818:18;;;11811:30;11877:34;11857:18;;;11850:62;-1:-1:-1;;;11928:18:1;;;11921:31;11969:19;;4852:56:0;11597:397:1;42950:371:0;-1:-1:-1;;;;;43077:19:0;;43069:68;;;;-1:-1:-1;;;43069:68:0;;12201:2:1;43069:68:0;;;12183:21:1;12240:2;12220:18;;;12213:30;12279:34;12259:18;;;12252:62;-1:-1:-1;;;12330:18:1;;;12323:34;12374:19;;43069:68:0;11999:400:1;43069:68:0;-1:-1:-1;;;;;43156:21:0;;43148:68;;;;-1:-1:-1;;;43148:68:0;;12606:2:1;43148:68:0;;;12588:21:1;12645:2;12625:18;;;12618:30;12684:34;12664:18;;;12657:62;-1:-1:-1;;;12735:18:1;;;12728:32;12777:19;;43148:68:0;12404:398:1;43148:68:0;-1:-1:-1;;;;;43229:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43281:32;;1662:25:1;;;43281:32:0;;1635:18:1;43281:32:0;;;;;;;42950:371;;;:::o;43329:2701::-;-1:-1:-1;;;;;43451:18:0;;43443:68;;;;-1:-1:-1;;;43443:68:0;;13009:2:1;43443:68:0;;;12991:21:1;13048:2;13028:18;;;13021:30;13087:34;13067:18;;;13060:62;-1:-1:-1;;;13138:18:1;;;13131:35;13183:19;;43443:68:0;12807:401:1;43443:68:0;-1:-1:-1;;;;;43530:16:0;;43522:64;;;;-1:-1:-1;;;43522:64:0;;13415:2:1;43522:64:0;;;13397:21:1;13454:2;13434:18;;;13427:30;13493:34;13473:18;;;13466:62;-1:-1:-1;;;13544:18:1;;;13537:33;13587:19;;43522:64:0;13213:399:1;43522:64:0;43614:1;43605:6;:10;43597:64;;;;-1:-1:-1;;;43597:64:0;;13819:2:1;43597:64:0;;;13801:21:1;13858:2;13838:18;;;13831:30;13897:34;13877:18;;;13870:62;-1:-1:-1;;;13948:18:1;;;13941:39;13997:19;;43597:64:0;13617:405:1;43597:64:0;-1:-1:-1;;;;;43681:23:0;;;;;;:17;:23;;;;;;;;43680:24;43672:56;;;;-1:-1:-1;;;43672:56:0;;14229:2:1;43672:56:0;;;14211:21:1;14268:2;14248:18;;;14241:30;-1:-1:-1;;;14287:18:1;;;14280:49;14346:18;;43672:56:0;14027:343:1;43672:56:0;43766:10;43748:29;;;;:17;:29;;;;;;;;43747:30;43739:54;;;;-1:-1:-1;;;43739:54:0;;14577:2:1;43739:54:0;;;14559:21:1;14616:2;14596:18;;;14589:30;-1:-1:-1;;;14635:18:1;;;14628:41;14686:18;;43739:54:0;14375:335:1;43739:54:0;43831:9;43813:28;;;;:17;:28;;;;;;;;43812:29;43804:53;;;;-1:-1:-1;;;43804:53:0;;14577:2:1;43804:53:0;;;14559:21:1;14616:2;14596:18;;;14589:30;-1:-1:-1;;;14635:18:1;;;14628:41;14686:18;;43804:53:0;14375:335:1;43804:53:0;14730:7;14757:6;-1:-1:-1;;;;;43883:15:0;;;14757:6;;43883:15;;;;:32;;-1:-1:-1;14730:7:0;14757:6;-1:-1:-1;;;;;43902:13:0;;;14757:6;;43902:13;;43883:32;43878:88;;;43926:11;;;;43918:48;;;;-1:-1:-1;;;43918:48:0;;14917:2:1;43918:48:0;;;14899:21:1;14956:2;14936:18;;;14929:30;14995:26;14975:18;;;14968:54;15039:18;;43918:48:0;14715:348:1;43918:48:0;44055:1;44042:10;;:14;:60;;;;;44090:12;44075:10;;44062;;:23;;;;:::i;:::-;44060:42;44042:60;44038:125;;;-1:-1:-1;;;;;44123:21:0;;;;;;:17;:21;;;;;:28;;-1:-1:-1;;44123:28:0;44147:4;44123:28;;;44038:125;44457:28;44488:24;44506:4;44488:9;:24::i;:::-;44457:55;;44553:12;;44529:20;:36;44525:104;;-1:-1:-1;44605:12:0;;44525:104;44705:29;;44668:66;;;;;;;44763:53;;-1:-1:-1;44800:16:0;;;;;;;44799:17;44763:53;:91;;;;;44841:13;-1:-1:-1;;;;;44833:21:0;:4;-1:-1:-1;;;;;44833:21:0;;;44763:91;:129;;;;-1:-1:-1;44871:21:0;;;;;;;44763:129;44745:318;;;44942:29;;44919:52;;45015:36;45030:20;45015:14;:36::i;:::-;-1:-1:-1;;;;;45256:24:0;;45136:12;45256:24;;;:18;:24;;;;;;45151:4;;45256:24;;;:50;;-1:-1:-1;;;;;;45284:22:0;;;;;;:18;:22;;;;;;;;45256:50;45252:98;;;-1:-1:-1;45333:5:0;45252:98;45364:7;45360:536;;;-1:-1:-1;;;;;45393:26:0;;;;;;:20;:26;;;;;;;;45392:27;:56;;;;-1:-1:-1;;;;;;45424:24:0;;;;;;:20;:24;;;;;;;;45423:25;45392:56;45388:497;;;45509:12;;45499:6;:22;;45469:136;;;;-1:-1:-1;;;45469:136:0;;15403:2:1;45469:136:0;;;15385:21:1;15442:2;15422:18;;;15415:30;15481:34;15461:18;;;15454:62;-1:-1:-1;;;15532:18:1;;;15525:38;15580:19;;45469:136:0;15201:404:1;45469:136:0;45634:13;-1:-1:-1;;;;;45628:19:0;:2;-1:-1:-1;;;;;45628:19:0;;45624:228;;45732:14;;45715:13;45725:2;45715:9;:13::i;:::-;45706:22;;:6;:22;:::i;:::-;:40;;45672:160;;;;-1:-1:-1;;;45672:160:0;;15812:2:1;45672:160:0;;;15794:21:1;15851:2;15831:18;;;15824:30;15890:34;15870:18;;;15863:62;-1:-1:-1;;;15941:18:1;;;15934:32;15983:19;;45672:160:0;15610:398:1;45672:160:0;45981:41;45996:4;46002:2;46006:6;46014:7;45981:14;:41::i;:::-;43432:2598;;;43329:2701;;;:::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;39534:164::-;39576:7;39597:15;39614;39633:19;:17;:19::i;:::-;39596:56;;-1:-1:-1;39596:56:0;-1:-1:-1;39670:20:0;39596:56;;39670:11;:20::i;:::-;39663:27;;;;39534: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;;16215:2:1;3403:46:0;;;16197:21:1;16254:2;16234:18;;;16227:30;16293:29;16273:18;;;16266:57;16340:18;;3403:46:0;16013:351:1;38028:704:0;38129:7;38151;38173;38195;38217;38252:12;38267:31;38290:7;38267:22;:31::i;:::-;38252:46;;38309:18;38330:30;38352:7;38330:21;:30::i;:::-;38309:51;;38371:15;38389:30;38411:7;38389:21;:30::i;:::-;38371:48;;38430:13;38446:25;38463:7;38446:16;:25::i;:::-;38430:41;-1:-1:-1;38482:23:0;38508:33;38530:10;38508:17;:7;38520:4;38508:11;:17::i;:::-;:21;;:33::i;:::-;38482:59;-1:-1:-1;38570:28:0;38482:59;38590:7;38570:19;:28::i;:::-;38552:46;-1:-1:-1;38627:26:0;38552:46;38647:5;38627:19;:26::i;:::-;38609:44;38691:4;;-1:-1:-1;38697:10:0;;-1:-1:-1;38709:7:0;;-1:-1:-1;38697:10:0;-1:-1:-1;38028:704:0;;-1:-1:-1;;;38028:704:0:o;38740:786::-;38989:7;;;;39086:24;:7;39098:11;39086;:24::i;:::-;39068:42;-1:-1:-1;39121:12:0;39136:21;:4;39145:11;39136:8;:21::i;:::-;39121:36;-1:-1:-1;39168:18:0;39189:27;:10;39204:11;39189:14;:27::i;:::-;39168:48;-1:-1:-1;39227:15:0;39245:24;:7;39257:11;39245;:24::i;:::-;39227:42;-1:-1:-1;39280:13:0;39296:22;:5;39306:11;39296:9;:22::i;:::-;39280:38;-1:-1:-1;39329:23:0;39355:113;39280:38;39355:88;39435:7;39355:88;39405:10;39355:88;:7;39381:4;39355:25;:31::i;:113::-;39487:7;;;;-1:-1:-1;39513:4:0;;-1:-1:-1;38740:786:0;;-1:-1:-1;;;;;;;;;;;38740: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;46038:1195::-;27631:16;:23;;-1:-1:-1;;27631:23:0;;;;;46241:7:::1;:17:::0;46222:6:::1;:16:::0;27631:23;;46241:17;;;::::1;27631:23:::0;46241:17;;::::1;::::0;46222:16;;::::1;::::0;::::1;::::0;46183:36:::1;::::0;27631:23;46202:17;;;::::1;::::0;::::1;::::0;46183:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;46182:81;::::0;46262:1:::1;46182:81;:::i;:::-;46339:7;:17:::0;46320:6:::1;:16:::0;46160:103:::1;::::0;;::::1;::::0;-1:-1:-1;46274:32:0::1;::::0;46160:103;;46320:36:::1;::::0;46339:17:::1;::::0;;;::::1;::::0;::::1;::::0;46320:16;;::::1;;:36;:::i;:::-;46310:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;46309:63;;;;:::i;:::-;46274:98:::0;-1:-1:-1;46383:14:0::1;46400:33;46274:98:::0;46400:6;:33:::1;:::i;:::-;46383:50:::0;-1:-1:-1;46471:21:0::1;46505:24;46383:50:::0;46505:16:::1;:24::i;:::-;46542:20;46565:38;46589:14:::0;46565:21:::1;:38;:::i;:::-;46686:7;:17:::0;46667:6:::1;:16:::0;46542:61;;-1:-1:-1;46614:19:0::1;::::0;46667:36:::1;::::0;46686:17:::1;;::::0;;;::::1;::::0;::::1;::::0;46667:16;;;::::1;;:36;:::i;:::-;46652:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;46636:69;::::0;:12;:69:::1;:::i;:::-;46782:7;:17:::0;46763:6:::1;:16:::0;46614:91;;-1:-1:-1;46716:29:0::1;::::0;46763:36:::1;::::0;46782:17:::1;;::::0;;;::::1;::::0;::::1;::::0;46763:16;;;::::1;;:36;:::i;:::-;46748:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;46716:84:::0;-1:-1:-1;46817:25:0;;46813:160:::1;;46900:61;46913:24;46939:21;46900:12;:61::i;:::-;47080:7;:17:::0;47061:6:::1;:16:::0;47019:20:::1;::::0;47061:36:::1;::::0;47080:17:::1;::::0;;;;::::1;::::0;::::1;::::0;47061:16;;::::1;;:36;:::i;:::-;47042:56;;:15;:11:::0;47056:1:::1;47042:15;:::i;:::-;:56;;;;:::i;:::-;47019:79:::0;-1:-1:-1;47124:16:0;;47120:98:::1;;47165:17;::::0;47157:49:::1;::::0;-1:-1:-1;;;;;47165:17:0;;::::1;::::0;47157:49;::::1;;;::::0;47193:12;;47165:17:::1;47157:49:::0;47165:17;47157:49;47193:12;47165:17;47157:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47120:98;-1:-1:-1::0;;27677:16:0;:24;;-1:-1:-1;;27677:24:0;;;-1:-1:-1;;;;;;;46038:1195:0:o;48438:1022::-;48593:7;48589:230;;;48617:14;42129;:18;;-1:-1:-1;;42214:12:0;;;42086:155;48617:14;48660:13;-1:-1:-1;;;;;48650:23:0;:6;-1:-1:-1;;;;;48650:23:0;;48646:72;;42303:6;:17;42286:14;:34;;42303:17;;;;-1:-1:-1;;42331:32:0;;;;;;;42303:17;42347:16;;;;;42331:32;;-1:-1:-1;;42417:22:0;42390:16;;;;;;42374:32;-1:-1:-1;;42417:22:0;;42428:11;;;;;;;;;42417:22;;;;;;;;;48694:8;48749:13;-1:-1:-1;;;;;48736:26:0;:9;-1:-1:-1;;;;;48736:26:0;;48732:76;;42518:7;:18;42501:14;:35;;42518:18;;;;-1:-1:-1;;42547:33:0;;;;;;;42518:18;42563:17;;;;;42547:33;;-1:-1:-1;;42635:23:0;42607:17;;;;;;42591:33;-1:-1:-1;;42635:23:0;;42646:12;;;;;;;;;42635:23;;;;;;;;;48783:9;-1:-1:-1;;;;;48835:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;48859:22:0;;;;;;:11;:22;;;;;;;;48858:23;48835:46;48831:597;;;48898:48;48920:6;48928:9;48939:6;48898:21;:48::i;:::-;48831:597;;;-1:-1:-1;;;;;48969:19:0;;;;;;:11;:19;;;;;;;;48968:20;:46;;;;-1:-1:-1;;;;;;48992:22:0;;;;;;:11;:22;;;;;;;;48968:46;48964:464;;;49031:46;49051:6;49059:9;49070:6;49031:19;:46::i;48964:464::-;-1:-1:-1;;;;;49100:19:0;;;;;;:11;:19;;;;;;;;49099:20;:47;;;;-1:-1:-1;;;;;;49124:22:0;;;;;;:11;:22;;;;;;;;49123:23;49099:47;49095:333;;;49163:44;49181:6;49189:9;49200:6;49163:17;:44::i;49095:333::-;-1:-1:-1;;;;;49229:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;49252:22:0;;;;;;:11;:22;;;;;;;;49229:45;49225:203;;;49291:48;49313:6;49321:9;49332:6;49291:21;:48::i;49225:203::-;49372:44;49390:6;49398:9;49409:6;49372:17;:44::i;:::-;49438:14;42129;:18;;-1:-1:-1;;42214:12:0;;;42086:155;49438:14;48438:1022;;;;:::o;39706:605::-;39804:7;;39840;;39757;;;;;39858:338;39882:9;:16;39878:20;;39858:338;;;39966:7;39942;:21;39950:9;39960:1;39950:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39950:12:0;39942:21;;;;;;;;;;;;;:31;;:83;;;40018:7;39994;:21;40002:9;40012:1;40002:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40002:12:0;39994:21;;;;;;;;;;;;;:31;39942:83;39920:146;;;40049:7;;40058;;40041:25;;;;;;;39706:605;;:::o;39920:146::-;40091:34;40103:7;:21;40111:9;40121:1;40111:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40111:12:0;40103:21;;;;;;;;;;;;;40091:7;;:11;:34::i;:::-;40081:44;;40150:34;40162:7;:21;40170:9;40180:1;40170:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40170:12:0;40162:21;;;;;;;;;;;;;40150:7;;:11;:34::i;:::-;40140:44;-1:-1:-1;39900:3:0;;;;:::i;:::-;;;;39858:338;;;-1:-1:-1;40232:7:0;;40220;;:20;;:11;:20::i;:::-;40210:7;:30;40206:61;;;40250:7;;40259;;40242:25;;;;;;39706:605;;:::o;40206:61::-;40286:7;;40295;;-1:-1:-1;39706:605:0;-1:-1:-1;39706:605:0:o;41393:144::-;41503:14;;41464:7;;41491:38;;41523:5;;41491:27;;:7;;41503:14;;41491:11;:27::i;41545:174::-;41686:13;;41642:7;;41674:37;;41705:5;;41674:26;;:7;;41686:13;;;;;41674:11;:26::i;41727:174::-;41868:13;;41824:7;;41856:37;;41887:5;;41856:26;;:7;;41868:13;;;;;41856:11;:26::i;41909:164::-;42045:8;;42001:7;;42033:32;;42059:5;;42033:21;;:7;;42045:8;;;;;42033:11;:21::i;47241:589::-;47391:16;;;47405:1;47391:16;;;;;;;;47367:21;;47391:16;;;;;;;;;;-1:-1:-1;47391:16:0;47367:40;;47436:4;47418;47423:1;47418:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47418:23:0;;;-1:-1:-1;;;;;47418:23:0;;;;;47462:15;-1:-1:-1;;;;;47462:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47452:4;47457:1;47452:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47452:32:0;;;-1:-1:-1;;;;;47452:32:0;;;;;47497:62;47514:4;47529:15;47547:11;47497:8;:62::i;:::-;47598:224;;-1:-1:-1;;;47598:224:0;;-1:-1:-1;;;;;47598:15:0;:66;;;;:224;;47679:11;;47705:1;;47749:4;;47776;;47796:15;;47598:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47838:519;47986:62;48003:4;48018:15;48036:11;47986:8;:62::i;:::-;48091:258;;-1:-1:-1;;;48091:258:0;;48163:4;48091:258;;;18535:34:1;;;18585:18;;;18578:34;;;48209:1:0;18628:18:1;;;18621:34;;;18671:18;;;18664:34;18714:19;;;18707:44;48323:15:0;18767:19:1;;;18760:35;48091:15:0;-1:-1:-1;;;;;48091:31:0;;;;48130:9;;18469:19:1;;48091:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47838:519;;:::o;51319:941::-;51470:23;51508:12;51535:18;51568:15;51598:13;51625:20;51637:7;51625:11;:20::i;:::-;51455:190;;;;;;;;;;51657:15;51674:23;51699:12;51715:155;51741:7;51763:4;51782:10;51807:7;51829:5;51849:10;:8;:10::i;51715:155::-;-1:-1:-1;;;;;51901:15:0;;;;;;:7;:15;;;;;;51656:214;;-1:-1:-1;51656:214:0;;-1:-1:-1;51656:214:0;-1:-1:-1;51901:28:0;;51921:7;51901:19;:28::i;:::-;-1:-1:-1;;;;;51883:15:0;;;;;;:7;:15;;;;;;;;:46;;;;51958:7;:15;;;;:28;;51978:7;51958:19;:28::i;:::-;-1:-1:-1;;;;;51940:15:0;;;;;;;:7;:15;;;;;;:46;;;;52018:18;;;;;;;:39;;52041:15;52018:22;:39::i;:::-;-1:-1:-1;;;;;51997:18:0;;;;;;:7;:18;;;;;:60;52068:26;52083:10;52068:14;:26::i;:::-;52105:23;52120:7;52105:14;:23::i;:::-;52139:19;52152:5;52139:12;:19::i;:::-;52169:23;52181:4;52187;52169:11;:23::i;:::-;52225:9;-1:-1:-1;;;;;52208:44:0;52217:6;-1:-1:-1;;;;;52208:44:0;;52236:15;52208:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;52208:44:0;;;;;;;;51444:816;;;;;;;;51319:941;;;:::o;50358:953::-;50507:23;50545:12;50572:18;50605:15;50635:13;50662:20;50674:7;50662:11;:20::i;:::-;50492:190;;;;;;;;;;50694:15;50711:23;50736:12;50752:155;50778:7;50800:4;50819:10;50844:7;50866:5;50886:10;:8;:10::i;50752:155::-;-1:-1:-1;;;;;50938:15:0;;;;;;:7;:15;;;;;;50693:214;;-1:-1:-1;50693:214:0;;-1:-1:-1;50693:214:0;-1:-1:-1;50938:28:0;;50693:214;50938:19;:28::i;:::-;-1:-1:-1;;;;;50920:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;50998:18;;;;;:7;:18;;;;;:39;;51021:15;50998:22;:39::i;:::-;-1:-1:-1;;;;;50977:18:0;;;;;;:7;:18;;;;;;;;:60;;;;51069:7;:18;;;;:39;;51092:15;51069:22;:39::i;49468:880::-;49615:23;49653:12;49680:18;49713:15;49743:13;49770:20;49782:7;49770:11;:20::i;:::-;49600:190;;;;;;;;;;49802:15;49819:23;49844:12;49860:155;49886:7;49908:4;49927:10;49952:7;49974:5;49994:10;:8;:10::i;49860:155::-;-1:-1:-1;;;;;50046:15:0;;;;;;:7;:15;;;;;;49801:214;;-1:-1:-1;49801:214:0;;-1:-1:-1;49801:214:0;-1:-1:-1;50046:28:0;;49801:214;50046:19;:28::i;52268:1012::-;52419:23;52457:12;52484:18;52517:15;52547:13;52574:20;52586:7;52574:11;:20::i;:::-;52404:190;;;;;;;;;;52606:15;52623:23;52648:12;52664:155;52690:7;52712:4;52731:10;52756:7;52778:5;52798:10;:8;:10::i;52664:155::-;-1:-1:-1;;;;;52850:15:0;;;;;;:7;:15;;;;;;52605:214;;-1:-1:-1;52605:214:0;;-1:-1:-1;52605:214:0;-1:-1:-1;52850:28:0;;52870:7;52850:19;:28::i;:::-;-1:-1:-1;;;;;52832:15:0;;;;;;:7;:15;;;;;;;;:46;;;;52907:7;:15;;;;:28;;52927:7;52907:19;:28::i;40319:355::-;40382:19;40404:10;:8;:10::i;:::-;40382:32;-1:-1:-1;40425:18:0;40446:27;:10;40382:32;40446:14;:27::i;:::-;40525:4;40509:22;;;;:7;:22;;;;;;40425:48;;-1:-1:-1;40509:38:0;;40425:48;40509:26;:38::i;:::-;40500:4;40484:22;;;;:7;:22;;;;;;;;:63;;;;40562:11;:26;;;;;;40558:108;;;40644:4;40628:22;;;;:7;:22;;;;;;:38;;40655:10;40628:26;:38::i;:::-;40619:4;40603:22;;;;:7;:22;;;;;:63;40558:108;40371:303;;40319:355;:::o;41030:::-;41086:19;41108:10;:8;:10::i;:::-;41086:32;-1:-1:-1;41129:13:0;41145:22;:5;41086:32;41145:9;:22::i;:::-;41210:12;;-1:-1:-1;;;;;41210:12:0;41202:21;;;;:7;:21;;;;;;41129:38;;-1:-1:-1;41202:32:0;;41129:38;41202:25;:32::i;:::-;41186:12;;;-1:-1:-1;;;;;41186:12:0;;;41178:21;;;;:7;:21;;;;;;;;:56;;;;41261:12;;;;;41249:25;;:11;:25;;;;;;;41245:132;;;41321:12;;-1:-1:-1;;;;;41321:12:0;41313:21;;;;:7;:21;;;;;;:64;;41357:5;41313:25;:64::i;:::-;41297:12;;-1:-1:-1;;;;;41297:12:0;41289:21;;;;:7;:21;;;;;:88;41075:310;;41030:355;:::o;37873:147::-;37951:7;;:17;;37963:4;37951:11;:17::i;:::-;37941:7;:27;37992:10;;:20;;38007:4;37992:14;:20::i;:::-;37979:10;:33;-1:-1:-1;;37873: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;8645:127::-;8706:10;8701:3;8697:20;8694:1;8687:31;8737:4;8734:1;8727:15;8761:4;8758:1;8751:15;8777:127;8838:10;8833:3;8829:20;8826:1;8819:31;8869:4;8866:1;8859:15;8893:4;8890:1;8883:15;8909:125;8949:4;8977:1;8974;8971:8;8968:34;;;8982:18;;:::i;:::-;-1:-1:-1;9019:9:1;;8909:125::o;9039:127::-;9100:10;9095:3;9091:20;9088:1;9081:31;9131:4;9128:1;9121:15;9155:4;9152:1;9145:15;9171:135;9210:3;9231:17;;;9228:43;;9251:18;;:::i;:::-;-1:-1:-1;9298:1:1;9287:13;;9171:135::o;11202:168::-;11242:7;11308:1;11304;11300:6;11296:14;11293:1;11290:21;11285:1;11278:9;11271:17;11267:45;11264:71;;;11315:18;;:::i;:::-;-1:-1:-1;11355:9:1;;11202:168::o;11375:217::-;11415:1;11441;11431:132;;11485:10;11480:3;11476:20;11473:1;11466:31;11520:4;11517:1;11510:15;11548:4;11545:1;11538:15;11431:132;-1:-1:-1;11577:9:1;;11375:217::o;15068:128::-;15108:3;15139:1;15135:6;15132:1;15129:13;15126:39;;;15145:18;;:::i;:::-;-1:-1:-1;15181:9:1;;15068:128::o;16369:204::-;16407:3;16443:4;16440:1;16436:12;16475:4;16472:1;16468:12;16510:3;16504:4;16500:14;16495:3;16492:23;16489:49;;;16518:18;;:::i;:::-;16554:13;;16369:204;-1:-1:-1;;;16369:204:1:o;16578:238::-;16616:7;16656:4;16653:1;16649:12;16688:4;16685:1;16681:12;16748:3;16742:4;16738:14;16733:3;16730:23;16723:3;16716:11;16709:19;16705:49;16702:75;;;16757:18;;:::i;:::-;16797:13;;16578:238;-1:-1:-1;;;16578:238:1:o;16953:251::-;17023:6;17076:2;17064:9;17055:7;17051:23;17047:32;17044:52;;;17092:1;17089;17082:12;17044:52;17124:9;17118:16;17143:31;17168:5;17143:31;:::i;17209:980::-;17471:4;17519:3;17508:9;17504:19;17550:6;17539:9;17532:25;17576:2;17614:6;17609:2;17598:9;17594:18;17587:34;17657:3;17652:2;17641:9;17637:18;17630:31;17681:6;17716;17710:13;17747:6;17739;17732:22;17785:3;17774:9;17770:19;17763:26;;17824:2;17816:6;17812:15;17798:29;;17845:1;17855:195;17869:6;17866:1;17863:13;17855:195;;;17934:13;;-1:-1:-1;;;;;17930:39:1;17918:52;;18025:15;;;;17990:12;;;;17966:1;17884:9;17855:195;;;-1:-1:-1;;;;;;;18106:32:1;;;;18101:2;18086:18;;18079:60;-1:-1:-1;;;18170:3:1;18155:19;18148:35;18067:3;17209:980;-1:-1:-1;;;17209:980:1:o;18806:306::-;18894:6;18902;18910;18963:2;18951:9;18942:7;18938:23;18934:32;18931:52;;;18979:1;18976;18969:12;18931:52;19008:9;19002:16;18992:26;;19058:2;19047:9;19043:18;19037:25;19027:35;;19102:2;19091:9;19087:18;19081:25;19071:35;;18806:306;;;;;:::o
Swarm Source
ipfs://f22f0ae225da6c16b8e50de1ffb37c3c255ca811d3ca5a8d5f3f239d75d15f03
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,056.38 | 0.3 | $916.91 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.