ERC-20
Overview
Max Total Supply
10,000,000 REFR
Holders
77
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,942.709541875464609205 REFRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Refr
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Share more & earn more referral contract 8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888 WEBSITE - https://re-fr.fi/ 8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888 TWITTER - https://t.me/ReferTokenETH 8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888 TELEGRAM - https://twitter.com/ReferToken 8888888888888888888888888888888888888888888888888888888888888888888888888888888888888888 **/ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./interface/IMasterRefr.sol"; import "./interface/IUniswapRouter.sol"; import "./interface/IUniswapFactory.sol"; contract Refr is Ownable, ERC20("Refr", "REFR") { using SafeERC20 for IERC20; mapping(bytes32 => address) public codeMap; mapping(address => bool) public swapPools; mapping(address => UserInfo) public userInfo; mapping(address => bool) private _isExcludedFromFee; address public masterRefr; address public marketingAddress; address public immutable weth; address public constant router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address public constant factory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; bool private inSwap; uint public buyTax = 600; uint public sellTax = 600; uint public maxWallet = 1e23; uint public maxTransfer = 1e23; uint private marketingAmt; uint private marketingLimit = 1e21; struct UserInfo { uint amount; uint parents; uint children; address parent; bytes32 referCode; } event SetTax(uint, uint); event SetMax(uint, uint); event Claim(address indexed, uint); event UserRegistered(address indexed user, address indexed parent, bytes32); /** * @notice Constructor * @param _marketing Address of marketing wallet */ constructor( address _marketing ) payable { marketingAddress = _marketing; // init _isExcludedFromFee _isExcludedFromFee[router] = true; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[_marketing] = true; _isExcludedFromFee[address(this)] = true; // mint tokens for liquidity _mint(owner(), 1e25); // create uniswapv2 pair and add to swapPools weth = IUniswapRouter(router).WETH(); swapPools[IUniswapFactory(factory).createPair(weth, address(this))] = true; } /** * @notice Fucntion for add liquidity * @param _amount Amount of token to add */ function addLiquidity(uint _amount) external payable { if(msg.value != 0 && _amount != 0) { super._transfer(msg.sender, address(this), _amount); _approve(address(this), router, _amount); IUniswapRouter(router).addLiquidityETH {value: msg.value} ( address(this), _amount, 0, 0, msg.sender, block.timestamp + 2 hours ); } } /** * @notice Set MasterRefr * @param _masterRefr Address of MaasterRefr */ function setMasterRefr(address _masterRefr) external onlyOwner { masterRefr = _masterRefr; _isExcludedFromFee[masterRefr] = true; } /** * @notice Update swap pools * @param _routers Array of router address * @param _flag Bool if router or not */ function setPools( address[] calldata _routers, bool _flag ) external onlyOwner { for(uint8 i; i < _routers.length; ++i) { swapPools[_routers[i]] = _flag; } } /** * @notice Update _isExcludedFromFee * @param _wallets Array of router address * @param _flag Bool if router or not */ function setExcludedFee( address[] calldata _wallets, bool _flag ) external onlyOwner { for(uint8 i; i < _wallets.length; ++i) { _isExcludedFromFee[_wallets[i]] = _flag; } } /** * @notice Update buy/sell tax * @param _buyTax Value of new tax * @param _sellTax Value of new tax */ function setTax( uint _buyTax, uint _sellTax ) external onlyOwner { buyTax = _buyTax; sellTax = _sellTax; emit SetTax(buyTax, sellTax); } /** * @notice Update max transfer/wallet * @param _maxWallet Percent of max wallet * @param _maxTransfer Percent of max transfer */ function setMax( uint _maxWallet, uint _maxTransfer ) external onlyOwner { maxWallet = _maxWallet; maxTransfer = _maxTransfer; emit SetMax(maxWallet, maxTransfer); } /** * @notice Update marketing address * @param _limit Amount of marketing limit * @param _marketing Address of marketing address */ function setMarketing( uint _limit, address _marketing ) external onlyOwner { require(_limit != 0, "Invalid amount"); marketingLimit = _limit; marketingAddress = _marketing; } /** * @notice Set refer code to user * @param _user Address of user */ function _setCode(address _user) private { bytes32 code; do { uint rand = uint256( keccak256(abi.encode(block.difficulty, block.timestamp, _user)) ); unchecked { rand -= (rand / 1e10) * 1e10; } code = bytes32(rand); } while(codeMap[code] != address(0)); codeMap[code] = _user; userInfo[_user].referCode = code; emit UserRegistered(_user, address(0), code); } /** * @notice Distribute tokens to his parents * @param _user Address of user * @param _balance Amount to distribute */ function _distributeToParent( address _user, uint _balance ) private returns(uint _dist) { UserInfo storage info = userInfo[_user]; if(info.parents != 0 && _balance != 0) { address parent = info.parent; unchecked { _balance = _balance / info.parents; for(uint i; i < info.parents; ++i) { userInfo[parent].amount = userInfo[parent].amount + _balance; parent = userInfo[parent].parent; } _dist = _balance * info.parents; } } } /** * @notice Distribute tax */ function _distributeTax() private { if(marketingAmt >= marketingLimit && !inSwap) { inSwap = true; _approve(address(this), router, marketingAmt); address[] memory paths = new address[](2); paths[0] = address(this); paths[1] = weth; IUniswapRouter(router).swapExactTokensForETHSupportingFeeOnTransferTokens( marketingAmt, 0, paths, marketingAddress, block.timestamp + 2 hours ); marketingAmt = 0; inSwap = false; } } /** * @notice Purchase token * @param _parCode Referal Code of parent * @param _userCode Referal Code of user * @param _amount Amount of token for purchase * @param _token Address of purchasing token */ function purchase( bytes32 _parCode, bytes32 _userCode, uint _amount, address _token ) external payable { address user = msg.sender; // set code if new user if(userInfo[user].referCode == 0) { require(_userCode != 0, "Invalid code"); // check parent code is empty or registered already require(_parCode == 0 || codeMap[_parCode] != address(0), "Invalid code"); codeMap[_userCode] = user; bool zeroParent = _parCode == 0; address parentAddr = zeroParent ? address(0) : codeMap[_parCode]; userInfo[user] = UserInfo( 0, zeroParent ? 0 : userInfo[codeMap[_parCode]].parents + 1, 0, parentAddr, _userCode ); if(!zeroParent) ++userInfo[parentAddr].children; emit UserRegistered(user, parentAddr, _userCode); } // swap on router if(msg.value == 0) { // if erc20 IERC20(_token).safeTransferFrom(user, address(this), _amount); IERC20(_token).approve(router, _amount); address[] memory paths = new address[](3); paths[0] = _token; paths[1] = weth; paths[2] = address(this); IUniswapRouter(router).swapExactTokensForTokensSupportingFeeOnTransferTokens( _amount, 0, paths, msg.sender, block.timestamp + 2 hours ); } else { // if ETH address[] memory paths = new address[](2); paths[0] = weth; paths[1] = address(this); IUniswapRouter(router).swapExactETHForTokensSupportingFeeOnTransferTokens {value: msg.value} ( 0, paths, msg.sender, block.timestamp + 2 hours ); } _distributeTax(); } /** * @notice Claim available token amount */ function claim() external { address user = msg.sender; uint amount = userInfo[user].amount; super._transfer(address(this), user, amount); userInfo[user].amount = 0; emit Claim(user, amount); } /** * @notice Override transfer * @param _from Address of sender * @param _to Address of receiver * @param _amount Amount of token */ function _transfer( address _from, address _to, uint _amount ) internal override { if (!_isExcludedFromFee[_from] && !_isExcludedFromFee[_to]) { // check for max transfer amount require(_amount <= maxTransfer, "Over max transfer"); // check for max balance require(swapPools[_to] || balanceOf(_to) + _amount <= maxWallet, "Over max balance"); uint taxAmount; if(swapPools[_from]) { // if user buys token if(userInfo[_to].referCode == 0) { // if buyer has no code _setCode(_to); } unchecked { taxAmount = _amount * buyTax / 2e4; marketingAmt = marketingAmt + taxAmount; taxAmount = taxAmount + _distributeToParent(_to, taxAmount); } } else if(swapPools[_to]) { // is user sells token unchecked { taxAmount = _amount * sellTax / 2e4; marketingAmt = marketingAmt + taxAmount; _amount = _amount - taxAmount; } super._transfer(_from, masterRefr, taxAmount); IMasterRefr(masterRefr).updateInfo(taxAmount); } else { _distributeTax(); } if(!swapPools[_to] && userInfo[_to].referCode == 0) { // if receiver has no code _setCode(_to); } if(taxAmount != 0) { super._transfer(_from, address(this), taxAmount); unchecked { _amount = _amount - taxAmount; } } } super._transfer(_from, _to, _amount); } receive() external payable {} }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.9; interface IMasterRefr { function updateInfo(uint) external; }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.9; interface IUniswapRouter { function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function WETH() external view returns(address); }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.9; interface IUniswapFactory { function createPair(address tokenA, address tokenB) external returns (address pair); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.zeppelin.solutions/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; } _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; _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; } _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_marketing","type":"address"}],"stateMutability":"payable","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":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"SetMax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"SetTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"parent","type":"address"},{"indexed":false,"internalType":"bytes32","name":"","type":"bytes32"}],"name":"UserRegistered","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","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":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"codeMap","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"factory","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":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterRefr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"bytes32","name":"_parCode","type":"bytes32"},{"internalType":"bytes32","name":"_userCode","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setExcludedFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"address","name":"_marketing","type":"address"}],"name":"setMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masterRefr","type":"address"}],"name":"setMasterRefr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTransfer","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_routers","type":"address[]"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapPools","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"parents","type":"uint256"},{"internalType":"uint256","name":"children","type":"uint256"},{"internalType":"address","name":"parent","type":"address"},{"internalType":"bytes32","name":"referCode","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052610258600c55610258600d5569152d02c7e14af6800000600e5569152d02c7e14af6800000600f55683635c9adc5dea0000060115560405162004fa338038062004fa383398181016040528101906200005e919062000792565b6040518060400160405280600481526020017f52656672000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5245465200000000000000000000000000000000000000000000000000000000815250620000ea620000de620004b060201b60201c565b620004b860201b60201c565b8160049081620000fb919062000a3e565b5080600590816200010d919062000a3e565b50505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160096000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000620001d36200057c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000300620002e86200057c60201b60201c565b6a084595161401484a000000620005a560201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062000792565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600160076000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c65396608051306040518363ffffffff1660e01b81526004016200041292919062000b36565b6020604051808303816000875af115801562000432573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000458919062000792565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000c7e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000617576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060e9062000bc4565b60405180910390fd5b6200062b600083836200071e60201b60201c565b80600360008282546200063f919062000c15565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000697919062000c15565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006fe919062000c61565b60405180910390a36200071a600083836200072360201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200075a826200072d565b9050919050565b6200076c816200074d565b81146200077857600080fd5b50565b6000815190506200078c8162000761565b92915050565b600060208284031215620007ab57620007aa62000728565b5b6000620007bb848285016200077b565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200084657607f821691505b6020821081036200085c576200085b620007fe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000887565b620008d2868362000887565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200091f620009196200091384620008ea565b620008f4565b620008ea565b9050919050565b6000819050919050565b6200093b83620008fe565b620009536200094a8262000926565b84845462000894565b825550505050565b600090565b6200096a6200095b565b6200097781848462000930565b505050565b5b818110156200099f576200099360008262000960565b6001810190506200097d565b5050565b601f821115620009ee57620009b88162000862565b620009c38462000877565b81016020851015620009d3578190505b620009eb620009e28562000877565b8301826200097c565b50505b505050565b600082821c905092915050565b600062000a1360001984600802620009f3565b1980831691505092915050565b600062000a2e838362000a00565b9150826002028217905092915050565b62000a4982620007c4565b67ffffffffffffffff81111562000a655762000a64620007cf565b5b62000a7182546200082d565b62000a7e828285620009a3565b600060209050601f83116001811462000ab6576000841562000aa1578287015190505b62000aad858262000a20565b86555062000b1d565b601f19841662000ac68662000862565b60005b8281101562000af05784890151825560018201915060208501945060208101905062000ac9565b8683101562000b10578489015162000b0c601f89168262000a00565b8355505b6001600288020188555050505b505050505050565b62000b30816200074d565b82525050565b600060408201905062000b4d600083018562000b25565b62000b5c602083018462000b25565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000bac601f8362000b63565b915062000bb98262000b74565b602082019050919050565b6000602082019050818103600083015262000bdf8162000b9d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c2282620008ea565b915062000c2f83620008ea565b925082820190508082111562000c4a5762000c4962000be6565b5b92915050565b62000c5b81620008ea565b82525050565b600060208201905062000c78600083018462000c50565b92915050565b6080516142f462000caf60003960008181610a8f015281816116a00152818161184701526127cd01526142f46000f3fe6080604052600436106102085760003560e01c806370a0823111610118578063b2473efc116100a0578063ead0ffd41161006f578063ead0ffd414610786578063ed233ee9146107af578063f2fde38b146107da578063f887ea4014610803578063f8b45b051461082e5761020f565b8063b2473efc146106d7578063c45a0155146106f3578063cc1776d31461071e578063dd62ed3e146107495761020f565b806395d89b41116100e757806395d89b41146105de578063a457c2d714610609578063a5ece94114610646578063a9059cbb14610671578063a9d8efb7146106ae5761020f565b806370a0823114610522578063715018a61461055f5780638da5cb5b14610576578063940e5ff4146105a15761020f565b8063395093511161019b5780634e71d92d1161016a5780634e71d92d146104725780634f7041a51461048957806351c6590a146104b4578063667f6526146104d0578063667fd432146104f95761020f565b806339509351146103b85780633b91ceef146103f55780633fc8cef31461041e57806349e38f32146104495761020f565b80631959a002116101d75780631959a002146102e457806323b872dd146103255780632a5a8a4d14610362578063313ce5671461038d5761020f565b806306fdde0314610214578063095ea7b31461023f5780630c9852c21461027c57806318160ddd146102b95761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610859565b6040516102369190612faf565b60405180910390f35b34801561024b57600080fd5b506102666004803603810190610261919061306f565b6108eb565b60405161027391906130ca565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061311b565b61090e565b6040516102b09190613157565b60405180910390f35b3480156102c557600080fd5b506102ce610941565b6040516102db9190613181565b60405180910390f35b3480156102f057600080fd5b5061030b6004803603810190610306919061319c565b61094b565b60405161031c9594939291906131d8565b60405180910390f35b34801561033157600080fd5b5061034c6004803603810190610347919061322b565b6109a1565b60405161035991906130ca565b60405180910390f35b34801561036e57600080fd5b506103776109d0565b6040516103849190613157565b60405180910390f35b34801561039957600080fd5b506103a26109f6565b6040516103af919061329a565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da919061306f565b6109ff565b6040516103ec91906130ca565b60405180910390f35b34801561040157600080fd5b5061041c600480360381019061041791906132b5565b610a36565b005b34801561042a57600080fd5b50610433610a8d565b6040516104409190613157565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613386565b610ab1565b005b34801561047e57600080fd5b50610487610b62565b005b34801561049557600080fd5b5061049e610c53565b6040516104ab9190613181565b60405180910390f35b6104ce60048036038101906104c991906133e6565b610c59565b005b3480156104dc57600080fd5b506104f760048036038101906104f291906132b5565b610d4a565b005b34801561050557600080fd5b50610520600480360381019061051b9190613386565b610da1565b005b34801561052e57600080fd5b506105496004803603810190610544919061319c565b610e52565b6040516105569190613181565b60405180910390f35b34801561056b57600080fd5b50610574610e9b565b005b34801561058257600080fd5b5061058b610eaf565b6040516105989190613157565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c3919061319c565b610ed8565b6040516105d591906130ca565b60405180910390f35b3480156105ea57600080fd5b506105f3610ef8565b6040516106009190612faf565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061306f565b610f8a565b60405161063d91906130ca565b60405180910390f35b34801561065257600080fd5b5061065b611001565b6040516106689190613157565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061306f565b611027565b6040516106a591906130ca565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d0919061319c565b61104a565b005b6106f160048036038101906106ec9190613413565b611110565b005b3480156106ff57600080fd5b506107086119a8565b6040516107159190613157565b60405180910390f35b34801561072a57600080fd5b506107336119c0565b6040516107409190613181565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b919061347a565b6119c6565b60405161077d9190613181565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906134ba565b611a4d565b005b3480156107bb57600080fd5b506107c4611ae4565b6040516107d19190613181565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc919061319c565b611aea565b005b34801561080f57600080fd5b50610818611b6d565b6040516108259190613157565b60405180910390f35b34801561083a57600080fd5b50610843611b85565b6040516108509190613181565b60405180910390f35b60606004805461086890613529565b80601f016020809104026020016040519081016040528092919081815260200182805461089490613529565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b6000806108f6611b8b565b9050610903818585611b93565b600191505092915050565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60086020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060040154905085565b6000806109ac611b8b565b90506109b9858285611d5c565b6109c4858585611de8565b60019150509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610a0a611b8b565b9050610a2b818585610a1c85896119c6565b610a269190613589565b611b93565b600191505092915050565b610a3e61227f565b81600e8190555080600f819055507f32d22f6a85761eacd4dc182429b656891cf4ecb2428ed264e0243bb5488fea0f600e54600f54604051610a819291906135bd565b60405180910390a15050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ab961227f565b60005b838390508160ff161015610b5c57816007600086868560ff16818110610ae557610ae46135e6565b5b9050602002016020810190610afa919061319c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080610b5590613615565b9050610abc565b50505050565b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050610bb93083836122fd565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610c479190613181565b60405180910390a25050565b600c5481565b60003414158015610c6b575060008114155b15610d4757610c7b3330836122fd565b610c9a30737a250d5630b4cf539739df2c5dacb4c659f2488d83611b93565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71934308460008033611c2042610cdf9190613589565b6040518863ffffffff1660e01b8152600401610d0096959493929190613683565b60606040518083038185885af1158015610d1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d4391906136f9565b5050505b50565b610d5261227f565b81600c8190555080600d819055507f066acf8dc86fdf444456fd1e73b5e50347cdef064ca99b9e5b59964463730da8600c54600d54604051610d959291906135bd565b60405180910390a15050565b610da961227f565b60005b838390508160ff161015610e4c57816009600086868560ff16818110610dd557610dd46135e6565b5b9050602002016020810190610dea919061319c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080610e4590613615565b9050610dac565b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ea361227f565b610ead600061257f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60076020528060005260406000206000915054906101000a900460ff1681565b606060058054610f0790613529565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3390613529565b8015610f805780601f10610f5557610100808354040283529160200191610f80565b820191906000526020600020905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b600080610f95611b8b565b90506000610fa382866119c6565b905083811015610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf906137be565b60405180910390fd5b610ff58286868403611b93565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611032611b8b565b905061103f818585611de8565b600191505092915050565b61105261227f565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160096000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60003390506000801b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004015403611539576000801b84036111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061382a565b60405180910390fd5b6000801b8514806112175750600073ffffffffffffffffffffffffffffffffffffffff166006600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d9061382a565b60405180910390fd5b806006600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060001b861490506000816112f2576006600088815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166112f5565b60005b90506040518060a00160405280600081526020018361139557600160086000600660008d815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546113909190613589565b611398565b60005b8152602001600081526020018273ffffffffffffffffffffffffffffffffffffffff16815260200187815250600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160040155905050816114d157600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600081546114c99061384a565b919050819055505b8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f0f1d69260822cfdd7f473ca6efa6eb7f7a3e8190ef5f12b1ebbad31f7990b8c88860405161152e9190613892565b60405180910390a350505b600034036117f75761156e8130858573ffffffffffffffffffffffffffffffffffffffff16612643909392919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3737a250d5630b4cf539739df2c5dacb4c659f2488d856040518363ffffffff1660e01b81526004016115bd9291906138ad565b6020604051808303816000875af11580156115dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160091906138eb565b506000600367ffffffffffffffff81111561161e5761161d613918565b5b60405190808252806020026020018201604052801561164c5781602001602082028036833780820191505090505b5090508281600081518110611664576116636135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000000000000000000000000000000000000000000000816001815181106116d3576116d26135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600281518110611722576117216135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008433611c204261179f9190613589565b6040518663ffffffff1660e01b81526004016117bf959493929190613a05565b600060405180830381600087803b1580156117d957600080fd5b505af11580156117ed573d6000803e3d6000fd5b5050505050611999565b6000600267ffffffffffffffff81111561181457611813613918565b5b6040519080825280602002602001820160405280156118425781602001602082028036833780820191505090505b5090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061187a576118796135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106118c9576118c86135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de953460008433611c20426119469190613589565b6040518663ffffffff1660e01b81526004016119659493929190613a5f565b6000604051808303818588803b15801561197e57600080fd5b505af1158015611992573d6000803e3d6000fd5b5050505050505b6119a16126cc565b5050505050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b600d5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a5561227f565b60008203611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613af7565b60405180910390fd5b8160118190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600f5481565b611af261227f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613b89565b60405180910390fd5b611b6a8161257f565b50565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613c1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613cad565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d4f9190613181565b60405180910390a3505050565b6000611d6884846119c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611de25781811015611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613d19565b60405180910390fd5b611de18484848403611b93565b5b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e8c5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561226f57600f54811115611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613d85565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f435750600e5481611f3684610e52565b611f409190613589565b11155b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990613df1565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612063576000801b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401540361202c5761202b8361291a565b5b614e20600c5483028161204257612041613e11565b5b049050806010540160108190555061205a8382612adc565b810190506121a7565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561219d57614e20600d548302816120cb576120ca613e11565b5b0490508060105401601081905550808203915061210b84600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836122fd565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663316db7f2826040518263ffffffff1660e01b81526004016121669190613181565b600060405180830381600087803b15801561218057600080fd5b505af1158015612194573d6000803e3d6000fd5b505050506121a6565b6121a56126cc565b5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561224557506000801b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040154145b15612254576122538361291a565b5b6000811461226d576122678430836122fd565b80820391505b505b61227a8383836122fd565b505050565b612287611b8b565b73ffffffffffffffffffffffffffffffffffffffff166122a5610eaf565b73ffffffffffffffffffffffffffffffffffffffff16146122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613e8c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390613f1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290613fb0565b60405180910390fd5b6123e6838383612c98565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614042565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125029190613589565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125669190613181565b60405180910390a3612579848484612c9d565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126c6846323b872dd60e01b85858560405160240161266493929190614062565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ca2565b50505050565b601154601054101580156126ed5750600b60149054906101000a900460ff16155b15612918576001600b60146101000a81548160ff02191690831515021790555061272e30737a250d5630b4cf539739df2c5dacb4c659f2488d601054611b93565b6000600267ffffffffffffffff81111561274b5761274a613918565b5b6040519080825280602002602001820160405280156127795781602001602082028036833780820191505090505b5090503081600081518110612791576127906135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110612800576127ff6135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947601054600084600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c20426128a19190613589565b6040518663ffffffff1660e01b81526004016128c1959493929190613a05565b600060405180830381600087803b1580156128db57600080fd5b505af11580156128ef573d6000803e3d6000fd5b5050505060006010819055506000600b60146101000a81548160ff021916908315150217905550505b565b60005b600044428460405160200161293493929190614099565b6040516020818303038152906040528051906020012060001c90506402540be40080828161296557612964613e11565b5b0402810390508060001b915050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361291d57816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f0f1d69260822cfdd7f473ca6efa6eb7f7a3e8190ef5f12b1ebbad31f7990b8c883604051612ad09190613892565b60405180910390a35050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816001015414158015612b36575060008314155b15612c915760008160030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600101548481612b7857612b77613e11565b5b04935060005b8260010154811015612c855784600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015401600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150806001019050612b7e565b50816001015484029250505b5092915050565b505050565b505050565b6000612d04826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612d699092919063ffffffff16565b9050600081511115612d645780806020019051810190612d2491906138eb565b612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90614142565b60405180910390fd5b5b505050565b6060612d788484600085612d81565b90509392505050565b606082471015612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd906141d4565b60405180910390fd5b612dcf85612e95565b612e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0590614240565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612e3791906142a7565b60006040518083038185875af1925050503d8060008114612e74576040519150601f19603f3d011682016040523d82523d6000602084013e612e79565b606091505b5091509150612e89828286612eb8565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612ec857829050612f18565b600083511115612edb5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0f9190612faf565b60405180910390fd5b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f59578082015181840152602081019050612f3e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8182612f1f565b612f8b8185612f2a565b9350612f9b818560208601612f3b565b612fa481612f65565b840191505092915050565b60006020820190508181036000830152612fc98184612f76565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061300682612fdb565b9050919050565b61301681612ffb565b811461302157600080fd5b50565b6000813590506130338161300d565b92915050565b6000819050919050565b61304c81613039565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b6000806040838503121561308657613085612fd1565b5b600061309485828601613024565b92505060206130a58582860161305a565b9150509250929050565b60008115159050919050565b6130c4816130af565b82525050565b60006020820190506130df60008301846130bb565b92915050565b6000819050919050565b6130f8816130e5565b811461310357600080fd5b50565b600081359050613115816130ef565b92915050565b60006020828403121561313157613130612fd1565b5b600061313f84828501613106565b91505092915050565b61315181612ffb565b82525050565b600060208201905061316c6000830184613148565b92915050565b61317b81613039565b82525050565b60006020820190506131966000830184613172565b92915050565b6000602082840312156131b2576131b1612fd1565b5b60006131c084828501613024565b91505092915050565b6131d2816130e5565b82525050565b600060a0820190506131ed6000830188613172565b6131fa6020830187613172565b6132076040830186613172565b6132146060830185613148565b61322160808301846131c9565b9695505050505050565b60008060006060848603121561324457613243612fd1565b5b600061325286828701613024565b935050602061326386828701613024565b92505060406132748682870161305a565b9150509250925092565b600060ff82169050919050565b6132948161327e565b82525050565b60006020820190506132af600083018461328b565b92915050565b600080604083850312156132cc576132cb612fd1565b5b60006132da8582860161305a565b92505060206132eb8582860161305a565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261331a576133196132f5565b5b8235905067ffffffffffffffff811115613337576133366132fa565b5b602083019150836020820283011115613353576133526132ff565b5b9250929050565b613363816130af565b811461336e57600080fd5b50565b6000813590506133808161335a565b92915050565b60008060006040848603121561339f5761339e612fd1565b5b600084013567ffffffffffffffff8111156133bd576133bc612fd6565b5b6133c986828701613304565b935093505060206133dc86828701613371565b9150509250925092565b6000602082840312156133fc576133fb612fd1565b5b600061340a8482850161305a565b91505092915050565b6000806000806080858703121561342d5761342c612fd1565b5b600061343b87828801613106565b945050602061344c87828801613106565b935050604061345d8782880161305a565b925050606061346e87828801613024565b91505092959194509250565b6000806040838503121561349157613490612fd1565b5b600061349f85828601613024565b92505060206134b085828601613024565b9150509250929050565b600080604083850312156134d1576134d0612fd1565b5b60006134df8582860161305a565b92505060206134f085828601613024565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354157607f821691505b602082108103613554576135536134fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061359482613039565b915061359f83613039565b92508282019050808211156135b7576135b661355a565b5b92915050565b60006040820190506135d26000830185613172565b6135df6020830184613172565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136208261327e565b915060ff82036136335761363261355a565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061366d6136686136638461363e565b613648565b613039565b9050919050565b61367d81613652565b82525050565b600060c0820190506136986000830189613148565b6136a56020830188613172565b6136b26040830187613674565b6136bf6060830186613674565b6136cc6080830185613148565b6136d960a0830184613172565b979650505050505050565b6000815190506136f381613043565b92915050565b60008060006060848603121561371257613711612fd1565b5b6000613720868287016136e4565b9350506020613731868287016136e4565b9250506040613742868287016136e4565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137a8602583612f2a565b91506137b38261374c565b604082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b7f496e76616c696420636f64650000000000000000000000000000000000000000600082015250565b6000613814600c83612f2a565b915061381f826137de565b602082019050919050565b6000602082019050818103600083015261384381613807565b9050919050565b600061385582613039565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138875761388661355a565b5b600182019050919050565b60006020820190506138a760008301846131c9565b92915050565b60006040820190506138c26000830185613148565b6138cf6020830184613172565b9392505050565b6000815190506138e58161335a565b92915050565b60006020828403121561390157613900612fd1565b5b600061390f848285016138d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61397c81612ffb565b82525050565b600061398e8383613973565b60208301905092915050565b6000602082019050919050565b60006139b282613947565b6139bc8185613952565b93506139c783613963565b8060005b838110156139f85781516139df8882613982565b97506139ea8361399a565b9250506001810190506139cb565b5085935050505092915050565b600060a082019050613a1a6000830188613172565b613a276020830187613674565b8181036040830152613a3981866139a7565b9050613a486060830185613148565b613a556080830184613172565b9695505050505050565b6000608082019050613a746000830187613674565b8181036020830152613a8681866139a7565b9050613a956040830185613148565b613aa26060830184613172565b95945050505050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000613ae1600e83612f2a565b9150613aec82613aab565b602082019050919050565b60006020820190508181036000830152613b1081613ad4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b73602683612f2a565b9150613b7e82613b17565b604082019050919050565b60006020820190508181036000830152613ba281613b66565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c05602483612f2a565b9150613c1082613ba9565b604082019050919050565b60006020820190508181036000830152613c3481613bf8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c97602283612f2a565b9150613ca282613c3b565b604082019050919050565b60006020820190508181036000830152613cc681613c8a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d03601d83612f2a565b9150613d0e82613ccd565b602082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4f766572206d6178207472616e73666572000000000000000000000000000000600082015250565b6000613d6f601183612f2a565b9150613d7a82613d39565b602082019050919050565b60006020820190508181036000830152613d9e81613d62565b9050919050565b7f4f766572206d61782062616c616e636500000000000000000000000000000000600082015250565b6000613ddb601083612f2a565b9150613de682613da5565b602082019050919050565b60006020820190508181036000830152613e0a81613dce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e76602083612f2a565b9150613e8182613e40565b602082019050919050565b60006020820190508181036000830152613ea581613e69565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f08602583612f2a565b9150613f1382613eac565b604082019050919050565b60006020820190508181036000830152613f3781613efb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f9a602383612f2a565b9150613fa582613f3e565b604082019050919050565b60006020820190508181036000830152613fc981613f8d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061402c602683612f2a565b915061403782613fd0565b604082019050919050565b6000602082019050818103600083015261405b8161401f565b9050919050565b60006060820190506140776000830186613148565b6140846020830185613148565b6140916040830184613172565b949350505050565b60006060820190506140ae6000830186613172565b6140bb6020830185613172565b6140c86040830184613148565b949350505050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061412c602a83612f2a565b9150614137826140d0565b604082019050919050565b6000602082019050818103600083015261415b8161411f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006141be602683612f2a565b91506141c982614162565b604082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061422a601d83612f2a565b9150614235826141f4565b602082019050919050565b600060208201905081810360008301526142598161421d565b9050919050565b600081519050919050565b600081905092915050565b600061428182614260565b61428b818561426b565b935061429b818560208601612f3b565b80840191505092915050565b60006142b38284614276565b91508190509291505056fea2646970667358221220aa5a71fe1557fbc38ae0193fdaebfa1e8102414ecd376790fc77075da80e3fea64736f6c63430008110033000000000000000000000000b3b80235aaeb20afd307c0acb5fc1b1444f59ed3
Deployed Bytecode
0x6080604052600436106102085760003560e01c806370a0823111610118578063b2473efc116100a0578063ead0ffd41161006f578063ead0ffd414610786578063ed233ee9146107af578063f2fde38b146107da578063f887ea4014610803578063f8b45b051461082e5761020f565b8063b2473efc146106d7578063c45a0155146106f3578063cc1776d31461071e578063dd62ed3e146107495761020f565b806395d89b41116100e757806395d89b41146105de578063a457c2d714610609578063a5ece94114610646578063a9059cbb14610671578063a9d8efb7146106ae5761020f565b806370a0823114610522578063715018a61461055f5780638da5cb5b14610576578063940e5ff4146105a15761020f565b8063395093511161019b5780634e71d92d1161016a5780634e71d92d146104725780634f7041a51461048957806351c6590a146104b4578063667f6526146104d0578063667fd432146104f95761020f565b806339509351146103b85780633b91ceef146103f55780633fc8cef31461041e57806349e38f32146104495761020f565b80631959a002116101d75780631959a002146102e457806323b872dd146103255780632a5a8a4d14610362578063313ce5671461038d5761020f565b806306fdde0314610214578063095ea7b31461023f5780630c9852c21461027c57806318160ddd146102b95761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610859565b6040516102369190612faf565b60405180910390f35b34801561024b57600080fd5b506102666004803603810190610261919061306f565b6108eb565b60405161027391906130ca565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061311b565b61090e565b6040516102b09190613157565b60405180910390f35b3480156102c557600080fd5b506102ce610941565b6040516102db9190613181565b60405180910390f35b3480156102f057600080fd5b5061030b6004803603810190610306919061319c565b61094b565b60405161031c9594939291906131d8565b60405180910390f35b34801561033157600080fd5b5061034c6004803603810190610347919061322b565b6109a1565b60405161035991906130ca565b60405180910390f35b34801561036e57600080fd5b506103776109d0565b6040516103849190613157565b60405180910390f35b34801561039957600080fd5b506103a26109f6565b6040516103af919061329a565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da919061306f565b6109ff565b6040516103ec91906130ca565b60405180910390f35b34801561040157600080fd5b5061041c600480360381019061041791906132b5565b610a36565b005b34801561042a57600080fd5b50610433610a8d565b6040516104409190613157565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613386565b610ab1565b005b34801561047e57600080fd5b50610487610b62565b005b34801561049557600080fd5b5061049e610c53565b6040516104ab9190613181565b60405180910390f35b6104ce60048036038101906104c991906133e6565b610c59565b005b3480156104dc57600080fd5b506104f760048036038101906104f291906132b5565b610d4a565b005b34801561050557600080fd5b50610520600480360381019061051b9190613386565b610da1565b005b34801561052e57600080fd5b506105496004803603810190610544919061319c565b610e52565b6040516105569190613181565b60405180910390f35b34801561056b57600080fd5b50610574610e9b565b005b34801561058257600080fd5b5061058b610eaf565b6040516105989190613157565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c3919061319c565b610ed8565b6040516105d591906130ca565b60405180910390f35b3480156105ea57600080fd5b506105f3610ef8565b6040516106009190612faf565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b919061306f565b610f8a565b60405161063d91906130ca565b60405180910390f35b34801561065257600080fd5b5061065b611001565b6040516106689190613157565b60405180910390f35b34801561067d57600080fd5b506106986004803603810190610693919061306f565b611027565b6040516106a591906130ca565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d0919061319c565b61104a565b005b6106f160048036038101906106ec9190613413565b611110565b005b3480156106ff57600080fd5b506107086119a8565b6040516107159190613157565b60405180910390f35b34801561072a57600080fd5b506107336119c0565b6040516107409190613181565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b919061347a565b6119c6565b60405161077d9190613181565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a891906134ba565b611a4d565b005b3480156107bb57600080fd5b506107c4611ae4565b6040516107d19190613181565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc919061319c565b611aea565b005b34801561080f57600080fd5b50610818611b6d565b6040516108259190613157565b60405180910390f35b34801561083a57600080fd5b50610843611b85565b6040516108509190613181565b60405180910390f35b60606004805461086890613529565b80601f016020809104026020016040519081016040528092919081815260200182805461089490613529565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b6000806108f6611b8b565b9050610903818585611b93565b600191505092915050565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60086020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060040154905085565b6000806109ac611b8b565b90506109b9858285611d5c565b6109c4858585611de8565b60019150509392505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610a0a611b8b565b9050610a2b818585610a1c85896119c6565b610a269190613589565b611b93565b600191505092915050565b610a3e61227f565b81600e8190555080600f819055507f32d22f6a85761eacd4dc182429b656891cf4ecb2428ed264e0243bb5488fea0f600e54600f54604051610a819291906135bd565b60405180910390a15050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b610ab961227f565b60005b838390508160ff161015610b5c57816007600086868560ff16818110610ae557610ae46135e6565b5b9050602002016020810190610afa919061319c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080610b5590613615565b9050610abc565b50505050565b60003390506000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050610bb93083836122fd565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055508173ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610c479190613181565b60405180910390a25050565b600c5481565b60003414158015610c6b575060008114155b15610d4757610c7b3330836122fd565b610c9a30737a250d5630b4cf539739df2c5dacb4c659f2488d83611b93565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71934308460008033611c2042610cdf9190613589565b6040518863ffffffff1660e01b8152600401610d0096959493929190613683565b60606040518083038185885af1158015610d1e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d4391906136f9565b5050505b50565b610d5261227f565b81600c8190555080600d819055507f066acf8dc86fdf444456fd1e73b5e50347cdef064ca99b9e5b59964463730da8600c54600d54604051610d959291906135bd565b60405180910390a15050565b610da961227f565b60005b838390508160ff161015610e4c57816009600086868560ff16818110610dd557610dd46135e6565b5b9050602002016020810190610dea919061319c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080610e4590613615565b9050610dac565b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ea361227f565b610ead600061257f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60076020528060005260406000206000915054906101000a900460ff1681565b606060058054610f0790613529565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3390613529565b8015610f805780601f10610f5557610100808354040283529160200191610f80565b820191906000526020600020905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b600080610f95611b8b565b90506000610fa382866119c6565b905083811015610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf906137be565b60405180910390fd5b610ff58286868403611b93565b60019250505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611032611b8b565b905061103f818585611de8565b600191505092915050565b61105261227f565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160096000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60003390506000801b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004015403611539576000801b84036111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061382a565b60405180910390fd5b6000801b8514806112175750600073ffffffffffffffffffffffffffffffffffffffff166006600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d9061382a565b60405180910390fd5b806006600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060001b861490506000816112f2576006600088815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166112f5565b60005b90506040518060a00160405280600081526020018361139557600160086000600660008d815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101546113909190613589565b611398565b60005b8152602001600081526020018273ffffffffffffffffffffffffffffffffffffffff16815260200187815250600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060808201518160040155905050816114d157600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600081546114c99061384a565b919050819055505b8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f0f1d69260822cfdd7f473ca6efa6eb7f7a3e8190ef5f12b1ebbad31f7990b8c88860405161152e9190613892565b60405180910390a350505b600034036117f75761156e8130858573ffffffffffffffffffffffffffffffffffffffff16612643909392919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3737a250d5630b4cf539739df2c5dacb4c659f2488d856040518363ffffffff1660e01b81526004016115bd9291906138ad565b6020604051808303816000875af11580156115dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160091906138eb565b506000600367ffffffffffffffff81111561161e5761161d613918565b5b60405190808252806020026020018201604052801561164c5781602001602082028036833780820191505090505b5090508281600081518110611664576116636135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106116d3576116d26135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600281518110611722576117216135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d7958560008433611c204261179f9190613589565b6040518663ffffffff1660e01b81526004016117bf959493929190613a05565b600060405180830381600087803b1580156117d957600080fd5b505af11580156117ed573d6000803e3d6000fd5b5050505050611999565b6000600267ffffffffffffffff81111561181457611813613918565b5b6040519080825280602002602001820160405280156118425781602001602082028036833780820191505090505b5090507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160008151811061187a576118796135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106118c9576118c86135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de953460008433611c20426119469190613589565b6040518663ffffffff1660e01b81526004016119659493929190613a5f565b6000604051808303818588803b15801561197e57600080fd5b505af1158015611992573d6000803e3d6000fd5b5050505050505b6119a16126cc565b5050505050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b600d5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a5561227f565b60008203611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613af7565b60405180910390fd5b8160118190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600f5481565b611af261227f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613b89565b60405180910390fd5b611b6a8161257f565b50565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613c1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613cad565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d4f9190613181565b60405180910390a3505050565b6000611d6884846119c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611de25781811015611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90613d19565b60405180910390fd5b611de18484848403611b93565b5b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611e8c5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561226f57600f54811115611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90613d85565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611f435750600e5481611f3684610e52565b611f409190613589565b11155b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990613df1565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612063576000801b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401540361202c5761202b8361291a565b5b614e20600c5483028161204257612041613e11565b5b049050806010540160108190555061205a8382612adc565b810190506121a7565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561219d57614e20600d548302816120cb576120ca613e11565b5b0490508060105401601081905550808203915061210b84600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836122fd565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663316db7f2826040518263ffffffff1660e01b81526004016121669190613181565b600060405180830381600087803b15801561218057600080fd5b505af1158015612194573d6000803e3d6000fd5b505050506121a6565b6121a56126cc565b5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561224557506000801b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040154145b15612254576122538361291a565b5b6000811461226d576122678430836122fd565b80820391505b505b61227a8383836122fd565b505050565b612287611b8b565b73ffffffffffffffffffffffffffffffffffffffff166122a5610eaf565b73ffffffffffffffffffffffffffffffffffffffff16146122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613e8c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390613f1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290613fb0565b60405180910390fd5b6123e6838383612c98565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614042565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125029190613589565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125669190613181565b60405180910390a3612579848484612c9d565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126c6846323b872dd60e01b85858560405160240161266493929190614062565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ca2565b50505050565b601154601054101580156126ed5750600b60149054906101000a900460ff16155b15612918576001600b60146101000a81548160ff02191690831515021790555061272e30737a250d5630b4cf539739df2c5dacb4c659f2488d601054611b93565b6000600267ffffffffffffffff81111561274b5761274a613918565b5b6040519080825280602002602001820160405280156127795781602001602082028036833780820191505090505b5090503081600081518110612791576127906135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110612800576127ff6135e6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947601054600084600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c20426128a19190613589565b6040518663ffffffff1660e01b81526004016128c1959493929190613a05565b600060405180830381600087803b1580156128db57600080fd5b505af11580156128ef573d6000803e3d6000fd5b5050505060006010819055506000600b60146101000a81548160ff021916908315150217905550505b565b60005b600044428460405160200161293493929190614099565b6040516020818303038152906040528051906020012060001c90506402540be40080828161296557612964613e11565b5b0402810390508060001b915050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361291d57816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f0f1d69260822cfdd7f473ca6efa6eb7f7a3e8190ef5f12b1ebbad31f7990b8c883604051612ad09190613892565b60405180910390a35050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816001015414158015612b36575060008314155b15612c915760008160030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600101548481612b7857612b77613e11565b5b04935060005b8260010154811015612c855784600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015401600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150806001019050612b7e565b50816001015484029250505b5092915050565b505050565b505050565b6000612d04826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612d699092919063ffffffff16565b9050600081511115612d645780806020019051810190612d2491906138eb565b612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90614142565b60405180910390fd5b5b505050565b6060612d788484600085612d81565b90509392505050565b606082471015612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd906141d4565b60405180910390fd5b612dcf85612e95565b612e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0590614240565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612e3791906142a7565b60006040518083038185875af1925050503d8060008114612e74576040519150601f19603f3d011682016040523d82523d6000602084013e612e79565b606091505b5091509150612e89828286612eb8565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612ec857829050612f18565b600083511115612edb5782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0f9190612faf565b60405180910390fd5b9392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f59578082015181840152602081019050612f3e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8182612f1f565b612f8b8185612f2a565b9350612f9b818560208601612f3b565b612fa481612f65565b840191505092915050565b60006020820190508181036000830152612fc98184612f76565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061300682612fdb565b9050919050565b61301681612ffb565b811461302157600080fd5b50565b6000813590506130338161300d565b92915050565b6000819050919050565b61304c81613039565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b6000806040838503121561308657613085612fd1565b5b600061309485828601613024565b92505060206130a58582860161305a565b9150509250929050565b60008115159050919050565b6130c4816130af565b82525050565b60006020820190506130df60008301846130bb565b92915050565b6000819050919050565b6130f8816130e5565b811461310357600080fd5b50565b600081359050613115816130ef565b92915050565b60006020828403121561313157613130612fd1565b5b600061313f84828501613106565b91505092915050565b61315181612ffb565b82525050565b600060208201905061316c6000830184613148565b92915050565b61317b81613039565b82525050565b60006020820190506131966000830184613172565b92915050565b6000602082840312156131b2576131b1612fd1565b5b60006131c084828501613024565b91505092915050565b6131d2816130e5565b82525050565b600060a0820190506131ed6000830188613172565b6131fa6020830187613172565b6132076040830186613172565b6132146060830185613148565b61322160808301846131c9565b9695505050505050565b60008060006060848603121561324457613243612fd1565b5b600061325286828701613024565b935050602061326386828701613024565b92505060406132748682870161305a565b9150509250925092565b600060ff82169050919050565b6132948161327e565b82525050565b60006020820190506132af600083018461328b565b92915050565b600080604083850312156132cc576132cb612fd1565b5b60006132da8582860161305a565b92505060206132eb8582860161305a565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261331a576133196132f5565b5b8235905067ffffffffffffffff811115613337576133366132fa565b5b602083019150836020820283011115613353576133526132ff565b5b9250929050565b613363816130af565b811461336e57600080fd5b50565b6000813590506133808161335a565b92915050565b60008060006040848603121561339f5761339e612fd1565b5b600084013567ffffffffffffffff8111156133bd576133bc612fd6565b5b6133c986828701613304565b935093505060206133dc86828701613371565b9150509250925092565b6000602082840312156133fc576133fb612fd1565b5b600061340a8482850161305a565b91505092915050565b6000806000806080858703121561342d5761342c612fd1565b5b600061343b87828801613106565b945050602061344c87828801613106565b935050604061345d8782880161305a565b925050606061346e87828801613024565b91505092959194509250565b6000806040838503121561349157613490612fd1565b5b600061349f85828601613024565b92505060206134b085828601613024565b9150509250929050565b600080604083850312156134d1576134d0612fd1565b5b60006134df8582860161305a565b92505060206134f085828601613024565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354157607f821691505b602082108103613554576135536134fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061359482613039565b915061359f83613039565b92508282019050808211156135b7576135b661355a565b5b92915050565b60006040820190506135d26000830185613172565b6135df6020830184613172565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136208261327e565b915060ff82036136335761363261355a565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061366d6136686136638461363e565b613648565b613039565b9050919050565b61367d81613652565b82525050565b600060c0820190506136986000830189613148565b6136a56020830188613172565b6136b26040830187613674565b6136bf6060830186613674565b6136cc6080830185613148565b6136d960a0830184613172565b979650505050505050565b6000815190506136f381613043565b92915050565b60008060006060848603121561371257613711612fd1565b5b6000613720868287016136e4565b9350506020613731868287016136e4565b9250506040613742868287016136e4565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137a8602583612f2a565b91506137b38261374c565b604082019050919050565b600060208201905081810360008301526137d78161379b565b9050919050565b7f496e76616c696420636f64650000000000000000000000000000000000000000600082015250565b6000613814600c83612f2a565b915061381f826137de565b602082019050919050565b6000602082019050818103600083015261384381613807565b9050919050565b600061385582613039565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138875761388661355a565b5b600182019050919050565b60006020820190506138a760008301846131c9565b92915050565b60006040820190506138c26000830185613148565b6138cf6020830184613172565b9392505050565b6000815190506138e58161335a565b92915050565b60006020828403121561390157613900612fd1565b5b600061390f848285016138d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61397c81612ffb565b82525050565b600061398e8383613973565b60208301905092915050565b6000602082019050919050565b60006139b282613947565b6139bc8185613952565b93506139c783613963565b8060005b838110156139f85781516139df8882613982565b97506139ea8361399a565b9250506001810190506139cb565b5085935050505092915050565b600060a082019050613a1a6000830188613172565b613a276020830187613674565b8181036040830152613a3981866139a7565b9050613a486060830185613148565b613a556080830184613172565b9695505050505050565b6000608082019050613a746000830187613674565b8181036020830152613a8681866139a7565b9050613a956040830185613148565b613aa26060830184613172565b95945050505050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000613ae1600e83612f2a565b9150613aec82613aab565b602082019050919050565b60006020820190508181036000830152613b1081613ad4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b73602683612f2a565b9150613b7e82613b17565b604082019050919050565b60006020820190508181036000830152613ba281613b66565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c05602483612f2a565b9150613c1082613ba9565b604082019050919050565b60006020820190508181036000830152613c3481613bf8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c97602283612f2a565b9150613ca282613c3b565b604082019050919050565b60006020820190508181036000830152613cc681613c8a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613d03601d83612f2a565b9150613d0e82613ccd565b602082019050919050565b60006020820190508181036000830152613d3281613cf6565b9050919050565b7f4f766572206d6178207472616e73666572000000000000000000000000000000600082015250565b6000613d6f601183612f2a565b9150613d7a82613d39565b602082019050919050565b60006020820190508181036000830152613d9e81613d62565b9050919050565b7f4f766572206d61782062616c616e636500000000000000000000000000000000600082015250565b6000613ddb601083612f2a565b9150613de682613da5565b602082019050919050565b60006020820190508181036000830152613e0a81613dce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e76602083612f2a565b9150613e8182613e40565b602082019050919050565b60006020820190508181036000830152613ea581613e69565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f08602583612f2a565b9150613f1382613eac565b604082019050919050565b60006020820190508181036000830152613f3781613efb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f9a602383612f2a565b9150613fa582613f3e565b604082019050919050565b60006020820190508181036000830152613fc981613f8d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061402c602683612f2a565b915061403782613fd0565b604082019050919050565b6000602082019050818103600083015261405b8161401f565b9050919050565b60006060820190506140776000830186613148565b6140846020830185613148565b6140916040830184613172565b949350505050565b60006060820190506140ae6000830186613172565b6140bb6020830185613172565b6140c86040830184613148565b949350505050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061412c602a83612f2a565b9150614137826140d0565b604082019050919050565b6000602082019050818103600083015261415b8161411f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006141be602683612f2a565b91506141c982614162565b604082019050919050565b600060208201905081810360008301526141ed816141b1565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061422a601d83612f2a565b9150614235826141f4565b602082019050919050565b600060208201905081810360008301526142598161421d565b9050919050565b600081519050919050565b600081905092915050565b600061428182614260565b61428b818561426b565b935061429b818560208601612f3b565b80840191505092915050565b60006142b38284614276565b91508190509291505056fea2646970667358221220aa5a71fe1557fbc38ae0193fdaebfa1e8102414ecd376790fc77075da80e3fea64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b3b80235aaeb20afd307c0acb5fc1b1444f59ed3
-----Decoded View---------------
Arg [0] : _marketing (address): 0xb3b80235AaEb20afd307C0acb5fc1B1444F59Ed3
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b3b80235aaeb20afd307c0acb5fc1b1444f59ed3
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.