Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 IRS
Holders
58
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,346,717.606275281516791502 IRSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InternetRefundServices
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-05 */ // SPDX-License-Identifier: UNLICENSED // https://t.me/IRS_COIN // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { 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); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // 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; } } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } contract InternetRefundServices is IERC20, Ownable { using SafeMath for uint256; uint256 private _totalSupply; string private _name = "Internet Refund Services"; string private _symbol = "IRS"; uint8 private _decimals = 18; uint256 public maxFeeSwap; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) public _feeExcluded; uint256 public _feeRewardPct; address public _feeRewardAddress; address public _router; mapping(address => bool) public isBlackListed; uint256 public startBlock; address public firstPair; bool inProcessFees; bool swapFeesEnabled = true; constructor(uint256 feeRewardPct, address feeRewardAddress, address uniRouter, address uniPairFactory) { require(uniRouter != address(0), "uniRouter can't be the 0 address"); require(uniPairFactory != address(0), "uniPairFactory can't be the 0 address"); uint256 mintAmount = 1000000000 * 10**decimals(); _mint(msg.sender, mintAmount); maxFeeSwap = mintAmount.div(200); setFeeExcluded(_msgSender(), true); setFeeExcluded(address(this), true); setFees(feeRewardPct, feeRewardAddress); _router = uniRouter; address weth = IUniswapV2Router02(uniRouter).WETH(); firstPair = IUniswapV2Factory(uniPairFactory).createPair(weth, address(this)); } function setRouter(address r) public onlyOwner { _router = r; } function setFees(uint256 feeRewardPct, address feeRewardAddress) public onlyOwner { require(feeRewardPct <= 6000, "Fees cannot be more than 60%"); require( feeRewardAddress != address(0), "Fee reward address must not be zero address" ); _feeRewardPct = feeRewardPct; _feeRewardAddress = feeRewardAddress; } function setFeeExcluded(address a, bool excluded) public onlyOwner { _feeExcluded[a] = excluded; } function setSwapFeesEnabled(bool newState) external onlyOwner { swapFeesEnabled = newState; } function setMaxFeeSwap(uint256 newMaxFeeSwap) external onlyOwner { uint256 maxLimit = _totalSupply.div(1000); //shouldn't be more than 10% require(newMaxFeeSwap <= maxLimit, "Max swap can't go over limit"); maxFeeSwap = newMaxFeeSwap; } modifier lockTheSwap() { inProcessFees = true; _; inProcessFees = false; } function processFees() internal lockTheSwap { uint256 feeRewardAmount = _balances[address(this)]; if(feeRewardAmount > 0) { if(feeRewardAmount > maxFeeSwap) { feeRewardAmount = maxFeeSwap; } IUniswapV2Router02 r = IUniswapV2Router02(_router); address[] memory path = new address[](2); path[0] = address(this); path[1] = r.WETH(); _approve(address(this), _router, feeRewardAmount); r.swapExactTokensForETHSupportingFeeOnTransferTokens( feeRewardAmount, 0, path, _feeRewardAddress, block.timestamp ); } } function _transfer( address sender, address recipient, uint256 amount ) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!isBlackListed[sender], "Sender is blacklisted"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); if ( startBlock > 0 && block.number < startBlock + 5 && sender == firstPair ) { isBlackListed[recipient] = true; } else if ( startBlock == 0 && sender != firstPair && recipient == firstPair && amount > 0 ) { startBlock = block.number; } if (!_feeExcluded[sender]) { uint256 feeRewardAmount = 0; if (_feeRewardPct > 0 && _feeRewardAddress != address(0)) { feeRewardAmount = amount.mul(_feeRewardPct).div(10000); if (_router != address(0)) { _balances[address(this)] = _balances[address(this)].add(feeRewardAmount); emit Transfer(sender, address(this), feeRewardAmount); if (msg.sender != firstPair && !inProcessFees && swapFeesEnabled) { processFees(); } } else { _balances[_feeRewardAddress] = _balances[_feeRewardAddress] .add(feeRewardAmount); emit Transfer(sender, _feeRewardAddress, feeRewardAmount); } } amount = amount.sub(feeRewardAmount); } _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { 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 _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function addBlackList(address _evilUser) public onlyOwner { isBlackListed[_evilUser] = true; } function removeBlackList(address _clearedUser) public onlyOwner { isBlackListed[_clearedUser] = false; } function withdrawEther(address payable to, uint256 amount) public onlyOwner { (bool sent,) = to.call{value: amount}(""); require(sent, "Failed to send Ether"); } function rescueTokens(address token, address to, uint256 amount) public onlyOwner { IERC20 wToken = IERC20(token); wToken.transfer(to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"},{"internalType":"address","name":"uniRouter","type":"address"},{"internalType":"address","name":"uniPairFactory","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":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":[{"internalType":"address","name":"","type":"address"}],"name":"_feeExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardPct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFeeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setFeeExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxFeeSwap","type":"uint256"}],"name":"setMaxFeeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"r","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSwapFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601881526020017f496e7465726e657420526566756e642053657276696365730000000000000000815250600290816200004a919062000bb0565b506040518060400160405280600381526020017f49525300000000000000000000000000000000000000000000000000000000008152506003908162000091919062000bb0565b506012600460006101000a81548160ff021916908360ff1602179055506001600e60156101000a81548160ff021916908315150217905550348015620000d657600080fd5b5060405162004378380380620043788339818101604052810190620000fc919062000d32565b6200011c620001106200043360201b60201c565b6200043b60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200018e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001859062000e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000200576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f79062000e9d565b60405180910390fd5b600062000212620004ff60201b60201c565b600a6200022091906200104f565b633b9aca00620002319190620010a0565b90506200024533826200051660201b60201c565b6200026060c882620006c660201b620010921790919060201c565b600581905550620002886200027a6200043360201b60201c565b6001620006de60201b60201c565b6200029b306001620006de60201b60201c565b620002ad85856200074960201b60201c565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003629190620010eb565b90508273ffffffffffffffffffffffffffffffffffffffff1663c9c6539682306040518363ffffffff1660e01b8152600401620003a19291906200112e565b6020604051808303816000875af1158015620003c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e79190620010eb565b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505062001419565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600460009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000588576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200057f90620011ab565b60405180910390fd5b6200059c600083836200085f60201b60201c565b620005b8816001546200086460201b620010a81790919060201c565b6001819055506200061781600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200086460201b620010a81790919060201c565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006ba9190620011de565b60405180910390a35050565b60008183620006d691906200122a565b905092915050565b620006ee6200087c60201b60201c565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620007596200087c60201b60201c565b611770821115620007a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079890620012b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000813576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080a906200134a565b60405180910390fd5b8160098190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b505050565b600081836200087491906200136c565b905092915050565b6200088c6200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b26200090d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200090b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090290620013f7565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009b857607f821691505b602082108103620009ce57620009cd62000970565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009f9565b62000a448683620009f9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a9162000a8b62000a858462000a5c565b62000a66565b62000a5c565b9050919050565b6000819050919050565b62000aad8362000a70565b62000ac562000abc8262000a98565b84845462000a06565b825550505050565b600090565b62000adc62000acd565b62000ae981848462000aa2565b505050565b5b8181101562000b115762000b0560008262000ad2565b60018101905062000aef565b5050565b601f82111562000b605762000b2a81620009d4565b62000b3584620009e9565b8101602085101562000b45578190505b62000b5d62000b5485620009e9565b83018262000aee565b50505b505050565b600082821c905092915050565b600062000b856000198460080262000b65565b1980831691505092915050565b600062000ba0838362000b72565b9150826002028217905092915050565b62000bbb8262000936565b67ffffffffffffffff81111562000bd75762000bd662000941565b5b62000be382546200099f565b62000bf082828562000b15565b600060209050601f83116001811462000c28576000841562000c13578287015190505b62000c1f858262000b92565b86555062000c8f565b601f19841662000c3886620009d4565b60005b8281101562000c625784890151825560018201915060208501945060208101905062000c3b565b8683101562000c82578489015162000c7e601f89168262000b72565b8355505b6001600288020188555050505b505050505050565b600080fd5b62000ca78162000a5c565b811462000cb357600080fd5b50565b60008151905062000cc78162000c9c565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cfa8262000ccd565b9050919050565b62000d0c8162000ced565b811462000d1857600080fd5b50565b60008151905062000d2c8162000d01565b92915050565b6000806000806080858703121562000d4f5762000d4e62000c97565b5b600062000d5f8782880162000cb6565b945050602062000d728782880162000d1b565b935050604062000d858782880162000d1b565b925050606062000d988782880162000d1b565b91505092959194509250565b600082825260208201905092915050565b7f756e69526f757465722063616e27742062652074686520302061646472657373600082015250565b600062000ded60208362000da4565b915062000dfa8262000db5565b602082019050919050565b6000602082019050818103600083015262000e208162000dde565b9050919050565b7f756e6950616972466163746f72792063616e277420626520746865203020616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000e8560258362000da4565b915062000e928262000e27565b604082019050919050565b6000602082019050818103600083015262000eb88162000e76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000f4d5780860481111562000f255762000f2462000ebf565b5b600185161562000f355780820291505b808102905062000f458562000eee565b945062000f05565b94509492505050565b60008262000f6857600190506200103b565b8162000f7857600090506200103b565b816001811462000f91576002811462000f9c5762000fd2565b60019150506200103b565b60ff84111562000fb15762000fb062000ebf565b5b8360020a91508482111562000fcb5762000fca62000ebf565b5b506200103b565b5060208310610133831016604e8410600b84101617156200100c5782820a90508381111562001006576200100562000ebf565b5b6200103b565b6200101b848484600162000efb565b9250905081840481111562001035576200103462000ebf565b5b81810290505b9392505050565b600060ff82169050919050565b60006200105c8262000a5c565b9150620010698362001042565b9250620010987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f56565b905092915050565b6000620010ad8262000a5c565b9150620010ba8362000a5c565b9250828202620010ca8162000a5c565b91508282048414831517620010e457620010e362000ebf565b5b5092915050565b60006020828403121562001104576200110362000c97565b5b6000620011148482850162000d1b565b91505092915050565b620011288162000ced565b82525050565b60006040820190506200114560008301856200111d565b6200115460208301846200111d565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001193601f8362000da4565b9150620011a0826200115b565b602082019050919050565b60006020820190508181036000830152620011c68162001184565b9050919050565b620011d88162000a5c565b82525050565b6000602082019050620011f56000830184620011cd565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012378262000a5c565b9150620012448362000a5c565b925082620012575762001256620011fb565b5b828204905092915050565b7f466565732063616e6e6f74206265206d6f7265207468616e2036302500000000600082015250565b60006200129a601c8362000da4565b9150620012a78262001262565b602082019050919050565b60006020820190508181036000830152620012cd816200128b565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600062001332602b8362000da4565b91506200133f82620012d4565b604082019050919050565b60006020820190508181036000830152620013658162001323565b9050919050565b6000620013798262000a5c565b9150620013868362000a5c565b9250828201905080821115620013a157620013a062000ebf565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013df60208362000da4565b9150620013ec82620013a7565b602082019050919050565b600060208201905081810360008301526200141281620013d0565b9050919050565b612f4f80620014296000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806371088c6d1161010f578063cea9d26f116100a2578063e4997dc511610071578063e4997dc514610592578063edae876f146105ae578063f2fde38b146105cc578063ffc877d8146105e8576101e5565b8063cea9d26f146104fa578063dd62ed3e14610516578063df1e755314610546578063e47d606014610562576101e5565b8063a457c2d7116100de578063a457c2d714610462578063a9059cbb14610492578063c0d78655146104c2578063c9f1f47f146104de576101e5565b806371088c6d146103ec578063715018a61461041c5780638da5cb5b1461042657806395d89b4114610444576101e5565b80632ecfeb2c1161018757806348cd4cb11161015657806348cd4cb114610364578063522f681514610382578063688a09421461039e57806370a08231146103bc576101e5565b80632ecfeb2c146102de578063313ce567146102fa57806339509351146103185780633d162cdc14610348576101e5565b806318160ddd116101c357806318160ddd14610254578063199848cd1461027257806323b872dd146102905780632e3f418c146102c0576101e5565b806306fdde03146101ea578063095ea7b3146102085780630ecb93c014610238575b600080fd5b6101f2610606565b6040516101ff91906120d7565b60405180910390f35b610222600480360381019061021d9190612192565b610698565b60405161022f91906121ed565b60405180910390f35b610252600480360381019061024d9190612208565b6106b6565b005b61025c610719565b6040516102699190612244565b60405180910390f35b61027a610723565b604051610287919061226e565b60405180910390f35b6102aa60048036038101906102a59190612289565b610749565b6040516102b791906121ed565b60405180910390f35b6102c8610822565b6040516102d59190612244565b60405180910390f35b6102f860048036038101906102f39190612308565b610828565b005b61030261084d565b60405161030f9190612351565b60405180910390f35b610332600480360381019061032d9190612192565b610864565b60405161033f91906121ed565b60405180910390f35b610362600480360381019061035d919061236c565b610917565b005b61036c610a1f565b6040516103799190612244565b60405180910390f35b61039c600480360381019061039791906123ea565b610a25565b005b6103a6610ade565b6040516103b39190612244565b60405180910390f35b6103d660048036038101906103d19190612208565b610ae4565b6040516103e39190612244565b60405180910390f35b61040660048036038101906104019190612208565b610b2d565b60405161041391906121ed565b60405180910390f35b610424610b4d565b005b61042e610b61565b60405161043b919061226e565b60405180910390f35b61044c610b8a565b60405161045991906120d7565b60405180910390f35b61047c60048036038101906104779190612192565b610c1c565b60405161048991906121ed565b60405180910390f35b6104ac60048036038101906104a79190612192565b610ce9565b6040516104b991906121ed565b60405180910390f35b6104dc60048036038101906104d79190612208565b610d07565b005b6104f860048036038101906104f3919061242a565b610d53565b005b610514600480360381019061050f9190612289565b610db6565b005b610530600480360381019061052b919061246a565b610e48565b60405161053d9190612244565b60405180910390f35b610560600480360381019061055b91906124aa565b610ecf565b005b61057c60048036038101906105779190612208565b610f40565b60405161058991906121ed565b60405180910390f35b6105ac60048036038101906105a79190612208565b610f60565b005b6105b6610fc3565b6040516105c3919061226e565b60405180910390f35b6105e660048036038101906105e19190612208565b610fe9565b005b6105f061106c565b6040516105fd919061226e565b60405180910390f35b60606002805461061590612506565b80601f016020809104026020016040519081016040528092919081815260200182805461064190612506565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b60006106ac6106a56110be565b84846110c6565b6001905092915050565b6106be61128f565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600154905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061075684848461130d565b610817846107626110be565b61081285604051806060016040528060288152602001612ecd60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107c86110be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c209092919063ffffffff16565b6110c6565b600190509392505050565b60055481565b61083061128f565b80600e60156101000a81548160ff02191690831515021790555050565b6000600460009054906101000a900460ff16905090565b600061090d6108716110be565b8461090885600760006108826110be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b6110c6565b6001905092915050565b61091f61128f565b611770821115610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90612583565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612615565b60405180910390fd5b8160098190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600d5481565b610a2d61128f565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610a5390612666565b60006040518083038185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906126c7565b60405180910390fd5b505050565b60095481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b610b5561128f565b610b5f6000611c75565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b9990612506565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590612506565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610cdf610c296110be565b84610cda85604051806060016040528060258152602001612ef56025913960076000610c536110be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c209092919063ffffffff16565b6110c6565b6001905092915050565b6000610cfd610cf66110be565b848461130d565b6001905092915050565b610d0f61128f565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d5b61128f565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610dbe61128f565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610dfe9291906126e7565b6020604051808303816000875af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e419190612725565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ed761128f565b6000610ef06103e860015461109290919063ffffffff16565b905080821115610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061279e565b60405180910390fd5b816005819055505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610f6861128f565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ff161128f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612830565b60405180910390fd5b61106981611c75565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081836110a091906128ae565b905092915050565b600081836110b691906128df565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90612985565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612a17565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112829190612244565b60405180910390a3505050565b6112976110be565b73ffffffffffffffffffffffffffffffffffffffff166112b5610b61565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290612a83565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390612b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290612ba7565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90612c13565b60405180910390fd5b611483838383611d39565b6114ef81604051806060016040528060268152602001612ea760269139600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c209092919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600d5411801561155157506005600d5461154e91906128df565b43105b80156115aa5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561160c576001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116df565b6000600d5414801561166c5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116c55750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116d15750600081115b156116de5743600d819055505b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b21576000806009541180156117925750600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b0a576117c06127106117b260095485611d3e90919063ffffffff16565b61109290919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a85761186a81600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161190a9190612244565b60405180910390a3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561197d5750600e60149054906101000a900460ff16155b80156119955750600e60159054906101000a900460ff165b156119a3576119a2611d54565b5b611b09565b611a1c8160066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b60066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b009190612244565b60405180910390a35b5b611b1d818361203190919063ffffffff16565b9150505b611b7381600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c139190612244565b60405180910390a3505050565b6000838311158290611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f91906120d7565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b60008183611d4c9190612c33565b905092915050565b6001600e60146101000a81548160ff0219169083151502179055506000600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561201357600554811115611dcc5760055490505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600267ffffffffffffffff811115611e1057611e0f612c75565b5b604051908082528060200260200182016040528015611e3e5781602001602082028036833780820191505090505b5090503081600081518110611e5657611e55612ca4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611edb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eff9190612ce8565b81600181518110611f1357611f12612ca4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7a30600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856110c6565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac94784600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611fde959493929190612e18565b600060405180830381600087803b158015611ff857600080fd5b505af115801561200c573d6000803e3d6000fd5b5050505050505b506000600e60146101000a81548160ff021916908315150217905550565b6000818361203f9190612e72565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612081578082015181840152602081019050612066565b60008484015250505050565b6000601f19601f8301169050919050565b60006120a982612047565b6120b38185612052565b93506120c3818560208601612063565b6120cc8161208d565b840191505092915050565b600060208201905081810360008301526120f1818461209e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612129826120fe565b9050919050565b6121398161211e565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b6000819050919050565b61216f8161215c565b811461217a57600080fd5b50565b60008135905061218c81612166565b92915050565b600080604083850312156121a9576121a86120f9565b5b60006121b785828601612147565b92505060206121c88582860161217d565b9150509250929050565b60008115159050919050565b6121e7816121d2565b82525050565b600060208201905061220260008301846121de565b92915050565b60006020828403121561221e5761221d6120f9565b5b600061222c84828501612147565b91505092915050565b61223e8161215c565b82525050565b60006020820190506122596000830184612235565b92915050565b6122688161211e565b82525050565b6000602082019050612283600083018461225f565b92915050565b6000806000606084860312156122a2576122a16120f9565b5b60006122b086828701612147565b93505060206122c186828701612147565b92505060406122d28682870161217d565b9150509250925092565b6122e5816121d2565b81146122f057600080fd5b50565b600081359050612302816122dc565b92915050565b60006020828403121561231e5761231d6120f9565b5b600061232c848285016122f3565b91505092915050565b600060ff82169050919050565b61234b81612335565b82525050565b60006020820190506123666000830184612342565b92915050565b60008060408385031215612383576123826120f9565b5b60006123918582860161217d565b92505060206123a285828601612147565b9150509250929050565b60006123b7826120fe565b9050919050565b6123c7816123ac565b81146123d257600080fd5b50565b6000813590506123e4816123be565b92915050565b60008060408385031215612401576124006120f9565b5b600061240f858286016123d5565b92505060206124208582860161217d565b9150509250929050565b60008060408385031215612441576124406120f9565b5b600061244f85828601612147565b9250506020612460858286016122f3565b9150509250929050565b60008060408385031215612481576124806120f9565b5b600061248f85828601612147565b92505060206124a085828601612147565b9150509250929050565b6000602082840312156124c0576124bf6120f9565b5b60006124ce8482850161217d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251e57607f821691505b602082108103612531576125306124d7565b5b50919050565b7f466565732063616e6e6f74206265206d6f7265207468616e2036302500000000600082015250565b600061256d601c83612052565b915061257882612537565b602082019050919050565b6000602082019050818103600083015261259c81612560565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006125ff602b83612052565b915061260a826125a3565b604082019050919050565b6000602082019050818103600083015261262e816125f2565b9050919050565b600081905092915050565b50565b6000612650600083612635565b915061265b82612640565b600082019050919050565b600061267182612643565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006126b1601483612052565b91506126bc8261267b565b602082019050919050565b600060208201905081810360008301526126e0816126a4565b9050919050565b60006040820190506126fc600083018561225f565b6127096020830184612235565b9392505050565b60008151905061271f816122dc565b92915050565b60006020828403121561273b5761273a6120f9565b5b600061274984828501612710565b91505092915050565b7f4d617820737761702063616e277420676f206f766572206c696d697400000000600082015250565b6000612788601c83612052565b915061279382612752565b602082019050919050565b600060208201905081810360008301526127b78161277b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061281a602683612052565b9150612825826127be565b604082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128b98261215c565b91506128c48361215c565b9250826128d4576128d3612850565b5b828204905092915050565b60006128ea8261215c565b91506128f58361215c565b925082820190508082111561290d5761290c61287f565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061296f602483612052565b915061297a82612913565b604082019050919050565b6000602082019050818103600083015261299e81612962565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a01602283612052565b9150612a0c826129a5565b604082019050919050565b60006020820190508181036000830152612a30816129f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a6d602083612052565b9150612a7882612a37565b602082019050919050565b60006020820190508181036000830152612a9c81612a60565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612aff602583612052565b9150612b0a82612aa3565b604082019050919050565b60006020820190508181036000830152612b2e81612af2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b91602383612052565b9150612b9c82612b35565b604082019050919050565b60006020820190508181036000830152612bc081612b84565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000612bfd601583612052565b9150612c0882612bc7565b602082019050919050565b60006020820190508181036000830152612c2c81612bf0565b9050919050565b6000612c3e8261215c565b9150612c498361215c565b9250828202612c578161215c565b91508282048414831517612c6e57612c6d61287f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ce281612130565b92915050565b600060208284031215612cfe57612cfd6120f9565b5b6000612d0c84828501612cd3565b91505092915050565b6000819050919050565b6000819050919050565b6000612d44612d3f612d3a84612d15565b612d1f565b61215c565b9050919050565b612d5481612d29565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d8f8161211e565b82525050565b6000612da18383612d86565b60208301905092915050565b6000602082019050919050565b6000612dc582612d5a565b612dcf8185612d65565b9350612dda83612d76565b8060005b83811015612e0b578151612df28882612d95565b9750612dfd83612dad565b925050600181019050612dde565b5085935050505092915050565b600060a082019050612e2d6000830188612235565b612e3a6020830187612d4b565b8181036040830152612e4c8186612dba565b9050612e5b606083018561225f565b612e686080830184612235565b9695505050505050565b6000612e7d8261215c565b9150612e888361215c565b9250828203905081811115612ea057612e9f61287f565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220af28887859f7f0ccdb804c6899a8018c73d5c69372b734ddfdbfeb97c7f67abe64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000017700000000000000000000000001a84f1369d15680bc294cb0afddb28762d1517370000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806371088c6d1161010f578063cea9d26f116100a2578063e4997dc511610071578063e4997dc514610592578063edae876f146105ae578063f2fde38b146105cc578063ffc877d8146105e8576101e5565b8063cea9d26f146104fa578063dd62ed3e14610516578063df1e755314610546578063e47d606014610562576101e5565b8063a457c2d7116100de578063a457c2d714610462578063a9059cbb14610492578063c0d78655146104c2578063c9f1f47f146104de576101e5565b806371088c6d146103ec578063715018a61461041c5780638da5cb5b1461042657806395d89b4114610444576101e5565b80632ecfeb2c1161018757806348cd4cb11161015657806348cd4cb114610364578063522f681514610382578063688a09421461039e57806370a08231146103bc576101e5565b80632ecfeb2c146102de578063313ce567146102fa57806339509351146103185780633d162cdc14610348576101e5565b806318160ddd116101c357806318160ddd14610254578063199848cd1461027257806323b872dd146102905780632e3f418c146102c0576101e5565b806306fdde03146101ea578063095ea7b3146102085780630ecb93c014610238575b600080fd5b6101f2610606565b6040516101ff91906120d7565b60405180910390f35b610222600480360381019061021d9190612192565b610698565b60405161022f91906121ed565b60405180910390f35b610252600480360381019061024d9190612208565b6106b6565b005b61025c610719565b6040516102699190612244565b60405180910390f35b61027a610723565b604051610287919061226e565b60405180910390f35b6102aa60048036038101906102a59190612289565b610749565b6040516102b791906121ed565b60405180910390f35b6102c8610822565b6040516102d59190612244565b60405180910390f35b6102f860048036038101906102f39190612308565b610828565b005b61030261084d565b60405161030f9190612351565b60405180910390f35b610332600480360381019061032d9190612192565b610864565b60405161033f91906121ed565b60405180910390f35b610362600480360381019061035d919061236c565b610917565b005b61036c610a1f565b6040516103799190612244565b60405180910390f35b61039c600480360381019061039791906123ea565b610a25565b005b6103a6610ade565b6040516103b39190612244565b60405180910390f35b6103d660048036038101906103d19190612208565b610ae4565b6040516103e39190612244565b60405180910390f35b61040660048036038101906104019190612208565b610b2d565b60405161041391906121ed565b60405180910390f35b610424610b4d565b005b61042e610b61565b60405161043b919061226e565b60405180910390f35b61044c610b8a565b60405161045991906120d7565b60405180910390f35b61047c60048036038101906104779190612192565b610c1c565b60405161048991906121ed565b60405180910390f35b6104ac60048036038101906104a79190612192565b610ce9565b6040516104b991906121ed565b60405180910390f35b6104dc60048036038101906104d79190612208565b610d07565b005b6104f860048036038101906104f3919061242a565b610d53565b005b610514600480360381019061050f9190612289565b610db6565b005b610530600480360381019061052b919061246a565b610e48565b60405161053d9190612244565b60405180910390f35b610560600480360381019061055b91906124aa565b610ecf565b005b61057c60048036038101906105779190612208565b610f40565b60405161058991906121ed565b60405180910390f35b6105ac60048036038101906105a79190612208565b610f60565b005b6105b6610fc3565b6040516105c3919061226e565b60405180910390f35b6105e660048036038101906105e19190612208565b610fe9565b005b6105f061106c565b6040516105fd919061226e565b60405180910390f35b60606002805461061590612506565b80601f016020809104026020016040519081016040528092919081815260200182805461064190612506565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b60006106ac6106a56110be565b84846110c6565b6001905092915050565b6106be61128f565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600154905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061075684848461130d565b610817846107626110be565b61081285604051806060016040528060288152602001612ecd60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107c86110be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c209092919063ffffffff16565b6110c6565b600190509392505050565b60055481565b61083061128f565b80600e60156101000a81548160ff02191690831515021790555050565b6000600460009054906101000a900460ff16905090565b600061090d6108716110be565b8461090885600760006108826110be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b6110c6565b6001905092915050565b61091f61128f565b611770821115610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90612583565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612615565b60405180910390fd5b8160098190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600d5481565b610a2d61128f565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610a5390612666565b60006040518083038185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906126c7565b60405180910390fd5b505050565b60095481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b610b5561128f565b610b5f6000611c75565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b9990612506565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590612506565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610cdf610c296110be565b84610cda85604051806060016040528060258152602001612ef56025913960076000610c536110be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c209092919063ffffffff16565b6110c6565b6001905092915050565b6000610cfd610cf66110be565b848461130d565b6001905092915050565b610d0f61128f565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d5b61128f565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610dbe61128f565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610dfe9291906126e7565b6020604051808303816000875af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e419190612725565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ed761128f565b6000610ef06103e860015461109290919063ffffffff16565b905080821115610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061279e565b60405180910390fd5b816005819055505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610f6861128f565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ff161128f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612830565b60405180910390fd5b61106981611c75565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081836110a091906128ae565b905092915050565b600081836110b691906128df565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90612985565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612a17565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112829190612244565b60405180910390a3505050565b6112976110be565b73ffffffffffffffffffffffffffffffffffffffff166112b5610b61565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290612a83565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390612b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290612ba7565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90612c13565b60405180910390fd5b611483838383611d39565b6114ef81604051806060016040528060268152602001612ea760269139600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c209092919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600d5411801561155157506005600d5461154e91906128df565b43105b80156115aa5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561160c576001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116df565b6000600d5414801561166c5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116c55750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116d15750600081115b156116de5743600d819055505b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b21576000806009541180156117925750600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b0a576117c06127106117b260095485611d3e90919063ffffffff16565b61109290919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a85761186a81600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161190a9190612244565b60405180910390a3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561197d5750600e60149054906101000a900460ff16155b80156119955750600e60159054906101000a900460ff165b156119a3576119a2611d54565b5b611b09565b611a1c8160066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b60066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b009190612244565b60405180910390a35b5b611b1d818361203190919063ffffffff16565b9150505b611b7381600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a890919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c139190612244565b60405180910390a3505050565b6000838311158290611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f91906120d7565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b60008183611d4c9190612c33565b905092915050565b6001600e60146101000a81548160ff0219169083151502179055506000600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561201357600554811115611dcc5760055490505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600267ffffffffffffffff811115611e1057611e0f612c75565b5b604051908082528060200260200182016040528015611e3e5781602001602082028036833780820191505090505b5090503081600081518110611e5657611e55612ca4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611edb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eff9190612ce8565b81600181518110611f1357611f12612ca4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7a30600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856110c6565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac94784600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611fde959493929190612e18565b600060405180830381600087803b158015611ff857600080fd5b505af115801561200c573d6000803e3d6000fd5b5050505050505b506000600e60146101000a81548160ff021916908315150217905550565b6000818361203f9190612e72565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612081578082015181840152602081019050612066565b60008484015250505050565b6000601f19601f8301169050919050565b60006120a982612047565b6120b38185612052565b93506120c3818560208601612063565b6120cc8161208d565b840191505092915050565b600060208201905081810360008301526120f1818461209e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612129826120fe565b9050919050565b6121398161211e565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b6000819050919050565b61216f8161215c565b811461217a57600080fd5b50565b60008135905061218c81612166565b92915050565b600080604083850312156121a9576121a86120f9565b5b60006121b785828601612147565b92505060206121c88582860161217d565b9150509250929050565b60008115159050919050565b6121e7816121d2565b82525050565b600060208201905061220260008301846121de565b92915050565b60006020828403121561221e5761221d6120f9565b5b600061222c84828501612147565b91505092915050565b61223e8161215c565b82525050565b60006020820190506122596000830184612235565b92915050565b6122688161211e565b82525050565b6000602082019050612283600083018461225f565b92915050565b6000806000606084860312156122a2576122a16120f9565b5b60006122b086828701612147565b93505060206122c186828701612147565b92505060406122d28682870161217d565b9150509250925092565b6122e5816121d2565b81146122f057600080fd5b50565b600081359050612302816122dc565b92915050565b60006020828403121561231e5761231d6120f9565b5b600061232c848285016122f3565b91505092915050565b600060ff82169050919050565b61234b81612335565b82525050565b60006020820190506123666000830184612342565b92915050565b60008060408385031215612383576123826120f9565b5b60006123918582860161217d565b92505060206123a285828601612147565b9150509250929050565b60006123b7826120fe565b9050919050565b6123c7816123ac565b81146123d257600080fd5b50565b6000813590506123e4816123be565b92915050565b60008060408385031215612401576124006120f9565b5b600061240f858286016123d5565b92505060206124208582860161217d565b9150509250929050565b60008060408385031215612441576124406120f9565b5b600061244f85828601612147565b9250506020612460858286016122f3565b9150509250929050565b60008060408385031215612481576124806120f9565b5b600061248f85828601612147565b92505060206124a085828601612147565b9150509250929050565b6000602082840312156124c0576124bf6120f9565b5b60006124ce8482850161217d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251e57607f821691505b602082108103612531576125306124d7565b5b50919050565b7f466565732063616e6e6f74206265206d6f7265207468616e2036302500000000600082015250565b600061256d601c83612052565b915061257882612537565b602082019050919050565b6000602082019050818103600083015261259c81612560565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006125ff602b83612052565b915061260a826125a3565b604082019050919050565b6000602082019050818103600083015261262e816125f2565b9050919050565b600081905092915050565b50565b6000612650600083612635565b915061265b82612640565b600082019050919050565b600061267182612643565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006126b1601483612052565b91506126bc8261267b565b602082019050919050565b600060208201905081810360008301526126e0816126a4565b9050919050565b60006040820190506126fc600083018561225f565b6127096020830184612235565b9392505050565b60008151905061271f816122dc565b92915050565b60006020828403121561273b5761273a6120f9565b5b600061274984828501612710565b91505092915050565b7f4d617820737761702063616e277420676f206f766572206c696d697400000000600082015250565b6000612788601c83612052565b915061279382612752565b602082019050919050565b600060208201905081810360008301526127b78161277b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061281a602683612052565b9150612825826127be565b604082019050919050565b600060208201905081810360008301526128498161280d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128b98261215c565b91506128c48361215c565b9250826128d4576128d3612850565b5b828204905092915050565b60006128ea8261215c565b91506128f58361215c565b925082820190508082111561290d5761290c61287f565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061296f602483612052565b915061297a82612913565b604082019050919050565b6000602082019050818103600083015261299e81612962565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a01602283612052565b9150612a0c826129a5565b604082019050919050565b60006020820190508181036000830152612a30816129f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a6d602083612052565b9150612a7882612a37565b602082019050919050565b60006020820190508181036000830152612a9c81612a60565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612aff602583612052565b9150612b0a82612aa3565b604082019050919050565b60006020820190508181036000830152612b2e81612af2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b91602383612052565b9150612b9c82612b35565b604082019050919050565b60006020820190508181036000830152612bc081612b84565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000612bfd601583612052565b9150612c0882612bc7565b602082019050919050565b60006020820190508181036000830152612c2c81612bf0565b9050919050565b6000612c3e8261215c565b9150612c498361215c565b9250828202612c578161215c565b91508282048414831517612c6e57612c6d61287f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ce281612130565b92915050565b600060208284031215612cfe57612cfd6120f9565b5b6000612d0c84828501612cd3565b91505092915050565b6000819050919050565b6000819050919050565b6000612d44612d3f612d3a84612d15565b612d1f565b61215c565b9050919050565b612d5481612d29565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d8f8161211e565b82525050565b6000612da18383612d86565b60208301905092915050565b6000602082019050919050565b6000612dc582612d5a565b612dcf8185612d65565b9350612dda83612d76565b8060005b83811015612e0b578151612df28882612d95565b9750612dfd83612dad565b925050600181019050612dde565b5085935050505092915050565b600060a082019050612e2d6000830188612235565b612e3a6020830187612d4b565b8181036040830152612e4c8186612dba565b9050612e5b606083018561225f565b612e686080830184612235565b9695505050505050565b6000612e7d8261215c565b9150612e888361215c565b9250828203905081811115612ea057612e9f61287f565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220af28887859f7f0ccdb804c6899a8018c73d5c69372b734ddfdbfeb97c7f67abe64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000017700000000000000000000000001a84f1369d15680bc294cb0afddb28762d1517370000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
-----Decoded View---------------
Arg [0] : feeRewardPct (uint256): 6000
Arg [1] : feeRewardAddress (address): 0x1A84f1369D15680Bc294cB0AFDDb28762D151737
Arg [2] : uniRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : uniPairFactory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001770
Arg [1] : 0000000000000000000000001a84f1369d15680bc294cb0afddb28762d151737
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Deployed Bytecode Sourcemap
33902:9295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39344:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40289:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42592:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39621:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34574:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40507:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34162:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36054:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39530:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40969:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35519:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34542:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42834:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34379:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39729:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34326:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2838:103;;;:::i;:::-;;2190:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39435;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41277:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39856:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35434:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35934:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43026:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40080:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36169:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34488:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42708:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34457:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3096:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34416:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39344:83;39381:13;39414:5;39407:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39344:83;:::o;40289:210::-;40408:4;40430:39;40439:12;:10;:12::i;:::-;40453:7;40462:6;40430:8;:39::i;:::-;40487:4;40480:11;;40289:210;;;;:::o;42592:108::-;2076:13;:11;:13::i;:::-;42688:4:::1;42661:13;:24;42675:9;42661:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;42592:108:::0;:::o;39621:100::-;39674:7;39701:12;;39694:19;;39621:100;:::o;34574:24::-;;;;;;;;;;;;;:::o;40507:454::-;40647:4;40664:36;40674:6;40682:9;40693:6;40664:9;:36::i;:::-;40711:220;40734:6;40755:12;:10;:12::i;:::-;40782:138;40838:6;40782:138;;;;;;;;;;;;;;;;;:11;:19;40794:6;40782:19;;;;;;;;;;;;;;;:33;40802:12;:10;:12::i;:::-;40782:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;40711:8;:220::i;:::-;40949:4;40942:11;;40507:454;;;;;:::o;34162:25::-;;;;:::o;36054:107::-;2076:13;:11;:13::i;:::-;36145:8:::1;36127:15;;:26;;;;;;;;;;;;;;;;;;36054:107:::0;:::o;39530:83::-;39571:5;39596:9;;;;;;;;;;;39589:16;;39530:83;:::o;40969:300::-;41084:4;41106:133;41129:12;:10;:12::i;:::-;41156:7;41178:50;41217:10;41178:11;:25;41190:12;:10;:12::i;:::-;41178:25;;;;;;;;;;;;;;;:34;41204:7;41178:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;41106:8;:133::i;:::-;41257:4;41250:11;;40969:300;;;;:::o;35519:407::-;2076:13;:11;:13::i;:::-;35659:4:::1;35643:12;:20;;35635:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35757:1;35729:30;;:16;:30;;::::0;35707:123:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35859:12;35843:13;:28;;;;35902:16;35882:17;;:36;;;;;;;;;;;;;;;;;;35519:407:::0;;:::o;34542:25::-;;;;:::o;42834:184::-;2076:13;:11;:13::i;:::-;42922:9:::1;42936:2;:7;;42951:6;42936:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42921:41;;;42981:4;42973:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;42910:108;42834:184:::0;;:::o;34379:28::-;;;;:::o;39729:119::-;39795:7;39822:9;:18;39832:7;39822:18;;;;;;;;;;;;;;;;39815:25;;39729:119;;;:::o;34326:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;2838:103::-;2076:13;:11;:13::i;:::-;2903:30:::1;2930:1;2903:18;:30::i;:::-;2838:103::o:0;2190:87::-;2236:7;2263:6;;;;;;;;;;;2256:13;;2190:87;:::o;39435:::-;39474:13;39507:7;39500:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39435:87;:::o;41277:400::-;41397:4;41419:228;41442:12;:10;:12::i;:::-;41469:7;41491:145;41548:15;41491:145;;;;;;;;;;;;;;;;;:11;:25;41503:12;:10;:12::i;:::-;41491:25;;;;;;;;;;;;;;;:34;41517:7;41491:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;41419:8;:228::i;:::-;41665:4;41658:11;;41277:400;;;;:::o;39856:216::-;39978:4;40000:42;40010:12;:10;:12::i;:::-;40024:9;40035:6;40000:9;:42::i;:::-;40060:4;40053:11;;39856:216;;;;:::o;35434:77::-;2076:13;:11;:13::i;:::-;35502:1:::1;35492:7;;:11;;;;;;;;;;;;;;;;;;35434:77:::0;:::o;35934:112::-;2076:13;:11;:13::i;:::-;36030:8:::1;36012:12;:15;36025:1;36012:15;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;35934:112:::0;;:::o;43026:168::-;2076:13;:11;:13::i;:::-;43119::::1;43142:5;43119:29;;43159:6;:15;;;43175:2;43179:6;43159:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43108:86;43026:168:::0;;;:::o;40080:201::-;40214:7;40246:11;:18;40258:5;40246:18;;;;;;;;;;;;;;;:27;40265:7;40246:27;;;;;;;;;;;;;;;;40239:34;;40080:201;;;;:::o;36169:268::-;2076:13;:11;:13::i;:::-;36245:16:::1;36264:22;36281:4;36264:12;;:16;;:22;;;;:::i;:::-;36245:41;;36351:8;36334:13;:25;;36326:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36416:13;36403:10;:26;;;;36234:203;36169:268:::0;:::o;34488:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;42708:118::-;2076:13;:11;:13::i;:::-;42813:5:::1;42783:13;:27;42797:12;42783:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;42708:118:::0;:::o;34457:22::-;;;;;;;;;;;;;:::o;3096:238::-;2076:13;:11;:13::i;:::-;3219:1:::1;3199:22;;:8;:22;;::::0;3177:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3298:28;3317:8;3298:18;:28::i;:::-;3096:238:::0;:::o;34416:32::-;;;;;;;;;;;;;:::o;25057:98::-;25115:7;25146:1;25142;:5;;;;:::i;:::-;25135:12;;25057:98;;;;:::o;23920:::-;23978:7;24009:1;24005;:5;;;;:::i;:::-;23998:12;;23920:98;;;;:::o;747:::-;800:7;827:10;820:17;;747:98;:::o;42071:380::-;42224:1;42207:19;;:5;:19;;;42199:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42305:1;42286:21;;:7;:21;;;42278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42389:6;42359:11;:18;42371:5;42359:18;;;;;;;;;;;;;;;:27;42378:7;42359:27;;;;;;;;;;;;;;;:36;;;;42427:7;42411:32;;42420:5;42411:32;;;42436:6;42411:32;;;;;;:::i;:::-;;;;;;;;42071:380;;;:::o;2355:132::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2355:132::o;37326:2010::-;37476:1;37458:20;;:6;:20;;;37450:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;37560:1;37539:23;;:9;:23;;;37531:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37622:13;:21;37636:6;37622:21;;;;;;;;;;;;;;;;;;;;;;;;;37621:22;37613:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;37682:47;37703:6;37711:9;37722:6;37682:20;:47::i;:::-;37762:108;37798:6;37762:108;;;;;;;;;;;;;;;;;:9;:17;37772:6;37762:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;37742:9;:17;37752:6;37742:17;;;;;;;;;;;;;;;:128;;;;37914:1;37901:10;;:14;:60;;;;;37960:1;37947:10;;:14;;;;:::i;:::-;37932:12;:29;37901:60;:96;;;;;37988:9;;;;;;;;;;;37978:19;;:6;:19;;;37901:96;37883:389;;;38051:4;38024:13;:24;38038:9;38024:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;37883:389;;;38105:1;38091:10;;:15;:51;;;;;38133:9;;;;;;;;;;;38123:19;;:6;:19;;;;38091:51;:90;;;;;38172:9;;;;;;;;;;;38159:22;;:9;:22;;;38091:90;:117;;;;;38207:1;38198:6;:10;38091:117;38073:199;;;38248:12;38235:10;:25;;;;38073:199;37883:389;38289:12;:20;38302:6;38289:20;;;;;;;;;;;;;;;;;;;;;;;;;38284:926;;38326:23;38390:1;38374:13;;:17;:52;;;;;38424:1;38395:31;;:17;;;;;;;;;;;:31;;;;38374:52;38370:776;;;38465:36;38495:5;38465:25;38476:13;;38465:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;38447:54;;38545:1;38526:21;;:7;;;;;;;;;;;:21;;;38522:609;;38599:45;38628:15;38599:9;:24;38617:4;38599:24;;;;;;;;;;;;;;;;:28;;:45;;;;:::i;:::-;38572:9;:24;38590:4;38572:24;;;;;;;;;;;;;;;:72;;;;38697:4;38672:48;;38681:6;38672:48;;;38704:15;38672:48;;;;;;:::i;:::-;;;;;;;;38763:9;;;;;;;;;;;38749:23;;:10;:23;;;;:41;;;;;38777:13;;;;;;;;;;;38776:14;38749:41;:60;;;;;38794:15;;;;;;;;;;;38749:60;38745:130;;;38838:13;:11;:13::i;:::-;38745:130;38522:609;;;38956:75;39015:15;38956:9;:28;38966:17;;;;;;;;;;;38956:28;;;;;;;;;;;;;;;;:58;;:75;;;;:::i;:::-;38925:9;:28;38935:17;;;;;;;;;;;38925:28;;;;;;;;;;;;;;;:106;;;;39076:17;;;;;;;;;;;39059:52;;39068:6;39059:52;;;39095:15;39059:52;;;;;;:::i;:::-;;;;;;;;38522:609;38370:776;39171:27;39182:15;39171:6;:10;;:27;;;;:::i;:::-;39162:36;;38311:899;38284:926;39245:32;39270:6;39245:9;:20;39255:9;39245:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;39222:9;:20;39232:9;39222:20;;;;;;;;;;;;;;;:55;;;;39310:9;39293:35;;39302:6;39293:35;;;39321:6;39293:35;;;;;;:::i;:::-;;;;;;;;37326:2010;;;:::o;26199:240::-;26319:7;26377:1;26372;:6;;26380:12;26364:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26419:1;26415;:5;26408:12;;26199:240;;;;;:::o;3494:191::-;3568:16;3587:6;;;;;;;;;;;3568:25;;3613:8;3604:6;;:17;;;;;;;;;;;;;;;;;;3668:8;3637:40;;3658:8;3637:40;;;;;;;;;;;;3557:128;3494:191;:::o;42459:125::-;;;;:::o;24658:98::-;24716:7;24747:1;24743;:5;;;;:::i;:::-;24736:12;;24658:98;;;;:::o;36559:759::-;36495:4;36479:13;;:20;;;;;;;;;;;;;;;;;;36614:23:::1;36640:9;:24;36658:4;36640:24;;;;;;;;;;;;;;;;36614:50;;36696:1;36678:15;:19;36675:636;;;36735:10;;36717:15;:28;36714:96;;;36784:10;;36766:28;;36714:96;36824:20;36866:7;;;;;;;;;;;36824:50;;36891:21;36929:1;36915:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36891:40;;36964:4;36946;36951:1;36946:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;36994:1;:6;;;:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36984:4;36989:1;36984:7;;;;;;;;:::i;:::-;;;;;;;:18;;;;;;;;;::::0;::::1;37019:49;37036:4;37043:7;;;;;;;;;;;37052:15;37019:8;:49::i;:::-;37085:1;:52;;;37156:15;37190:1;37210:4;37233:17;;;;;;;;;;;37269:15;37085:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36699:612;;36675:636;36603:715;36538:5:::0;36522:13;;:21;;;;;;;;;;;;;;;;;;36559:759::o;24301:98::-;24359:7;24390:1;24386;:5;;;;:::i;:::-;24379:12;;24301:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:619::-;4562:6;4570;4578;4627:2;4615:9;4606:7;4602:23;4598:32;4595:119;;;4633:79;;:::i;:::-;4595:119;4753:1;4778:53;4823:7;4814:6;4803:9;4799:22;4778:53;:::i;:::-;4768:63;;4724:117;4880:2;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4851:118;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;4485:619;;;;;:::o;5110:116::-;5180:21;5195:5;5180:21;:::i;:::-;5173:5;5170:32;5160:60;;5216:1;5213;5206:12;5160:60;5110:116;:::o;5232:133::-;5275:5;5313:6;5300:20;5291:29;;5329:30;5353:5;5329:30;:::i;:::-;5232:133;;;;:::o;5371:323::-;5427:6;5476:2;5464:9;5455:7;5451:23;5447:32;5444:119;;;5482:79;;:::i;:::-;5444:119;5602:1;5627:50;5669:7;5660:6;5649:9;5645:22;5627:50;:::i;:::-;5617:60;;5573:114;5371:323;;;;:::o;5700:86::-;5735:7;5775:4;5768:5;5764:16;5753:27;;5700:86;;;:::o;5792:112::-;5875:22;5891:5;5875:22;:::i;:::-;5870:3;5863:35;5792:112;;:::o;5910:214::-;5999:4;6037:2;6026:9;6022:18;6014:26;;6050:67;6114:1;6103:9;6099:17;6090:6;6050:67;:::i;:::-;5910:214;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:104::-;6655:7;6684:24;6702:5;6684:24;:::i;:::-;6673:35;;6610:104;;;:::o;6720:138::-;6801:32;6827:5;6801:32;:::i;:::-;6794:5;6791:43;6781:71;;6848:1;6845;6838:12;6781:71;6720:138;:::o;6864:155::-;6918:5;6956:6;6943:20;6934:29;;6972:41;7007:5;6972:41;:::i;:::-;6864:155;;;;:::o;7025:490::-;7101:6;7109;7158:2;7146:9;7137:7;7133:23;7129:32;7126:119;;;7164:79;;:::i;:::-;7126:119;7284:1;7309:61;7362:7;7353:6;7342:9;7338:22;7309:61;:::i;:::-;7299:71;;7255:125;7419:2;7445:53;7490:7;7481:6;7470:9;7466:22;7445:53;:::i;:::-;7435:63;;7390:118;7025:490;;;;;:::o;7521:468::-;7586:6;7594;7643:2;7631:9;7622:7;7618:23;7614:32;7611:119;;;7649:79;;:::i;:::-;7611:119;7769:1;7794:53;7839:7;7830:6;7819:9;7815:22;7794:53;:::i;:::-;7784:63;;7740:117;7896:2;7922:50;7964:7;7955:6;7944:9;7940:22;7922:50;:::i;:::-;7912:60;;7867:115;7521:468;;;;;:::o;7995:474::-;8063:6;8071;8120:2;8108:9;8099:7;8095:23;8091:32;8088:119;;;8126:79;;:::i;:::-;8088:119;8246:1;8271:53;8316:7;8307:6;8296:9;8292:22;8271:53;:::i;:::-;8261:63;;8217:117;8373:2;8399:53;8444:7;8435:6;8424:9;8420:22;8399:53;:::i;:::-;8389:63;;8344:118;7995:474;;;;;:::o;8475:329::-;8534:6;8583:2;8571:9;8562:7;8558:23;8554:32;8551:119;;;8589:79;;:::i;:::-;8551:119;8709:1;8734:53;8779:7;8770:6;8759:9;8755:22;8734:53;:::i;:::-;8724:63;;8680:117;8475:329;;;;:::o;8810:180::-;8858:77;8855:1;8848:88;8955:4;8952:1;8945:15;8979:4;8976:1;8969:15;8996:320;9040:6;9077:1;9071:4;9067:12;9057:22;;9124:1;9118:4;9114:12;9145:18;9135:81;;9201:4;9193:6;9189:17;9179:27;;9135:81;9263:2;9255:6;9252:14;9232:18;9229:38;9226:84;;9282:18;;:::i;:::-;9226:84;9047:269;8996:320;;;:::o;9322:178::-;9462:30;9458:1;9450:6;9446:14;9439:54;9322:178;:::o;9506:366::-;9648:3;9669:67;9733:2;9728:3;9669:67;:::i;:::-;9662:74;;9745:93;9834:3;9745:93;:::i;:::-;9863:2;9858:3;9854:12;9847:19;;9506:366;;;:::o;9878:419::-;10044:4;10082:2;10071:9;10067:18;10059:26;;10131:9;10125:4;10121:20;10117:1;10106:9;10102:17;10095:47;10159:131;10285:4;10159:131;:::i;:::-;10151:139;;9878:419;;;:::o;10303:230::-;10443:34;10439:1;10431:6;10427:14;10420:58;10512:13;10507:2;10499:6;10495:15;10488:38;10303:230;:::o;10539:366::-;10681:3;10702:67;10766:2;10761:3;10702:67;:::i;:::-;10695:74;;10778:93;10867:3;10778:93;:::i;:::-;10896:2;10891:3;10887:12;10880:19;;10539:366;;;:::o;10911:419::-;11077:4;11115:2;11104:9;11100:18;11092:26;;11164:9;11158:4;11154:20;11150:1;11139:9;11135:17;11128:47;11192:131;11318:4;11192:131;:::i;:::-;11184:139;;10911:419;;;:::o;11336:147::-;11437:11;11474:3;11459:18;;11336:147;;;;:::o;11489:114::-;;:::o;11609:398::-;11768:3;11789:83;11870:1;11865:3;11789:83;:::i;:::-;11782:90;;11881:93;11970:3;11881:93;:::i;:::-;11999:1;11994:3;11990:11;11983:18;;11609:398;;;:::o;12013:379::-;12197:3;12219:147;12362:3;12219:147;:::i;:::-;12212:154;;12383:3;12376:10;;12013:379;;;:::o;12398:170::-;12538:22;12534:1;12526:6;12522:14;12515:46;12398:170;:::o;12574:366::-;12716:3;12737:67;12801:2;12796:3;12737:67;:::i;:::-;12730:74;;12813:93;12902:3;12813:93;:::i;:::-;12931:2;12926:3;12922:12;12915:19;;12574:366;;;:::o;12946:419::-;13112:4;13150:2;13139:9;13135:18;13127:26;;13199:9;13193:4;13189:20;13185:1;13174:9;13170:17;13163:47;13227:131;13353:4;13227:131;:::i;:::-;13219:139;;12946:419;;;:::o;13371:332::-;13492:4;13530:2;13519:9;13515:18;13507:26;;13543:71;13611:1;13600:9;13596:17;13587:6;13543:71;:::i;:::-;13624:72;13692:2;13681:9;13677:18;13668:6;13624:72;:::i;:::-;13371:332;;;;;:::o;13709:137::-;13763:5;13794:6;13788:13;13779:22;;13810:30;13834:5;13810:30;:::i;:::-;13709:137;;;;:::o;13852:345::-;13919:6;13968:2;13956:9;13947:7;13943:23;13939:32;13936:119;;;13974:79;;:::i;:::-;13936:119;14094:1;14119:61;14172:7;14163:6;14152:9;14148:22;14119:61;:::i;:::-;14109:71;;14065:125;13852:345;;;;:::o;14203:178::-;14343:30;14339:1;14331:6;14327:14;14320:54;14203:178;:::o;14387:366::-;14529:3;14550:67;14614:2;14609:3;14550:67;:::i;:::-;14543:74;;14626:93;14715:3;14626:93;:::i;:::-;14744:2;14739:3;14735:12;14728:19;;14387:366;;;:::o;14759:419::-;14925:4;14963:2;14952:9;14948:18;14940:26;;15012:9;15006:4;15002:20;14998:1;14987:9;14983:17;14976:47;15040:131;15166:4;15040:131;:::i;:::-;15032:139;;14759:419;;;:::o;15184:225::-;15324:34;15320:1;15312:6;15308:14;15301:58;15393:8;15388:2;15380:6;15376:15;15369:33;15184:225;:::o;15415:366::-;15557:3;15578:67;15642:2;15637:3;15578:67;:::i;:::-;15571:74;;15654:93;15743:3;15654:93;:::i;:::-;15772:2;15767:3;15763:12;15756:19;;15415:366;;;:::o;15787:419::-;15953:4;15991:2;15980:9;15976:18;15968:26;;16040:9;16034:4;16030:20;16026:1;16015:9;16011:17;16004:47;16068:131;16194:4;16068:131;:::i;:::-;16060:139;;15787:419;;;:::o;16212:180::-;16260:77;16257:1;16250:88;16357:4;16354:1;16347:15;16381:4;16378:1;16371:15;16398:180;16446:77;16443:1;16436:88;16543:4;16540:1;16533:15;16567:4;16564:1;16557:15;16584:185;16624:1;16641:20;16659:1;16641:20;:::i;:::-;16636:25;;16675:20;16693:1;16675:20;:::i;:::-;16670:25;;16714:1;16704:35;;16719:18;;:::i;:::-;16704:35;16761:1;16758;16754:9;16749:14;;16584:185;;;;:::o;16775:191::-;16815:3;16834:20;16852:1;16834:20;:::i;:::-;16829:25;;16868:20;16886:1;16868:20;:::i;:::-;16863:25;;16911:1;16908;16904:9;16897:16;;16932:3;16929:1;16926:10;16923:36;;;16939:18;;:::i;:::-;16923:36;16775:191;;;;:::o;16972:223::-;17112:34;17108:1;17100:6;17096:14;17089:58;17181:6;17176:2;17168:6;17164:15;17157:31;16972:223;:::o;17201:366::-;17343:3;17364:67;17428:2;17423:3;17364:67;:::i;:::-;17357:74;;17440:93;17529:3;17440:93;:::i;:::-;17558:2;17553:3;17549:12;17542:19;;17201:366;;;:::o;17573:419::-;17739:4;17777:2;17766:9;17762:18;17754:26;;17826:9;17820:4;17816:20;17812:1;17801:9;17797:17;17790:47;17854:131;17980:4;17854:131;:::i;:::-;17846:139;;17573:419;;;:::o;17998:221::-;18138:34;18134:1;18126:6;18122:14;18115:58;18207:4;18202:2;18194:6;18190:15;18183:29;17998:221;:::o;18225:366::-;18367:3;18388:67;18452:2;18447:3;18388:67;:::i;:::-;18381:74;;18464:93;18553:3;18464:93;:::i;:::-;18582:2;18577:3;18573:12;18566:19;;18225:366;;;:::o;18597:419::-;18763:4;18801:2;18790:9;18786:18;18778:26;;18850:9;18844:4;18840:20;18836:1;18825:9;18821:17;18814:47;18878:131;19004:4;18878:131;:::i;:::-;18870:139;;18597:419;;;:::o;19022:182::-;19162:34;19158:1;19150:6;19146:14;19139:58;19022:182;:::o;19210:366::-;19352:3;19373:67;19437:2;19432:3;19373:67;:::i;:::-;19366:74;;19449:93;19538:3;19449:93;:::i;:::-;19567:2;19562:3;19558:12;19551:19;;19210:366;;;:::o;19582:419::-;19748:4;19786:2;19775:9;19771:18;19763:26;;19835:9;19829:4;19825:20;19821:1;19810:9;19806:17;19799:47;19863:131;19989:4;19863:131;:::i;:::-;19855:139;;19582:419;;;:::o;20007:224::-;20147:34;20143:1;20135:6;20131:14;20124:58;20216:7;20211:2;20203:6;20199:15;20192:32;20007:224;:::o;20237:366::-;20379:3;20400:67;20464:2;20459:3;20400:67;:::i;:::-;20393:74;;20476:93;20565:3;20476:93;:::i;:::-;20594:2;20589:3;20585:12;20578:19;;20237:366;;;:::o;20609:419::-;20775:4;20813:2;20802:9;20798:18;20790:26;;20862:9;20856:4;20852:20;20848:1;20837:9;20833:17;20826:47;20890:131;21016:4;20890:131;:::i;:::-;20882:139;;20609:419;;;:::o;21034:222::-;21174:34;21170:1;21162:6;21158:14;21151:58;21243:5;21238:2;21230:6;21226:15;21219:30;21034:222;:::o;21262:366::-;21404:3;21425:67;21489:2;21484:3;21425:67;:::i;:::-;21418:74;;21501:93;21590:3;21501:93;:::i;:::-;21619:2;21614:3;21610:12;21603:19;;21262:366;;;:::o;21634:419::-;21800:4;21838:2;21827:9;21823:18;21815:26;;21887:9;21881:4;21877:20;21873:1;21862:9;21858:17;21851:47;21915:131;22041:4;21915:131;:::i;:::-;21907:139;;21634:419;;;:::o;22059:171::-;22199:23;22195:1;22187:6;22183:14;22176:47;22059:171;:::o;22236:366::-;22378:3;22399:67;22463:2;22458:3;22399:67;:::i;:::-;22392:74;;22475:93;22564:3;22475:93;:::i;:::-;22593:2;22588:3;22584:12;22577:19;;22236:366;;;:::o;22608:419::-;22774:4;22812:2;22801:9;22797:18;22789:26;;22861:9;22855:4;22851:20;22847:1;22836:9;22832:17;22825:47;22889:131;23015:4;22889:131;:::i;:::-;22881:139;;22608:419;;;:::o;23033:410::-;23073:7;23096:20;23114:1;23096:20;:::i;:::-;23091:25;;23130:20;23148:1;23130:20;:::i;:::-;23125:25;;23185:1;23182;23178:9;23207:30;23225:11;23207:30;:::i;:::-;23196:41;;23386:1;23377:7;23373:15;23370:1;23367:22;23347:1;23340:9;23320:83;23297:139;;23416:18;;:::i;:::-;23297:139;23081:362;23033:410;;;;:::o;23449:180::-;23497:77;23494:1;23487:88;23594:4;23591:1;23584:15;23618:4;23615:1;23608:15;23635:180;23683:77;23680:1;23673:88;23780:4;23777:1;23770:15;23804:4;23801:1;23794:15;23821:143;23878:5;23909:6;23903:13;23894:22;;23925:33;23952:5;23925:33;:::i;:::-;23821:143;;;;:::o;23970:351::-;24040:6;24089:2;24077:9;24068:7;24064:23;24060:32;24057:119;;;24095:79;;:::i;:::-;24057:119;24215:1;24240:64;24296:7;24287:6;24276:9;24272:22;24240:64;:::i;:::-;24230:74;;24186:128;23970:351;;;;:::o;24327:85::-;24372:7;24401:5;24390:16;;24327:85;;;:::o;24418:60::-;24446:3;24467:5;24460:12;;24418:60;;;:::o;24484:158::-;24542:9;24575:61;24593:42;24602:32;24628:5;24602:32;:::i;:::-;24593:42;:::i;:::-;24575:61;:::i;:::-;24562:74;;24484:158;;;:::o;24648:147::-;24743:45;24782:5;24743:45;:::i;:::-;24738:3;24731:58;24648:147;;:::o;24801:114::-;24868:6;24902:5;24896:12;24886:22;;24801:114;;;:::o;24921:184::-;25020:11;25054:6;25049:3;25042:19;25094:4;25089:3;25085:14;25070:29;;24921:184;;;;:::o;25111:132::-;25178:4;25201:3;25193:11;;25231:4;25226:3;25222:14;25214:22;;25111:132;;;:::o;25249:108::-;25326:24;25344:5;25326:24;:::i;:::-;25321:3;25314:37;25249:108;;:::o;25363:179::-;25432:10;25453:46;25495:3;25487:6;25453:46;:::i;:::-;25531:4;25526:3;25522:14;25508:28;;25363:179;;;;:::o;25548:113::-;25618:4;25650;25645:3;25641:14;25633:22;;25548:113;;;:::o;25697:732::-;25816:3;25845:54;25893:5;25845:54;:::i;:::-;25915:86;25994:6;25989:3;25915:86;:::i;:::-;25908:93;;26025:56;26075:5;26025:56;:::i;:::-;26104:7;26135:1;26120:284;26145:6;26142:1;26139:13;26120:284;;;26221:6;26215:13;26248:63;26307:3;26292:13;26248:63;:::i;:::-;26241:70;;26334:60;26387:6;26334:60;:::i;:::-;26324:70;;26180:224;26167:1;26164;26160:9;26155:14;;26120:284;;;26124:14;26420:3;26413:10;;25821:608;;;25697:732;;;;:::o;26435:831::-;26698:4;26736:3;26725:9;26721:19;26713:27;;26750:71;26818:1;26807:9;26803:17;26794:6;26750:71;:::i;:::-;26831:80;26907:2;26896:9;26892:18;26883:6;26831:80;:::i;:::-;26958:9;26952:4;26948:20;26943:2;26932:9;26928:18;26921:48;26986:108;27089:4;27080:6;26986:108;:::i;:::-;26978:116;;27104:72;27172:2;27161:9;27157:18;27148:6;27104:72;:::i;:::-;27186:73;27254:3;27243:9;27239:19;27230:6;27186:73;:::i;:::-;26435:831;;;;;;;;:::o;27272:194::-;27312:4;27332:20;27350:1;27332:20;:::i;:::-;27327:25;;27366:20;27384:1;27366:20;:::i;:::-;27361:25;;27410:1;27407;27403:9;27395:17;;27434:1;27428:4;27425:11;27422:37;;;27439:18;;:::i;:::-;27422:37;27272:194;;;;:::o
Swarm Source
ipfs://af28887859f7f0ccdb804c6899a8018c73d5c69372b734ddfdbfeb97c7f67abe
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.