ERC-20
Overview
Max Total Supply
100,000,000 Mitch
Holders
27
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
801,454.210530020042356109 MitchValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ElonIsGoat
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)
// SPDX-License-Identifier: MIT //TG: https://t.me/ElonIsTyping_Portal //Twitter: https://twitter.com/ElonMusk //Website: I dont give a fk about this, noone will check it pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; interface IWETH is IERC20 { function deposit() external payable; function withdraw(uint256) external; } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract ElonIsGoat is ERC20, Ownable { using SafeERC20 for IERC20; using Address for address payable; uint256 public maxTxAmount; uint256 public maxWallet; bool private swapEnabled = false; bool public inSwap; bool public limitsInEffect = true; modifier swapping() { inSwap = true; _; inSwap = false; } mapping(address => bool) public isFeeExempt; mapping(address => bool) public isTxLimitExempt; mapping(address => bool) public isWalletLimitExempt; mapping(address => bool) public canAddLiquidityBeforeLaunch; uint256 private teamFee; uint256 private totalFee; uint256 public feeDenominator = 10000; uint256 public teamFeeBuy; uint256 public totalFeeBuy; uint256 public teamFeeSell; uint256 public totalFeeSell; address payable private teamWallet; uint256 public launchedAt; uint256 public launchedAtTimestamp; bool private initialized; IUniswapV2Router02 private uniswapV2Router; address public pair; bool private tradingOpen; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; uint256 tTotalSupply; constructor( string memory _name, string memory _symbol, uint256 _totalSupply, uint8 _maxTxAmount, uint8 _maxWallet, uint256 _teamBuyFee, uint256 _teamSellFee, address _teamWallet ) ERC20(_name, _symbol) { tTotalSupply = _totalSupply * 1e18; maxTxAmount = (tTotalSupply * _maxTxAmount) / 100; maxWallet = (tTotalSupply * _maxWallet) / 100; teamFeeBuy = _teamBuyFee * 100; totalFeeBuy = teamFeeBuy; teamFeeSell = _teamSellFee * 100; totalFeeSell = teamFeeSell; teamWallet = payable(_teamWallet); canAddLiquidityBeforeLaunch[_msgSender()] = true; canAddLiquidityBeforeLaunch[address(this)] = true; isFeeExempt[msg.sender] = true; isWalletLimitExempt[msg.sender] = true; isTxLimitExempt[msg.sender] = true; isFeeExempt[address(this)] = true; isTxLimitExempt[address(this)] = true; isWalletLimitExempt[address(this)] = true; _mint(_msgSender(), tTotalSupply); } receive() external payable {} function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); require(launchedAt == 0, "Already launched"); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), tTotalSupply); pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); IERC20(pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; launchedAt = block.number; launchedAtTimestamp = block.timestamp; } function transfer( address to, uint256 amount ) public virtual override returns (bool) { return _tokenTransfer(_msgSender(), to, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(sender, spender, amount); return _tokenTransfer(sender, recipient, amount); } function _tokenTransfer( address sender, address recipient, uint256 amount ) internal returns (bool) { if (inSwap) { _transfer(sender, recipient, amount); return true; } if (!canAddLiquidityBeforeLaunch[sender]) { require(launched(), "Trading not open yet"); } if (limitsInEffect) { checkWalletLimit(recipient, amount); checkTxLimit(sender, amount); } if (sender == pair) { buyFees(); } if (recipient == pair) { sellFees(); } if (shouldSwapBack(sender,recipient)) { swapBack(); } uint256 amountReceived = shouldTakeFee(sender, recipient) ? takeFee(sender, amount) : amount; _transfer(sender, recipient, amountReceived); return true; } // Internal Functions function shouldSwapBack(address sender, address recipient) internal view returns (bool) { return !inSwap && swapEnabled && (!isFeeExempt[sender] || !isFeeExempt[recipient]) && launched() && balanceOf(address(this)) > 0 && _msgSender() != pair; } function swapBack() internal swapping { uint256 taxAmount = balanceOf(address(this)); _approve(address(this), address(uniswapV2Router), taxAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = address(uniswapV2Router.WETH()); uint256 balanceBefore = address(this).balance; uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( taxAmount, 0, path, address(this), block.timestamp ); uint256 amountETH = address(this).balance - balanceBefore; teamWallet.sendValue(amountETH); // Send the entire amount to the teamWallet } function launched() internal view returns (bool) { return launchedAt != 0; } function buyFees() internal { teamFee = teamFeeBuy; totalFee = totalFeeBuy; } function sellFees() internal { teamFee = teamFeeSell; totalFee = totalFeeSell; } function shouldTakeFee(address sender, address recipient) internal view returns (bool) { return (!isFeeExempt[sender] || !isFeeExempt[recipient]) && launched(); } function takeFee( address sender, uint256 amount ) internal returns (uint256) { uint256 feeAmount = (amount * totalFee) / feeDenominator; _transfer(sender, address(this), feeAmount); return amount - feeAmount; } function checkWalletLimit(address recipient, uint256 amount) internal view { if ( recipient != owner() && recipient != address(this) && recipient != address(DEAD) && recipient != pair && !isWalletLimitExempt[recipient] ) { uint256 heldTokens = balanceOf(recipient); require( (heldTokens + amount) <= maxWallet, "Total Holding is currently limited, you can not buy that much." ); } } function checkTxLimit(address sender, uint256 amount) internal view { require( amount <= maxTxAmount || isTxLimitExempt[sender], "TX Limit Exceeded" ); } function rescueToken(address tokenAddress) external onlyOwner { IERC20(tokenAddress).safeTransfer( msg.sender, IERC20(tokenAddress).balanceOf(address(this)) ); } function clearStuckBalance() external onlyOwner { uint256 amountETH = address(this).balance; payable(_msgSender()).sendValue(amountETH); } function getCirculatingSupply() public view returns (uint256) { return totalSupply() - balanceOf(DEAD); } function setBuyFees(uint256 _teamFee) external onlyOwner { teamFeeBuy = _teamFee; totalFeeBuy = _teamFee ; } function setSellFees(uint256 _teamFee) external onlyOwner { teamFeeSell = _teamFee; totalFeeSell = _teamFee ; } function setFeeReceivers(address _teamWallet) external onlyOwner { teamWallet = payable(_teamWallet); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= totalSupply() / 100); maxWallet = amount; } function setTxLimit(uint256 amount) external onlyOwner { require(amount >= totalSupply() / 100); maxTxAmount = amount; } function setIsFeeExempt(address[] memory holders, bool[] memory exemptions) external onlyOwner { require(holders.length == exemptions.length, "Arrays must have the same length"); for (uint256 i = 0; i < holders.length; i++) { isFeeExempt[holders[i]] = exemptions[i]; } } function setIsTxLimitExempt(address[] memory holders, bool[] memory exemptions) external onlyOwner { require(holders.length == exemptions.length, "Arrays must have the same length"); for (uint256 i = 0; i < holders.length; i++) { isTxLimitExempt[holders[i]] = exemptions[i]; } } function setIsWalletLimitExempt(address[] memory holders, bool[] memory exemptions) external onlyOwner { require(holders.length == exemptions.length, "Arrays must have the same length"); for (uint256 i = 0; i < holders.length; i++) { isWalletLimitExempt[holders[i]] = exemptions[i]; } } function setSwapBackSettings(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// 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.9.0) (token/ERC20/extensions/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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/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; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ 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"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ 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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "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":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint8","name":"_maxTxAmount","type":"uint8"},{"internalType":"uint8","name":"_maxWallet","type":"uint8"},{"internalType":"uint256","name":"_teamBuyFee","type":"uint256"},{"internalType":"uint256","name":"_teamSellFee","type":"uint256"},{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"canAddLiquidityBeforeLaunch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","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":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTxLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"},{"internalType":"bool[]","name":"exemptions","type":"bool[]"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"},{"internalType":"bool[]","name":"exemptions","type":"bool[]"}],"name":"setIsTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"},{"internalType":"bool[]","name":"exemptions","type":"bool[]"}],"name":"setIsWalletLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600860006101000a81548160ff0219169083151502179055506001600860026101000a81548160ff021916908315150217905550612710600f553480156200004d57600080fd5b50604051620052f7380380620052f7833981810160405281019062000073919062000958565b8787816003908162000086919062000ca0565b50806004908162000098919062000ca0565b505050620000bb620000af620004a260201b60201c565b620004aa60201b60201c565b670de0b6b3a764000086620000d1919062000db6565b60198190555060648560ff16601954620000ec919062000db6565b620000f8919062000e30565b60068190555060648460ff1660195462000113919062000db6565b6200011f919062000e30565b60078190555060648362000134919062000db6565b60108190555060105460118190555060648262000152919062000db6565b60128190555060125460138190555080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c6000620001b8620004a260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200049462000485620004a260201b60201c565b6019546200057060201b60201c565b505050505050505062000f54565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d99062000ec9565b60405180910390fd5b620005f660008383620006dd60201b60201c565b80600260008282546200060a919062000eeb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006bd919062000f37565b60405180910390a3620006d960008383620006e260201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007508262000705565b810181811067ffffffffffffffff8211171562000772576200077162000716565b5b80604052505050565b600062000787620006e7565b905062000795828262000745565b919050565b600067ffffffffffffffff821115620007b857620007b762000716565b5b620007c38262000705565b9050602081019050919050565b60005b83811015620007f0578082015181840152602081019050620007d3565b60008484015250505050565b6000620008136200080d846200079a565b6200077b565b90508281526020810184848401111562000832576200083162000700565b5b6200083f848285620007d0565b509392505050565b600082601f8301126200085f576200085e620006fb565b5b815162000871848260208601620007fc565b91505092915050565b6000819050919050565b6200088f816200087a565b81146200089b57600080fd5b50565b600081519050620008af8162000884565b92915050565b600060ff82169050919050565b620008cd81620008b5565b8114620008d957600080fd5b50565b600081519050620008ed81620008c2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200092082620008f3565b9050919050565b620009328162000913565b81146200093e57600080fd5b50565b600081519050620009528162000927565b92915050565b600080600080600080600080610100898b0312156200097c576200097b620006f1565b5b600089015167ffffffffffffffff8111156200099d576200099c620006f6565b5b620009ab8b828c0162000847565b985050602089015167ffffffffffffffff811115620009cf57620009ce620006f6565b5b620009dd8b828c0162000847565b9750506040620009f08b828c016200089e565b965050606062000a038b828c01620008dc565b955050608062000a168b828c01620008dc565b94505060a062000a298b828c016200089e565b93505060c062000a3c8b828c016200089e565b92505060e062000a4f8b828c0162000941565b9150509295985092959890939650565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ab257607f821691505b60208210810362000ac85762000ac762000a6a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000af3565b62000b3e868362000af3565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b8162000b7b62000b75846200087a565b62000b56565b6200087a565b9050919050565b6000819050919050565b62000b9d8362000b60565b62000bb562000bac8262000b88565b84845462000b00565b825550505050565b600090565b62000bcc62000bbd565b62000bd981848462000b92565b505050565b5b8181101562000c015762000bf560008262000bc2565b60018101905062000bdf565b5050565b601f82111562000c505762000c1a8162000ace565b62000c258462000ae3565b8101602085101562000c35578190505b62000c4d62000c448562000ae3565b83018262000bde565b50505b505050565b600082821c905092915050565b600062000c756000198460080262000c55565b1980831691505092915050565b600062000c90838362000c62565b9150826002028217905092915050565b62000cab8262000a5f565b67ffffffffffffffff81111562000cc75762000cc662000716565b5b62000cd3825462000a99565b62000ce082828562000c05565b600060209050601f83116001811462000d18576000841562000d03578287015190505b62000d0f858262000c82565b86555062000d7f565b601f19841662000d288662000ace565b60005b8281101562000d525784890151825560018201915060208501945060208101905062000d2b565b8683101562000d72578489015162000d6e601f89168262000c62565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dc3826200087a565b915062000dd0836200087a565b925082820262000de0816200087a565b9150828204841483151762000dfa5762000df962000d87565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e3d826200087a565b915062000e4a836200087a565b92508262000e5d5762000e5c62000e01565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb1601f8362000e68565b915062000ebe8262000e79565b602082019050919050565b6000602082019050818103600083015262000ee48162000ea2565b9050919050565b600062000ef8826200087a565b915062000f05836200087a565b925082820190508082111562000f205762000f1f62000d87565b5b92915050565b62000f31816200087a565b82525050565b600060208201905062000f4e600083018462000f26565b92915050565b6143938062000f646000396000f3fe60806040526004361061026b5760003560e01c80638b42507f11610144578063bf56b371116100b6578063dcf7aef31161007a578063dcf7aef314610941578063dd62ed3e1461096a578063e01bb688146109a7578063f2fde38b146109d0578063f8b45b05146109f9578063fb5f27fb14610a2457610272565b8063bf56b3711461086c578063c6d2577d14610897578063c867d60b146108c2578063c9567bf9146108ff578063d83067861461091657610272565b806398957c391161010857806398957c391461074c578063a457c2d714610775578063a66854b2146107b2578063a8aa1b31146107db578063a9059cbb14610806578063b8c611301461084357610272565b80638b42507f146106655780638c0b5e22146106a25780638da5cb5b146106cd57806395927c25146106f857806395d89b411461072157610272565b80634460d3cf116101dd57806370a08231116101a157806370a0823114610555578063715018a614610592578063751039fc146105a95780637fdb5df7146105d45780638072250b146105fd57806384f6820a1461063a57610272565b80634460d3cf146104845780634a62bb65146104ad57806353148416146104d85780635c85974f146105035780635d0044ca1461052c57610272565b80632b112e491161022f5780632b112e4914610372578063313ce5671461039d578063364333f4146103c857806339509351146103df5780633b32f37c1461041c5780633f4218e01461044757610272565b806306fdde0314610277578063095ea7b3146102a2578063180b0d7e146102df57806318160ddd1461030a57806323b872dd1461033557610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a4f565b6040516102999190612de5565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612eaf565b610ae1565b6040516102d69190612f0a565b60405180910390f35b3480156102eb57600080fd5b506102f4610b04565b6040516103019190612f34565b60405180910390f35b34801561031657600080fd5b5061031f610b0a565b60405161032c9190612f34565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612f4f565b610b14565b6040516103699190612f0a565b60405180910390f35b34801561037e57600080fd5b50610387610b41565b6040516103949190612f34565b60405180910390f35b3480156103a957600080fd5b506103b2610b65565b6040516103bf9190612fbe565b60405180910390f35b3480156103d457600080fd5b506103dd610b6e565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612eaf565b610bae565b6040516104139190612f0a565b60405180910390f35b34801561042857600080fd5b50610431610be5565b60405161043e9190612f34565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612fd9565b610beb565b60405161047b9190612f0a565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190612fd9565b610c0b565b005b3480156104b957600080fd5b506104c2610cba565b6040516104cf9190612f0a565b60405180910390f35b3480156104e457600080fd5b506104ed610ccd565b6040516104fa9190612f34565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613006565b610cd3565b005b34801561053857600080fd5b50610553600480360381019061054e9190613006565b610d05565b005b34801561056157600080fd5b5061057c60048036038101906105779190612fd9565b610d37565b6040516105899190612f34565b60405180910390f35b34801561059e57600080fd5b506105a7610d7f565b005b3480156105b557600080fd5b506105be610d93565b6040516105cb9190612f0a565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f6919061326a565b610dbf565b005b34801561060957600080fd5b50610624600480360381019061061f9190612fd9565b610eba565b6040516106319190612f0a565b60405180910390f35b34801561064657600080fd5b5061064f610eda565b60405161065c9190612f34565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190612fd9565b610ee0565b6040516106999190612f0a565b60405180910390f35b3480156106ae57600080fd5b506106b7610f00565b6040516106c49190612f34565b60405180910390f35b3480156106d957600080fd5b506106e2610f06565b6040516106ef91906132f1565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190613006565b610f30565b005b34801561072d57600080fd5b50610736610f49565b6040516107439190612de5565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061326a565b610fdb565b005b34801561078157600080fd5b5061079c60048036038101906107979190612eaf565b6110d6565b6040516107a99190612f0a565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d4919061326a565b61114d565b005b3480156107e757600080fd5b506107f0611248565b6040516107fd91906132f1565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190612eaf565b61126e565b60405161083a9190612f0a565b60405180910390f35b34801561084f57600080fd5b5061086a6004803603810190610865919061330c565b61128a565b005b34801561087857600080fd5b506108816112af565b60405161088e9190612f34565b60405180910390f35b3480156108a357600080fd5b506108ac6112b5565b6040516108b99190612f34565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190612fd9565b6112bb565b6040516108f69190612f0a565b60405180910390f35b34801561090b57600080fd5b506109146112db565b005b34801561092257600080fd5b5061092b6117bf565b6040516109389190612f0a565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613006565b6117d2565b005b34801561097657600080fd5b50610991600480360381019061098c9190613339565b6117eb565b60405161099e9190612f34565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c99190612fd9565b611872565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190612fd9565b6118be565b005b348015610a0557600080fd5b50610a0e611941565b604051610a1b9190612f34565b60405180910390f35b348015610a3057600080fd5b50610a39611947565b604051610a469190612f34565b60405180910390f35b606060038054610a5e906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a906133a8565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b5050505050905090565b600080610aec61194d565b9050610af9818585611955565b600191505092915050565b600f5481565b6000600254905090565b600080610b1f61194d565b9050610b2c858285611b1e565b610b37858585611baa565b9150509392505050565b6000610b4e61dead610d37565b610b56610b0a565b610b609190613408565b905090565b60006012905090565b610b76611da7565b6000479050610bab81610b8761194d565b73ffffffffffffffffffffffffffffffffffffffff16611e2590919063ffffffff16565b50565b600080610bb961194d565b9050610bda818585610bcb85896117eb565b610bd5919061343c565b611955565b600191505092915050565b60105481565b60096020528060005260406000206000915054906101000a900460ff1681565b610c13611da7565b610cb7338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c5091906132f1565b602060405180830381865afa158015610c6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c919190613485565b8373ffffffffffffffffffffffffffffffffffffffff16611f199092919063ffffffff16565b50565b600860029054906101000a900460ff1681565b60135481565b610cdb611da7565b6064610ce5610b0a565b610cef91906134e1565b811015610cfb57600080fd5b8060068190555050565b610d0d611da7565b6064610d17610b0a565b610d2191906134e1565b811015610d2d57600080fd5b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d87611da7565b610d916000611f9f565b565b6000610d9d611da7565b6000600860026101000a81548160ff0219169083151502179055506001905090565b610dc7611da7565b8051825114610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061355e565b60405180910390fd5b60005b8251811015610eb557818181518110610e2a57610e2961357e565b5b602002602001015160096000858481518110610e4957610e4861357e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ead906135ad565b915050610e0e565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b60125481565b600a6020528060005260406000206000915054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f38611da7565b806012819055508060138190555050565b606060048054610f58906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f84906133a8565b8015610fd15780601f10610fa657610100808354040283529160200191610fd1565b820191906000526020600020905b815481529060010190602001808311610fb457829003601f168201915b5050505050905090565b610fe3611da7565b8051825114611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061355e565b60405180910390fd5b60005b82518110156110d1578181815181106110465761104561357e565b5b6020026020010151600a60008584815181106110655761106461357e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110c9906135ad565b91505061102a565b505050565b6000806110e161194d565b905060006110ef82866117eb565b905083811015611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613667565b60405180910390fd5b6111418286868403611955565b60019250505092915050565b611155611da7565b8051825114611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061355e565b60405180910390fd5b60005b8251811015611243578181815181106111b8576111b761357e565b5b6020026020010151600b60008584815181106111d7576111d661357e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061123b906135ad565b91505061119c565b505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061128261127b61194d565b8484611baa565b905092915050565b611292611da7565b80600860006101000a81548160ff02191690831515021790555050565b60155481565b60165481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6112e3611da7565b601860149054906101000a900460ff1615611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906136d3565b60405180910390fd5b600060155414611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061373f565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113fc30601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601954611955565b601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190613774565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190613774565b6040518363ffffffff1660e01b81526004016115579291906137a1565b6020604051808303816000875af1158015611576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159a9190613774565b601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061162330610d37565b60008061162e610f06565b426040518863ffffffff1660e01b81526004016116509695949392919061380f565b60606040518083038185885af115801561166e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116939190613870565b505050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016117359291906138c3565b6020604051808303816000875af1158015611754573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117789190613901565b506001600860006101000a81548160ff0219169083151502179055506001601860146101000a81548160ff0219169083151502179055504360158190555042601681905550565b600860019054906101000a900460ff1681565b6117da611da7565b806010819055508060118190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61187a611da7565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118c6611da7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906139a0565b60405180910390fd5b61193e81611f9f565b50565b60075481565b60115481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90613a32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90613ac4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b119190612f34565b60405180910390a3505050565b6000611b2a84846117eb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ba45781811015611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613b30565b60405180910390fd5b611ba38484848403611955565b5b50505050565b6000600860019054906101000a900460ff1615611bd557611bcc848484612065565b60019050611da0565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c6e57611c2e6122db565b611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490613b9c565b60405180910390fd5b5b600860029054906101000a900460ff1615611c9857611c8d83836122e8565b611c9784836124a9565b5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cf657611cf5612546565b5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5457611d5361255a565b5b611d5e848461256e565b15611d6c57611d6b6126d1565b5b6000611d7885856129b9565b611d825782611d8d565b611d8c8584612a76565b5b9050611d9a858583612065565b60019150505b9392505050565b611daf61194d565b73ffffffffffffffffffffffffffffffffffffffff16611dcd610f06565b73ffffffffffffffffffffffffffffffffffffffff1614611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90613c08565b60405180910390fd5b565b80471015611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613c74565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e8e90613cc5565b60006040518083038185875af1925050503d8060008114611ecb576040519150601f19603f3d011682016040523d82523d6000602084013e611ed0565b606091505b5050905080611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90613d4c565b60405180910390fd5b505050565b611f9a8363a9059cbb60e01b8484604051602401611f389291906138c3565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ab6565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613dde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613e70565b60405180910390fd5b61214e838383612b7e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613f02565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122c29190612f34565b60405180910390a36122d5848484612b83565b50505050565b6000806015541415905090565b6122f0610f06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561235757503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612391575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123eb5750601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124415750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124a557600061245183610d37565b90506007548282612462919061343c565b11156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90613f94565b60405180910390fd5b505b5050565b600654811115806125035750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253990614000565b60405180910390fd5b5050565b601054600d81905550601154600e81905550565b601254600d81905550601354600e81905550565b6000600860019054906101000a900460ff161580156125995750600860009054906101000a900460ff165b80156126445750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615806126435750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b801561265457506126536122db565b5b80156126685750600061266630610d37565b115b80156126c95750601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166126b061194d565b73ffffffffffffffffffffffffffffffffffffffff1614155b905092915050565b6001600860016101000a81548160ff02191690831515021790555060006126f730610d37565b905061272630601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611955565b6000600267ffffffffffffffff81111561274357612742613038565b5b6040519080825280602002602001820160405280156127715781602001602082028036833780820191505090505b50905030816000815181106127895761278861357e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612830573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128549190613774565b816001815181106128685761286761357e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000479050601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008530426040518663ffffffff1660e01b815260040161290b9594939291906140de565b600060405180830381600087803b15801561292557600080fd5b505af1158015612939573d6000803e3d6000fd5b505050506000814761294b9190613408565b905061299881601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e2590919063ffffffff16565b505050506000600860016101000a81548160ff021916908315150217905550565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580612a5e5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a6e5750612a6d6122db565b5b905092915050565b600080600f54600e5484612a8a9190614138565b612a9491906134e1565b9050612aa1843083612065565b8083612aad9190613408565b91505092915050565b6000612b18826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b889092919063ffffffff16565b9050600081511480612b3a575080806020019051810190612b399190613901565b5b612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b70906141ec565b60405180910390fd5b505050565b505050565b505050565b6060612b978484600085612ba0565b90509392505050565b606082471015612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc9061427e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c0e91906142da565b60006040518083038185875af1925050503d8060008114612c4b576040519150601f19603f3d011682016040523d82523d6000602084013e612c50565b606091505b5091509150612c6187838387612c6d565b92505050949350505050565b60608315612ccf576000835103612cc757612c8785612ce2565b612cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbd9061433d565b60405180910390fd5b5b829050612cda565b612cd98383612d05565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115612d185781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4c9190612de5565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015612d8f578082015181840152602081019050612d74565b60008484015250505050565b6000601f19601f8301169050919050565b6000612db782612d55565b612dc18185612d60565b9350612dd1818560208601612d71565b612dda81612d9b565b840191505092915050565b60006020820190508181036000830152612dff8184612dac565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e4682612e1b565b9050919050565b612e5681612e3b565b8114612e6157600080fd5b50565b600081359050612e7381612e4d565b92915050565b6000819050919050565b612e8c81612e79565b8114612e9757600080fd5b50565b600081359050612ea981612e83565b92915050565b60008060408385031215612ec657612ec5612e11565b5b6000612ed485828601612e64565b9250506020612ee585828601612e9a565b9150509250929050565b60008115159050919050565b612f0481612eef565b82525050565b6000602082019050612f1f6000830184612efb565b92915050565b612f2e81612e79565b82525050565b6000602082019050612f496000830184612f25565b92915050565b600080600060608486031215612f6857612f67612e11565b5b6000612f7686828701612e64565b9350506020612f8786828701612e64565b9250506040612f9886828701612e9a565b9150509250925092565b600060ff82169050919050565b612fb881612fa2565b82525050565b6000602082019050612fd36000830184612faf565b92915050565b600060208284031215612fef57612fee612e11565b5b6000612ffd84828501612e64565b91505092915050565b60006020828403121561301c5761301b612e11565b5b600061302a84828501612e9a565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61307082612d9b565b810181811067ffffffffffffffff8211171561308f5761308e613038565b5b80604052505050565b60006130a2612e07565b90506130ae8282613067565b919050565b600067ffffffffffffffff8211156130ce576130cd613038565b5b602082029050602081019050919050565b600080fd5b60006130f76130f2846130b3565b613098565b9050808382526020820190506020840283018581111561311a576131196130df565b5b835b81811015613143578061312f8882612e64565b84526020840193505060208101905061311c565b5050509392505050565b600082601f83011261316257613161613033565b5b81356131728482602086016130e4565b91505092915050565b600067ffffffffffffffff82111561319657613195613038565b5b602082029050602081019050919050565b6131b081612eef565b81146131bb57600080fd5b50565b6000813590506131cd816131a7565b92915050565b60006131e66131e18461317b565b613098565b90508083825260208201905060208402830185811115613209576132086130df565b5b835b81811015613232578061321e88826131be565b84526020840193505060208101905061320b565b5050509392505050565b600082601f83011261325157613250613033565b5b81356132618482602086016131d3565b91505092915050565b6000806040838503121561328157613280612e11565b5b600083013567ffffffffffffffff81111561329f5761329e612e16565b5b6132ab8582860161314d565b925050602083013567ffffffffffffffff8111156132cc576132cb612e16565b5b6132d88582860161323c565b9150509250929050565b6132eb81612e3b565b82525050565b600060208201905061330660008301846132e2565b92915050565b60006020828403121561332257613321612e11565b5b6000613330848285016131be565b91505092915050565b600080604083850312156133505761334f612e11565b5b600061335e85828601612e64565b925050602061336f85828601612e64565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133c057607f821691505b6020821081036133d3576133d2613379565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061341382612e79565b915061341e83612e79565b9250828203905081811115613436576134356133d9565b5b92915050565b600061344782612e79565b915061345283612e79565b925082820190508082111561346a576134696133d9565b5b92915050565b60008151905061347f81612e83565b92915050565b60006020828403121561349b5761349a612e11565b5b60006134a984828501613470565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134ec82612e79565b91506134f783612e79565b925082613507576135066134b2565b5b828204905092915050565b7f417272617973206d7573742068617665207468652073616d65206c656e677468600082015250565b6000613548602083612d60565b915061355382613512565b602082019050919050565b600060208201905081810360008301526135778161353b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006135b882612e79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135ea576135e96133d9565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613651602583612d60565b915061365c826135f5565b604082019050919050565b6000602082019050818103600083015261368081613644565b9050919050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006136bd601783612d60565b91506136c882613687565b602082019050919050565b600060208201905081810360008301526136ec816136b0565b9050919050565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b6000613729601083612d60565b9150613734826136f3565b602082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b60008151905061376e81612e4d565b92915050565b60006020828403121561378a57613789612e11565b5b60006137988482850161375f565b91505092915050565b60006040820190506137b660008301856132e2565b6137c360208301846132e2565b9392505050565b6000819050919050565b6000819050919050565b60006137f96137f46137ef846137ca565b6137d4565b612e79565b9050919050565b613809816137de565b82525050565b600060c08201905061382460008301896132e2565b6138316020830188612f25565b61383e6040830187613800565b61384b6060830186613800565b61385860808301856132e2565b61386560a0830184612f25565b979650505050505050565b60008060006060848603121561388957613888612e11565b5b600061389786828701613470565b93505060206138a886828701613470565b92505060406138b986828701613470565b9150509250925092565b60006040820190506138d860008301856132e2565b6138e56020830184612f25565b9392505050565b6000815190506138fb816131a7565b92915050565b60006020828403121561391757613916612e11565b5b6000613925848285016138ec565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061398a602683612d60565b91506139958261392e565b604082019050919050565b600060208201905081810360008301526139b98161397d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a1c602483612d60565b9150613a27826139c0565b604082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aae602283612d60565b9150613ab982613a52565b604082019050919050565b60006020820190508181036000830152613add81613aa1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613b1a601d83612d60565b9150613b2582613ae4565b602082019050919050565b60006020820190508181036000830152613b4981613b0d565b9050919050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000613b86601483612d60565b9150613b9182613b50565b602082019050919050565b60006020820190508181036000830152613bb581613b79565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bf2602083612d60565b9150613bfd82613bbc565b602082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613c5e601d83612d60565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b600081905092915050565b50565b6000613caf600083613c94565b9150613cba82613c9f565b600082019050919050565b6000613cd082613ca2565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613d36603a83612d60565b9150613d4182613cda565b604082019050919050565b60006020820190508181036000830152613d6581613d29565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dc8602583612d60565b9150613dd382613d6c565b604082019050919050565b60006020820190508181036000830152613df781613dbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e5a602383612d60565b9150613e6582613dfe565b604082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613eec602683612d60565b9150613ef782613e90565b604082019050919050565b60006020820190508181036000830152613f1b81613edf565b9050919050565b7f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697460008201527f65642c20796f752063616e206e6f74206275792074686174206d7563682e0000602082015250565b6000613f7e603e83612d60565b9150613f8982613f22565b604082019050919050565b60006020820190508181036000830152613fad81613f71565b9050919050565b7f5458204c696d6974204578636565646564000000000000000000000000000000600082015250565b6000613fea601183612d60565b9150613ff582613fb4565b602082019050919050565b6000602082019050818103600083015261401981613fdd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61405581612e3b565b82525050565b6000614067838361404c565b60208301905092915050565b6000602082019050919050565b600061408b82614020565b614095818561402b565b93506140a08361403c565b8060005b838110156140d15781516140b8888261405b565b97506140c383614073565b9250506001810190506140a4565b5085935050505092915050565b600060a0820190506140f36000830188612f25565b6141006020830187613800565b81810360408301526141128186614080565b905061412160608301856132e2565b61412e6080830184612f25565b9695505050505050565b600061414382612e79565b915061414e83612e79565b925082820261415c81612e79565b91508282048414831517614173576141726133d9565b5b5092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006141d6602a83612d60565b91506141e18261417a565b604082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614268602683612d60565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b600081519050919050565b60006142b48261429e565b6142be8185613c94565b93506142ce818560208601612d71565b80840191505092915050565b60006142e682846142a9565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614327601d83612d60565b9150614332826142f1565b602082019050919050565b600060208201905081810360008301526143568161431a565b905091905056fea26469706673582212208af1f461f4418a8906aa61c587af3f1e611584dc15fecb3236435a405e545f6464736f6c63430008110033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dc436f355f0ec6da6b7971dcfce44cd06afcfa900000000000000000000000000000000000000000000000000000000000000054d6974636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d69746368000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061026b5760003560e01c80638b42507f11610144578063bf56b371116100b6578063dcf7aef31161007a578063dcf7aef314610941578063dd62ed3e1461096a578063e01bb688146109a7578063f2fde38b146109d0578063f8b45b05146109f9578063fb5f27fb14610a2457610272565b8063bf56b3711461086c578063c6d2577d14610897578063c867d60b146108c2578063c9567bf9146108ff578063d83067861461091657610272565b806398957c391161010857806398957c391461074c578063a457c2d714610775578063a66854b2146107b2578063a8aa1b31146107db578063a9059cbb14610806578063b8c611301461084357610272565b80638b42507f146106655780638c0b5e22146106a25780638da5cb5b146106cd57806395927c25146106f857806395d89b411461072157610272565b80634460d3cf116101dd57806370a08231116101a157806370a0823114610555578063715018a614610592578063751039fc146105a95780637fdb5df7146105d45780638072250b146105fd57806384f6820a1461063a57610272565b80634460d3cf146104845780634a62bb65146104ad57806353148416146104d85780635c85974f146105035780635d0044ca1461052c57610272565b80632b112e491161022f5780632b112e4914610372578063313ce5671461039d578063364333f4146103c857806339509351146103df5780633b32f37c1461041c5780633f4218e01461044757610272565b806306fdde0314610277578063095ea7b3146102a2578063180b0d7e146102df57806318160ddd1461030a57806323b872dd1461033557610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a4f565b6040516102999190612de5565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612eaf565b610ae1565b6040516102d69190612f0a565b60405180910390f35b3480156102eb57600080fd5b506102f4610b04565b6040516103019190612f34565b60405180910390f35b34801561031657600080fd5b5061031f610b0a565b60405161032c9190612f34565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612f4f565b610b14565b6040516103699190612f0a565b60405180910390f35b34801561037e57600080fd5b50610387610b41565b6040516103949190612f34565b60405180910390f35b3480156103a957600080fd5b506103b2610b65565b6040516103bf9190612fbe565b60405180910390f35b3480156103d457600080fd5b506103dd610b6e565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612eaf565b610bae565b6040516104139190612f0a565b60405180910390f35b34801561042857600080fd5b50610431610be5565b60405161043e9190612f34565b60405180910390f35b34801561045357600080fd5b5061046e60048036038101906104699190612fd9565b610beb565b60405161047b9190612f0a565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190612fd9565b610c0b565b005b3480156104b957600080fd5b506104c2610cba565b6040516104cf9190612f0a565b60405180910390f35b3480156104e457600080fd5b506104ed610ccd565b6040516104fa9190612f34565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190613006565b610cd3565b005b34801561053857600080fd5b50610553600480360381019061054e9190613006565b610d05565b005b34801561056157600080fd5b5061057c60048036038101906105779190612fd9565b610d37565b6040516105899190612f34565b60405180910390f35b34801561059e57600080fd5b506105a7610d7f565b005b3480156105b557600080fd5b506105be610d93565b6040516105cb9190612f0a565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f6919061326a565b610dbf565b005b34801561060957600080fd5b50610624600480360381019061061f9190612fd9565b610eba565b6040516106319190612f0a565b60405180910390f35b34801561064657600080fd5b5061064f610eda565b60405161065c9190612f34565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190612fd9565b610ee0565b6040516106999190612f0a565b60405180910390f35b3480156106ae57600080fd5b506106b7610f00565b6040516106c49190612f34565b60405180910390f35b3480156106d957600080fd5b506106e2610f06565b6040516106ef91906132f1565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190613006565b610f30565b005b34801561072d57600080fd5b50610736610f49565b6040516107439190612de5565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061326a565b610fdb565b005b34801561078157600080fd5b5061079c60048036038101906107979190612eaf565b6110d6565b6040516107a99190612f0a565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d4919061326a565b61114d565b005b3480156107e757600080fd5b506107f0611248565b6040516107fd91906132f1565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190612eaf565b61126e565b60405161083a9190612f0a565b60405180910390f35b34801561084f57600080fd5b5061086a6004803603810190610865919061330c565b61128a565b005b34801561087857600080fd5b506108816112af565b60405161088e9190612f34565b60405180910390f35b3480156108a357600080fd5b506108ac6112b5565b6040516108b99190612f34565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190612fd9565b6112bb565b6040516108f69190612f0a565b60405180910390f35b34801561090b57600080fd5b506109146112db565b005b34801561092257600080fd5b5061092b6117bf565b6040516109389190612f0a565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613006565b6117d2565b005b34801561097657600080fd5b50610991600480360381019061098c9190613339565b6117eb565b60405161099e9190612f34565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c99190612fd9565b611872565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190612fd9565b6118be565b005b348015610a0557600080fd5b50610a0e611941565b604051610a1b9190612f34565b60405180910390f35b348015610a3057600080fd5b50610a39611947565b604051610a469190612f34565b60405180910390f35b606060038054610a5e906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8a906133a8565b8015610ad75780601f10610aac57610100808354040283529160200191610ad7565b820191906000526020600020905b815481529060010190602001808311610aba57829003601f168201915b5050505050905090565b600080610aec61194d565b9050610af9818585611955565b600191505092915050565b600f5481565b6000600254905090565b600080610b1f61194d565b9050610b2c858285611b1e565b610b37858585611baa565b9150509392505050565b6000610b4e61dead610d37565b610b56610b0a565b610b609190613408565b905090565b60006012905090565b610b76611da7565b6000479050610bab81610b8761194d565b73ffffffffffffffffffffffffffffffffffffffff16611e2590919063ffffffff16565b50565b600080610bb961194d565b9050610bda818585610bcb85896117eb565b610bd5919061343c565b611955565b600191505092915050565b60105481565b60096020528060005260406000206000915054906101000a900460ff1681565b610c13611da7565b610cb7338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c5091906132f1565b602060405180830381865afa158015610c6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c919190613485565b8373ffffffffffffffffffffffffffffffffffffffff16611f199092919063ffffffff16565b50565b600860029054906101000a900460ff1681565b60135481565b610cdb611da7565b6064610ce5610b0a565b610cef91906134e1565b811015610cfb57600080fd5b8060068190555050565b610d0d611da7565b6064610d17610b0a565b610d2191906134e1565b811015610d2d57600080fd5b8060078190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d87611da7565b610d916000611f9f565b565b6000610d9d611da7565b6000600860026101000a81548160ff0219169083151502179055506001905090565b610dc7611da7565b8051825114610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061355e565b60405180910390fd5b60005b8251811015610eb557818181518110610e2a57610e2961357e565b5b602002602001015160096000858481518110610e4957610e4861357e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ead906135ad565b915050610e0e565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b60125481565b600a6020528060005260406000206000915054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f38611da7565b806012819055508060138190555050565b606060048054610f58906133a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610f84906133a8565b8015610fd15780601f10610fa657610100808354040283529160200191610fd1565b820191906000526020600020905b815481529060010190602001808311610fb457829003601f168201915b5050505050905090565b610fe3611da7565b8051825114611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061355e565b60405180910390fd5b60005b82518110156110d1578181815181106110465761104561357e565b5b6020026020010151600a60008584815181106110655761106461357e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806110c9906135ad565b91505061102a565b505050565b6000806110e161194d565b905060006110ef82866117eb565b905083811015611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613667565b60405180910390fd5b6111418286868403611955565b60019250505092915050565b611155611da7565b8051825114611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061355e565b60405180910390fd5b60005b8251811015611243578181815181106111b8576111b761357e565b5b6020026020010151600b60008584815181106111d7576111d661357e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061123b906135ad565b91505061119c565b505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061128261127b61194d565b8484611baa565b905092915050565b611292611da7565b80600860006101000a81548160ff02191690831515021790555050565b60155481565b60165481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6112e3611da7565b601860149054906101000a900460ff1615611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906136d3565b60405180910390fd5b600060155414611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f9061373f565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113fc30601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601954611955565b601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190613774565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153a9190613774565b6040518363ffffffff1660e01b81526004016115579291906137a1565b6020604051808303816000875af1158015611576573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159a9190613774565b601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061162330610d37565b60008061162e610f06565b426040518863ffffffff1660e01b81526004016116509695949392919061380f565b60606040518083038185885af115801561166e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116939190613870565b505050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016117359291906138c3565b6020604051808303816000875af1158015611754573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117789190613901565b506001600860006101000a81548160ff0219169083151502179055506001601860146101000a81548160ff0219169083151502179055504360158190555042601681905550565b600860019054906101000a900460ff1681565b6117da611da7565b806010819055508060118190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61187a611da7565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118c6611da7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906139a0565b60405180910390fd5b61193e81611f9f565b50565b60075481565b60115481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90613a32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90613ac4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b119190612f34565b60405180910390a3505050565b6000611b2a84846117eb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ba45781811015611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613b30565b60405180910390fd5b611ba38484848403611955565b5b50505050565b6000600860019054906101000a900460ff1615611bd557611bcc848484612065565b60019050611da0565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c6e57611c2e6122db565b611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490613b9c565b60405180910390fd5b5b600860029054906101000a900460ff1615611c9857611c8d83836122e8565b611c9784836124a9565b5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cf657611cf5612546565b5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d5457611d5361255a565b5b611d5e848461256e565b15611d6c57611d6b6126d1565b5b6000611d7885856129b9565b611d825782611d8d565b611d8c8584612a76565b5b9050611d9a858583612065565b60019150505b9392505050565b611daf61194d565b73ffffffffffffffffffffffffffffffffffffffff16611dcd610f06565b73ffffffffffffffffffffffffffffffffffffffff1614611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90613c08565b60405180910390fd5b565b80471015611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613c74565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e8e90613cc5565b60006040518083038185875af1925050503d8060008114611ecb576040519150601f19603f3d011682016040523d82523d6000602084013e611ed0565b606091505b5050905080611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90613d4c565b60405180910390fd5b505050565b611f9a8363a9059cbb60e01b8484604051602401611f389291906138c3565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612ab6565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613dde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613e70565b60405180910390fd5b61214e838383612b7e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613f02565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122c29190612f34565b60405180910390a36122d5848484612b83565b50505050565b6000806015541415905090565b6122f0610f06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561235757503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612391575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123eb5750601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124415750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124a557600061245183610d37565b90506007548282612462919061343c565b11156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90613f94565b60405180910390fd5b505b5050565b600654811115806125035750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253990614000565b60405180910390fd5b5050565b601054600d81905550601154600e81905550565b601254600d81905550601354600e81905550565b6000600860019054906101000a900460ff161580156125995750600860009054906101000a900460ff165b80156126445750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615806126435750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b801561265457506126536122db565b5b80156126685750600061266630610d37565b115b80156126c95750601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166126b061194d565b73ffffffffffffffffffffffffffffffffffffffff1614155b905092915050565b6001600860016101000a81548160ff02191690831515021790555060006126f730610d37565b905061272630601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611955565b6000600267ffffffffffffffff81111561274357612742613038565b5b6040519080825280602002602001820160405280156127715781602001602082028036833780820191505090505b50905030816000815181106127895761278861357e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612830573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128549190613774565b816001815181106128685761286761357e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000479050601760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008530426040518663ffffffff1660e01b815260040161290b9594939291906140de565b600060405180830381600087803b15801561292557600080fd5b505af1158015612939573d6000803e3d6000fd5b505050506000814761294b9190613408565b905061299881601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e2590919063ffffffff16565b505050506000600860016101000a81548160ff021916908315150217905550565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580612a5e5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a6e5750612a6d6122db565b5b905092915050565b600080600f54600e5484612a8a9190614138565b612a9491906134e1565b9050612aa1843083612065565b8083612aad9190613408565b91505092915050565b6000612b18826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b889092919063ffffffff16565b9050600081511480612b3a575080806020019051810190612b399190613901565b5b612b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b70906141ec565b60405180910390fd5b505050565b505050565b505050565b6060612b978484600085612ba0565b90509392505050565b606082471015612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc9061427e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c0e91906142da565b60006040518083038185875af1925050503d8060008114612c4b576040519150601f19603f3d011682016040523d82523d6000602084013e612c50565b606091505b5091509150612c6187838387612c6d565b92505050949350505050565b60608315612ccf576000835103612cc757612c8785612ce2565b612cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbd9061433d565b60405180910390fd5b5b829050612cda565b612cd98383612d05565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115612d185781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4c9190612de5565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015612d8f578082015181840152602081019050612d74565b60008484015250505050565b6000601f19601f8301169050919050565b6000612db782612d55565b612dc18185612d60565b9350612dd1818560208601612d71565b612dda81612d9b565b840191505092915050565b60006020820190508181036000830152612dff8184612dac565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e4682612e1b565b9050919050565b612e5681612e3b565b8114612e6157600080fd5b50565b600081359050612e7381612e4d565b92915050565b6000819050919050565b612e8c81612e79565b8114612e9757600080fd5b50565b600081359050612ea981612e83565b92915050565b60008060408385031215612ec657612ec5612e11565b5b6000612ed485828601612e64565b9250506020612ee585828601612e9a565b9150509250929050565b60008115159050919050565b612f0481612eef565b82525050565b6000602082019050612f1f6000830184612efb565b92915050565b612f2e81612e79565b82525050565b6000602082019050612f496000830184612f25565b92915050565b600080600060608486031215612f6857612f67612e11565b5b6000612f7686828701612e64565b9350506020612f8786828701612e64565b9250506040612f9886828701612e9a565b9150509250925092565b600060ff82169050919050565b612fb881612fa2565b82525050565b6000602082019050612fd36000830184612faf565b92915050565b600060208284031215612fef57612fee612e11565b5b6000612ffd84828501612e64565b91505092915050565b60006020828403121561301c5761301b612e11565b5b600061302a84828501612e9a565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61307082612d9b565b810181811067ffffffffffffffff8211171561308f5761308e613038565b5b80604052505050565b60006130a2612e07565b90506130ae8282613067565b919050565b600067ffffffffffffffff8211156130ce576130cd613038565b5b602082029050602081019050919050565b600080fd5b60006130f76130f2846130b3565b613098565b9050808382526020820190506020840283018581111561311a576131196130df565b5b835b81811015613143578061312f8882612e64565b84526020840193505060208101905061311c565b5050509392505050565b600082601f83011261316257613161613033565b5b81356131728482602086016130e4565b91505092915050565b600067ffffffffffffffff82111561319657613195613038565b5b602082029050602081019050919050565b6131b081612eef565b81146131bb57600080fd5b50565b6000813590506131cd816131a7565b92915050565b60006131e66131e18461317b565b613098565b90508083825260208201905060208402830185811115613209576132086130df565b5b835b81811015613232578061321e88826131be565b84526020840193505060208101905061320b565b5050509392505050565b600082601f83011261325157613250613033565b5b81356132618482602086016131d3565b91505092915050565b6000806040838503121561328157613280612e11565b5b600083013567ffffffffffffffff81111561329f5761329e612e16565b5b6132ab8582860161314d565b925050602083013567ffffffffffffffff8111156132cc576132cb612e16565b5b6132d88582860161323c565b9150509250929050565b6132eb81612e3b565b82525050565b600060208201905061330660008301846132e2565b92915050565b60006020828403121561332257613321612e11565b5b6000613330848285016131be565b91505092915050565b600080604083850312156133505761334f612e11565b5b600061335e85828601612e64565b925050602061336f85828601612e64565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133c057607f821691505b6020821081036133d3576133d2613379565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061341382612e79565b915061341e83612e79565b9250828203905081811115613436576134356133d9565b5b92915050565b600061344782612e79565b915061345283612e79565b925082820190508082111561346a576134696133d9565b5b92915050565b60008151905061347f81612e83565b92915050565b60006020828403121561349b5761349a612e11565b5b60006134a984828501613470565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134ec82612e79565b91506134f783612e79565b925082613507576135066134b2565b5b828204905092915050565b7f417272617973206d7573742068617665207468652073616d65206c656e677468600082015250565b6000613548602083612d60565b915061355382613512565b602082019050919050565b600060208201905081810360008301526135778161353b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006135b882612e79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135ea576135e96133d9565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613651602583612d60565b915061365c826135f5565b604082019050919050565b6000602082019050818103600083015261368081613644565b9050919050565b7f74726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006136bd601783612d60565b91506136c882613687565b602082019050919050565b600060208201905081810360008301526136ec816136b0565b9050919050565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b6000613729601083612d60565b9150613734826136f3565b602082019050919050565b600060208201905081810360008301526137588161371c565b9050919050565b60008151905061376e81612e4d565b92915050565b60006020828403121561378a57613789612e11565b5b60006137988482850161375f565b91505092915050565b60006040820190506137b660008301856132e2565b6137c360208301846132e2565b9392505050565b6000819050919050565b6000819050919050565b60006137f96137f46137ef846137ca565b6137d4565b612e79565b9050919050565b613809816137de565b82525050565b600060c08201905061382460008301896132e2565b6138316020830188612f25565b61383e6040830187613800565b61384b6060830186613800565b61385860808301856132e2565b61386560a0830184612f25565b979650505050505050565b60008060006060848603121561388957613888612e11565b5b600061389786828701613470565b93505060206138a886828701613470565b92505060406138b986828701613470565b9150509250925092565b60006040820190506138d860008301856132e2565b6138e56020830184612f25565b9392505050565b6000815190506138fb816131a7565b92915050565b60006020828403121561391757613916612e11565b5b6000613925848285016138ec565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061398a602683612d60565b91506139958261392e565b604082019050919050565b600060208201905081810360008301526139b98161397d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a1c602483612d60565b9150613a27826139c0565b604082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aae602283612d60565b9150613ab982613a52565b604082019050919050565b60006020820190508181036000830152613add81613aa1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613b1a601d83612d60565b9150613b2582613ae4565b602082019050919050565b60006020820190508181036000830152613b4981613b0d565b9050919050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b6000613b86601483612d60565b9150613b9182613b50565b602082019050919050565b60006020820190508181036000830152613bb581613b79565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bf2602083612d60565b9150613bfd82613bbc565b602082019050919050565b60006020820190508181036000830152613c2181613be5565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613c5e601d83612d60565b9150613c6982613c28565b602082019050919050565b60006020820190508181036000830152613c8d81613c51565b9050919050565b600081905092915050565b50565b6000613caf600083613c94565b9150613cba82613c9f565b600082019050919050565b6000613cd082613ca2565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613d36603a83612d60565b9150613d4182613cda565b604082019050919050565b60006020820190508181036000830152613d6581613d29565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dc8602583612d60565b9150613dd382613d6c565b604082019050919050565b60006020820190508181036000830152613df781613dbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e5a602383612d60565b9150613e6582613dfe565b604082019050919050565b60006020820190508181036000830152613e8981613e4d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613eec602683612d60565b9150613ef782613e90565b604082019050919050565b60006020820190508181036000830152613f1b81613edf565b9050919050565b7f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697460008201527f65642c20796f752063616e206e6f74206275792074686174206d7563682e0000602082015250565b6000613f7e603e83612d60565b9150613f8982613f22565b604082019050919050565b60006020820190508181036000830152613fad81613f71565b9050919050565b7f5458204c696d6974204578636565646564000000000000000000000000000000600082015250565b6000613fea601183612d60565b9150613ff582613fb4565b602082019050919050565b6000602082019050818103600083015261401981613fdd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61405581612e3b565b82525050565b6000614067838361404c565b60208301905092915050565b6000602082019050919050565b600061408b82614020565b614095818561402b565b93506140a08361403c565b8060005b838110156140d15781516140b8888261405b565b97506140c383614073565b9250506001810190506140a4565b5085935050505092915050565b600060a0820190506140f36000830188612f25565b6141006020830187613800565b81810360408301526141128186614080565b905061412160608301856132e2565b61412e6080830184612f25565b9695505050505050565b600061414382612e79565b915061414e83612e79565b925082820261415c81612e79565b91508282048414831517614173576141726133d9565b5b5092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b60006141d6602a83612d60565b91506141e18261417a565b604082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614268602683612d60565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b600081519050919050565b60006142b48261429e565b6142be8185613c94565b93506142ce818560208601612d71565b80840191505092915050565b60006142e682846142a9565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614327601d83612d60565b9150614332826142f1565b602082019050919050565b600060208201905081810360008301526143568161431a565b905091905056fea26469706673582212208af1f461f4418a8906aa61c587af3f1e611584dc15fecb3236435a405e545f6464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000dc436f355f0ec6da6b7971dcfce44cd06afcfa900000000000000000000000000000000000000000000000000000000000000054d6974636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d69746368000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Mitch
Arg [1] : _symbol (string): Mitch
Arg [2] : _totalSupply (uint256): 100000000
Arg [3] : _maxTxAmount (uint8): 3
Arg [4] : _maxWallet (uint8): 3
Arg [5] : _teamBuyFee (uint256): 2
Arg [6] : _teamSellFee (uint256): 2
Arg [7] : _teamWallet (address): 0x0dc436f355f0eC6da6B7971dcFcE44Cd06AfCfA9
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000dc436f355f0ec6da6b7971dcfce44cd06afcfa9
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4d69746368000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [11] : 4d69746368000000000000000000000000000000000000000000000000000000
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.