More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 229 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 15159640 | 890 days ago | IN | 0 ETH | 0.00084897 | ||||
Transfer | 14858728 | 940 days ago | IN | 0 ETH | 0.00115109 | ||||
Approve | 12953280 | 1238 days ago | IN | 0 ETH | 0.0022019 | ||||
Approve | 12773024 | 1266 days ago | IN | 0 ETH | 0.00270001 | ||||
Approve | 12743233 | 1271 days ago | IN | 0 ETH | 0.00135 | ||||
Approve | 12700029 | 1278 days ago | IN | 0 ETH | 0.00066569 | ||||
Approve | 12696802 | 1278 days ago | IN | 0 ETH | 0.00042643 | ||||
Approve | 12696798 | 1278 days ago | IN | 0 ETH | 0.00074483 | ||||
Approve | 12690803 | 1279 days ago | IN | 0 ETH | 0.00172242 | ||||
Approve | 12688701 | 1279 days ago | IN | 0 ETH | 0.00074483 | ||||
Approve | 12686753 | 1280 days ago | IN | 0 ETH | 0.00067127 | ||||
Approve | 12686145 | 1280 days ago | IN | 0 ETH | 0.001485 | ||||
Approve | 12685646 | 1280 days ago | IN | 0 ETH | 0.00214139 | ||||
Approve | 12685553 | 1280 days ago | IN | 0 ETH | 0.00204828 | ||||
Approve | 12684905 | 1280 days ago | IN | 0 ETH | 0.00623796 | ||||
Approve | 12683434 | 1280 days ago | IN | 0 ETH | 0.0022019 | ||||
Approve | 12682101 | 1280 days ago | IN | 0 ETH | 0.00046552 | ||||
Approve | 12682073 | 1280 days ago | IN | 0 ETH | 0.00051207 | ||||
Approve | 12681595 | 1280 days ago | IN | 0 ETH | 0.001485 | ||||
Approve | 12681571 | 1280 days ago | IN | 0 ETH | 0.00133138 | ||||
Approve | 12681297 | 1280 days ago | IN | 0 ETH | 0.00140675 | ||||
Approve | 12681249 | 1280 days ago | IN | 0 ETH | 0.00266277 | ||||
Approve | 12681051 | 1281 days ago | IN | 0 ETH | 0.00226504 | ||||
Transfer | 12681046 | 1281 days ago | IN | 0 ETH | 0.00437993 | ||||
Approve | 12681026 | 1281 days ago | IN | 0 ETH | 0.00223449 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
12754818 | 1269 days ago | 0.00430377 ETH | ||||
12754818 | 1269 days ago | 0.00430377 ETH | ||||
12713671 | 1275 days ago | 0.00442358 ETH | ||||
12713671 | 1275 days ago | 0.00442358 ETH | ||||
12708784 | 1276 days ago | 0.00445035 ETH | ||||
12708784 | 1276 days ago | 0.00445035 ETH | ||||
12705515 | 1277 days ago | 0.00448989 ETH | ||||
12705515 | 1277 days ago | 0.00448989 ETH | ||||
12704924 | 1277 days ago | 0.0045157 ETH | ||||
12704924 | 1277 days ago | 0.0045157 ETH | ||||
12700950 | 1277 days ago | 0.00455224 ETH | ||||
12700950 | 1277 days ago | 0.00455224 ETH | ||||
12700160 | 1278 days ago | 0.00476796 ETH | ||||
12700160 | 1278 days ago | 0.00476796 ETH | ||||
12700050 | 1278 days ago | 0.00481224 ETH | ||||
12700050 | 1278 days ago | 0.00481224 ETH | ||||
12693635 | 1279 days ago | 0.00483483 ETH | ||||
12693635 | 1279 days ago | 0.00483483 ETH | ||||
12692299 | 1279 days ago | 0.00493157 ETH | ||||
12692299 | 1279 days ago | 0.00493157 ETH | ||||
12689268 | 1279 days ago | 0.00492717 ETH | ||||
12689268 | 1279 days ago | 0.00492717 ETH | ||||
12688095 | 1279 days ago | 0.00495686 ETH | ||||
12688095 | 1279 days ago | 0.00495686 ETH | ||||
12687097 | 1280 days ago | 0.00498683 ETH |
Loading...
Loading
Contract Name:
PokeInu
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-21 */ /** Poke Inu- $PINU 4% reflection 6% liquidity telegram: @PokeInu */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed 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. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract PokeInu 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; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Poke Inu"; string private _symbol = "PINU"; uint8 private _decimals = 9; uint256 public _taxFee = 4; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 6; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 public _maxTxAmount = 1000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; 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; 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 deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function addBotToBlackList(address account) external onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.'); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlackList(address account) external onlyOwner() { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); 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 calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + 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; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //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 (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
683635c9adc5dea00000600b556818ce40f6d0219fffff19600c55610100604052600860c081905267506f6b6520496e7560c01b60e09081526200004791600e9190620003ad565b506040805180820190915260048082526350494e5560e01b60209092019182526200007591600f91620003ad565b506010805460ff1916600917905560046011819055601255600660138190556014556015805461ff0019169055683635c9adc5dea000006016556706f05b59d3b20000601755348015620000c857600080fd5b506000620000d56200039a565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c5460036000620001306200039a565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a757600080fd5b505afa158015620001bc573d6000803e3d6000fd5b505050506040513d6020811015620001d357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200022457600080fd5b505afa15801562000239573d6000803e3d6000fd5b505050506040513d60208110156200025057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002a357600080fd5b505af1158015620002b8573d6000803e3d6000fd5b505050506040513d6020811015620002cf57600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160066000620002fc6200039e565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003466200039a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35062000449565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f057805160ff191683800117855562000420565b8280016001018555821562000420579182015b828111156200042057825182559160200191906001019062000403565b506200042e92915062000432565b5090565b5b808211156200042e576000815560010162000433565b60805160601c60a05160601c612bc362000491600039806110495280611b5e5250806109a8528061231a52806123d252806123f952806124df52806125065250612bc36000f3fe6080604052600436106102135760003560e01c806352390c02116101185780638ee88c53116100a0578063c49b9a801161006f578063c49b9a8014610798578063d543dbeb146107c4578063dd62ed3e146107ee578063ea2f0b3714610829578063f2fde38b1461085c5761021a565b80638ee88c53146106e757806395d89b4114610711578063a457c2d714610726578063a9059cbb1461075f5761021a565b8063715018a6116100e7578063715018a6146106425780637d1db4a5146106575780637ded4d6a1461066c57806388f820201461069f5780638da5cb5b146106d25761021a565b806352390c02146105945780635342acb4146105c75780636bc87c3a146105fa57806370a082311461060f5761021a565b80633685d4191161019b5780634303443d1161016a5780634303443d146104d2578063437823ec146105055780634549b0391461053857806349bd5a5e1461056a5780634a74bb021461057f5761021a565b80633685d41914610427578063395093511461045a5780633b124fe7146104935780633bd5d173146104a85761021a565b80631694505e116101e25780631694505e1461034957806318160ddd1461037a57806323b872dd1461038f5780632d838119146103d2578063313ce567146103fc5761021a565b8063061c82d01461021f57806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102496004803603602081101561024257600080fd5b503561088f565b005b34801561025757600080fd5b506102606108ec565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b038135169060200135610982565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506103376109a0565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e6109a6565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b506103376109ca565b34801561039b57600080fd5b5061030e600480360360608110156103b257600080fd5b506001600160a01b038135811691602081013590911690604001356109d0565b3480156103de57600080fd5b50610337600480360360208110156103f557600080fd5b5035610a57565b34801561040857600080fd5b50610411610ab9565b6040805160ff9092168252519081900360200190f35b34801561043357600080fd5b506102496004803603602081101561044a57600080fd5b50356001600160a01b0316610ac2565b34801561046657600080fd5b5061030e6004803603604081101561047d57600080fd5b506001600160a01b038135169060200135610c83565b34801561049f57600080fd5b50610337610cd1565b3480156104b457600080fd5b50610249600480360360208110156104cb57600080fd5b5035610cd7565b3480156104de57600080fd5b50610249600480360360208110156104f557600080fd5b50356001600160a01b0316610db1565b34801561051157600080fd5b506102496004803603602081101561052857600080fd5b50356001600160a01b0316610f39565b34801561054457600080fd5b506103376004803603604081101561055b57600080fd5b50803590602001351515610fb5565b34801561057657600080fd5b5061035e611047565b34801561058b57600080fd5b5061030e61106b565b3480156105a057600080fd5b50610249600480360360208110156105b757600080fd5b50356001600160a01b0316611079565b3480156105d357600080fd5b5061030e600480360360208110156105ea57600080fd5b50356001600160a01b03166111ff565b34801561060657600080fd5b5061033761121d565b34801561061b57600080fd5b506103376004803603602081101561063257600080fd5b50356001600160a01b0316611223565b34801561064e57600080fd5b50610249611285565b34801561066357600080fd5b50610337611327565b34801561067857600080fd5b506102496004803603602081101561068f57600080fd5b50356001600160a01b031661132d565b3480156106ab57600080fd5b5061030e600480360360208110156106c257600080fd5b50356001600160a01b03166114ba565b3480156106de57600080fd5b5061035e6114d8565b3480156106f357600080fd5b506102496004803603602081101561070a57600080fd5b50356114e7565b34801561071d57600080fd5b50610260611544565b34801561073257600080fd5b5061030e6004803603604081101561074957600080fd5b506001600160a01b0381351690602001356115a5565b34801561076b57600080fd5b5061030e6004803603604081101561078257600080fd5b506001600160a01b03813516906020013561160d565b3480156107a457600080fd5b50610249600480360360208110156107bb57600080fd5b50351515611621565b3480156107d057600080fd5b50610249600480360360208110156107e757600080fd5b50356116c8565b3480156107fa57600080fd5b506103376004803603604081101561081157600080fd5b506001600160a01b0381358116916020013516611746565b34801561083557600080fd5b506102496004803603602081101561084c57600080fd5b50356001600160a01b0316611771565b34801561086857600080fd5b506102496004803603602081101561087f57600080fd5b50356001600160a01b03166117ea565b6108976118e2565b6000546001600160a01b039081169116146108e7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109785780601f1061094d57610100808354040283529160200191610978565b820191906000526020600020905b81548152906001019060200180831161095b57829003601f168201915b5050505050905090565b600061099661098f6118e2565b84846118e6565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b60006109dd8484846119d2565b610a4d846109e96118e2565b610a4885604051806060016040528060288152602001612a5f602891396001600160a01b038a16600090815260056020526040812090610a276118e2565b6001600160a01b031681526020810191909152604001600020549190611c18565b6118e6565b5060019392505050565b6000600c54821115610a9a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806129a4602a913960400191505060405180910390fd5b6000610aa4611caf565b9050610ab08382611cd2565b9150505b919050565b60105460ff1690565b610aca6118e2565b6000546001600160a01b03908116911614610b1a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610b87576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610c7f57816001600160a01b031660088281548110610bab57fe5b6000918252602090912001546001600160a01b03161415610c7757600880546000198101908110610bd857fe5b600091825260209091200154600880546001600160a01b039092169183908110610bfe57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c5057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c7f565b600101610b8a565b5050565b6000610996610c906118e2565b84610a488560056000610ca16118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d1b565b60115481565b6000610ce16118e2565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d3c5760405162461bcd60e51b815260040180806020018281038252602c815260200180612b3d602c913960400191505060405180910390fd5b6000610d4783611d75565b505050506001600160a01b038416600090815260036020526040902054919250610d7391905082611dc4565b6001600160a01b038316600090815260036020526040902055600c54610d999082611dc4565b600c55600d54610da99084611d1b565b600d55505050565b610db96118e2565b6000546001600160a01b03908116911614610e09576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610e655760405162461bcd60e51b8152600401808060200182810382526024815260200180612ad06024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610ed3576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b610f416118e2565b6000546001600160a01b03908116911614610f91576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b5483111561100e576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161102d57600061101e84611d75565b5093955061099a945050505050565b600061103884611d75565b5092955061099a945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601554610100900460ff1681565b6110816118e2565b6000546001600160a01b039081169116146110d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561113f576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611199576001600160a01b03811660009081526003602052604090205461117f90610a57565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561126357506001600160a01b038116600090815260046020526040902054610ab4565b6001600160a01b03821660009081526003602052604090205461099a90610a57565b61128d6118e2565b6000546001600160a01b039081169116146112dd576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60165481565b6113356118e2565b6000546001600160a01b03908116911614611385576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166113f2576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610c7f57816001600160a01b0316600a828154811061141657fe5b6000918252602090912001546001600160a01b031614156114b257600a8054600019810190811061144357fe5b600091825260209091200154600a80546001600160a01b03909216918390811061146957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610c5057fe5b6001016113f5565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6114ef6118e2565b6000546001600160a01b0390811691161461153f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109785780601f1061094d57610100808354040283529160200191610978565b60006109966115b26118e2565b84610a4885604051806060016040528060258152602001612b6960259139600560006115dc6118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c18565b600061099661161a6118e2565b84846119d2565b6116296118e2565b6000546001600160a01b03908116911614611679576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b60158054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6116d06118e2565b6000546001600160a01b03908116911614611720576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b611740606461173a83600b54611e0690919063ffffffff16565b90611cd2565b60165550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6117796118e2565b6000546001600160a01b039081169116146117c9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6117f26118e2565b6000546001600160a01b03908116911614611842576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b0381166118875760405162461bcd60e51b81526004018080602001828103825260268152602001806129ce6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661192b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612b196024913960400191505060405180910390fd5b6001600160a01b0382166119705760405162461bcd60e51b81526004018080602001828103825260228152602001806129f46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a175760405162461bcd60e51b8152600401808060200182810382526025815260200180612af46025913960400191505060405180910390fd5b6001600160a01b038216611a5c5760405162461bcd60e51b81526004018080602001828103825260238152602001806129816023913960400191505060405180910390fd5b60008111611a9b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612aa76029913960400191505060405180910390fd5b611aa36114d8565b6001600160a01b0316836001600160a01b031614158015611add5750611ac76114d8565b6001600160a01b0316826001600160a01b031614155b15611b2357601654811115611b235760405162461bcd60e51b8152600401808060200182810382526028815260200180612a166028913960400191505060405180910390fd5b6000611b2e30611223565b90506016548110611b3e57506016545b60175481108015908190611b55575060155460ff16155b8015611b9357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611ba65750601554610100900460ff165b15611bb9576017549150611bb982611e5f565b6001600160a01b03851660009081526006602052604090205460019060ff1680611bfb57506001600160a01b03851660009081526006602052604090205460ff165b15611c04575060005b611c1086868684611efc565b505050505050565b60008184841115611ca75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c6c578181015183820152602001611c54565b50505050905090810190601f168015611c995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611cbc612070565b9092509050611ccb8282611cd2565b9250505090565b6000611d1483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121d3565b9392505050565b600082820183811015611d14576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d8c8a612238565b9250925092506000806000611daa8d8686611da5611caf565b61227a565b919f909e50909c50959a5093985091965092945050505050565b6000611d1483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c18565b600082611e155750600061099a565b82820282848281611e2257fe5b0414611d145760405162461bcd60e51b8152600401808060200182810382526021815260200180612a3e6021913960400191505060405180910390fd5b6015805460ff191660011790556000611e79826002611cd2565b90506000611e878383611dc4565b905047611e93836122ca565b6000611e9f4783611dc4565b9050611eab83826124d9565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805460ff19169055505050565b80611f0957611f096125d7565b6001600160a01b03841660009081526007602052604090205460ff168015611f4a57506001600160a01b03831660009081526007602052604090205460ff16155b15611f5f57611f5a848484612609565b61205d565b6001600160a01b03841660009081526007602052604090205460ff16158015611fa057506001600160a01b03831660009081526007602052604090205460ff165b15611fb057611f5a84848461272d565b6001600160a01b03841660009081526007602052604090205460ff16158015611ff257506001600160a01b03831660009081526007602052604090205460ff16155b1561200257611f5a8484846127d6565b6001600160a01b03841660009081526007602052604090205460ff16801561204257506001600160a01b03831660009081526007602052604090205460ff165b1561205257611f5a84848461281a565b61205d8484846127d6565b8061206a5761206a61288d565b50505050565b600c54600b546000918291825b6008548110156121a15782600360006008848154811061209957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120fe57508160046000600884815481106120d757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561211557600c54600b54945094505050506121cf565b612155600360006008848154811061212957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611dc4565b9250612197600460006008848154811061216b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611dc4565b915060010161207d565b50600b54600c546121b191611cd2565b8210156121c957600c54600b549350935050506121cf565b90925090505b9091565b600081836122225760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c6c578181015183820152602001611c54565b50600083858161222e57fe5b0495945050505050565b6000806000806122478561289b565b90506000612254866128b7565b9050600061226c826122668986611dc4565b90611dc4565b979296509094509092505050565b60008080806122898886611e06565b905060006122978887611e06565b905060006122a58888611e06565b905060006122b7826122668686611dc4565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106122f857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561237157600080fd5b505afa158015612385573d6000803e3d6000fd5b505050506040513d602081101561239b57600080fd5b50518151829060019081106123ac57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506123f7307f0000000000000000000000000000000000000000000000000000000000000000846118e6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561249c578181015183820152602001612484565b505050509050019650505050505050600060405180830381600087803b1580156124c557600080fd5b505af1158015611c10573d6000803e3d6000fd5b612504307f0000000000000000000000000000000000000000000000000000000000000000846118e6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125416114d8565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156125ac57600080fd5b505af11580156125c0573d6000803e3d6000fd5b50505050506040513d606081101561206a57600080fd5b6011541580156125e75750601354155b156125f157612607565b6011805460125560138054601455600091829055555b565b60008060008060008061261b87611d75565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061264d9088611dc4565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461267c9087611dc4565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126ab9086611d1b565b6001600160a01b0389166000908152600360205260409020556126cd816128d3565b6126d7848361295c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061273f87611d75565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127719087611dc4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127a79084611d1b565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126ab9086611d1b565b6000806000806000806127e887611d75565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061267c9087611dc4565b60008060008060008061282c87611d75565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061285e9088611dc4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127719087611dc4565b601254601155601454601355565b600061099a606461173a60115485611e0690919063ffffffff16565b600061099a606461173a60135485611e0690919063ffffffff16565b60006128dd611caf565b905060006128eb8383611e06565b306000908152600360205260409020549091506129089082611d1b565b3060009081526003602090815260408083209390935560079052205460ff161561295757306000908152600460205260409020546129469084611d1b565b306000908152600460205260409020555b505050565b600c546129699083611dc4565b600c55600d546129799082611d1b565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a5138ee453628f7096805d880e010dd205c8c467ccb678a1553aeb2cdbcd847c64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806352390c02116101185780638ee88c53116100a0578063c49b9a801161006f578063c49b9a8014610798578063d543dbeb146107c4578063dd62ed3e146107ee578063ea2f0b3714610829578063f2fde38b1461085c5761021a565b80638ee88c53146106e757806395d89b4114610711578063a457c2d714610726578063a9059cbb1461075f5761021a565b8063715018a6116100e7578063715018a6146106425780637d1db4a5146106575780637ded4d6a1461066c57806388f820201461069f5780638da5cb5b146106d25761021a565b806352390c02146105945780635342acb4146105c75780636bc87c3a146105fa57806370a082311461060f5761021a565b80633685d4191161019b5780634303443d1161016a5780634303443d146104d2578063437823ec146105055780634549b0391461053857806349bd5a5e1461056a5780634a74bb021461057f5761021a565b80633685d41914610427578063395093511461045a5780633b124fe7146104935780633bd5d173146104a85761021a565b80631694505e116101e25780631694505e1461034957806318160ddd1461037a57806323b872dd1461038f5780632d838119146103d2578063313ce567146103fc5761021a565b8063061c82d01461021f57806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102496004803603602081101561024257600080fd5b503561088f565b005b34801561025757600080fd5b506102606108ec565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b038135169060200135610982565b604080519115158252519081900360200190f35b34801561032e57600080fd5b506103376109a0565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e6109a6565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b506103376109ca565b34801561039b57600080fd5b5061030e600480360360608110156103b257600080fd5b506001600160a01b038135811691602081013590911690604001356109d0565b3480156103de57600080fd5b50610337600480360360208110156103f557600080fd5b5035610a57565b34801561040857600080fd5b50610411610ab9565b6040805160ff9092168252519081900360200190f35b34801561043357600080fd5b506102496004803603602081101561044a57600080fd5b50356001600160a01b0316610ac2565b34801561046657600080fd5b5061030e6004803603604081101561047d57600080fd5b506001600160a01b038135169060200135610c83565b34801561049f57600080fd5b50610337610cd1565b3480156104b457600080fd5b50610249600480360360208110156104cb57600080fd5b5035610cd7565b3480156104de57600080fd5b50610249600480360360208110156104f557600080fd5b50356001600160a01b0316610db1565b34801561051157600080fd5b506102496004803603602081101561052857600080fd5b50356001600160a01b0316610f39565b34801561054457600080fd5b506103376004803603604081101561055b57600080fd5b50803590602001351515610fb5565b34801561057657600080fd5b5061035e611047565b34801561058b57600080fd5b5061030e61106b565b3480156105a057600080fd5b50610249600480360360208110156105b757600080fd5b50356001600160a01b0316611079565b3480156105d357600080fd5b5061030e600480360360208110156105ea57600080fd5b50356001600160a01b03166111ff565b34801561060657600080fd5b5061033761121d565b34801561061b57600080fd5b506103376004803603602081101561063257600080fd5b50356001600160a01b0316611223565b34801561064e57600080fd5b50610249611285565b34801561066357600080fd5b50610337611327565b34801561067857600080fd5b506102496004803603602081101561068f57600080fd5b50356001600160a01b031661132d565b3480156106ab57600080fd5b5061030e600480360360208110156106c257600080fd5b50356001600160a01b03166114ba565b3480156106de57600080fd5b5061035e6114d8565b3480156106f357600080fd5b506102496004803603602081101561070a57600080fd5b50356114e7565b34801561071d57600080fd5b50610260611544565b34801561073257600080fd5b5061030e6004803603604081101561074957600080fd5b506001600160a01b0381351690602001356115a5565b34801561076b57600080fd5b5061030e6004803603604081101561078257600080fd5b506001600160a01b03813516906020013561160d565b3480156107a457600080fd5b50610249600480360360208110156107bb57600080fd5b50351515611621565b3480156107d057600080fd5b50610249600480360360208110156107e757600080fd5b50356116c8565b3480156107fa57600080fd5b506103376004803603604081101561081157600080fd5b506001600160a01b0381358116916020013516611746565b34801561083557600080fd5b506102496004803603602081101561084c57600080fd5b50356001600160a01b0316611771565b34801561086857600080fd5b506102496004803603602081101561087f57600080fd5b50356001600160a01b03166117ea565b6108976118e2565b6000546001600160a01b039081169116146108e7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109785780601f1061094d57610100808354040283529160200191610978565b820191906000526020600020905b81548152906001019060200180831161095b57829003601f168201915b5050505050905090565b600061099661098f6118e2565b84846118e6565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b60006109dd8484846119d2565b610a4d846109e96118e2565b610a4885604051806060016040528060288152602001612a5f602891396001600160a01b038a16600090815260056020526040812090610a276118e2565b6001600160a01b031681526020810191909152604001600020549190611c18565b6118e6565b5060019392505050565b6000600c54821115610a9a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806129a4602a913960400191505060405180910390fd5b6000610aa4611caf565b9050610ab08382611cd2565b9150505b919050565b60105460ff1690565b610aca6118e2565b6000546001600160a01b03908116911614610b1a576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610b87576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610c7f57816001600160a01b031660088281548110610bab57fe5b6000918252602090912001546001600160a01b03161415610c7757600880546000198101908110610bd857fe5b600091825260209091200154600880546001600160a01b039092169183908110610bfe57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c5057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c7f565b600101610b8a565b5050565b6000610996610c906118e2565b84610a488560056000610ca16118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d1b565b60115481565b6000610ce16118e2565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d3c5760405162461bcd60e51b815260040180806020018281038252602c815260200180612b3d602c913960400191505060405180910390fd5b6000610d4783611d75565b505050506001600160a01b038416600090815260036020526040902054919250610d7391905082611dc4565b6001600160a01b038316600090815260036020526040902055600c54610d999082611dc4565b600c55600d54610da99084611d1b565b600d55505050565b610db96118e2565b6000546001600160a01b03908116911614610e09576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610e655760405162461bcd60e51b8152600401808060200182810382526024815260200180612ad06024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610ed3576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b610f416118e2565b6000546001600160a01b03908116911614610f91576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b5483111561100e576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161102d57600061101e84611d75565b5093955061099a945050505050565b600061103884611d75565b5092955061099a945050505050565b7f000000000000000000000000493156cb9c66aa395d6f09d5dcf20a82586b82bc81565b601554610100900460ff1681565b6110816118e2565b6000546001600160a01b039081169116146110d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff161561113f576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415611199576001600160a01b03811660009081526003602052604090205461117f90610a57565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561126357506001600160a01b038116600090815260046020526040902054610ab4565b6001600160a01b03821660009081526003602052604090205461099a90610a57565b61128d6118e2565b6000546001600160a01b039081169116146112dd576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60165481565b6113356118e2565b6000546001600160a01b03908116911614611385576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166113f2576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610c7f57816001600160a01b0316600a828154811061141657fe5b6000918252602090912001546001600160a01b031614156114b257600a8054600019810190811061144357fe5b600091825260209091200154600a80546001600160a01b03909216918390811061146957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610c5057fe5b6001016113f5565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6114ef6118e2565b6000546001600160a01b0390811691161461153f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109785780601f1061094d57610100808354040283529160200191610978565b60006109966115b26118e2565b84610a4885604051806060016040528060258152602001612b6960259139600560006115dc6118e2565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c18565b600061099661161a6118e2565b84846119d2565b6116296118e2565b6000546001600160a01b03908116911614611679576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b60158054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6116d06118e2565b6000546001600160a01b03908116911614611720576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b611740606461173a83600b54611e0690919063ffffffff16565b90611cd2565b60165550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6117796118e2565b6000546001600160a01b039081169116146117c9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6117f26118e2565b6000546001600160a01b03908116911614611842576040805162461bcd60e51b81526020600482018190526024820152600080516020612a87833981519152604482015290519081900360640190fd5b6001600160a01b0381166118875760405162461bcd60e51b81526004018080602001828103825260268152602001806129ce6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661192b5760405162461bcd60e51b8152600401808060200182810382526024815260200180612b196024913960400191505060405180910390fd5b6001600160a01b0382166119705760405162461bcd60e51b81526004018080602001828103825260228152602001806129f46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a175760405162461bcd60e51b8152600401808060200182810382526025815260200180612af46025913960400191505060405180910390fd5b6001600160a01b038216611a5c5760405162461bcd60e51b81526004018080602001828103825260238152602001806129816023913960400191505060405180910390fd5b60008111611a9b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612aa76029913960400191505060405180910390fd5b611aa36114d8565b6001600160a01b0316836001600160a01b031614158015611add5750611ac76114d8565b6001600160a01b0316826001600160a01b031614155b15611b2357601654811115611b235760405162461bcd60e51b8152600401808060200182810382526028815260200180612a166028913960400191505060405180910390fd5b6000611b2e30611223565b90506016548110611b3e57506016545b60175481108015908190611b55575060155460ff16155b8015611b9357507f000000000000000000000000493156cb9c66aa395d6f09d5dcf20a82586b82bc6001600160a01b0316856001600160a01b031614155b8015611ba65750601554610100900460ff165b15611bb9576017549150611bb982611e5f565b6001600160a01b03851660009081526006602052604090205460019060ff1680611bfb57506001600160a01b03851660009081526006602052604090205460ff165b15611c04575060005b611c1086868684611efc565b505050505050565b60008184841115611ca75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c6c578181015183820152602001611c54565b50505050905090810190601f168015611c995780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611cbc612070565b9092509050611ccb8282611cd2565b9250505090565b6000611d1483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121d3565b9392505050565b600082820183811015611d14576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611d8c8a612238565b9250925092506000806000611daa8d8686611da5611caf565b61227a565b919f909e50909c50959a5093985091965092945050505050565b6000611d1483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c18565b600082611e155750600061099a565b82820282848281611e2257fe5b0414611d145760405162461bcd60e51b8152600401808060200182810382526021815260200180612a3e6021913960400191505060405180910390fd5b6015805460ff191660011790556000611e79826002611cd2565b90506000611e878383611dc4565b905047611e93836122ca565b6000611e9f4783611dc4565b9050611eab83826124d9565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805460ff19169055505050565b80611f0957611f096125d7565b6001600160a01b03841660009081526007602052604090205460ff168015611f4a57506001600160a01b03831660009081526007602052604090205460ff16155b15611f5f57611f5a848484612609565b61205d565b6001600160a01b03841660009081526007602052604090205460ff16158015611fa057506001600160a01b03831660009081526007602052604090205460ff165b15611fb057611f5a84848461272d565b6001600160a01b03841660009081526007602052604090205460ff16158015611ff257506001600160a01b03831660009081526007602052604090205460ff16155b1561200257611f5a8484846127d6565b6001600160a01b03841660009081526007602052604090205460ff16801561204257506001600160a01b03831660009081526007602052604090205460ff165b1561205257611f5a84848461281a565b61205d8484846127d6565b8061206a5761206a61288d565b50505050565b600c54600b546000918291825b6008548110156121a15782600360006008848154811061209957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120fe57508160046000600884815481106120d757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561211557600c54600b54945094505050506121cf565b612155600360006008848154811061212957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611dc4565b9250612197600460006008848154811061216b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611dc4565b915060010161207d565b50600b54600c546121b191611cd2565b8210156121c957600c54600b549350935050506121cf565b90925090505b9091565b600081836122225760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c6c578181015183820152602001611c54565b50600083858161222e57fe5b0495945050505050565b6000806000806122478561289b565b90506000612254866128b7565b9050600061226c826122668986611dc4565b90611dc4565b979296509094509092505050565b60008080806122898886611e06565b905060006122978887611e06565b905060006122a58888611e06565b905060006122b7826122668686611dc4565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106122f857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561237157600080fd5b505afa158015612385573d6000803e3d6000fd5b505050506040513d602081101561239b57600080fd5b50518151829060019081106123ac57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506123f7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118e6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561249c578181015183820152602001612484565b505050509050019650505050505050600060405180830381600087803b1580156124c557600080fd5b505af1158015611c10573d6000803e3d6000fd5b612504307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118e6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125416114d8565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156125ac57600080fd5b505af11580156125c0573d6000803e3d6000fd5b50505050506040513d606081101561206a57600080fd5b6011541580156125e75750601354155b156125f157612607565b6011805460125560138054601455600091829055555b565b60008060008060008061261b87611d75565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061264d9088611dc4565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461267c9087611dc4565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126ab9086611d1b565b6001600160a01b0389166000908152600360205260409020556126cd816128d3565b6126d7848361295c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061273f87611d75565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127719087611dc4565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127a79084611d1b565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126ab9086611d1b565b6000806000806000806127e887611d75565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061267c9087611dc4565b60008060008060008061282c87611d75565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061285e9088611dc4565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127719087611dc4565b601254601155601454601355565b600061099a606461173a60115485611e0690919063ffffffff16565b600061099a606461173a60135485611e0690919063ffffffff16565b60006128dd611caf565b905060006128eb8383611e06565b306000908152600360205260409020549091506129089082611d1b565b3060009081526003602090815260408083209390935560079052205460ff161561295757306000908152600460205260409020546129469084611d1b565b306000908152600460205260409020555b505050565b600c546129699083611dc4565b600c55600d546129799082611d1b565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a5138ee453628f7096805d880e010dd205c8c467ccb678a1553aeb2cdbcd847c64736f6c634300060c0033
Deployed Bytecode Sourcemap
24938:19332:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33365:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33365:98:0;;:::i;:::-;;27428:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28340:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28340:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29461:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25996:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25996:51:0;;;;;;;;;;;;;;27705:95;;;;;;;;;;;;;:::i;28509:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28509:313:0;;;;;;;;;;;;;;;;;:::i;30385:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30385:253:0;;:::i;27614:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31101:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31101:479:0;-1:-1:-1;;;;;31101:479:0;;:::i;28830:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28830:218:0;;;;;;;;:::i;25808:26::-;;;;;;;;;;;;;:::i;29556:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29556:377:0;;:::i;31592:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31592:352:0;-1:-1:-1;;;;;31592:352:0;;:::i;33120:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33120:111:0;-1:-1:-1;;;;;33120:111:0;;:::i;29941:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29941:436:0;;;;;;;;;:::i;26054:38::-;;;;;;;;;;;;;:::i;26133:41::-;;;;;;;;;;;;;:::i;30646:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30646:447:0;-1:-1:-1;;;;;30646:447:0;;:::i;37262:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37262:123:0;-1:-1:-1;;;;;37262:123:0;;:::i;25895:32::-;;;;;;;;;;;;;:::i;27808:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27808:198:0;-1:-1:-1;;;;;27808:198:0;;:::i;16287:148::-;;;;;;;;;;;;;:::i;26187:53::-;;;;;;;;;;;;;:::i;31952:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31952:500:0;-1:-1:-1;;;;;31952:500:0;;:::i;29333:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29333:120:0;-1:-1:-1;;;;;29333:120:0;;:::i;15644:79::-;;;;;;;;;;;;;:::i;33475:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33475:122:0;;:::i;27519:87::-;;;;;;;;;;;;;:::i;29056:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29056:269:0;;;;;;;;:::i;28014:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28014:167:0;;;;;;;;:::i;33778:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33778:171:0;;;;:::i;33608:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33608:162:0;;:::i;28189:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28189:143:0;;;;;;;;;;:::i;33243:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33243:110:0;-1:-1:-1;;;;;33243:110:0;;:::i;16590:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16590:244:0;-1:-1:-1;;;;;16590:244:0;;:::i;33365:98::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;33439:7:::1;:16:::0;33365:98::o;27428:83::-;27498:5;27491:12;;;;;;;;-1:-1:-1;;27491:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27465:13;;27491:12;;27498:5;;27491:12;;27498:5;27491:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27428:83;:::o;28340:161::-;28415:4;28432:39;28441:12;:10;:12::i;:::-;28455:7;28464:6;28432:8;:39::i;:::-;-1:-1:-1;28489:4:0;28340:161;;;;;:::o;29461:87::-;29530:10;;29461:87;:::o;25996:51::-;;;:::o;27705:95::-;27785:7;;27705:95;:::o;28509:313::-;28607:4;28624:36;28634:6;28642:9;28653:6;28624:9;:36::i;:::-;28671:121;28680:6;28688:12;:10;:12::i;:::-;28702:89;28740:6;28702:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28702:19:0;;;;;;:11;:19;;;;;;28722:12;:10;:12::i;:::-;-1:-1:-1;;;;;28702:33:0;;;;;;;;;;;;-1:-1:-1;28702:33:0;;;:89;:37;:89::i;:::-;28671:8;:121::i;:::-;-1:-1:-1;28810:4:0;28509:313;;;;;:::o;30385:253::-;30451:7;30490;;30479;:18;;30471:73;;;;-1:-1:-1;;;30471:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30555:19;30578:10;:8;:10::i;:::-;30555:33;-1:-1:-1;30606:24:0;:7;30555:33;30606:11;:24::i;:::-;30599:31;;;30385:253;;;;:::o;27614:83::-;27680:9;;;;27614:83;:::o;31101:479::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31183:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31175:60;;;::::0;;-1:-1:-1;;;31175:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31251:9;31246:327;31270:9;:16:::0;31266:20;::::1;31246:327;;;31328:7;-1:-1:-1::0;;;;;31312:23:0::1;:9;31322:1;31312:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31312:12:0::1;:23;31308:254;;;31371:9;31381:16:::0;;-1:-1:-1;;31381:20:0;;;31371:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31356:9:::1;:12:::0;;-1:-1:-1;;;;;31371:31:0;;::::1;::::0;31366:1;;31356:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31356:46:0::1;-1:-1:-1::0;;;;;31356:46:0;;::::1;;::::0;;31421:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;31460:11:::1;:20:::0;;;;:28;;-1:-1:-1;;31460:28:0::1;::::0;;31507:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;31507:15:0;;;;;-1:-1:-1;;;;;;31507:15:0::1;::::0;;;;;31541:5:::1;;31308:254;31288:3;;31246:327;;;;31101:479:::0;:::o;28830:218::-;28918:4;28935:83;28944:12;:10;:12::i;:::-;28958:7;28967:50;29006:10;28967:11;:25;28979:12;:10;:12::i;:::-;-1:-1:-1;;;;;28967:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28967:25:0;;;:34;;;;;;;;;;;:38;:50::i;25808:26::-;;;;:::o;29556:377::-;29608:14;29625:12;:10;:12::i;:::-;-1:-1:-1;;;;;29657:19:0;;;;;;:11;:19;;;;;;29608:29;;-1:-1:-1;29657:19:0;;29656:20;29648:77;;;;-1:-1:-1;;;29648:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29737:15;29761:19;29772:7;29761:10;:19::i;:::-;-1:-1:-1;;;;;;;;;29809:15:0;;;;;;:7;:15;;;;;;29736:44;;-1:-1:-1;29809:28:0;;:15;-1:-1:-1;29736:44:0;29809:19;:28::i;:::-;-1:-1:-1;;;;;29791:15:0;;;;;;:7;:15;;;;;:46;29858:7;;:20;;29870:7;29858:11;:20::i;:::-;29848:7;:30;29902:10;;:23;;29917:7;29902:14;:23::i;:::-;29889:10;:36;-1:-1:-1;;;29556:377:0:o;31592:352::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;31687:42:::1;-1:-1:-1::0;;;;;31676:53:0;::::1;;;31668:102;;;;-1:-1:-1::0;;;31668:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31790:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;31789:27;31781:70;;;::::0;;-1:-1:-1;;;31781:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31862:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;31862:33:0::1;31891:4;31862:33:::0;;::::1;::::0;;;31906:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31906:30:0::1;::::0;;::::1;::::0;;31592:352::o;33120:111::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33189:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33189:34:0::1;33219:4;33189:34;::::0;;33120:111::o;29941:436::-;30031:7;30070;;30059;:18;;30051:62;;;;;-1:-1:-1;;;30051:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30129:17;30124:246;;30164:15;30188:19;30199:7;30188:10;:19::i;:::-;-1:-1:-1;30163:44:0;;-1:-1:-1;30222:14:0;;-1:-1:-1;;;;;30222:14:0;30124:246;30271:23;30302:19;30313:7;30302:10;:19::i;:::-;-1:-1:-1;30269:52:0;;-1:-1:-1;30336:22:0;;-1:-1:-1;;;;;30336:22:0;26054:38;;;:::o;26133:41::-;;;;;;;;;:::o;30646:447::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;30843:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;30842:21;30834:61;;;::::0;;-1:-1:-1;;;30834:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;30909:16:0;::::1;30928:1;30909:16:::0;;;:7:::1;:16;::::0;;;;;:20;30906:108:::1;;-1:-1:-1::0;;;;;30985:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;30965:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;30946:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;30906:108:::1;-1:-1:-1::0;;;;;31024:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31024:27:0::1;31047:4;31024:27:::0;;::::1;::::0;;;31062:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31062:23:0::1;::::0;;::::1;::::0;;30646:447::o;37262:123::-;-1:-1:-1;;;;;37350:27:0;37326:4;37350:27;;;:18;:27;;;;;;;;;37262:123::o;25895:32::-;;;;:::o;27808:198::-;-1:-1:-1;;;;;27898:20:0;;27874:7;27898:20;;;:11;:20;;;;;;;;27894:49;;;-1:-1:-1;;;;;;27927:16:0;;;;;;:7;:16;;;;;;27920:23;;27894:49;-1:-1:-1;;;;;27981:16:0;;;;;;:7;:16;;;;;;27961:37;;:19;:37::i;16287:148::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;16394:1:::1;16378:6:::0;;16357:40:::1;::::0;-1:-1:-1;;;;;16378:6:0;;::::1;::::0;16357:40:::1;::::0;16394:1;;16357:40:::1;16425:1;16408:19:::0;;-1:-1:-1;;;;;;16408:19:0::1;::::0;;16287:148::o;26187:53::-;;;;:::o;31952:500::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32041:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32033:65;;;::::0;;-1:-1:-1;;;32033:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32114:9;32109:336;32133:16;:23:::0;32129:27;::::1;32109:336;;;32205:7;-1:-1:-1::0;;;;;32182:30:0::1;:16;32199:1;32182:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32182:19:0::1;:30;32178:256;;;32255:16;32272:23:::0;;-1:-1:-1;;32272:27:0;;;32255:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32233:16:::1;:19:::0;;-1:-1:-1;;;;;32255:45:0;;::::1;::::0;32250:1;;32233:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;32233:67:0::1;-1:-1:-1::0;;;;;32233:67:0;;::::1;;::::0;;32319:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;32319:34:0::1;::::0;;32372:16:::1;:22:::0;;;::::1;;;32178:256;32158:3;;32109:336;;29333:120:::0;-1:-1:-1;;;;;29425:20:0;29401:4;29425:20;;;:11;:20;;;;;;;;;29333:120::o;15644:79::-;15682:7;15709:6;-1:-1:-1;;;;;15709:6:0;15644:79;:::o;33475:122::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;33561:13:::1;:28:::0;33475:122::o;27519:87::-;27591:7;27584:14;;;;;;;;-1:-1:-1;;27584:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:13;;27584:14;;27591:7;;27584:14;;27591:7;27584:14;;;;;;;;;;;;;;;;;;;;;;;;29056:269;29149:4;29166:129;29175:12;:10;:12::i;:::-;29189:7;29198:96;29237:15;29198:96;;;;;;;;;;;;;;;;;:11;:25;29210:12;:10;:12::i;:::-;-1:-1:-1;;;;;29198:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29198:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28014:167::-;28092:4;28109:42;28119:12;:10;:12::i;:::-;28133:9;28144:6;28109:9;:42::i;33778:171::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;33855:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;33855:32:0;;::::1;::::0;;;::::1;::::0;;;33903:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33778:171:::0;:::o;33608:162::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;33702:60:::1;33746:5;33702:25;33714:12;33702:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;33687:12;:75:::0;-1:-1:-1;33608:162:0:o;28189:143::-;-1:-1:-1;;;;;28297:18:0;;;28270:7;28297:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28189:143::o;33243:110::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33310:27:0::1;33340:5;33310:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33310:35:0::1;::::0;;33243:110::o;16590:244::-;15866:12;:10;:12::i;:::-;15856:6;;-1:-1:-1;;;;;15856:6:0;;;:22;;;15848:67;;;;;-1:-1:-1;;;15848:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16679:22:0;::::1;16671:73;;;;-1:-1:-1::0;;;16671:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16781:6;::::0;;16760:38:::1;::::0;-1:-1:-1;;;;;16760:38:0;;::::1;::::0;16781:6;::::1;::::0;16760:38:::1;::::0;::::1;16809:6;:17:::0;;-1:-1:-1;;;;;;16809:17:0::1;-1:-1:-1::0;;;;;16809:17:0;;;::::1;::::0;;;::::1;::::0;;16590:244::o;8052:106::-;8140:10;8052:106;:::o;37393:337::-;-1:-1:-1;;;;;37486:19:0;;37478:68;;;;-1:-1:-1;;;37478:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37565:21:0;;37557:68;;;;-1:-1:-1;;;37557:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37638:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37690:32;;;;;;;;;;;;;;;;;37393:337;;;:::o;37738:1813::-;-1:-1:-1;;;;;37860:18:0;;37852:68;;;;-1:-1:-1;;;37852:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37939:16:0;;37931:64;;;;-1:-1:-1;;;37931:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38023:1;38014:6;:10;38006:64;;;;-1:-1:-1;;;38006:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38092:7;:5;:7::i;:::-;-1:-1:-1;;;;;38084:15:0;:4;-1:-1:-1;;;;;38084:15:0;;;:32;;;;;38109:7;:5;:7::i;:::-;-1:-1:-1;;;;;38103:13:0;:2;-1:-1:-1;;;;;38103:13:0;;;38084:32;38081:125;;;38149:12;;38139:6;:22;;38131:75;;;;-1:-1:-1;;;38131:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38501:28;38532:24;38550:4;38532:9;:24::i;:::-;38501:55;;38604:12;;38580:20;:36;38577:112;;-1:-1:-1;38665:12:0;;38577:112;38760:29;;38736:53;;;;;;;38818;;-1:-1:-1;38855:16:0;;;;38854:17;38818:53;:91;;;;;38896:13;-1:-1:-1;;;;;38888:21:0;:4;-1:-1:-1;;;;;38888:21:0;;;38818:91;:129;;;;-1:-1:-1;38926:21:0;;;;;;;38818:129;38800:318;;;38997:29;;38974:52;;39070:36;39085:20;39070:14;:36::i;:::-;-1:-1:-1;;;;;39326:24:0;;39199:12;39326:24;;;:18;:24;;;;;;39214:4;;39326:24;;;:50;;-1:-1:-1;;;;;;39354:22:0;;;;;;:18;:22;;;;;;;;39326:50;39323:96;;;-1:-1:-1;39402:5:0;39323:96;39505:38;39520:4;39525:2;39528:6;39535:7;39505:14;:38::i;:::-;37738:1813;;;;;;:::o;4462:192::-;4548:7;4584:12;4576:6;;;;4568:29;;;;-1:-1:-1;;;4568:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4620:5:0;;;4462:192::o;35412:163::-;35453:7;35474:15;35491;35510:19;:17;:19::i;:::-;35473:56;;-1:-1:-1;35473:56:0;-1:-1:-1;35547:20:0;35473:56;;35547:11;:20::i;:::-;35540:27;;;;35412:163;:::o;5860:132::-;5918:7;5945:39;5949:1;5952;5945:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5938:46;5860:132;-1:-1:-1;;;5860:132:0:o;3559:181::-;3617:7;3649:5;;;3673:6;;;;3665:46;;;;;-1:-1:-1;;;3665:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34210:419;34269:7;34278;34287;34296;34305;34314;34335:23;34360:12;34374:18;34396:20;34408:7;34396:11;:20::i;:::-;34334:82;;;;;;34428:15;34445:23;34470:12;34486:50;34498:7;34507:4;34513:10;34525;:8;:10::i;:::-;34486:11;:50::i;:::-;34427:109;;;;-1:-1:-1;34427:109:0;;-1:-1:-1;34587:15:0;;-1:-1:-1;34604:4:0;;-1:-1:-1;34610:10:0;;-1:-1:-1;34210:419:0;;-1:-1:-1;;;;;34210:419:0:o;4023:136::-;4081:7;4108:43;4112:1;4115;4108:43;;;;;;;;;;;;;;;;;:3;:43::i;4913:471::-;4971:7;5216:6;5212:47;;-1:-1:-1;5246:1:0;5239:8;;5212:47;5283:5;;;5287:1;5283;:5;:1;5307:5;;;;;:10;5299:56;;;;-1:-1:-1;;;5299:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39559:985;26621:16;:23;;-1:-1:-1;;26621:23:0;26640:4;26621:23;;;:16;39710:27:::1;:20:::0;39735:1:::1;39710:24;:27::i;:::-;39695:42:::0;-1:-1:-1;39748:17:0::1;39768:30;:20:::0;39695:42;39768:24:::1;:30::i;:::-;39748:50:::0;-1:-1:-1;40101:21:0::1;40167:22;40184:4:::0;40167:16:::1;:22::i;:::-;40320:18;40341:41;:21;40367:14:::0;40341:25:::1;:41::i;:::-;40320:62;;40432:35;40445:9;40456:10;40432:12;:35::i;:::-;40493:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;26667:16:0;:24;;-1:-1:-1;;26667:24:0;;;-1:-1:-1;;;39559:985:0:o;41743:834::-;41854:7;41850:40;;41876:14;:12;:14::i;:::-;-1:-1:-1;;;;;41915:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41939:22:0;;;;;;:11;:22;;;;;;;;41938:23;41915:46;41911:597;;;41978:48;42000:6;42008:9;42019:6;41978:21;:48::i;:::-;41911:597;;;-1:-1:-1;;;;;42049:19:0;;;;;;:11;:19;;;;;;;;42048:20;:46;;;;-1:-1:-1;;;;;;42072:22:0;;;;;;:11;:22;;;;;;;;42048:46;42044:464;;;42111:46;42131:6;42139:9;42150:6;42111:19;:46::i;42044:464::-;-1:-1:-1;;;;;42180:19:0;;;;;;:11;:19;;;;;;;;42179:20;:47;;;;-1:-1:-1;;;;;;42204:22:0;;;;;;:11;:22;;;;;;;;42203:23;42179:47;42175:333;;;42243:44;42261:6;42269:9;42280:6;42243:17;:44::i;42175:333::-;-1:-1:-1;;;;;42309:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42332:22:0;;;;;;:11;:22;;;;;;;;42309:45;42305:203;;;42371:48;42393:6;42401:9;42412:6;42371:21;:48::i;42305:203::-;42452:44;42470:6;42478:9;42489:6;42452:17;:44::i;:::-;42532:7;42528:41;;42554:15;:13;:15::i;:::-;41743:834;;;;:::o;35583:561::-;35680:7;;35716;;35633;;;;;35740:289;35764:9;:16;35760:20;;35740:289;;;35830:7;35806;:21;35814:9;35824:1;35814:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35814:12:0;35806:21;;;;;;;;;;;;;:31;;:66;;;35865:7;35841;:21;35849:9;35859:1;35849:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35849:12:0;35841:21;;;;;;;;;;;;;:31;35806:66;35802:97;;;35882:7;;35891;;35874:25;;;;;;;;;35802:97;35924:34;35936:7;:21;35944:9;35954:1;35944:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35944:12:0;35936:21;;;;;;;;;;;;;35924:7;;:11;:34::i;:::-;35914:44;;35983:34;35995:7;:21;36003:9;36013:1;36003:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36003:12:0;35995:21;;;;;;;;;;;;;35983:7;;:11;:34::i;:::-;35973:44;-1:-1:-1;35782:3:0;;35740:289;;;-1:-1:-1;36065:7:0;;36053;;:20;;:11;:20::i;:::-;36043:7;:30;36039:61;;;36083:7;;36092;;36075:25;;;;;;;;36039:61;36119:7;;-1:-1:-1;36128:7:0;-1:-1:-1;35583:561:0;;;:::o;6488:278::-;6574:7;6609:12;6602:5;6594:28;;;;-1:-1:-1;;;6594:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6633:9;6649:1;6645;:5;;;;;;;6488:278;-1:-1:-1;;;;;6488:278:0:o;34637:330::-;34697:7;34706;34715;34735:12;34750:24;34766:7;34750:15;:24::i;:::-;34735:39;;34785:18;34806:30;34828:7;34806:21;:30::i;:::-;34785:51;-1:-1:-1;34847:23:0;34873:33;34785:51;34873:17;:7;34885:4;34873:11;:17::i;:::-;:21;;:33::i;:::-;34847:59;34942:4;;-1:-1:-1;34948:10:0;;-1:-1:-1;34637:330:0;;-1:-1:-1;;;34637:330:0:o;34975:429::-;35090:7;;;;35146:24;:7;35158:11;35146;:24::i;:::-;35128:42;-1:-1:-1;35181:12:0;35196:21;:4;35205:11;35196:8;:21::i;:::-;35181:36;-1:-1:-1;35228:18:0;35249:27;:10;35264:11;35249:14;:27::i;:::-;35228:48;-1:-1:-1;35287:23:0;35313:33;35228:48;35313:17;:7;35325:4;35313:11;:17::i;:33::-;35365:7;;;;-1:-1:-1;35391:4:0;;-1:-1:-1;34975:429:0;;-1:-1:-1;;;;;;;34975:429:0:o;40552:589::-;40702:16;;;40716:1;40702:16;;;40678:21;40702:16;;;;;40678:21;40702:16;;;;;;;;;;-1:-1:-1;40702:16:0;40678:40;;40747:4;40729;40734:1;40729:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;40729:23:0;;;-1:-1:-1;;;;;40729:23:0;;;;;40773:15;-1:-1:-1;;;;;40773:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40773:22:0;40763:7;;:4;;40768:1;;40763:7;;;;;;;;;;;:32;-1:-1:-1;;;;;40763:32:0;;;-1:-1:-1;;;;;40763:32:0;;;;;40808:62;40825:4;40840:15;40858:11;40808:8;:62::i;:::-;40909:15;-1:-1:-1;;;;;40909:66:0;;40990:11;41016:1;41060:4;41087;41107:15;40909:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40909:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41149:513;41297:62;41314:4;41329:15;41347:11;41297:8;:62::i;:::-;41402:15;-1:-1:-1;;;;;41402:31:0;;41441:9;41474:4;41494:11;41520:1;41563;41606:7;:5;:7::i;:::-;41628:15;41402:252;;;;;;;;;;;;;-1:-1:-1;;;;;41402:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41402:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36863:250;36909:7;;:12;:34;;;;-1:-1:-1;36925:13:0;;:18;36909:34;36906:46;;;36945:7;;36906:46;36990:7;;;36972:15;:25;37032:13;;;37008:21;:37;-1:-1:-1;37066:11:0;;;;37088:17;36863:250;:::o;43689:566::-;43792:15;43809:23;43834:12;43848:23;43873:12;43887:18;43909:19;43920:7;43909:10;:19::i;:::-;-1:-1:-1;;;;;43957:15:0;;;;;;:7;:15;;;;;;43791:137;;-1:-1:-1;43791:137:0;;-1:-1:-1;43791:137:0;;-1:-1:-1;43791:137:0;-1:-1:-1;43791:137:0;-1:-1:-1;43791:137:0;-1:-1:-1;43957:28:0;;43977:7;43957:19;:28::i;:::-;-1:-1:-1;;;;;43939:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44014:7;:15;;;;:28;;44034:7;44014:19;:28::i;:::-;-1:-1:-1;;;;;43996:15:0;;;;;;;:7;:15;;;;;;:46;;;;44074:18;;;;;;;:39;;44097:15;44074:22;:39::i;:::-;-1:-1:-1;;;;;44053:18:0;;;;;;:7;:18;;;;;:60;44127:26;44142:10;44127:14;:26::i;:::-;44164:23;44176:4;44182;44164:11;:23::i;:::-;44220:9;-1:-1:-1;;;;;44203:44:0;44212:6;-1:-1:-1;;;;;44203:44:0;;44231:15;44203:44;;;;;;;;;;;;;;;;;;43689:566;;;;;;;;;:::o;43095:586::-;43196:15;43213:23;43238:12;43252:23;43277:12;43291:18;43313:19;43324:7;43313:10;:19::i;:::-;-1:-1:-1;;;;;43361:15:0;;;;;;:7;:15;;;;;;43195:137;;-1:-1:-1;43195:137:0;;-1:-1:-1;43195:137:0;;-1:-1:-1;43195:137:0;-1:-1:-1;43195:137:0;-1:-1:-1;43195:137:0;-1:-1:-1;43361:28:0;;43195:137;43361:19;:28::i;:::-;-1:-1:-1;;;;;43343:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43421:18;;;;;:7;:18;;;;;:39;;43444:15;43421:22;:39::i;:::-;-1:-1:-1;;;;;43400:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43492:7;:18;;;;:39;;43515:15;43492:22;:39::i;42585:502::-;42684:15;42701:23;42726:12;42740:23;42765:12;42779:18;42801:19;42812:7;42801:10;:19::i;:::-;-1:-1:-1;;;;;42849:15:0;;;;;;:7;:15;;;;;;42683:137;;-1:-1:-1;42683:137:0;;-1:-1:-1;42683:137:0;;-1:-1:-1;42683:137:0;-1:-1:-1;42683:137:0;-1:-1:-1;42683:137:0;-1:-1:-1;42849:28:0;;42683:137;42849:19;:28::i;32462:642::-;32565:15;32582:23;32607:12;32621:23;32646:12;32660:18;32682:19;32693:7;32682:10;:19::i;:::-;-1:-1:-1;;;;;32730:15:0;;;;;;:7;:15;;;;;;32564:137;;-1:-1:-1;32564:137:0;;-1:-1:-1;32564:137:0;;-1:-1:-1;32564:137:0;-1:-1:-1;32564:137:0;-1:-1:-1;32564:137:0;-1:-1:-1;32730:28:0;;32750:7;32730:19;:28::i;:::-;-1:-1:-1;;;;;32712:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32787:7;:15;;;;:28;;32807:7;32787:19;:28::i;37125:125::-;37179:15;;37169:7;:25;37221:21;;37205:13;:37;37125:125::o;36523:154::-;36587:7;36614:55;36653:5;36614:20;36626:7;;36614;:11;;:20;;;;:::i;36685:166::-;36755:7;36782:61;36827:5;36782:26;36794:13;;36782:7;:11;;:26;;;;:::i;36156:355::-;36219:19;36242:10;:8;:10::i;:::-;36219:33;-1:-1:-1;36263:18:0;36284:27;:10;36219:33;36284:14;:27::i;:::-;36363:4;36347:22;;;;:7;:22;;;;;;36263:48;;-1:-1:-1;36347:38:0;;36263:48;36347:26;:38::i;:::-;36338:4;36322:22;;;;:7;:22;;;;;;;;:63;;;;36399:11;:26;;;;;;36396:107;;;36481:4;36465:22;;;;:7;:22;;;;;;:38;;36492:10;36465:26;:38::i;:::-;36456:4;36440:22;;;;:7;:22;;;;;:63;36396:107;36156:355;;;:::o;34055:147::-;34133:7;;:17;;34145:4;34133:11;:17::i;:::-;34123:7;:27;34174:10;;:20;;34189:4;34174:14;:20::i;:::-;34161:10;:33;-1:-1:-1;;34055:147:0:o
Swarm Source
ipfs://a5138ee453628f7096805d880e010dd205c8c467ccb678a1553aeb2cdbcd847c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $689.08 | 0.0313 | $21.54 |
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.