Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,004,536,483.0103483589460932 RSRV
Holders
199
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
575.579365079365079381 RSRVValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ReserveToken
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.19; /* Reserve ($RSRV) https://www.reserveth.com/ https://t.me/rsrv_eth https://twitter.com/rsrv_eth */ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/IRSRV.sol"; contract ReserveToken is Context, IERC20, IRSRV, Ownable { using Address for address payable; using SafeMath for uint; mapping (address => uint) private _balances; mapping (address => mapping (address => uint)) private _allowances; mapping (address => bool) private _isExcludedFromFee; address private constant _deadAddress = address(0xdead); address payable private _taxWallet; uint private _initialBuyTax = 3000; // 30.00% uint private _initialSellTax = 3000; uint private _finalBuyTax = 200; // 2.00% uint private _finalSellTax = 200; uint private _reduceBuyTaxAfter = 20; uint private _reduceSellTaxAfter = 20; uint private _preventSwapBefore = 20; string private constant _name = "Reserve"; string private constant _symbol = "RSRV"; uint8 private constant _decimals = 18; uint private _totalSupply = 625_000 * 10**_decimals; uint public _maxTxAmount = 300; // 3.0% uint public _maxWalletSize = 300; // 3.0% uint public _swapThreshold = 10; // 0.1% address public uniswapV2Router; address public uniswapV2Pair; address public reserve; address public brokerage; bool private tradingOpen; uint public launchBlock; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor ( address taxWallet ) { _taxWallet = payable(taxWallet); _balances[_msgSender()] = _totalSupply; _isExcludedFromFee[_msgSender()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; _isExcludedFromFee[_deadAddress] = true; emit Transfer(address(0), _msgSender(), _totalSupply); } 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 (uint) { return _totalSupply; } function balanceOf(address account) public view override returns (uint) { return _balances[account]; } function transfer(address recipient, uint amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint) { return _allowances[owner][spender]; } function approve(address spender, uint amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function mint(uint amount) external { require (_msgSender() == reserve || _msgSender() == brokerage, "Only the reserve and brokerage are allowed to mint tokens"); _balances[reserve] = _balances[reserve].add(amount); _totalSupply = _totalSupply.add(amount); emit Transfer(address(0), reserve, amount); } function maxTxAmount() public view returns (uint) { return _totalSupply.mul(_maxTxAmount).div(10000); } function maxWalletSize() public view returns (uint) { return _totalSupply.mul(_maxWalletSize).div(10000); } function swapThreshold() public view returns (uint) { return _totalSupply.mul(_swapThreshold).div(10000); } function _approve(address owner, address spender, uint amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint taxAmount; if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { require (tradingOpen, "Trading is not enabled yet"); if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to]) { require(amount <= maxTxAmount(), "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= maxWalletSize(), "Exceeds the maxWalletSize."); } taxAmount = amount.mul((block.number > launchBlock + _reduceBuyTaxAfter) ? _finalBuyTax : _initialBuyTax).div(10000); if (to == uniswapV2Pair && from != address(this)) { require(amount <= maxTxAmount(), "Exceeds the _maxTxAmount."); taxAmount = amount.mul((block.number > launchBlock + _reduceSellTaxAfter) ? _finalSellTax : _initialSellTax).div(10000); } uint contractTokenBalance = balanceOf(address(this)); if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > swapThreshold() && block.number > launchBlock + _preventSwapBefore) { swapTokensForEth(swapThreshold()); uint contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint a, uint b) private pure returns (uint) { return (a > b) ? b : a; } function swapTokensForEth(uint tokenAmount) private lockTheSwap { if (tokenAmount == 0) return; if (!tradingOpen) return; address[] memory path = new address[](2); path[0] = address(this); path[1] = IUniswapV2Router02(uniswapV2Router).WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); IUniswapV2Router02(uniswapV2Router).swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint amount) private { Address.sendValue(payable(_taxWallet), amount); } function initPair() external onlyOwner { require (uniswapV2Pair == address(0), "Pair is already initialized"); uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(uniswapV2Router); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); } function openTrading() external payable onlyOwner { require (uniswapV2Pair != address(0), "Pair has not been initialized yet"); require (!tradingOpen, "Trading is already open"); require (balanceOf(_msgSender()) > 0, "No token balance"); require (msg.value > 0, "No eth value"); uint tokenAmount = balanceOf(_msgSender()); _approve(_msgSender(), address(this), tokenAmount); _approve(address(this), address(uniswapV2Router), tokenAmount); _transfer(_msgSender(), address(this), tokenAmount); IUniswapV2Router02(uniswapV2Router).addLiquidityETH{value: msg.value}( address(this), tokenAmount, 0, 0, _msgSender(), block.timestamp ); swapEnabled = true; tradingOpen = true; launchBlock = block.number; } function setIsExcluded(address account, bool _isExcluded) external onlyOwner { _isExcludedFromFee[account] = _isExcluded; } function setReserve(address _reserve) external onlyOwner { require (_reserve != address(0), "Invalid reserve address"); _isExcludedFromFee[reserve] = false; reserve = _reserve; _isExcludedFromFee[_reserve] = true; } function setBrokerage(address _brokerage) external onlyOwner { require (_brokerage != address(0), "Invalid brokerage address"); _isExcludedFromFee[brokerage] = false; brokerage = _brokerage; _isExcludedFromFee[_brokerage] = true; } function removeLimits() external onlyOwner { _maxTxAmount = 10000; _maxWalletSize = 10000; } function rescueETH() external { require (_msgSender() == _taxWallet, "Not authorized"); payable(_msgSender()).sendValue(address(this).balance); } function rescueTokens(address _token) external { require (_msgSender() == _taxWallet, "Not authorized"); require (_token != address(this), "Can not rescue own token!"); IERC20(_token).transfer(_msgSender(), IERC20(_token).balanceOf(address(this))); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @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://consensys.net/diligence/blog/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.8.0/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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IRSRV is IERC20 { function uniswapV2Router() external view returns (address); function uniswapV2Pair() external view returns (address); function mint(uint amount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Router02 { 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 removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":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":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapThreshold","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":"brokerage","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"initPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_brokerage","type":"address"}],"name":"setBrokerage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setIsExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reserve","type":"address"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052610bb8600555610bb860065560c860075560c860085560146009556014600a556014600b556012600a620000399190620005f5565b6209896862000049919062000646565b600c5561012c600d5561012c600e55600a600f556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff021916908315150217905550348015620000a057600080fd5b506040516200457a3803806200457a8339818101604052810190620000c69190620006fb565b620000e6620000da6200038f60201b60201c565b6200039760201b60201c565b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c54600160006200013e6200038f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160036000620001926200038f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160036000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016003600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031f6200038f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040516200038091906200073e565b60405180910390a3506200075b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004e957808604811115620004c157620004c06200045b565b5b6001851615620004d15780820291505b8081029050620004e1856200048a565b9450620004a1565b94509492505050565b600082620005045760019050620005d7565b81620005145760009050620005d7565b81600181146200052d576002811462000538576200056e565b6001915050620005d7565b60ff8411156200054d576200054c6200045b565b5b8360020a9150848211156200056757620005666200045b565b5b50620005d7565b5060208310610133831016604e8410600b8410161715620005a85782820a905083811115620005a257620005a16200045b565b5b620005d7565b620005b7848484600162000497565b92509050818404811115620005d157620005d06200045b565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200060282620005de565b91506200060f83620005e8565b92506200063e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004f2565b905092915050565b60006200065382620005de565b91506200066083620005de565b92508282026200067081620005de565b915082820484148315176200068a57620006896200045b565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006c38262000696565b9050919050565b620006d581620006b6565b8114620006e157600080fd5b50565b600081519050620006f581620006ca565b92915050565b60006020828403121562000714576200071362000691565b5b60006200072484828501620006e4565b91505092915050565b6200073881620005de565b82525050565b60006020820190506200075560008301846200072d565b92915050565b613e0f806200076b6000396000f3fe6080604052600436106101e65760003560e01c80637d1db4a511610102578063a9059cbb11610095578063d00efb2f11610064578063d00efb2f14610687578063dd62ed3e146106b2578063f2fde38b146106ef578063feb1dfcc14610718576101ed565b8063a9059cbb146105ec578063c9567bf914610629578063cd3293de14610633578063cf8e2f8e1461065e576101ed565b80638f9a55c0116100d15780638f9a55c01461054457806395d89b411461056f5780639cecc80a1461059a578063a0712d68146105c3576101ed565b80637d1db4a5146104985780638c0b5e22146104c35780638da5cb5b146104ee5780638f3fa86014610519576101ed565b806323b872dd1161017a57806349bd5a5e1161014957806349bd5a5e1461040257806370a082311461042d578063715018a61461046a578063751039fc14610481576101ed565b806323b872dd14610346578063313ce567146103835780633c2a27f2146103ae5780633fbf444e146103d7576101ed565b80630e5a9231116101b65780630e5a9231146102ae5780631694505e146102d957806318160ddd1461030457806320800a001461032f576101ed565b8062ae3bf8146101f25780630445b6671461021b57806306fdde0314610246578063095ea7b314610271576101ed565b366101ed57005b600080fd5b3480156101fe57600080fd5b5061021960048036038101906102149190612acb565b61072f565b005b34801561022757600080fd5b50610230610936565b60405161023d9190612b11565b60405180910390f35b34801561025257600080fd5b5061025b610968565b6040516102689190612bbc565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612c0a565b6109a5565b6040516102a59190612c65565b60405180910390f35b3480156102ba57600080fd5b506102c36109c3565b6040516102d09190612b11565b60405180910390f35b3480156102e557600080fd5b506102ee6109c9565b6040516102fb9190612c8f565b60405180910390f35b34801561031057600080fd5b506103196109ef565b6040516103269190612b11565b60405180910390f35b34801561033b57600080fd5b506103446109f9565b005b34801561035257600080fd5b5061036d60048036038101906103689190612caa565b610ac2565b60405161037a9190612c65565b60405180910390f35b34801561038f57600080fd5b50610398610b9b565b6040516103a59190612d19565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612acb565b610ba4565b005b3480156103e357600080fd5b506103ec610d31565b6040516103f99190612c8f565b60405180910390f35b34801561040e57600080fd5b50610417610d57565b6040516104249190612c8f565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612acb565b610d7d565b6040516104619190612b11565b60405180910390f35b34801561047657600080fd5b5061047f610dc6565b005b34801561048d57600080fd5b50610496610dda565b005b3480156104a457600080fd5b506104ad610df6565b6040516104ba9190612b11565b60405180910390f35b3480156104cf57600080fd5b506104d8610dfc565b6040516104e59190612b11565b60405180910390f35b3480156104fa57600080fd5b50610503610e2e565b6040516105109190612c8f565b60405180910390f35b34801561052557600080fd5b5061052e610e57565b60405161053b9190612b11565b60405180910390f35b34801561055057600080fd5b50610559610e89565b6040516105669190612b11565b60405180910390f35b34801561057b57600080fd5b50610584610e8f565b6040516105919190612bbc565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612acb565b610ecc565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190612d34565b611059565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612c0a565b6112ce565b6040516106209190612c65565b60405180910390f35b6106316112ec565b005b34801561063f57600080fd5b506106486115c3565b6040516106559190612c8f565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612d8d565b6115e9565b005b34801561069357600080fd5b5061069c61164c565b6040516106a99190612b11565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190612dcd565b611652565b6040516106e69190612b11565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612acb565b6116d9565b005b34801561072457600080fd5b5061072d61175c565b005b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610770611a0e565b73ffffffffffffffffffffffffffffffffffffffff16146107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90612e59565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b90612ec5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610858611a0e565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108919190612c8f565b602060405180830381865afa1580156108ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d29190612efa565b6040518363ffffffff1660e01b81526004016108ef929190612f27565b6020604051808303816000875af115801561090e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109329190612f65565b5050565b6000610963612710610955600f54600c54611a1690919063ffffffff16565b611a2c90919063ffffffff16565b905090565b60606040518060400160405280600781526020017f5265736572766500000000000000000000000000000000000000000000000000815250905090565b60006109b96109b2611a0e565b8484611a42565b6001905092915050565b600f5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c54905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a3a611a0e565b73ffffffffffffffffffffffffffffffffffffffff1614610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612e59565b60405180910390fd5b610ac047610a9c611a0e565b73ffffffffffffffffffffffffffffffffffffffff16611c0b90919063ffffffff16565b565b6000610acf848484611cff565b610b9084610adb611a0e565b610b8b85604051806060016040528060288152602001613db260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b41611a0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125de9092919063ffffffff16565b611a42565b600190509392505050565b60006012905090565b610bac612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290612fde565b60405180910390fd5b600060036000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dce612633565b610dd860006126b1565b565b610de2612633565b612710600d81905550612710600e81905550565b600d5481565b6000610e29612710610e1b600d54600c54611a1690919063ffffffff16565b611a2c90919063ffffffff16565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e84612710610e76600e54600c54611a1690919063ffffffff16565b611a2c90919063ffffffff16565b905090565b600e5481565b60606040518060400160405280600481526020017f5253525600000000000000000000000000000000000000000000000000000000815250905090565b610ed4612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061304a565b60405180910390fd5b600060036000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661109a611a0e565b73ffffffffffffffffffffffffffffffffffffffff1614806111105750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110f8611a0e565b73ffffffffffffffffffffffffffffffffffffffff16145b61114f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611146906130dc565b60405180910390fd5b6111c38160016000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277590919063ffffffff16565b60016000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061123d81600c5461277590919063ffffffff16565b600c81905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c39190612b11565b60405180910390a350565b60006112e26112db611a0e565b8484611cff565b6001905092915050565b6112f4612633565b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061316e565b60405180910390fd5b601360149054906101000a900460ff16156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc906131da565b60405180910390fd5b60006113e76113e2611a0e565b610d7d565b11611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613246565b60405180910390fd5b6000341161146a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611461906132b2565b60405180910390fd5b600061147c611477611a0e565b610d7d565b9050611490611489611a0e565b3083611a42565b6114bd30601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a42565b6114cf6114c8611a0e565b3083611cff565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934308460008061151b611a0e565b426040518863ffffffff1660e01b815260040161153d96959493929190613317565b60606040518083038185885af115801561155b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115809190613378565b5050506001601560016101000a81548160ff0219169083151502179055506001601360146101000a81548160ff0219169083151502179055504360148190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115f1612633565b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6116e1612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117479061343d565b60405180910390fd5b611759816126b1565b50565b611764612633565b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec906134a9565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e091906134de565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196b91906134de565b6040518363ffffffff1660e01b815260040161198892919061350b565b6020604051808303816000875af11580156119a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cb91906134de565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60008183611a249190613563565b905092915050565b60008183611a3a91906135d4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa890613677565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790613709565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bfe9190612b11565b60405180910390a3505050565b80471015611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613775565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c74906137c6565b60006040518083038185875af1925050503d8060008114611cb1576040519150601f19603f3d011682016040523d82523d6000602084013e611cb6565b606091505b5050905080611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf19061384d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d65906138df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490613971565b60405180910390fd5b60008111611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613a03565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ec65750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561232157601360149054906101000a900460ff16611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190613a6f565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611fc55750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561201b5750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120c857612028610dfc565b82111561206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190613adb565b60405180910390fd5b612072610e57565b8261207c85610d7d565b6120869190613afb565b11156120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613b7b565b60405180910390fd5b5b6121106127106121026009546014546120e19190613afb565b43116120ef576005546120f3565b6007545b85611a1690919063ffffffff16565b611a2c90919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561219b57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15612235576121a8610dfc565b8211156121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e190613adb565b60405180910390fd5b612232612710612224600a546014546122039190613afb565b431161221157600654612215565b6008545b85611a1690919063ffffffff16565b611a2c90919063ffffffff16565b90505b600061224030610d7d565b9050601560009054906101000a900460ff161580156122ac5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122c45750601560019054906101000a900460ff165b80156122d657506122d3610936565b81115b80156122f05750600b546014546122ed9190613afb565b43115b1561231f57612305612300610936565b61278b565b6000479050600081111561231d5761231c47612a23565b5b505b505b60008111156124255761237c81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277590919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161241c9190612b11565b60405180910390a35b61247782600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a5290919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061251e6124d08284612a5290919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277590919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6125c38486612a5290919063ffffffff16565b6040516125d09190612b11565b60405180910390a350505050565b6000838311158290612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d9190612bbc565b60405180910390fd5b5082840390509392505050565b61263b611a0e565b73ffffffffffffffffffffffffffffffffffffffff16612659610e2e565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690613be7565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836127839190613afb565b905092915050565b6001601560006101000a81548160ff0219169083151502179055506000810315612a0557601360149054906101000a900460ff1615612a05576000600267ffffffffffffffff8111156127e1576127e0613c07565b5b60405190808252806020026020018201604052801561280f5781602001602082028036833780820191505090505b509050308160008151811061282757612826613c36565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f291906134de565b8160018151811061290657612905613c36565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061296d30601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a42565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016129d1959493929190613d23565b600060405180830381600087803b1580156129eb57600080fd5b505af11580156129ff573d6000803e3d6000fd5b50505050505b6000601560006101000a81548160ff02191690831515021790555050565b612a4f600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611c0b565b50565b60008183612a609190613d7d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a9882612a6d565b9050919050565b612aa881612a8d565b8114612ab357600080fd5b50565b600081359050612ac581612a9f565b92915050565b600060208284031215612ae157612ae0612a68565b5b6000612aef84828501612ab6565b91505092915050565b6000819050919050565b612b0b81612af8565b82525050565b6000602082019050612b266000830184612b02565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b66578082015181840152602081019050612b4b565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b8e82612b2c565b612b988185612b37565b9350612ba8818560208601612b48565b612bb181612b72565b840191505092915050565b60006020820190508181036000830152612bd68184612b83565b905092915050565b612be781612af8565b8114612bf257600080fd5b50565b600081359050612c0481612bde565b92915050565b60008060408385031215612c2157612c20612a68565b5b6000612c2f85828601612ab6565b9250506020612c4085828601612bf5565b9150509250929050565b60008115159050919050565b612c5f81612c4a565b82525050565b6000602082019050612c7a6000830184612c56565b92915050565b612c8981612a8d565b82525050565b6000602082019050612ca46000830184612c80565b92915050565b600080600060608486031215612cc357612cc2612a68565b5b6000612cd186828701612ab6565b9350506020612ce286828701612ab6565b9250506040612cf386828701612bf5565b9150509250925092565b600060ff82169050919050565b612d1381612cfd565b82525050565b6000602082019050612d2e6000830184612d0a565b92915050565b600060208284031215612d4a57612d49612a68565b5b6000612d5884828501612bf5565b91505092915050565b612d6a81612c4a565b8114612d7557600080fd5b50565b600081359050612d8781612d61565b92915050565b60008060408385031215612da457612da3612a68565b5b6000612db285828601612ab6565b9250506020612dc385828601612d78565b9150509250929050565b60008060408385031215612de457612de3612a68565b5b6000612df285828601612ab6565b9250506020612e0385828601612ab6565b9150509250929050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612e43600e83612b37565b9150612e4e82612e0d565b602082019050919050565b60006020820190508181036000830152612e7281612e36565b9050919050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000612eaf601983612b37565b9150612eba82612e79565b602082019050919050565b60006020820190508181036000830152612ede81612ea2565b9050919050565b600081519050612ef481612bde565b92915050565b600060208284031215612f1057612f0f612a68565b5b6000612f1e84828501612ee5565b91505092915050565b6000604082019050612f3c6000830185612c80565b612f496020830184612b02565b9392505050565b600081519050612f5f81612d61565b92915050565b600060208284031215612f7b57612f7a612a68565b5b6000612f8984828501612f50565b91505092915050565b7f496e76616c69642062726f6b6572616765206164647265737300000000000000600082015250565b6000612fc8601983612b37565b9150612fd382612f92565b602082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f496e76616c696420726573657276652061646472657373000000000000000000600082015250565b6000613034601783612b37565b915061303f82612ffe565b602082019050919050565b6000602082019050818103600083015261306381613027565b9050919050565b7f4f6e6c7920746865207265736572766520616e642062726f6b6572616765206160008201527f726520616c6c6f77656420746f206d696e7420746f6b656e7300000000000000602082015250565b60006130c6603983612b37565b91506130d18261306a565b604082019050919050565b600060208201905081810360008301526130f5816130b9565b9050919050565b7f5061697220686173206e6f74206265656e20696e697469616c697a656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613158602183612b37565b9150613163826130fc565b604082019050919050565b600060208201905081810360008301526131878161314b565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006131c4601783612b37565b91506131cf8261318e565b602082019050919050565b600060208201905081810360008301526131f3816131b7565b9050919050565b7f4e6f20746f6b656e2062616c616e636500000000000000000000000000000000600082015250565b6000613230601083612b37565b915061323b826131fa565b602082019050919050565b6000602082019050818103600083015261325f81613223565b9050919050565b7f4e6f206574682076616c75650000000000000000000000000000000000000000600082015250565b600061329c600c83612b37565b91506132a782613266565b602082019050919050565b600060208201905081810360008301526132cb8161328f565b9050919050565b6000819050919050565b6000819050919050565b60006133016132fc6132f7846132d2565b6132dc565b612af8565b9050919050565b613311816132e6565b82525050565b600060c08201905061332c6000830189612c80565b6133396020830188612b02565b6133466040830187613308565b6133536060830186613308565b6133606080830185612c80565b61336d60a0830184612b02565b979650505050505050565b60008060006060848603121561339157613390612a68565b5b600061339f86828701612ee5565b93505060206133b086828701612ee5565b92505060406133c186828701612ee5565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613427602683612b37565b9150613432826133cb565b604082019050919050565b600060208201905081810360008301526134568161341a565b9050919050565b7f5061697220697320616c726561647920696e697469616c697a65640000000000600082015250565b6000613493601b83612b37565b915061349e8261345d565b602082019050919050565b600060208201905081810360008301526134c281613486565b9050919050565b6000815190506134d881612a9f565b92915050565b6000602082840312156134f4576134f3612a68565b5b6000613502848285016134c9565b91505092915050565b60006040820190506135206000830185612c80565b61352d6020830184612c80565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061356e82612af8565b915061357983612af8565b925082820261358781612af8565b9150828204841483151761359e5761359d613534565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135df82612af8565b91506135ea83612af8565b9250826135fa576135f96135a5565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613661602483612b37565b915061366c82613605565b604082019050919050565b6000602082019050818103600083015261369081613654565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136f3602283612b37565b91506136fe82613697565b604082019050919050565b60006020820190508181036000830152613722816136e6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061375f601d83612b37565b915061376a82613729565b602082019050919050565b6000602082019050818103600083015261378e81613752565b9050919050565b600081905092915050565b50565b60006137b0600083613795565b91506137bb826137a0565b600082019050919050565b60006137d1826137a3565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613837603a83612b37565b9150613842826137db565b604082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006138c9602583612b37565b91506138d48261386d565b604082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061395b602383612b37565b9150613966826138ff565b604082019050919050565b6000602082019050818103600083015261398a8161394e565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006139ed602983612b37565b91506139f882613991565b604082019050919050565b60006020820190508181036000830152613a1c816139e0565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b6000613a59601a83612b37565b9150613a6482613a23565b602082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b6000613ac5601983612b37565b9150613ad082613a8f565b602082019050919050565b60006020820190508181036000830152613af481613ab8565b9050919050565b6000613b0682612af8565b9150613b1183612af8565b9250828201905080821115613b2957613b28613534565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000613b65601a83612b37565b9150613b7082613b2f565b602082019050919050565b60006020820190508181036000830152613b9481613b58565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bd1602083612b37565b9150613bdc82613b9b565b602082019050919050565b60006020820190508181036000830152613c0081613bc4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c9a81612a8d565b82525050565b6000613cac8383613c91565b60208301905092915050565b6000602082019050919050565b6000613cd082613c65565b613cda8185613c70565b9350613ce583613c81565b8060005b83811015613d16578151613cfd8882613ca0565b9750613d0883613cb8565b925050600181019050613ce9565b5085935050505092915050565b600060a082019050613d386000830188612b02565b613d456020830187613308565b8181036040830152613d578186613cc5565b9050613d666060830185612c80565b613d736080830184612b02565b9695505050505050565b6000613d8882612af8565b9150613d9383612af8565b9250828203905081811115613dab57613daa613534565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a9ca6edb9b2956eebf1c6efd25c8a9f9abdc2660e07818eb3d5e7af4b109056964736f6c634300081300330000000000000000000000008b78bcb2e5afc7c421a389b6e40c6bfccc5f95d1
Deployed Bytecode
0x6080604052600436106101e65760003560e01c80637d1db4a511610102578063a9059cbb11610095578063d00efb2f11610064578063d00efb2f14610687578063dd62ed3e146106b2578063f2fde38b146106ef578063feb1dfcc14610718576101ed565b8063a9059cbb146105ec578063c9567bf914610629578063cd3293de14610633578063cf8e2f8e1461065e576101ed565b80638f9a55c0116100d15780638f9a55c01461054457806395d89b411461056f5780639cecc80a1461059a578063a0712d68146105c3576101ed565b80637d1db4a5146104985780638c0b5e22146104c35780638da5cb5b146104ee5780638f3fa86014610519576101ed565b806323b872dd1161017a57806349bd5a5e1161014957806349bd5a5e1461040257806370a082311461042d578063715018a61461046a578063751039fc14610481576101ed565b806323b872dd14610346578063313ce567146103835780633c2a27f2146103ae5780633fbf444e146103d7576101ed565b80630e5a9231116101b65780630e5a9231146102ae5780631694505e146102d957806318160ddd1461030457806320800a001461032f576101ed565b8062ae3bf8146101f25780630445b6671461021b57806306fdde0314610246578063095ea7b314610271576101ed565b366101ed57005b600080fd5b3480156101fe57600080fd5b5061021960048036038101906102149190612acb565b61072f565b005b34801561022757600080fd5b50610230610936565b60405161023d9190612b11565b60405180910390f35b34801561025257600080fd5b5061025b610968565b6040516102689190612bbc565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612c0a565b6109a5565b6040516102a59190612c65565b60405180910390f35b3480156102ba57600080fd5b506102c36109c3565b6040516102d09190612b11565b60405180910390f35b3480156102e557600080fd5b506102ee6109c9565b6040516102fb9190612c8f565b60405180910390f35b34801561031057600080fd5b506103196109ef565b6040516103269190612b11565b60405180910390f35b34801561033b57600080fd5b506103446109f9565b005b34801561035257600080fd5b5061036d60048036038101906103689190612caa565b610ac2565b60405161037a9190612c65565b60405180910390f35b34801561038f57600080fd5b50610398610b9b565b6040516103a59190612d19565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190612acb565b610ba4565b005b3480156103e357600080fd5b506103ec610d31565b6040516103f99190612c8f565b60405180910390f35b34801561040e57600080fd5b50610417610d57565b6040516104249190612c8f565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612acb565b610d7d565b6040516104619190612b11565b60405180910390f35b34801561047657600080fd5b5061047f610dc6565b005b34801561048d57600080fd5b50610496610dda565b005b3480156104a457600080fd5b506104ad610df6565b6040516104ba9190612b11565b60405180910390f35b3480156104cf57600080fd5b506104d8610dfc565b6040516104e59190612b11565b60405180910390f35b3480156104fa57600080fd5b50610503610e2e565b6040516105109190612c8f565b60405180910390f35b34801561052557600080fd5b5061052e610e57565b60405161053b9190612b11565b60405180910390f35b34801561055057600080fd5b50610559610e89565b6040516105669190612b11565b60405180910390f35b34801561057b57600080fd5b50610584610e8f565b6040516105919190612bbc565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612acb565b610ecc565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190612d34565b611059565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612c0a565b6112ce565b6040516106209190612c65565b60405180910390f35b6106316112ec565b005b34801561063f57600080fd5b506106486115c3565b6040516106559190612c8f565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612d8d565b6115e9565b005b34801561069357600080fd5b5061069c61164c565b6040516106a99190612b11565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190612dcd565b611652565b6040516106e69190612b11565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612acb565b6116d9565b005b34801561072457600080fd5b5061072d61175c565b005b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610770611a0e565b73ffffffffffffffffffffffffffffffffffffffff16146107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90612e59565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b90612ec5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610858611a0e565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108919190612c8f565b602060405180830381865afa1580156108ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d29190612efa565b6040518363ffffffff1660e01b81526004016108ef929190612f27565b6020604051808303816000875af115801561090e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109329190612f65565b5050565b6000610963612710610955600f54600c54611a1690919063ffffffff16565b611a2c90919063ffffffff16565b905090565b60606040518060400160405280600781526020017f5265736572766500000000000000000000000000000000000000000000000000815250905090565b60006109b96109b2611a0e565b8484611a42565b6001905092915050565b600f5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c54905090565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a3a611a0e565b73ffffffffffffffffffffffffffffffffffffffff1614610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612e59565b60405180910390fd5b610ac047610a9c611a0e565b73ffffffffffffffffffffffffffffffffffffffff16611c0b90919063ffffffff16565b565b6000610acf848484611cff565b610b9084610adb611a0e565b610b8b85604051806060016040528060288152602001613db260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b41611a0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125de9092919063ffffffff16565b611a42565b600190509392505050565b60006012905090565b610bac612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290612fde565b60405180910390fd5b600060036000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dce612633565b610dd860006126b1565b565b610de2612633565b612710600d81905550612710600e81905550565b600d5481565b6000610e29612710610e1b600d54600c54611a1690919063ffffffff16565b611a2c90919063ffffffff16565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610e84612710610e76600e54600c54611a1690919063ffffffff16565b611a2c90919063ffffffff16565b905090565b600e5481565b60606040518060400160405280600481526020017f5253525600000000000000000000000000000000000000000000000000000000815250905090565b610ed4612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3a9061304a565b60405180910390fd5b600060036000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661109a611a0e565b73ffffffffffffffffffffffffffffffffffffffff1614806111105750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110f8611a0e565b73ffffffffffffffffffffffffffffffffffffffff16145b61114f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611146906130dc565b60405180910390fd5b6111c38160016000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277590919063ffffffff16565b60016000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061123d81600c5461277590919063ffffffff16565b600c81905550601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c39190612b11565b60405180910390a350565b60006112e26112db611a0e565b8484611cff565b6001905092915050565b6112f4612633565b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061316e565b60405180910390fd5b601360149054906101000a900460ff16156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc906131da565b60405180910390fd5b60006113e76113e2611a0e565b610d7d565b11611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613246565b60405180910390fd5b6000341161146a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611461906132b2565b60405180910390fd5b600061147c611477611a0e565b610d7d565b9050611490611489611a0e565b3083611a42565b6114bd30601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611a42565b6114cf6114c8611a0e565b3083611cff565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934308460008061151b611a0e565b426040518863ffffffff1660e01b815260040161153d96959493929190613317565b60606040518083038185885af115801561155b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115809190613378565b5050506001601560016101000a81548160ff0219169083151502179055506001601360146101000a81548160ff0219169083151502179055504360148190555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115f1612633565b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6116e1612633565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117479061343d565b60405180910390fd5b611759816126b1565b50565b611764612633565b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec906134a9565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e091906134de565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196b91906134de565b6040518363ffffffff1660e01b815260040161198892919061350b565b6020604051808303816000875af11580156119a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cb91906134de565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60008183611a249190613563565b905092915050565b60008183611a3a91906135d4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa890613677565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790613709565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bfe9190612b11565b60405180910390a3505050565b80471015611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613775565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c74906137c6565b60006040518083038185875af1925050503d8060008114611cb1576040519150601f19603f3d011682016040523d82523d6000602084013e611cb6565b606091505b5050905080611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf19061384d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d65906138df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490613971565b60405180910390fd5b60008111611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790613a03565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ec65750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561232157601360149054906101000a900460ff16611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190613a6f565b60405180910390fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611fc55750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561201b5750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120c857612028610dfc565b82111561206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190613adb565b60405180910390fd5b612072610e57565b8261207c85610d7d565b6120869190613afb565b11156120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613b7b565b60405180910390fd5b5b6121106127106121026009546014546120e19190613afb565b43116120ef576005546120f3565b6007545b85611a1690919063ffffffff16565b611a2c90919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561219b57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15612235576121a8610dfc565b8211156121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e190613adb565b60405180910390fd5b612232612710612224600a546014546122039190613afb565b431161221157600654612215565b6008545b85611a1690919063ffffffff16565b611a2c90919063ffffffff16565b90505b600061224030610d7d565b9050601560009054906101000a900460ff161580156122ac5750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156122c45750601560019054906101000a900460ff165b80156122d657506122d3610936565b81115b80156122f05750600b546014546122ed9190613afb565b43115b1561231f57612305612300610936565b61278b565b6000479050600081111561231d5761231c47612a23565b5b505b505b60008111156124255761237c81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277590919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161241c9190612b11565b60405180910390a35b61247782600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a5290919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061251e6124d08284612a5290919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461277590919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6125c38486612a5290919063ffffffff16565b6040516125d09190612b11565b60405180910390a350505050565b6000838311158290612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d9190612bbc565b60405180910390fd5b5082840390509392505050565b61263b611a0e565b73ffffffffffffffffffffffffffffffffffffffff16612659610e2e565b73ffffffffffffffffffffffffffffffffffffffff16146126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690613be7565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836127839190613afb565b905092915050565b6001601560006101000a81548160ff0219169083151502179055506000810315612a0557601360149054906101000a900460ff1615612a05576000600267ffffffffffffffff8111156127e1576127e0613c07565b5b60405190808252806020026020018201604052801561280f5781602001602082028036833780820191505090505b509050308160008151811061282757612826613c36565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f291906134de565b8160018151811061290657612905613c36565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061296d30601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a42565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016129d1959493929190613d23565b600060405180830381600087803b1580156129eb57600080fd5b505af11580156129ff573d6000803e3d6000fd5b50505050505b6000601560006101000a81548160ff02191690831515021790555050565b612a4f600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611c0b565b50565b60008183612a609190613d7d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a9882612a6d565b9050919050565b612aa881612a8d565b8114612ab357600080fd5b50565b600081359050612ac581612a9f565b92915050565b600060208284031215612ae157612ae0612a68565b5b6000612aef84828501612ab6565b91505092915050565b6000819050919050565b612b0b81612af8565b82525050565b6000602082019050612b266000830184612b02565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b66578082015181840152602081019050612b4b565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b8e82612b2c565b612b988185612b37565b9350612ba8818560208601612b48565b612bb181612b72565b840191505092915050565b60006020820190508181036000830152612bd68184612b83565b905092915050565b612be781612af8565b8114612bf257600080fd5b50565b600081359050612c0481612bde565b92915050565b60008060408385031215612c2157612c20612a68565b5b6000612c2f85828601612ab6565b9250506020612c4085828601612bf5565b9150509250929050565b60008115159050919050565b612c5f81612c4a565b82525050565b6000602082019050612c7a6000830184612c56565b92915050565b612c8981612a8d565b82525050565b6000602082019050612ca46000830184612c80565b92915050565b600080600060608486031215612cc357612cc2612a68565b5b6000612cd186828701612ab6565b9350506020612ce286828701612ab6565b9250506040612cf386828701612bf5565b9150509250925092565b600060ff82169050919050565b612d1381612cfd565b82525050565b6000602082019050612d2e6000830184612d0a565b92915050565b600060208284031215612d4a57612d49612a68565b5b6000612d5884828501612bf5565b91505092915050565b612d6a81612c4a565b8114612d7557600080fd5b50565b600081359050612d8781612d61565b92915050565b60008060408385031215612da457612da3612a68565b5b6000612db285828601612ab6565b9250506020612dc385828601612d78565b9150509250929050565b60008060408385031215612de457612de3612a68565b5b6000612df285828601612ab6565b9250506020612e0385828601612ab6565b9150509250929050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000612e43600e83612b37565b9150612e4e82612e0d565b602082019050919050565b60006020820190508181036000830152612e7281612e36565b9050919050565b7f43616e206e6f7420726573637565206f776e20746f6b656e2100000000000000600082015250565b6000612eaf601983612b37565b9150612eba82612e79565b602082019050919050565b60006020820190508181036000830152612ede81612ea2565b9050919050565b600081519050612ef481612bde565b92915050565b600060208284031215612f1057612f0f612a68565b5b6000612f1e84828501612ee5565b91505092915050565b6000604082019050612f3c6000830185612c80565b612f496020830184612b02565b9392505050565b600081519050612f5f81612d61565b92915050565b600060208284031215612f7b57612f7a612a68565b5b6000612f8984828501612f50565b91505092915050565b7f496e76616c69642062726f6b6572616765206164647265737300000000000000600082015250565b6000612fc8601983612b37565b9150612fd382612f92565b602082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f496e76616c696420726573657276652061646472657373000000000000000000600082015250565b6000613034601783612b37565b915061303f82612ffe565b602082019050919050565b6000602082019050818103600083015261306381613027565b9050919050565b7f4f6e6c7920746865207265736572766520616e642062726f6b6572616765206160008201527f726520616c6c6f77656420746f206d696e7420746f6b656e7300000000000000602082015250565b60006130c6603983612b37565b91506130d18261306a565b604082019050919050565b600060208201905081810360008301526130f5816130b9565b9050919050565b7f5061697220686173206e6f74206265656e20696e697469616c697a656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613158602183612b37565b9150613163826130fc565b604082019050919050565b600060208201905081810360008301526131878161314b565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006131c4601783612b37565b91506131cf8261318e565b602082019050919050565b600060208201905081810360008301526131f3816131b7565b9050919050565b7f4e6f20746f6b656e2062616c616e636500000000000000000000000000000000600082015250565b6000613230601083612b37565b915061323b826131fa565b602082019050919050565b6000602082019050818103600083015261325f81613223565b9050919050565b7f4e6f206574682076616c75650000000000000000000000000000000000000000600082015250565b600061329c600c83612b37565b91506132a782613266565b602082019050919050565b600060208201905081810360008301526132cb8161328f565b9050919050565b6000819050919050565b6000819050919050565b60006133016132fc6132f7846132d2565b6132dc565b612af8565b9050919050565b613311816132e6565b82525050565b600060c08201905061332c6000830189612c80565b6133396020830188612b02565b6133466040830187613308565b6133536060830186613308565b6133606080830185612c80565b61336d60a0830184612b02565b979650505050505050565b60008060006060848603121561339157613390612a68565b5b600061339f86828701612ee5565b93505060206133b086828701612ee5565b92505060406133c186828701612ee5565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613427602683612b37565b9150613432826133cb565b604082019050919050565b600060208201905081810360008301526134568161341a565b9050919050565b7f5061697220697320616c726561647920696e697469616c697a65640000000000600082015250565b6000613493601b83612b37565b915061349e8261345d565b602082019050919050565b600060208201905081810360008301526134c281613486565b9050919050565b6000815190506134d881612a9f565b92915050565b6000602082840312156134f4576134f3612a68565b5b6000613502848285016134c9565b91505092915050565b60006040820190506135206000830185612c80565b61352d6020830184612c80565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061356e82612af8565b915061357983612af8565b925082820261358781612af8565b9150828204841483151761359e5761359d613534565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135df82612af8565b91506135ea83612af8565b9250826135fa576135f96135a5565b5b828204905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613661602483612b37565b915061366c82613605565b604082019050919050565b6000602082019050818103600083015261369081613654565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136f3602283612b37565b91506136fe82613697565b604082019050919050565b60006020820190508181036000830152613722816136e6565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061375f601d83612b37565b915061376a82613729565b602082019050919050565b6000602082019050818103600083015261378e81613752565b9050919050565b600081905092915050565b50565b60006137b0600083613795565b91506137bb826137a0565b600082019050919050565b60006137d1826137a3565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613837603a83612b37565b9150613842826137db565b604082019050919050565b600060208201905081810360008301526138668161382a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006138c9602583612b37565b91506138d48261386d565b604082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061395b602383612b37565b9150613966826138ff565b604082019050919050565b6000602082019050818103600083015261398a8161394e565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006139ed602983612b37565b91506139f882613991565b604082019050919050565b60006020820190508181036000830152613a1c816139e0565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b6000613a59601a83612b37565b9150613a6482613a23565b602082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b6000613ac5601983612b37565b9150613ad082613a8f565b602082019050919050565b60006020820190508181036000830152613af481613ab8565b9050919050565b6000613b0682612af8565b9150613b1183612af8565b9250828201905080821115613b2957613b28613534565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000613b65601a83612b37565b9150613b7082613b2f565b602082019050919050565b60006020820190508181036000830152613b9481613b58565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bd1602083612b37565b9150613bdc82613b9b565b602082019050919050565b60006020820190508181036000830152613c0081613bc4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c9a81612a8d565b82525050565b6000613cac8383613c91565b60208301905092915050565b6000602082019050919050565b6000613cd082613c65565b613cda8185613c70565b9350613ce583613c81565b8060005b83811015613d16578151613cfd8882613ca0565b9750613d0883613cb8565b925050600181019050613ce9565b5085935050505092915050565b600060a082019050613d386000830188612b02565b613d456020830187613308565b8181036040830152613d578186613cc5565b9050613d666060830185612c80565b613d736080830184612b02565b9695505050505050565b6000613d8882612af8565b9150613d9383612af8565b9250828203905081811115613dab57613daa613534565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a9ca6edb9b2956eebf1c6efd25c8a9f9abdc2660e07818eb3d5e7af4b109056964736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008b78bcb2e5afc7c421a389b6e40c6bfccc5f95d1
-----Decoded View---------------
Arg [0] : taxWallet (address): 0x8b78BCB2E5afC7C421a389B6e40C6BFCcc5F95D1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b78bcb2e5afc7c421a389b6e40c6bfccc5f95d1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.