Token Shibai Token
Overview ERC20
Price
$0.00 @ 0.000000 ETH (-0.47%)
Fully Diluted Market Cap
Total Supply:
210,000,000,000,000,000 shibai
Holders:
13,070 addresses
Transfers:
-
Contract:
Decimals:
6
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
SHIBAI is the fundamental token within the AiShiba ecosystem. It possesses powerful deflationary attributes and offers users the opportunity to generate passive income via staking, thereby establishing enduring value for the token.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | SHIBAI-USDT | $0.00 0.0000000 Btc | $221,012.00 42,581,908,340,588,900.000 SHIBAI | 72.9309% |
2 | ![]() | SHIBAI-USDT | $0.00 0.0000000 Btc | $38,452.00 7,355,831,639,548,920.000 SHIBAI | 12.5985% |
3 | ![]() | SHIBAI-USDT | $0.00 0.0000000 Btc | $28,370.00 5,503,060,661,277,710.000 SHIBAI | 9.4252% |
4 | ![]() | SHIBAI-USDT | $0.00 0.0000000 Btc | $15,428.01 2,945,826,005,802,500.000 SHIBAI | 5.0454% |
Contract Name:
Shibai
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 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); } pragma solidity ^0.8.0; /** * @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); } pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } 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); } pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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); } } } pragma solidity ^0.8.0; library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity ^0.8.0; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } } pragma solidity >=0.5.0; interface ICamelotFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function owner() external view returns (address); function feePercentOwner() external view returns (address); function setStableOwner() external view returns (address); function feeTo() external view returns (address); function ownerFeeShare() external view returns (uint256); function referrersFeeShare(address) external view returns (uint256); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function feeInfo() external view returns (uint _ownerFeeShare, address _feeTo); } pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } pragma solidity >=0.6.2; interface ICamelotRouter is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, address referrer, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, address referrer, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, address referrer, uint deadline ) external; function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); } pragma solidity >=0.5.0; interface IWETH { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function deposit() external payable; function transfer(address to, uint256 value) external returns (bool); function withdraw(uint256) external; } pragma solidity^0.8.16; contract Shibai is ERC20, Ownable { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; mapping(address => bool) public isExemptedFromFee; mapping(address => bool) public canAddLiquidityBeforeLaunch; bool public swapEnabled = true; bool public addLiquidityEnabled = true; bool public inSwap; modifier isSwapping() { inSwap = true; _; inSwap = false; } IERC20 public backToken; uint256 public launchedAt; uint256 public launchedAtTimestamp; bool private initialized; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; address private constant ZERO = 0x0000000000000000000000000000000000000000; ICamelotFactory private immutable factory; ICamelotRouter private immutable swapRouter; IWETH private immutable WETH; EnumerableSet.AddressSet private _pairs; event SwapBack(uint256 burn, uint256 mkt, uint256 liquidity, uint256 staking, uint256 holders, uint256 dev, uint timestamp); event Trade(address user, address pair, uint256 amount, uint side, uint256 circulatingSupply, uint timestamp); event AddLiquidity(uint256 tokenAmount, uint256 ethAmount, uint256 timestamp); // Fees uint256 private burnFee; uint256 private holdersFee; uint256 private marketingFee; uint256 private liquidityFee; uint256 private stakingFee; uint256 private devFee; uint256 private totalFee; uint256 public feeDenominator = 10000; // Buy Fees uint256 public burnFeeBuy = 100; uint256 public holdersFeeBuy = 100; uint256 public marketingFeeBuy = 200; uint256 public liquidityFeeBuy = 300; uint256 public stakingFeeBuy = 400; uint256 public devFeeBuy = 400; uint256 public totalFeeBuy = 1500; // Sell Fees uint256 public burnFeeSell = 100; uint256 public holdersFeeSell = 100; uint256 public marketingFeeSell = 200; uint256 public liquidityFeeSell = 300; uint256 public stakingFeeSell = 400; uint256 public devFeeSell = 400; uint256 public totalFeeSell = 1500; //Fee Recievers address private holdersWallet; address private marketingWallet; address public stakingRewardWallet; address private devWallet; constructor( IERC20 _backToken, address _factory, address _swapRouter, address _weth ) ERC20("Shibai Token", "shibai") { backToken = _backToken; factory = ICamelotFactory(_factory); swapRouter = ICamelotRouter(_swapRouter); WETH = IWETH(_weth); canAddLiquidityBeforeLaunch[_msgSender()] = true; canAddLiquidityBeforeLaunch[address(this)] = true; isExemptedFromFee[_msgSender()] = true; isExemptedFromFee[address(this)] = true; uint256 _totalSupply = 210000000000000000 * 10 ** 6; _mint(_msgSender(), _totalSupply); } function initializePair() external onlyOwner { require(!initialized, "Already initialized"); address pair = factory.createPair(address(WETH), address(this)); _pairs.add(pair); initialized = true; } function decimals() public view virtual override returns(uint8) { return 6; } function transfer(address to, uint256 amount) public virtual override returns(bool) { return _arbShibTransfer(_msgSender(), to, amount); } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns(bool) { address spender = _msgSender(); _spendAllowance(sender, spender, amount); return _arbShibTransfer(sender, recipient, amount); } function _arbShibTransfer(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"); } bool shouldTakeFee = (!isExemptedFromFee[sender] && !isExemptedFromFee[recipient]) && launched(); uint side = 0; address user_ = sender; address pair_ = recipient; if (isPair(sender)) { buyFees(); side = 1; user_ = recipient; pair_ = sender; // } else if(isPair(recipient)) { sellFees(); side = 2; } else { shouldTakeFee = false; } if (shouldSwapBack()) { swapBack(); } uint256 amountReceived = shouldTakeFee ? takeFee(sender, amount) : amount; _transfer(sender, recipient, amountReceived); if (side > 0) { emit Trade(user_, pair_, amount, side, getCirculatingSupply(), block.timestamp); } return true; } function shouldSwapBack() internal view returns(bool) { return !inSwap && swapEnabled && launched() && balanceOf(address(this)) > 0 && !isPair(_msgSender()); } function swapBack() internal isSwapping { uint256 taxAmount = balanceOf(address(this)); _approve(address(this), address(swapRouter), taxAmount); uint256 amountOfShibaiBurn = (taxAmount * burnFee) / (totalFee); uint256 amountOfShibaiLp = (taxAmount * liquidityFee) / (totalFee); uint256 amountOfShibaiForHolders = (taxAmount * holdersFee) / (totalFee); uint256 amountOfShibaiForStaking = (taxAmount * stakingFee) / (totalFee); taxAmount -= amountOfShibaiBurn; taxAmount -= amountOfShibaiLp; taxAmount -= amountOfShibaiForHolders; taxAmount -= amountOfShibaiForStaking; address[] memory path = new address[](3); path[0] = address(this); path[1] = address(WETH); path[2] = address(backToken); bool success = false; uint256 balanceBefore = backToken.balanceOf(address(this)); try swapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(taxAmount,0,path,address(this),address(0),block.timestamp){ success = true; } catch { try swapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(taxAmount,0,path,address(this),block.timestamp) { success = true; } catch {} } if (!success) { return; } _transfer(address(this), DEAD, amountOfShibaiBurn); _transfer(address(this), holdersWallet, amountOfShibaiForHolders); _transfer(address(this), stakingRewardWallet, amountOfShibaiForStaking); uint256 amountOfBackToken = backToken.balanceOf(address(this)) - balanceBefore; uint256 backTokenTotalFee = totalFee - burnFee - liquidityFee - holdersFee - stakingFee; uint256 amountOfBackTokenMkt = (amountOfBackToken * marketingFee) / (backTokenTotalFee); uint256 amountOfBackTokenDev = amountOfBackToken - amountOfBackTokenMkt; backToken.transfer(marketingWallet, amountOfBackTokenMkt); backToken.transfer(devWallet, amountOfBackTokenDev); if (addLiquidityEnabled) { _canAddLp(); } emit SwapBack(amountOfShibaiBurn, amountOfBackTokenMkt, amountOfShibaiLp, amountOfShibaiForStaking, amountOfShibaiForHolders, amountOfBackTokenDev, block.timestamp); } function _canAddLp() internal { address[] memory pathEth = new address[](2); pathEth[0] = address(this); pathEth[1] = address(WETH); uint256 tokenAmount = balanceOf(address(this)); uint256 half = tokenAmount / 2; if(half < 1000) return; uint256 ethAmountBefore = address(this).balance; bool success = false; try swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0, pathEth,address(this),address(0),block.timestamp){ success = true; } catch { try swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0, pathEth,address(this),block.timestamp){ success = true; } catch {} } if (!success) { return; } uint256 ethAmount = address(this).balance - ethAmountBefore; _addLiquidity(half, ethAmount); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(swapRouter), tokenAmount); try swapRouter.addLiquidityETH{value: ethAmount}(address(this), tokenAmount, 0, 0, address(0), block.timestamp) { emit AddLiquidity(tokenAmount, ethAmount, block.timestamp); } catch {} } function doSwapBack() public onlyOwner { swapBack(); } function launched() internal view returns (bool) { return launchedAt != 0; } function buyFees() internal { burnFee = burnFeeBuy; holdersFee = holdersFeeBuy; marketingFee = marketingFeeBuy; liquidityFee = liquidityFeeBuy; stakingFee = stakingFeeBuy; devFee = devFeeBuy; totalFee = totalFeeBuy; } function sellFees() internal { burnFee = burnFeeSell; holdersFee = holdersFeeSell; marketingFee = marketingFeeSell; liquidityFee = liquidityFeeSell; stakingFee = stakingFeeSell; devFee = devFeeSell; totalFee = totalFeeSell; } function takeFee(address sender, uint256 amount) internal returns (uint256) { uint256 feeAmount = (amount * totalFee) / feeDenominator; _transfer(sender, address(this), feeAmount); return amount - feeAmount; } function rescueToken(address tokenAddress) external onlyOwner { IERC20(tokenAddress).safeTransfer(msg.sender,IERC20(tokenAddress).balanceOf(address(this))); } function clearStuckEthBalance() external onlyOwner { uint256 amountETH = address(this).balance; (bool success, ) = payable(_msgSender()).call{value: amountETH}(new bytes(0)); require(success, 'AIDOGE: ETH_TRANSFER_FAILED'); } function clearStuckBalanceOfBackToken() external onlyOwner { backToken.transfer(_msgSender(), backToken.balanceOf(address(this))); } function getCirculatingSupply() public view returns (uint256) { return totalSupply() - balanceOf(DEAD) - balanceOf(ZERO); } function launch() public onlyOwner { require(launchedAt == 0, "Already launched"); launchedAt = block.number; launchedAtTimestamp = block.timestamp; } function isPair(address account) public view returns (bool) { return _pairs.contains(account); } function addPair(address pair) public onlyOwner returns (bool) { require(pair != address(0), "ArbShib: pair is the zero address"); return _pairs.add(pair); } function delPair(address pair) public onlyOwner returns (bool) { require(pair != address(0), "ArbShib: pair is the zero address"); return _pairs.remove(pair); } function getMinterLength() public view returns (uint256) { return _pairs.length(); } function getPair(uint256 index) public view returns (address) { require(index <= _pairs.length() - 1, "ArbShib: index out of bounds"); return _pairs.at(index); } function setBuyFees( uint256 _burnFee, uint256 _holdersFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _stakingFee, uint256 _devFee ) external onlyOwner { burnFeeBuy = _burnFee; holdersFeeBuy = _holdersFee; liquidityFeeBuy = _liquidityFee; marketingFeeBuy = _marketingFee; stakingFeeBuy = _stakingFee; devFeeBuy = _devFee; totalFeeBuy = _liquidityFee + _marketingFee + _holdersFee + _stakingFee + _devFee + _burnFee; } function setSellFees( uint256 _burnFee, uint256 _holdersFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _stakingFee, uint256 _devFee ) external onlyOwner { burnFeeSell = _burnFee; holdersFeeSell = _holdersFee; liquidityFeeSell = _liquidityFee; marketingFeeSell = _marketingFee; stakingFeeSell = _stakingFee; devFeeSell = _devFee; totalFeeSell = _liquidityFee + _marketingFee + _holdersFee + _stakingFee + _devFee + _burnFee; } function setFeeReceivers( address _holdersWallet, address _marketingWallet, address _stakingRewardWallet, address _devWallet ) external onlyOwner { holdersWallet = _holdersWallet; marketingWallet = _marketingWallet; stakingRewardWallet = _stakingRewardWallet; devWallet = _devWallet; } function setIsFeeExempt(address holder, bool exempt) external onlyOwner { isExemptedFromFee[holder] = exempt; } function setSwapBackSettings(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function setAddLiquidityEnabled(bool _enabled) external onlyOwner { addLiquidityEnabled = _enabled; } receive() external payable {} }
{ "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":"contract IERC20","name":"_backToken","type":"address"},{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_swapRouter","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"burn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mkt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"staking","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"holders","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"dev","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"side","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"circulatingSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Trade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addLiquidityEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"backToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeSell","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":"clearStuckBalanceOfBackToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckEthBalance","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":[{"internalType":"address","name":"pair","type":"address"}],"name":"delPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doSwapBack","outputs":[],"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":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersFeeSell","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":[],"name":"initializePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExemptedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","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":"liquidityFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAddLiquidityEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_holdersFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_stakingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holdersWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_stakingRewardWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setFeeReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_holdersFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_stakingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingRewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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
60e06040526001600860006101000a81548160ff0219169083151502179055506001600860016101000a81548160ff0219169083151502179055506127106015556064601655606460175560c860185561012c601955610190601a55610190601b556105dc601c556064601d556064601e5560c8601f5561012c6020556101906021556101906022556105dc6023553480156200009b57600080fd5b50604051620058fb380380620058fb8339818101604052810190620000c19190620006fd565b6040518060400160405280600c81526020017f53686962616920546f6b656e00000000000000000000000000000000000000008152506040518060400160405280600681526020017f736869626169000000000000000000000000000000000000000000000000000081525081600390816200013e9190620009e9565b508060049081620001509190620009e9565b50505062000173620001676200040960201b60201c565b6200041160201b60201c565b83600860036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050600160076000620002666200040960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000620003256200040960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000692c781f708c509f4000009050620003fe620003f16200040960201b60201c565b82620004d760201b60201c565b505050505062000beb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005409062000b31565b60405180910390fd5b6200055d600083836200064460201b60201c565b806002600082825462000571919062000b82565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000624919062000bce565b60405180910390a362000640600083836200064960201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006808262000653565b9050919050565b6000620006948262000673565b9050919050565b620006a68162000687565b8114620006b257600080fd5b50565b600081519050620006c6816200069b565b92915050565b620006d78162000673565b8114620006e357600080fd5b50565b600081519050620006f781620006cc565b92915050565b600080600080608085870312156200071a57620007196200064e565b5b60006200072a87828801620006b5565b94505060206200073d87828801620006e6565b93505060406200075087828801620006e6565b92505060606200076387828801620006e6565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f157607f821691505b602082108103620008075762000806620007a9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000832565b6200087d868362000832565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008ca620008c4620008be8462000895565b6200089f565b62000895565b9050919050565b6000819050919050565b620008e683620008a9565b620008fe620008f582620008d1565b8484546200083f565b825550505050565b600090565b6200091562000906565b62000922818484620008db565b505050565b5b818110156200094a576200093e6000826200090b565b60018101905062000928565b5050565b601f821115620009995762000963816200080d565b6200096e8462000822565b810160208510156200097e578190505b620009966200098d8562000822565b83018262000927565b50505b505050565b600082821c905092915050565b6000620009be600019846008026200099e565b1980831691505092915050565b6000620009d98383620009ab565b9150826002028217905092915050565b620009f4826200076f565b67ffffffffffffffff81111562000a105762000a0f6200077a565b5b62000a1c8254620007d8565b62000a298282856200094e565b600060209050601f83116001811462000a61576000841562000a4c578287015190505b62000a588582620009cb565b86555062000ac8565b601f19841662000a71866200080d565b60005b8281101562000a9b5784890151825560018201915060208501945060208101905062000a74565b8683101562000abb578489015162000ab7601f891682620009ab565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b19601f8362000ad0565b915062000b268262000ae1565b602082019050919050565b6000602082019050818103600083015262000b4c8162000b0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b8f8262000895565b915062000b9c8362000895565b925082820190508082111562000bb75762000bb662000b53565b5b92915050565b62000bc88162000895565b82525050565b600060208201905062000be5600083018462000bbd565b92915050565b60805160a05160c051614ca862000c53600039600081816111cc0152818161244f01526130b30152600081816122d7015281816125d00152818161266401528181613159015281816131ed01528181613448015261346f015260006111900152614ca86000f3fe60806040526004361061036f5760003560e01c8063715018a6116101c6578063ba876bb9116100f7578063d830678611610095578063e5e31b131161006f578063e5e31b1314610c8b578063f2fde38b14610cc8578063f74c9f4714610cf1578063fb5f27fb14610d1a57610376565b8063d830678614610be6578063d8b83a8a14610c11578063dd62ed3e14610c4e57610376565b8063bfa382b5116100d1578063bfa382b514610b3c578063c2b7bbb614610b53578063c6d2577d14610b90578063cdba31fd14610bbb57610376565b8063ba876bb914610aab578063bdf391cc14610ad4578063bf56b37114610b1157610376565b80639397106f11610164578063a5bc50851161013e578063a5bc5085146109df578063a9059cbb14610a1c578063aac46c9514610a59578063b8c6113014610a8257610376565b80639397106f1461094c57806395d89b4114610977578063a457c2d7146109a257610376565b806386013940116101a057806386013940146108b4578063861faf5f146108df5780638da5cb5b1461090a5780638fbbd7501461093557610376565b8063715018a6146108355780638072250b1461084c57806382d201161461088957610376565b80632d2e5cd5116102a05780634fab9e4c1161023e578063658d4b7f11610218578063658d4b7f146107795780636871fc76146107a25780636ddd1713146107cd57806370a08231146107f857610376565b80634fab9e4c1461072057806353148416146107375780635618c71f1461076257610376565b8063395093511161027a57806339509351146106665780633c8e556d146106a357806341aecc08146106cc5780634460d3cf146106f757610376565b80632d2e5cd5146105e5578063313ce56714610610578063385e5f1d1461063b57610376565b806313374e7a1161030d57806318160ddd116102e757806318160ddd14610527578063234a2daa1461055257806323b872dd1461057d5780632b112e49146105ba57610376565b806313374e7a146104a657806315674e8e146104d1578063180b0d7e146104fc57610376565b8063095ea7b311610349578063095ea7b3146103e857806310075a69146104255780631107b3a51461045057806312835c5e1461047b57610376565b806301339c211461037b5780630323aac71461039257806306fdde03146103bd57610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d45565b005b34801561039e57600080fd5b506103a7610da2565b6040516103b49190613725565b60405180910390f35b3480156103c957600080fd5b506103d2610db3565b6040516103df91906137d0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613881565b610e45565b60405161041c91906138dc565b60405180910390f35b34801561043157600080fd5b5061043a610e68565b6040516104479190613725565b60405180910390f35b34801561045c57600080fd5b50610465610e6e565b6040516104729190613725565b60405180910390f35b34801561048757600080fd5b50610490610e74565b60405161049d9190613725565b60405180910390f35b3480156104b257600080fd5b506104bb610e7a565b6040516104c89190613725565b60405180910390f35b3480156104dd57600080fd5b506104e6610e80565b6040516104f39190613725565b60405180910390f35b34801561050857600080fd5b50610511610e86565b60405161051e9190613725565b60405180910390f35b34801561053357600080fd5b5061053c610e8c565b6040516105499190613725565b60405180910390f35b34801561055e57600080fd5b50610567610e96565b6040516105749190613725565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f91906138f7565b610e9c565b6040516105b191906138dc565b60405180910390f35b3480156105c657600080fd5b506105cf610ec9565b6040516105dc9190613725565b60405180910390f35b3480156105f157600080fd5b506105fa610f01565b6040516106079190613959565b60405180910390f35b34801561061c57600080fd5b50610625610f27565b6040516106329190613990565b60405180910390f35b34801561064757600080fd5b50610650610f30565b60405161065d9190613725565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190613881565b610f36565b60405161069a91906138dc565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c591906139ab565b610f6d565b005b3480156106d857600080fd5b506106e161107f565b6040516106ee9190613725565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613a12565b611085565b005b34801561072c57600080fd5b50610735611134565b005b34801561074357600080fd5b5061074c611281565b6040516107599190613725565b60405180910390f35b34801561076e57600080fd5b50610777611287565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613a6b565b6113d4565b005b3480156107ae57600080fd5b506107b7611437565b6040516107c49190613725565b60405180910390f35b3480156107d957600080fd5b506107e261143d565b6040516107ef91906138dc565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613a12565b611450565b60405161082c9190613725565b60405180910390f35b34801561084157600080fd5b5061084a611498565b005b34801561085857600080fd5b50610873600480360381019061086e9190613a12565b6114ac565b60405161088091906138dc565b60405180910390f35b34801561089557600080fd5b5061089e6114cc565b6040516108ab9190613725565b60405180910390f35b3480156108c057600080fd5b506108c96114d2565b6040516108d691906138dc565b60405180910390f35b3480156108eb57600080fd5b506108f46114e5565b6040516109019190613b0a565b60405180910390f35b34801561091657600080fd5b5061091f61150b565b60405161092c9190613959565b60405180910390f35b34801561094157600080fd5b5061094a611535565b005b34801561095857600080fd5b50610961611547565b60405161096e9190613725565b60405180910390f35b34801561098357600080fd5b5061098c61154d565b60405161099991906137d0565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c49190613881565b6115df565b6040516109d691906138dc565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613a12565b611656565b604051610a1391906138dc565b60405180910390f35b348015610a2857600080fd5b50610a436004803603810190610a3e9190613881565b6116ea565b604051610a5091906138dc565b60405180910390f35b348015610a6557600080fd5b50610a806004803603810190610a7b9190613b25565b611706565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b25565b61172b565b005b348015610ab757600080fd5b50610ad26004803603810190610acd9190613b52565b611750565b005b348015610ae057600080fd5b50610afb6004803603810190610af69190613bdf565b6117c8565b604051610b089190613959565b60405180910390f35b348015610b1d57600080fd5b50610b2661183d565b604051610b339190613725565b60405180910390f35b348015610b4857600080fd5b50610b51611843565b005b348015610b5f57600080fd5b50610b7a6004803603810190610b759190613a12565b611956565b604051610b8791906138dc565b60405180910390f35b348015610b9c57600080fd5b50610ba56119ea565b604051610bb29190613725565b60405180910390f35b348015610bc757600080fd5b50610bd06119f0565b604051610bdd9190613725565b60405180910390f35b348015610bf257600080fd5b50610bfb6119f6565b604051610c0891906138dc565b60405180910390f35b348015610c1d57600080fd5b50610c386004803603810190610c339190613a12565b611a09565b604051610c4591906138dc565b60405180910390f35b348015610c5a57600080fd5b50610c756004803603810190610c709190613c0c565b611a29565b604051610c829190613725565b60405180910390f35b348015610c9757600080fd5b50610cb26004803603810190610cad9190613a12565b611ab0565b604051610cbf91906138dc565b60405180910390f35b348015610cd457600080fd5b50610cef6004803603810190610cea9190613a12565b611acd565b005b348015610cfd57600080fd5b50610d186004803603810190610d139190613b52565b611b50565b005b348015610d2657600080fd5b50610d2f611bc8565b604051610d3c9190613725565b60405180910390f35b610d4d611bce565b600060095414610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990613c98565b60405180910390fd5b4360098190555042600a81905550565b6000610dae600c611c4c565b905090565b606060038054610dc290613ce7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dee90613ce7565b8015610e3b5780601f10610e1057610100808354040283529160200191610e3b565b820191906000526020600020905b815481529060010190602001808311610e1e57829003601f168201915b5050505050905090565b600080610e50611c61565b9050610e5d818585611c69565b600191505092915050565b60185481565b60205481565b60225481565b601f5481565b60165481565b60155481565b6000600254905090565b601d5481565b600080610ea7611c61565b9050610eb4858285611e32565b610ebf858585611ebe565b9150509392505050565b6000610ed56000611450565b610ee061dead611450565b610ee8610e8c565b610ef29190613d47565b610efc9190613d47565b905090565b602660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006006905090565b601e5481565b600080610f41611c61565b9050610f62818585610f538589611a29565b610f5d9190613d7b565b611c69565b600191505092915050565b610f75611bce565b83602460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60175481565b61108d611bce565b611131338273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110ca9190613959565b602060405180830381865afa1580156110e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110b9190613dc4565b8373ffffffffffffffffffffffffffffffffffffffff1661212d9092919063ffffffff16565b50565b61113c611bce565b600b60009054906101000a900460ff161561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390613e3d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c9c653967f0000000000000000000000000000000000000000000000000000000000000000306040518363ffffffff1660e01b8152600401611209929190613e5d565b6020604051808303816000875af1158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190613e9b565b905061126281600c6121b390919063ffffffff16565b506001600b60006101000a81548160ff02191690831515021790555050565b60235481565b61128f611bce565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6112d5611c61565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113309190613959565b602060405180830381865afa15801561134d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113719190613dc4565b6040518363ffffffff1660e01b815260040161138e929190613ec8565b6020604051808303816000875af11580156113ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d19190613f06565b50565b6113dc611bce565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b601a5481565b600860009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a0611bce565b6114aa60006121e3565b565b60076020528060005260406000206000915054906101000a900460ff1681565b60195481565b600860019054906101000a900460ff1681565b600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61153d611bce565b6115456122a9565b565b60215481565b60606004805461155c90613ce7565b80601f016020809104026020016040519081016040528092919081815260200182805461158890613ce7565b80156115d55780601f106115aa576101008083540402835291602001916115d5565b820191906000526020600020905b8154815290600101906020018083116115b857829003601f168201915b5050505050905090565b6000806115ea611c61565b905060006115f88286611a29565b90508381101561163d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163490613fa5565b60405180910390fd5b61164a8286868403611c69565b60019250505092915050565b6000611660611bce565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690614037565b60405180910390fd5b6116e382600c612aa090919063ffffffff16565b9050919050565b60006116fe6116f7611c61565b8484611ebe565b905092915050565b61170e611bce565b80600860016101000a81548160ff02191690831515021790555050565b611733611bce565b80600860006101000a81548160ff02191690831515021790555050565b611758611bce565b85601d8190555084601e819055508260208190555083601f8190555081602181905550806022819055508581838787876117929190613d7b565b61179c9190613d7b565b6117a69190613d7b565b6117b09190613d7b565b6117ba9190613d7b565b602381905550505050505050565b600060016117d6600c611c4c565b6117e09190613d47565b821115611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906140a3565b60405180910390fd5b61183682600c612ad090919063ffffffff16565b9050919050565b60095481565b61184b611bce565b6000479050600061185a611c61565b73ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff81111561188c5761188b6140c3565b5b6040519080825280601f01601f1916602001820160405280156118be5781602001600182028036833780820191505090505b506040516118cc9190614139565b60006040518083038185875af1925050503d8060008114611909576040519150601f19603f3d011682016040523d82523d6000602084013e61190e565b606091505b5050905080611952576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119499061419c565b60405180910390fd5b5050565b6000611960611bce565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690614037565b60405180910390fd5b6119e382600c6121b390919063ffffffff16565b9050919050565b600a5481565b601b5481565b600860029054906101000a900460ff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000611ac682600c612aea90919063ffffffff16565b9050919050565b611ad5611bce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b9061422e565b60405180910390fd5b611b4d816121e3565b50565b611b58611bce565b8560168190555084601781905550826019819055508360188190555081601a8190555080601b81905550858183878787611b929190613d7b565b611b9c9190613d7b565b611ba69190613d7b565b611bb09190613d7b565b611bba9190613d7b565b601c81905550505050505050565b601c5481565b611bd6611c61565b73ffffffffffffffffffffffffffffffffffffffff16611bf461150b565b73ffffffffffffffffffffffffffffffffffffffff1614611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c419061429a565b60405180910390fd5b565b6000611c5a82600001612b1a565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf9061432c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e906143be565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e259190613725565b60405180910390a3505050565b6000611e3e8484611a29565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611eb85781811015611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea19061442a565b60405180910390fd5b611eb78484848403611c69565b5b50505050565b6000600860029054906101000a900460ff1615611ee957611ee0848484612b2b565b60019050612126565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f8257611f42612da1565b611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890614496565b60405180910390fd5b5b6000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120285750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120385750612037612da1565b5b9050600080869050600086905061204e88611ab0565b1561206a5761205b612dae565b6001925086915087905061208f565b61207387611ab0565b1561208957612080612def565b6002925061208e565b600093505b5b612097612e30565b156120a5576120a46122a9565b5b6000846120b257866120bd565b6120bc8988612e9d565b5b90506120ca898983612b2b565b600084111561211c577fe6f814da7244d1ae6c61b54b5684858ba39cad7b9a91884be10060664987d75483838987612100610ec9565b42604051612113969594939291906144b6565b60405180910390a15b6001955050505050505b9392505050565b6121ae8363a9059cbb60e01b848460405160240161214c929190613ec8565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612edd565b505050565b60006121db836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612fa4565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600860026101000a81548160ff02191690831515021790555060006122cf30611450565b90506122fc307f000000000000000000000000000000000000000000000000000000000000000083611c69565b6000601454600e548361230f9190614517565b6123199190614588565b905060006014546011548461232e9190614517565b6123389190614588565b90506000601454600f548561234d9190614517565b6123579190614588565b905060006014546012548661236c9190614517565b6123769190614588565b905083856123849190613d47565b945082856123929190613d47565b945081856123a09190613d47565b945080856123ae9190613d47565b94506000600367ffffffffffffffff8111156123cd576123cc6140c3565b5b6040519080825280602002602001820160405280156123fb5781602001602082028036833780820191505090505b5090503081600081518110612413576124126145b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110612482576124816145b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816002815181106124f3576124f26145b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600080600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161258b9190613959565b602060405180830381865afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc9190613dc4565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ac3893ba89600086306000426040518763ffffffff1660e01b8152600401612633969594939291906146e1565b600060405180830381600087803b15801561264d57600080fd5b505af192505050801561265e575060015b6126fe577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d7958960008630426040518663ffffffff1660e01b81526004016126c4959493929190614749565b600060405180830381600087803b1580156126de57600080fd5b505af19250505080156126ef575060015b156126f957600191505b612703565b600191505b81612715575050505050505050612a83565b6127223061dead89612b2b565b61274f30602460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687612b2b565b61277c30602660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686612b2b565b600081600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016127da9190613959565b602060405180830381865afa1580156127f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281b9190613dc4565b6128259190613d47565b90506000601254600f54601154600e546014546128429190613d47565b61284c9190613d47565b6128569190613d47565b6128609190613d47565b9050600081601054846128739190614517565b61287d9190614588565b90506000818461288d9190613d47565b9050600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb602560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b815260040161290e929190613ec8565b6020604051808303816000875af115801561292d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129519190613f06565b50600860039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb602760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016129d1929190613ec8565b6020604051808303816000875af11580156129f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a149190613f06565b50600860019054906101000a900460ff1615612a3357612a32613014565b5b7f0bc091a9ed8a9b857f446b61b8646a7e28d535db811003dd8cfa8bdba85657c88b838c8b8d8642604051612a6e97969594939291906147a3565b60405180910390a15050505050505050505050505b6000600860026101000a81548160ff021916908315150217905550565b6000612ac8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6132be565b905092915050565b6000612adf83600001836133d2565b60001c905092915050565b6000612b12836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6133fd565b905092915050565b600081600001805490509050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9190614884565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0090614916565b60405180910390fd5b612c14838383613420565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c91906149a8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d889190613725565b60405180910390a3612d9b848484613425565b50505050565b6000806009541415905090565b601654600e81905550601754600f81905550601854601081905550601954601181905550601a54601281905550601b54601381905550601c54601481905550565b601d54600e81905550601e54600f81905550601f54601081905550602054601181905550602154601281905550602254601381905550602354601481905550565b6000600860029054906101000a900460ff16158015612e5b5750600860009054906101000a900460ff165b8015612e6b5750612e6a612da1565b5b8015612e7f57506000612e7d30611450565b115b8015612e985750612e96612e91611c61565b611ab0565b155b905090565b60008060155460145484612eb19190614517565b612ebb9190614588565b9050612ec8843083612b2b565b8083612ed49190613d47565b91505092915050565b6000612f3f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661342a9092919063ffffffff16565b9050600081511115612f9f5780806020019051810190612f5f9190613f06565b612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9590614a3a565b60405180910390fd5b5b505050565b6000612fb083836133fd565b61300957826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061300e565b600090505b92915050565b6000600267ffffffffffffffff811115613031576130306140c3565b5b60405190808252806020026020018201604052801561305f5781602001602082028036833780820191505090505b5090503081600081518110613077576130766145b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000000000000000000000000000000000000000000000816001815181106130e6576130e56145b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600061312b30611450565b9050600060028261313c9190614588565b90506103e8811015613150575050506132bc565b600047905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166352aa4c2284600088306000426040518763ffffffff1660e01b81526004016131bc969594939291906146e1565b600060405180830381600087803b1580156131d657600080fd5b505af19250505080156131e7575060015b613287577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008830426040518663ffffffff1660e01b815260040161324d959493929190614749565b600060405180830381600087803b15801561326757600080fd5b505af1925050508015613278575060015b1561328257600190505b61328c565b600190505b8061329b5750505050506132bc565b600082476132a99190613d47565b90506132b58482613442565b5050505050505b565b600080836001016000848152602001908152602001600020549050600081146133c65760006001826132f09190613d47565b90506000600186600001805490506133089190613d47565b9050818114613377576000866000018281548110613329576133286145b9565b5b906000526020600020015490508087600001848154811061334d5761334c6145b9565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061338b5761338a614a5a565b5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506133cc565b60009150505b92915050565b60008260000182815481106133ea576133e96145b9565b5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b505050565b60606134398484600085613557565b90509392505050565b61346d307f000000000000000000000000000000000000000000000000000000000000000084611c69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b81526004016134d396959493929190614a89565b60606040518083038185885af19350505050801561350f57506040513d601f19601f8201168201806040525081019061350c9190614aea565b60015b15613553575050507ff75993dbe1645872cbbea6395e1feebee76b435baf0e4d62d7eac269c6f57b2482824260405161354a93929190614b3d565b60405180910390a15b5050565b60608247101561359c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161359390614be6565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135c59190614139565b60006040518083038185875af1925050503d8060008114613602576040519150601f19603f3d011682016040523d82523d6000602084013e613607565b606091505b509150915061361887838387613624565b92505050949350505050565b6060831561368657600083510361367e5761363e85613699565b61367d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367490614c52565b60405180910390fd5b5b829050613691565b61369083836136bc565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156136cf5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370391906137d0565b60405180910390fd5b6000819050919050565b61371f8161370c565b82525050565b600060208201905061373a6000830184613716565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561377a57808201518184015260208101905061375f565b60008484015250505050565b6000601f19601f8301169050919050565b60006137a282613740565b6137ac818561374b565b93506137bc81856020860161375c565b6137c581613786565b840191505092915050565b600060208201905081810360008301526137ea8184613797565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613822826137f7565b9050919050565b61383281613817565b811461383d57600080fd5b50565b60008135905061384f81613829565b92915050565b61385e8161370c565b811461386957600080fd5b50565b60008135905061387b81613855565b92915050565b60008060408385031215613898576138976137f2565b5b60006138a685828601613840565b92505060206138b78582860161386c565b9150509250929050565b60008115159050919050565b6138d6816138c1565b82525050565b60006020820190506138f160008301846138cd565b92915050565b6000806000606084860312156139105761390f6137f2565b5b600061391e86828701613840565b935050602061392f86828701613840565b92505060406139408682870161386c565b9150509250925092565b61395381613817565b82525050565b600060208201905061396e600083018461394a565b92915050565b600060ff82169050919050565b61398a81613974565b82525050565b60006020820190506139a56000830184613981565b92915050565b600080600080608085870312156139c5576139c46137f2565b5b60006139d387828801613840565b94505060206139e487828801613840565b93505060406139f587828801613840565b9250506060613a0687828801613840565b91505092959194509250565b600060208284031215613a2857613a276137f2565b5b6000613a3684828501613840565b91505092915050565b613a48816138c1565b8114613a5357600080fd5b50565b600081359050613a6581613a3f565b92915050565b60008060408385031215613a8257613a816137f2565b5b6000613a9085828601613840565b9250506020613aa185828601613a56565b9150509250929050565b6000819050919050565b6000613ad0613acb613ac6846137f7565b613aab565b6137f7565b9050919050565b6000613ae282613ab5565b9050919050565b6000613af482613ad7565b9050919050565b613b0481613ae9565b82525050565b6000602082019050613b1f6000830184613afb565b92915050565b600060208284031215613b3b57613b3a6137f2565b5b6000613b4984828501613a56565b91505092915050565b60008060008060008060c08789031215613b6f57613b6e6137f2565b5b6000613b7d89828a0161386c565b9650506020613b8e89828a0161386c565b9550506040613b9f89828a0161386c565b9450506060613bb089828a0161386c565b9350506080613bc189828a0161386c565b92505060a0613bd289828a0161386c565b9150509295509295509295565b600060208284031215613bf557613bf46137f2565b5b6000613c038482850161386c565b91505092915050565b60008060408385031215613c2357613c226137f2565b5b6000613c3185828601613840565b9250506020613c4285828601613840565b9150509250929050565b7f416c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b6000613c8260108361374b565b9150613c8d82613c4c565b602082019050919050565b60006020820190508181036000830152613cb181613c75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613cff57607f821691505b602082108103613d1257613d11613cb8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d528261370c565b9150613d5d8361370c565b9250828203905081811115613d7557613d74613d18565b5b92915050565b6000613d868261370c565b9150613d918361370c565b9250828201905080821115613da957613da8613d18565b5b92915050565b600081519050613dbe81613855565b92915050565b600060208284031215613dda57613dd96137f2565b5b6000613de884828501613daf565b91505092915050565b7f416c726561647920696e697469616c697a656400000000000000000000000000600082015250565b6000613e2760138361374b565b9150613e3282613df1565b602082019050919050565b60006020820190508181036000830152613e5681613e1a565b9050919050565b6000604082019050613e72600083018561394a565b613e7f602083018461394a565b9392505050565b600081519050613e9581613829565b92915050565b600060208284031215613eb157613eb06137f2565b5b6000613ebf84828501613e86565b91505092915050565b6000604082019050613edd600083018561394a565b613eea6020830184613716565b9392505050565b600081519050613f0081613a3f565b92915050565b600060208284031215613f1c57613f1b6137f2565b5b6000613f2a84828501613ef1565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613f8f60258361374b565b9150613f9a82613f33565b604082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b7f417262536869623a207061697220697320746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061402160218361374b565b915061402c82613fc5565b604082019050919050565b6000602082019050818103600083015261405081614014565b9050919050565b7f417262536869623a20696e646578206f7574206f6620626f756e647300000000600082015250565b600061408d601c8361374b565b915061409882614057565b602082019050919050565b600060208201905081810360008301526140bc81614080565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600081905092915050565b6000614113826140f2565b61411d81856140fd565b935061412d81856020860161375c565b80840191505092915050565b60006141458284614108565b915081905092915050565b7f4149444f47453a204554485f5452414e534645525f4641494c45440000000000600082015250565b6000614186601b8361374b565b915061419182614150565b602082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061421860268361374b565b9150614223826141bc565b604082019050919050565b600060208201905081810360008301526142478161420b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061428460208361374b565b915061428f8261424e565b602082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061431660248361374b565b9150614321826142ba565b604082019050919050565b6000602082019050818103600083015261434581614309565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006143a860228361374b565b91506143b38261434c565b604082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614414601d8361374b565b915061441f826143de565b602082019050919050565b6000602082019050818103600083015261444381614407565b9050919050565b7f54726164696e67206e6f74206f70656e20796574000000000000000000000000600082015250565b600061448060148361374b565b915061448b8261444a565b602082019050919050565b600060208201905081810360008301526144af81614473565b9050919050565b600060c0820190506144cb600083018961394a565b6144d8602083018861394a565b6144e56040830187613716565b6144f26060830186613716565b6144ff6080830185613716565b61450c60a0830184613716565b979650505050505050565b60006145228261370c565b915061452d8361370c565b925082820261453b8161370c565b9150828204841483151761455257614551613d18565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145938261370c565b915061459e8361370c565b9250826145ae576145ad614559565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061460d614608614603846145e8565b613aab565b61370c565b9050919050565b61461d816145f2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61465881613817565b82525050565b600061466a838361464f565b60208301905092915050565b6000602082019050919050565b600061468e82614623565b614698818561462e565b93506146a38361463f565b8060005b838110156146d45781516146bb888261465e565b97506146c683614676565b9250506001810190506146a7565b5085935050505092915050565b600060c0820190506146f66000830189613716565b6147036020830188614614565b81810360408301526147158187614683565b9050614724606083018661394a565b614731608083018561394a565b61473e60a0830184613716565b979650505050505050565b600060a08201905061475e6000830188613716565b61476b6020830187614614565b818103604083015261477d8186614683565b905061478c606083018561394a565b6147996080830184613716565b9695505050505050565b600060e0820190506147b8600083018a613716565b6147c56020830189613716565b6147d26040830188613716565b6147df6060830187613716565b6147ec6080830186613716565b6147f960a0830185613716565b61480660c0830184613716565b98975050505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061486e60258361374b565b915061487982614812565b604082019050919050565b6000602082019050818103600083015261489d81614861565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061490060238361374b565b915061490b826148a4565b604082019050919050565b6000602082019050818103600083015261492f816148f3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061499260268361374b565b915061499d82614936565b604082019050919050565b600060208201905081810360008301526149c181614985565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614a24602a8361374b565b9150614a2f826149c8565b604082019050919050565b60006020820190508181036000830152614a5381614a17565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060c082019050614a9e600083018961394a565b614aab6020830188613716565b614ab86040830187614614565b614ac56060830186614614565b614ad2608083018561394a565b614adf60a0830184613716565b979650505050505050565b600080600060608486031215614b0357614b026137f2565b5b6000614b1186828701613daf565b9350506020614b2286828701613daf565b9250506040614b3386828701613daf565b9150509250925092565b6000606082019050614b526000830186613716565b614b5f6020830185613716565b614b6c6040830184613716565b949350505050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614bd060268361374b565b9150614bdb82614b74565b604082019050919050565b60006020820190508181036000830152614bff81614bc3565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614c3c601d8361374b565b9150614c4782614c06565b602082019050919050565b60006020820190508181036000830152614c6b81614c2f565b905091905056fea2646970667358221220e4cc262e5db350d2fe29fb4c93a67274ff397f24c1e1a4a5eac63cc861167c6e64736f6c63430008110033000000000000000000000000912ce59144191c1204e64559fe8253a0e49e65480000000000000000000000006eccab422d763ac031210895c81787e87b43a652000000000000000000000000c873fecbd354f5a56e00e710b90ef4201db2448d00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000912ce59144191c1204e64559fe8253a0e49e65480000000000000000000000006eccab422d763ac031210895c81787e87b43a652000000000000000000000000c873fecbd354f5a56e00e710b90ef4201db2448d00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1
-----Decoded View---------------
Arg [0] : _backToken (address): 0x912ce59144191c1204e64559fe8253a0e49e6548
Arg [1] : _factory (address): 0x6eccab422d763ac031210895c81787e87b43a652
Arg [2] : _swapRouter (address): 0xc873fecbd354f5a56e00e710b90ef4201db2448d
Arg [3] : _weth (address): 0x82af49447d8a07e3bd95bd0d56f35241523fbab1
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548
Arg [1] : 0000000000000000000000006eccab422d763ac031210895c81787e87b43a652
Arg [2] : 000000000000000000000000c873fecbd354f5a56e00e710b90ef4201db2448d
Arg [3] : 00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab1