ERC-20
Overview
Max Total Supply
1,000,000,000 科太币2.0
Holders
82
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.055328181712216625 科太币2.0Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TokenUniswap2
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-07 */ // Sources flattened with hardhat v2.17.1 https://hardhat.org // SPDX-License-Identifier: GenesisBot.xyz AND MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) 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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/utils/math/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File contracts/Token/TokenUniswap2.sol // Original license: SPDX_License_Identifier: GenesisBot.xyz pragma solidity ^0.8.9; interface SwapV2Router { function factory() external view returns (address); function WETH() external view returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface SwapV2Factory { // function turnstile() external view returns (ITurnstile); function createPair( address tokenA, address tokenB ) external returns (address); } contract TokenUniswap2 is ERC20, Ownable { using SafeMath for uint256; struct InitParams { string name; string symbol; uint256 totalSupply; uint256 maxTradingAmount; uint256 maxWalletAmount; uint256 swapTokensAtAmount; uint256 buyTotalFees; uint256 sellTotalFees; uint256 burnFee; uint256 liquidityFee; uint256 devFee; uint256 revshareFee; address revshareWallet; } SwapV2Router public immutable swapV2Router; //ITurnstile public immutable turnstile; address public immutable swapV2Pair; address public constant DEAD = address(0xdead); bool private swapping; address public revShareWallet; address public devWallet; uint256 public maxTradingAmount; uint256 public swapTokensAtAmount; uint256 public maxWalletAmount; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 constant PERCENTAGE_BASE = 10000; // uint256 constant GEN_FEE = 30; // fee for GEN Bot: 0.3% address constant GEN_WALLET = 0x91FEad7F2B2172e75FfCf4cAdFF5049c9270EE41; uint256 public buyTotalFees; // buy fee uint256 public sellTotalFees; // sell fee // Tax distribution uint256 public burnFee; uint256 public liquidityFee; uint256 public devFee; uint256 public revshareFee; uint256 public totalFees; uint256 public tokensForGen; uint256 public tokensForBurn; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 public tokensForRevshare; uint256 public totalTaxTokens; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTradingAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; // Trading start at uint256 block0; uint256 constant NO_SMC_TRADE_BLOCKS = 3; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor( address routerAddress, InitParams memory params ) ERC20(params.name, params.symbol) { // amm swap init SwapV2Router router = SwapV2Router(routerAddress); SwapV2Factory factory = SwapV2Factory(router.factory()); swapV2Router = router; // create pair This:ETH swapV2Pair = factory.createPair(address(this), router.WETH()); excludeFromMaxTrading(address(swapV2Pair), true); _setAutomatedMarketMakerPair(address(swapV2Pair), true); // Token parameters uint256 totalSupply = params.totalSupply * 1e18; swapTokensAtAmount = (totalSupply * params.swapTokensAtAmount) / PERCENTAGE_BASE; // 0.05% maxTradingAmount = (totalSupply * params.maxTradingAmount) / PERCENTAGE_BASE; // 0.1% maxWalletAmount = (totalSupply * params.maxWalletAmount) / PERCENTAGE_BASE; // 1% // Fee distribute: burn: 1, dev: 4 updateTaxSplit( params.burnFee, params.liquidityFee, params.devFee, params.revshareFee, params.revshareWallet ); // 5% fee for buy/sell updateFees(params.buyTotalFees, params.sellTotalFees); devWallet = msg.sender; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTrading(owner(), true); excludeFromMaxTrading(address(this), true); excludeFromMaxTrading(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTradingAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTradingAmount lower than 0.1%" ); maxTradingAmount = newNum * (10 ** 18); } function updateMaxWalletAmountAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWalletAmount lower than 1.0%" ); maxWalletAmount = newNum * (10 ** 18); } function excludeFromMaxTrading(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTradingAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateFees( uint256 buyTotalFees_, uint256 sellTotalFees_ ) public onlyOwner { require( buyTotalFees_ <= 500 && sellTotalFees_ <= 500, "Buy/sell fees must be <= 5%" ); buyTotalFees = buyTotalFees_; sellTotalFees = sellTotalFees_; if (buyTotalFees < GEN_FEE) buyTotalFees += GEN_FEE; if (sellTotalFees < GEN_FEE) sellTotalFees += GEN_FEE; } // contract setting function updateTaxSplit( uint256 burnFee_, uint256 liquidityFee_, uint256 devFee_, uint256 revshareFee_, address revShareWallet_ ) public onlyOwner { // tax distribution if (revshareFee_ > 0) require( revShareWallet_ != address(0), "Revshare Wallet is required!" ); burnFee = burnFee_; liquidityFee = liquidityFee_; devFee = devFee_; revshareFee = revshareFee_; totalFees = burnFee + liquidityFee + devFee + revshareFee; // update revshare wallet revShareWallet = revShareWallet_; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != swapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateRevShareWallet( address newRevShareWallet ) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } function updateDevWallet(address newWallet) external onlyOwner { devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal virtual override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTradingAmount[to] ) { //when buy require( amount <= maxTradingAmount, "Buy transfer amount exceeds the maxTradingAmount." ); require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); if (block0 + NO_SMC_TRADE_BLOCKS > block.number) { require(!isContract(to)); } } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTradingAmount[from] ) { //when sell require( amount <= maxTradingAmount, "Sell transfer amount exceeds the maxTradingAmount." ); } else if (!_isExcludedMaxTradingAmount[to]) { //when transfer require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } } } // uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = totalTaxTokens >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); // after swap back, reset tracking tax tokens totalTaxTokens = 0; swapping = false; } // only take free for trading bool takeFee = !swapping && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]); // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(PERCENTAGE_BASE); } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(PERCENTAGE_BASE); } // token distribution uint256 tokensForGen_ = amount.mul(GEN_FEE).div(PERCENTAGE_BASE); if (fees > 0) { super._transfer(from, address(this), fees); } uint256 tokensForFees = fees.sub(tokensForGen_); tokensForGen += tokensForGen_; if (totalFees > 0) { tokensForBurn += tokensForFees.mul(burnFee).div(totalFees); tokensForDev += tokensForFees.mul(devFee).div(totalFees); tokensForLiquidity += tokensForFees.mul(liquidityFee).div( totalFees ); tokensForRevshare += tokensForFees.mul(revshareFee).div( totalFees ); } amount -= fees; totalTaxTokens += fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) internal { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = swapV2Router.WETH(); _approve(address(this), address(swapV2Router), tokenAmount); // make the swap swapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { // approve token transfer to cover all possible scenarios _approve(address(this), address(swapV2Router), tokenAmount); // add the liquidity swapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function openTrading() external onlyOwner { require(!tradingActive, "Trading is already open"); addLiquidity(balanceOf(address(this)), address(this).balance); // enable trading tradingActive = true; swapEnabled = true; // block zero block0 = block.number; } function swapBack() internal virtual { uint256 contractBalance = balanceOf(address(this)); if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } if (contractBalance == 0) return; if (tokensForGen > contractBalance) tokensForGen = contractBalance; uint256 tokensForAddLiquidity = tokensForLiquidity.div(2); // uint256 totalTokensToSwap = tokensForGen // .add(tokensForDev) // .add(tokensForRevshare) // .add(tokensForAddLiquidity); // swap all token except for Tokens to Add Liquidity and Burnt uint256 totalTokensToSwap = contractBalance.sub( tokensForAddLiquidity + tokensForBurn ); if (tokensForBurn > 0) { // transfer to dead super._transfer(address(this), DEAD, tokensForBurn); } if (totalTokensToSwap > 0) { uint256 initEthBalance = address(this).balance; swapTokensForEth(totalTokensToSwap); uint256 ethBalance = address(this).balance.sub(initEthBalance); uint256 ethForGen = ethBalance.mul(tokensForGen).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div( totalTokensToSwap ); uint256 ethForRevshare = ethBalance.mul(tokensForRevshare).div( totalTokensToSwap ); uint256 ethForAddLiquidity = ethBalance .sub(ethForGen) .sub(ethForDev) .sub(ethForRevshare); // send eth to benificiers bool success; if (ethForGen > 0) { (success, ) = address(GEN_WALLET).call{value: ethForGen}(""); } if (ethForDev > 0) { (success, ) = address(devWallet).call{value: ethForDev}(""); } if (ethForRevshare > 0) { (success, ) = address(revShareWallet).call{ value: ethForRevshare }(""); } if (tokensForAddLiquidity > 0 && ethForAddLiquidity > 0) { addLiquidity(tokensForAddLiquidity, ethForAddLiquidity); } } // reset token for GEN tokensForGen = 0; tokensForDev = 0; tokensForRevshare = 0; tokensForLiquidity = 0; } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(""); require(success); } /************************************************************************/ function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxTradingAmount","type":"uint256"},{"internalType":"uint256","name":"maxWalletAmount","type":"uint256"},{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"},{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"revshareFee","type":"uint256"},{"internalType":"address","name":"revshareWallet","type":"address"}],"internalType":"struct TokenUniswap2.InitParams","name":"params","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTradingAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTradingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revshareFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Router","outputs":[{"internalType":"contract SwapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForGen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForRevshare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyTotalFees_","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees_","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTradingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmountAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"burnFee_","type":"uint256"},{"internalType":"uint256","name":"liquidityFee_","type":"uint256"},{"internalType":"uint256","name":"devFee_","type":"uint256"},{"internalType":"uint256","name":"revshareFee_","type":"uint256"},{"internalType":"address","name":"revShareWallet_","type":"address"}],"name":"updateTaxSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200633238038062006332833981810160405281019062000088919062000f30565b806000015181602001518160039081620000a39190620011d7565b508060049081620000b59190620011d7565b505050620000d8620000cc620004a560201b60201c565b620004ad60201b60201c565b600082905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200012b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001519190620012be565b90508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002169190620012be565b6040518363ffffffff1660e01b81526004016200023592919062001301565b6020604051808303816000875af115801562000255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027b9190620012be565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620002c360a05160016200057360201b60201c565b620002d860a0516001620005de60201b60201c565b6000670de0b6b3a76400008460400151620002f491906200135d565b90506127108460a00151826200030b91906200135d565b620003179190620013d7565b6009819055506127108460600151826200033291906200135d565b6200033e9190620013d7565b6008819055506127108460800151826200035991906200135d565b620003659190620013d7565b600a81905550620003998461010001518561012001518661014001518761016001518861018001516200067f60201b60201c565b620003b38460c001518560e00151620007a660201b60201c565b33600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000416620004086200087160201b60201c565b60016200089b60201b60201c565b620004293060016200089b60201b60201c565b6200043e61dead60016200089b60201b60201c565b62000460620004526200087160201b60201c565b60016200057360201b60201c565b620004733060016200057360201b60201c565b6200048861dead60016200057360201b60201c565b6200049a33826200095660201b60201c565b50505050506200168b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200058362000ac360201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6200068f62000ac360201b60201c565b60008211156200070c57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007029062001470565b60405180910390fd5b5b84600e8190555083600f819055508260108190555081601181905550601154601054600f54600e5462000740919062001492565b6200074c919062001492565b62000758919062001492565b60128190555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b620007b662000ac360201b60201c565b6101f48211158015620007cb57506101f48111155b6200080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000804906200151d565b60405180910390fd5b81600c8190555080600d81905550601e600c5410156200084457601e600c60008282546200083c919062001492565b925050819055505b601e600d5410156200086d57601e600d600082825462000865919062001492565b925050819055505b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008ab62000ac360201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094a91906200155c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009bf90620015c9565b60405180910390fd5b620009dc6000838362000b5460201b60201c565b8060026000828254620009f0919062001492565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aa39190620015fc565b60405180910390a362000abf6000838362000b5960201b60201c565b5050565b62000ad3620004a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000af96200087160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b499062001669565b60405180910390fd5b565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9f8262000b72565b9050919050565b62000bb18162000b92565b811462000bbd57600080fd5b50565b60008151905062000bd18162000ba6565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000c278262000bdc565b810181811067ffffffffffffffff8211171562000c495762000c4862000bed565b5b80604052505050565b600062000c5e62000b5e565b905062000c6c828262000c1c565b919050565b600080fd5b600080fd5b600080fd5b600067ffffffffffffffff82111562000c9e5762000c9d62000bed565b5b62000ca98262000bdc565b9050602081019050919050565b60005b8381101562000cd657808201518184015260208101905062000cb9565b60008484015250505050565b600062000cf962000cf38462000c80565b62000c52565b90508281526020810184848401111562000d185762000d1762000c7b565b5b62000d2584828562000cb6565b509392505050565b600082601f83011262000d455762000d4462000c76565b5b815162000d5784826020860162000ce2565b91505092915050565b6000819050919050565b62000d758162000d60565b811462000d8157600080fd5b50565b60008151905062000d958162000d6a565b92915050565b60006101a0828403121562000db55762000db462000bd7565b5b62000dc26101a062000c52565b9050600082015167ffffffffffffffff81111562000de55762000de462000c71565b5b62000df38482850162000d2d565b600083015250602082015167ffffffffffffffff81111562000e1a5762000e1962000c71565b5b62000e288482850162000d2d565b602083015250604062000e3e8482850162000d84565b604083015250606062000e548482850162000d84565b606083015250608062000e6a8482850162000d84565b60808301525060a062000e808482850162000d84565b60a08301525060c062000e968482850162000d84565b60c08301525060e062000eac8482850162000d84565b60e08301525061010062000ec38482850162000d84565b6101008301525061012062000edb8482850162000d84565b6101208301525061014062000ef38482850162000d84565b6101408301525061016062000f0b8482850162000d84565b6101608301525061018062000f238482850162000bc0565b6101808301525092915050565b6000806040838503121562000f4a5762000f4962000b68565b5b600062000f5a8582860162000bc0565b925050602083015167ffffffffffffffff81111562000f7e5762000f7d62000b6d565b5b62000f8c8582860162000d9b565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fe957607f821691505b60208210810362000fff5762000ffe62000fa1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620010697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200102a565b6200107586836200102a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620010b8620010b2620010ac8462000d60565b6200108d565b62000d60565b9050919050565b6000819050919050565b620010d48362001097565b620010ec620010e382620010bf565b84845462001037565b825550505050565b600090565b62001103620010f4565b62001110818484620010c9565b505050565b5b8181101562001138576200112c600082620010f9565b60018101905062001116565b5050565b601f8211156200118757620011518162001005565b6200115c846200101a565b810160208510156200116c578190505b620011846200117b856200101a565b83018262001115565b50505b505050565b600082821c905092915050565b6000620011ac600019846008026200118c565b1980831691505092915050565b6000620011c7838362001199565b9150826002028217905092915050565b620011e28262000f96565b67ffffffffffffffff811115620011fe57620011fd62000bed565b5b6200120a825462000fd0565b620012178282856200113c565b600060209050601f8311600181146200124f57600084156200123a578287015190505b620012468582620011b9565b865550620012b6565b601f1984166200125f8662001005565b60005b82811015620012895784890151825560018201915060208501945060208101905062001262565b86831015620012a95784890151620012a5601f89168262001199565b8355505b6001600288020188555050505b505050505050565b600060208284031215620012d757620012d662000b68565b5b6000620012e78482850162000bc0565b91505092915050565b620012fb8162000b92565b82525050565b6000604082019050620013186000830185620012f0565b620013276020830184620012f0565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200136a8262000d60565b9150620013778362000d60565b9250828202620013878162000d60565b91508282048414831517620013a157620013a06200132e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013e48262000d60565b9150620013f18362000d60565b925082620014045762001403620013a8565b5b828204905092915050565b600082825260208201905092915050565b7f52657673686172652057616c6c65742069732072657175697265642100000000600082015250565b600062001458601c836200140f565b9150620014658262001420565b602082019050919050565b600060208201905081810360008301526200148b8162001449565b9050919050565b60006200149f8262000d60565b9150620014ac8362000d60565b9250828201905080821115620014c757620014c66200132e565b5b92915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035250000000000600082015250565b600062001505601b836200140f565b91506200151282620014cd565b602082019050919050565b600060208201905081810360008301526200153881620014f6565b9050919050565b60008115159050919050565b62001556816200153f565b82525050565b60006020820190506200157360008301846200154b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620015b1601f836200140f565b9150620015be8262001579565b602082019050919050565b60006020820190508181036000830152620015e481620015a2565b9050919050565b620015f68162000d60565b82525050565b6000602082019050620016136000830184620015eb565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620016516020836200140f565b91506200165e8262001619565b602082019050919050565b60006020820190508181036000830152620016848162001642565b9050919050565b60805160a051614c57620016db6000396000818161133501526115a9015260008181610ec101528181612cfd01528181612d24015281816134ed015281816135ce01526135f50152614c576000f3fe60806040526004361061036f5760003560e01c806381efb72d116101c6578063aa4bde28116100f7578063c9567bf911610095578063dd62ed3e1161006f578063dd62ed3e14610cab578063e2f4560514610ce8578063f2fde38b14610d13578063fce589d814610d3c57610376565b8063c9567bf914610c2c578063d257b34f14610c43578063d85ba06314610c8057610376565b8063b62496f5116100d1578063b62496f514610b72578063bbc0c74214610baf578063bc205ad314610bda578063c024666814610c0357610376565b8063aa4bde2814610af3578063ad05a7b514610b1e578063adee28ff14610b4957610376565b806398118cb4116101645780639ee708ff1161013e5780639ee708ff14610a235780639fccce3214610a4e578063a457c2d714610a79578063a9059cbb14610ab657610376565b806398118cb41461099257806399524bbe146109bd5780639a7a23d6146109fa57610376565b8063924de9b7116101a0578063924de9b7146108ea5780639394c2ed1461091357806395d89b411461093c57806396ea32da1461096757610376565b806381efb72d146108695780638da5cb5b146108945780638ea5220f146108bf57610376565b806344f8ffd2116102a05780636ddd17131161023e57806372007f101161021857806372007f10146107c1578063751039fc146107ea578063782c4e99146108155780637ca8448a1461084057610376565b80636ddd17131461074257806370a082311461076d578063715018a6146107aa57610376565b806364f99f821161027a57806364f99f821461069a5780636827e764146106c35780636a486a8e146106ee5780636db794371461071957610376565b806344f8ffd2146106075780634a62bb65146106325780634fbee1931461065d57610376565b80631c95096d1161030d57806327dce847116102e757806327dce8471461054b578063313ce5671461057657806338377d0a146105a157806339509351146105ca57610376565b80631c95096d146104b85780631d777856146104e357806323b872dd1461050e57610376565b806313114a9d1161034957806313114a9d1461040e57806318160ddd146104395780631816467f146104645780631a8145bb1461048d57610376565b806303fd2a451461037b57806306fdde03146103a6578063095ea7b3146103d157610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d67565b60405161039d91906136cc565b60405180910390f35b3480156103b257600080fd5b506103bb610d6d565b6040516103c89190613777565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190613800565b610dff565b604051610405919061385b565b60405180910390f35b34801561041a57600080fd5b50610423610e22565b6040516104309190613885565b60405180910390f35b34801561044557600080fd5b5061044e610e28565b60405161045b9190613885565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906138a0565b610e32565b005b34801561049957600080fd5b506104a2610e7e565b6040516104af9190613885565b60405180910390f35b3480156104c457600080fd5b506104cd610e84565b6040516104da9190613885565b60405180910390f35b3480156104ef57600080fd5b506104f8610e8a565b6040516105059190613885565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906138cd565b610e90565b604051610542919061385b565b60405180910390f35b34801561055757600080fd5b50610560610ebf565b60405161056d919061397f565b60405180910390f35b34801561058257600080fd5b5061058b610ee3565b60405161059891906139b6565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c391906139d1565b610eec565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613800565b610f87565b6040516105fe919061385b565b60405180910390f35b34801561061357600080fd5b5061061c610fbe565b6040516106299190613885565b60405180910390f35b34801561063e57600080fd5b50610647610fc4565b604051610654919061385b565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906138a0565b610fd7565b604051610691919061385b565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613a2a565b61102d565b005b3480156106cf57600080fd5b506106d8611090565b6040516106e59190613885565b60405180910390f35b3480156106fa57600080fd5b50610703611096565b6040516107109190613885565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613a6a565b61109c565b005b34801561074e57600080fd5b50610757611155565b604051610764919061385b565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906138a0565b611168565b6040516107a19190613885565b60405180910390f35b3480156107b657600080fd5b506107bf6111b0565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906139d1565b6111c4565b005b3480156107f657600080fd5b506107ff61125f565b60405161080c919061385b565b60405180910390f35b34801561082157600080fd5b5061082a61128b565b60405161083791906136cc565b60405180910390f35b34801561084c57600080fd5b50610867600480360381019061086291906138a0565b6112b1565b005b34801561087557600080fd5b5061087e611333565b60405161088b91906136cc565b60405180910390f35b3480156108a057600080fd5b506108a9611357565b6040516108b691906136cc565b60405180910390f35b3480156108cb57600080fd5b506108d4611381565b6040516108e191906136cc565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190613aaa565b6113a7565b005b34801561091f57600080fd5b5061093a60048036038101906109359190613ad7565b6113cc565b005b34801561094857600080fd5b506109516114e1565b60405161095e9190613777565b60405180910390f35b34801561097357600080fd5b5061097c611573565b6040516109899190613885565b60405180910390f35b34801561099e57600080fd5b506109a7611579565b6040516109b49190613885565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df91906138a0565b61157f565b6040516109f1919061385b565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190613a2a565b61159f565b005b348015610a2f57600080fd5b50610a38611643565b604051610a459190613885565b60405180910390f35b348015610a5a57600080fd5b50610a63611649565b604051610a709190613885565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613800565b61164f565b604051610aad919061385b565b60405180910390f35b348015610ac257600080fd5b50610add6004803603810190610ad89190613800565b6116c6565b604051610aea919061385b565b60405180910390f35b348015610aff57600080fd5b50610b086116e9565b604051610b159190613885565b60405180910390f35b348015610b2a57600080fd5b50610b336116ef565b604051610b409190613885565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b91906138a0565b6116f5565b005b348015610b7e57600080fd5b50610b996004803603810190610b9491906138a0565b6117bd565b604051610ba6919061385b565b60405180910390f35b348015610bbb57600080fd5b50610bc46117dd565b604051610bd1919061385b565b60405180910390f35b348015610be657600080fd5b50610c016004803603810190610bfc9190613b52565b6117f0565b005b348015610c0f57600080fd5b50610c2a6004803603810190610c259190613a2a565b611969565b005b348015610c3857600080fd5b50610c41611a1a565b005b348015610c4f57600080fd5b50610c6a6004803603810190610c6591906139d1565b611ac3565b604051610c77919061385b565b60405180910390f35b348015610c8c57600080fd5b50610c95611ba4565b604051610ca29190613885565b60405180910390f35b348015610cb757600080fd5b50610cd26004803603810190610ccd9190613b52565b611baa565b604051610cdf9190613885565b60405180910390f35b348015610cf457600080fd5b50610cfd611c31565b604051610d0a9190613885565b60405180910390f35b348015610d1f57600080fd5b50610d3a6004803603810190610d3591906138a0565b611c37565b005b348015610d4857600080fd5b50610d51611cba565b604051610d5e9190613885565b60405180910390f35b61dead81565b606060038054610d7c90613bc1565b80601f0160208091040260200160405190810160405280929190818152602001828054610da890613bc1565b8015610df55780601f10610dca57610100808354040283529160200191610df5565b820191906000526020600020905b815481529060010190602001808311610dd857829003601f168201915b5050505050905090565b600080610e0a611cc0565b9050610e17818585611cc8565b600191505092915050565b60125481565b6000600254905090565b610e3a611e91565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60175481565b60145481565b600080610e9b611cc0565b9050610ea8858285611f0f565b610eb3858585611f9b565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006012905090565b610ef4611e91565b670de0b6b3a76400006103e86001610f0a610e28565b610f149190613c21565b610f1e9190613c92565b610f289190613c92565b811015610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613d35565b60405180910390fd5b670de0b6b3a764000081610f7e9190613c21565b60088190555050565b600080610f92611cc0565b9050610fb3818585610fa48589611baa565b610fae9190613d55565b611cc8565b600191505092915050565b60185481565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611035611e91565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b600d5481565b6110a4611e91565b6101f482111580156110b857506101f48111155b6110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613dd5565b60405180910390fd5b81600c8190555080600d81905550601e600c54101561112b57601e600c60008282546111239190613d55565b925050819055505b601e600d54101561115157601e600d60008282546111499190613d55565b925050819055505b5050565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b8611e91565b6111c26000612b90565b565b6111cc611e91565b670de0b6b3a76400006103e8600a6111e2610e28565b6111ec9190613c21565b6111f69190613c92565b6112009190613c92565b811015611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613e67565b60405180910390fd5b670de0b6b3a7640000816112569190613c21565b600a8190555050565b6000611269611e91565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112b9611e91565b60008173ffffffffffffffffffffffffffffffffffffffff16476040516112df90613eb8565b60006040518083038185875af1925050503d806000811461131c576040519150601f19603f3d011682016040523d82523d6000602084013e611321565b606091505b505090508061132f57600080fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113af611e91565b80600b60026101000a81548160ff02191690831515021790555050565b6113d4611e91565b600082111561144d57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390613f19565b60405180910390fd5b5b84600e8190555083600f819055508260108190555081601181905550601154601054600f54600e5461147f9190613d55565b6114899190613d55565b6114939190613d55565b60128190555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b6060600480546114f090613bc1565b80601f016020809104026020016040519081016040528092919081815260200182805461151c90613bc1565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b5050505050905090565b60085481565b600f5481565b601a6020528060005260406000206000915054906101000a900460ff1681565b6115a7611e91565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613fab565b60405180910390fd5b61163f8282612c56565b5050565b60135481565b60165481565b60008061165a611cc0565b905060006116688286611baa565b9050838110156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a49061403d565b60405180910390fd5b6116ba8286868403611cc8565b60019250505092915050565b6000806116d1611cc0565b90506116de818585611f9b565b600191505092915050565b600a5481565b60115481565b6116fd611e91565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6117f8611e91565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906140a9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118a291906136cc565b602060405180830381865afa1580156118bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e391906140de565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161192092919061410b565b6020604051808303816000875af115801561193f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119639190614149565b50505050565b611971611e91565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a0e919061385b565b60405180910390a25050565b611a22611e91565b600b60019054906101000a900460ff1615611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a69906141c2565b60405180910390fd5b611a84611a7e30611168565b47612cf7565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601c81905550565b6000611acd611e91565b620186a06001611adb610e28565b611ae59190613c21565b611aef9190613c92565b821015611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890614254565b60405180910390fd5b6103e86005611b3e610e28565b611b489190613c21565b611b529190613c92565b821115611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b906142e6565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611c3f611e91565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590614378565b60405180910390fd5b611cb781612b90565b50565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e9061440a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061449c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e849190613885565b60405180910390a3505050565b611e99611cc0565b73ffffffffffffffffffffffffffffffffffffffff16611eb7611357565b73ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490614508565b60405180910390fd5b565b6000611f1b8484611baa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f955781811015611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90614574565b60405180910390fd5b611f948484848403611cc8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090614698565b60405180910390fd5b600081036120925761208d83836000612dd8565b612b8b565b600b60009054906101000a900460ff16156125b7576120af611357565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561211d57506120ed611357565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121565750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612190575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121a95750600560149054906101000a900460ff16155b156125b657600b60019054906101000a900460ff166122a357601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122635750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990614704565b60405180910390fd5b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123465750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561241757600854811115612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790614796565b60405180910390fd5b600a5461239c83611168565b826123a79190613d55565b11156123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df90614802565b60405180910390fd5b436003601c546123f89190613d55565b1115612412576124078261304e565b1561241157600080fd5b5b6125b5565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124ba5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561250957600854811115612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614894565b60405180910390fd5b6125b4565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125b357600a5461256683611168565b826125719190613d55565b11156125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990614802565b60405180910390fd5b5b5b5b5b5b6000600954601854101590508080156125dc5750600b60029054906101000a900460ff165b80156125f55750600560149054906101000a900460ff16155b801561264b5750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126a15750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612743576001600560146101000a81548160ff02191690831515021790555061271f613061565b60006018819055506000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161580156127ff5750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127fe5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b9050601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128a25750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128ac57600090505b60008115612b7c57601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561290f57506000600d54115b156129445761293d61271061292f600d548761340290919063ffffffff16565b61341890919063ffffffff16565b90506129d1565b601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561299f57506000600c54115b156129d0576129cd6127106129bf600c548761340290919063ffffffff16565b61341890919063ffffffff16565b90505b5b60006129fb6127106129ed601e8861340290919063ffffffff16565b61341890919063ffffffff16565b90506000821115612a1257612a11873084612dd8565b5b6000612a27828461342e90919063ffffffff16565b90508160136000828254612a3b9190613d55565b9250508190555060006012541115612b5257612a76601254612a68600e548461340290919063ffffffff16565b61341890919063ffffffff16565b60146000828254612a879190613d55565b92505081905550612ab7601254612aa96010548461340290919063ffffffff16565b61341890919063ffffffff16565b60166000828254612ac89190613d55565b92505081905550612af8601254612aea600f548461340290919063ffffffff16565b61341890919063ffffffff16565b60156000828254612b099190613d55565b92505081905550612b39601254612b2b6011548461340290919063ffffffff16565b61341890919063ffffffff16565b60176000828254612b4a9190613d55565b925050819055505b8286612b5e91906148b4565b95508260186000828254612b729190613d55565b9250508190555050505b612b87868686612dd8565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b612d22307f000000000000000000000000000000000000000000000000000000000000000084611cc8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612d6c611357565b426040518863ffffffff1660e01b8152600401612d8e96959493929190614923565b60606040518083038185885af1158015612dac573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612dd19190614984565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90614606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614698565b60405180910390fd5b612ec1838383613444565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614a49565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130359190613885565b60405180910390a3613048848484613449565b50505050565b600080823b905060008111915050919050565b600061306c30611168565b9050601460095461307d9190613c21565b8111156130965760146009546130939190613c21565b90505b600081036130a45750613400565b8060135411156130b657806013819055505b60006130ce600260155461341890919063ffffffff16565b905060006130f2601454836130e39190613d55565b8461342e90919063ffffffff16565b90506000601454111561310f5761310e3061dead601454612dd8565b5b60008111156133dc5760004790506131268261344e565b600061313b824761342e90919063ffffffff16565b90506000613166846131586013548561340290919063ffffffff16565b61341890919063ffffffff16565b90506000613191856131836016548661340290919063ffffffff16565b61341890919063ffffffff16565b905060006131bc866131ae6017548761340290919063ffffffff16565b61341890919063ffffffff16565b905060006131f7826131e9856131db888a61342e90919063ffffffff16565b61342e90919063ffffffff16565b61342e90919063ffffffff16565b9050600080851115613284577391fead7f2b2172e75ffcf4cadff5049c9270ee4173ffffffffffffffffffffffffffffffffffffffff168560405161323b90613eb8565b60006040518083038185875af1925050503d8060008114613278576040519150601f19603f3d011682016040523d82523d6000602084013e61327d565b606091505b5050809150505b600084111561331c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516132d390613eb8565b60006040518083038185875af1925050503d8060008114613310576040519150601f19603f3d011682016040523d82523d6000602084013e613315565b606091505b5050809150505b60008311156133b457600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161336b90613eb8565b60006040518083038185875af1925050503d80600081146133a8576040519150601f19603f3d011682016040523d82523d6000602084013e6133ad565b606091505b5050809150505b6000891180156133c45750600082115b156133d4576133d38983612cf7565b5b505050505050505b60006013819055506000601681905550600060178190555060006015819055505050505b565b600081836134109190613c21565b905092915050565b600081836134269190613c92565b905092915050565b6000818361343c91906148b4565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561346b5761346a614a69565b5b6040519080825280602002602001820160405280156134995781602001602082028036833780820191505090505b50905030816000815181106134b1576134b0614a98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061357a9190614adc565b8160018151811061358e5761358d614a98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135f3307f000000000000000000000000000000000000000000000000000000000000000084611cc8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613655959493929190614bc7565b600060405180830381600087803b15801561366f57600080fd5b505af1158015613683573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136b68261368b565b9050919050565b6136c6816136ab565b82525050565b60006020820190506136e160008301846136bd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613721578082015181840152602081019050613706565b60008484015250505050565b6000601f19601f8301169050919050565b6000613749826136e7565b61375381856136f2565b9350613763818560208601613703565b61376c8161372d565b840191505092915050565b60006020820190508181036000830152613791818461373e565b905092915050565b600080fd5b6137a7816136ab565b81146137b257600080fd5b50565b6000813590506137c48161379e565b92915050565b6000819050919050565b6137dd816137ca565b81146137e857600080fd5b50565b6000813590506137fa816137d4565b92915050565b6000806040838503121561381757613816613799565b5b6000613825858286016137b5565b9250506020613836858286016137eb565b9150509250929050565b60008115159050919050565b61385581613840565b82525050565b6000602082019050613870600083018461384c565b92915050565b61387f816137ca565b82525050565b600060208201905061389a6000830184613876565b92915050565b6000602082840312156138b6576138b5613799565b5b60006138c4848285016137b5565b91505092915050565b6000806000606084860312156138e6576138e5613799565b5b60006138f4868287016137b5565b9350506020613905868287016137b5565b9250506040613916868287016137eb565b9150509250925092565b6000819050919050565b600061394561394061393b8461368b565b613920565b61368b565b9050919050565b60006139578261392a565b9050919050565b60006139698261394c565b9050919050565b6139798161395e565b82525050565b60006020820190506139946000830184613970565b92915050565b600060ff82169050919050565b6139b08161399a565b82525050565b60006020820190506139cb60008301846139a7565b92915050565b6000602082840312156139e7576139e6613799565b5b60006139f5848285016137eb565b91505092915050565b613a0781613840565b8114613a1257600080fd5b50565b600081359050613a24816139fe565b92915050565b60008060408385031215613a4157613a40613799565b5b6000613a4f858286016137b5565b9250506020613a6085828601613a15565b9150509250929050565b60008060408385031215613a8157613a80613799565b5b6000613a8f858286016137eb565b9250506020613aa0858286016137eb565b9150509250929050565b600060208284031215613ac057613abf613799565b5b6000613ace84828501613a15565b91505092915050565b600080600080600060a08688031215613af357613af2613799565b5b6000613b01888289016137eb565b9550506020613b12888289016137eb565b9450506040613b23888289016137eb565b9350506060613b34888289016137eb565b9250506080613b45888289016137b5565b9150509295509295909350565b60008060408385031215613b6957613b68613799565b5b6000613b77858286016137b5565b9250506020613b88858286016137b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bd957607f821691505b602082108103613bec57613beb613b92565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c2c826137ca565b9150613c37836137ca565b9250828202613c45816137ca565b91508282048414831517613c5c57613c5b613bf2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c9d826137ca565b9150613ca8836137ca565b925082613cb857613cb7613c63565b5b828204905092915050565b7f43616e6e6f7420736574206d617854726164696e67416d6f756e74206c6f776560008201527f72207468616e20302e3125000000000000000000000000000000000000000000602082015250565b6000613d1f602b836136f2565b9150613d2a82613cc3565b604082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b6000613d60826137ca565b9150613d6b836137ca565b9250828201905080821115613d8357613d82613bf2565b5b92915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035250000000000600082015250565b6000613dbf601b836136f2565b9150613dca82613d89565b602082019050919050565b60006020820190508181036000830152613dee81613db2565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e74206c6f77657260008201527f207468616e20312e302500000000000000000000000000000000000000000000602082015250565b6000613e51602a836136f2565b9150613e5c82613df5565b604082019050919050565b60006020820190508181036000830152613e8081613e44565b9050919050565b600081905092915050565b50565b6000613ea2600083613e87565b9150613ead82613e92565b600082019050919050565b6000613ec382613e95565b9150819050919050565b7f52657673686172652057616c6c65742069732072657175697265642100000000600082015250565b6000613f03601c836136f2565b9150613f0e82613ecd565b602082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613f956039836136f2565b9150613fa082613f39565b604082019050919050565b60006020820190508181036000830152613fc481613f88565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140276025836136f2565b915061403282613fcb565b604082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614093601a836136f2565b915061409e8261405d565b602082019050919050565b600060208201905081810360008301526140c281614086565b9050919050565b6000815190506140d8816137d4565b92915050565b6000602082840312156140f4576140f3613799565b5b6000614102848285016140c9565b91505092915050565b600060408201905061412060008301856136bd565b61412d6020830184613876565b9392505050565b600081519050614143816139fe565b92915050565b60006020828403121561415f5761415e613799565b5b600061416d84828501614134565b91505092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006141ac6017836136f2565b91506141b782614176565b602082019050919050565b600060208201905081810360008301526141db8161419f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061423e6035836136f2565b9150614249826141e2565b604082019050919050565b6000602082019050818103600083015261426d81614231565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006142d06034836136f2565b91506142db82614274565b604082019050919050565b600060208201905081810360008301526142ff816142c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143626026836136f2565b915061436d82614306565b604082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143f46024836136f2565b91506143ff82614398565b604082019050919050565b60006020820190508181036000830152614423816143e7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144866022836136f2565b91506144918261442a565b604082019050919050565b600060208201905081810360008301526144b581614479565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144f26020836136f2565b91506144fd826144bc565b602082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061455e601d836136f2565b915061456982614528565b602082019050919050565b6000602082019050818103600083015261458d81614551565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145f06025836136f2565b91506145fb82614594565b604082019050919050565b6000602082019050818103600083015261461f816145e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146826023836136f2565b915061468d82614626565b604082019050919050565b600060208201905081810360008301526146b181614675565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146ee6016836136f2565b91506146f9826146b8565b602082019050919050565b6000602082019050818103600083015261471d816146e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b60006147806031836136f2565b915061478b82614724565b604082019050919050565b600060208201905081810360008301526147af81614773565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147ec6013836136f2565b91506147f7826147b6565b602082019050919050565b6000602082019050818103600083015261481b816147df565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b600061487e6032836136f2565b915061488982614822565b604082019050919050565b600060208201905081810360008301526148ad81614871565b9050919050565b60006148bf826137ca565b91506148ca836137ca565b92508282039050818111156148e2576148e1613bf2565b5b92915050565b6000819050919050565b600061490d614908614903846148e8565b613920565b6137ca565b9050919050565b61491d816148f2565b82525050565b600060c08201905061493860008301896136bd565b6149456020830188613876565b6149526040830187614914565b61495f6060830186614914565b61496c60808301856136bd565b61497960a0830184613876565b979650505050505050565b60008060006060848603121561499d5761499c613799565b5b60006149ab868287016140c9565b93505060206149bc868287016140c9565b92505060406149cd868287016140c9565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614a336026836136f2565b9150614a3e826149d7565b604082019050919050565b60006020820190508181036000830152614a6281614a26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ad68161379e565b92915050565b600060208284031215614af257614af1613799565b5b6000614b0084828501614ac7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b3e816136ab565b82525050565b6000614b508383614b35565b60208301905092915050565b6000602082019050919050565b6000614b7482614b09565b614b7e8185614b14565b9350614b8983614b25565b8060005b83811015614bba578151614ba18882614b44565b9750614bac83614b5c565b925050600181019050614b8d565b5085935050505092915050565b600060a082019050614bdc6000830188613876565b614be96020830187614914565b8181036040830152614bfb8186614b69565b9050614c0a60608301856136bd565b614c176080830184613876565b969550505050505056fea2646970667358221220a701e923471058ce9f2d3a4d08253567f52917ecc0daaea6e822956e85ed3a2f64736f6c634300081300330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3e80732043d271a3b12a61fc32d3575879362b5000000000000000000000000000000000000000000000000000000000000000c457468657265756d20322e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ce7a791e5a4aae5b881322e300000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806381efb72d116101c6578063aa4bde28116100f7578063c9567bf911610095578063dd62ed3e1161006f578063dd62ed3e14610cab578063e2f4560514610ce8578063f2fde38b14610d13578063fce589d814610d3c57610376565b8063c9567bf914610c2c578063d257b34f14610c43578063d85ba06314610c8057610376565b8063b62496f5116100d1578063b62496f514610b72578063bbc0c74214610baf578063bc205ad314610bda578063c024666814610c0357610376565b8063aa4bde2814610af3578063ad05a7b514610b1e578063adee28ff14610b4957610376565b806398118cb4116101645780639ee708ff1161013e5780639ee708ff14610a235780639fccce3214610a4e578063a457c2d714610a79578063a9059cbb14610ab657610376565b806398118cb41461099257806399524bbe146109bd5780639a7a23d6146109fa57610376565b8063924de9b7116101a0578063924de9b7146108ea5780639394c2ed1461091357806395d89b411461093c57806396ea32da1461096757610376565b806381efb72d146108695780638da5cb5b146108945780638ea5220f146108bf57610376565b806344f8ffd2116102a05780636ddd17131161023e57806372007f101161021857806372007f10146107c1578063751039fc146107ea578063782c4e99146108155780637ca8448a1461084057610376565b80636ddd17131461074257806370a082311461076d578063715018a6146107aa57610376565b806364f99f821161027a57806364f99f821461069a5780636827e764146106c35780636a486a8e146106ee5780636db794371461071957610376565b806344f8ffd2146106075780634a62bb65146106325780634fbee1931461065d57610376565b80631c95096d1161030d57806327dce847116102e757806327dce8471461054b578063313ce5671461057657806338377d0a146105a157806339509351146105ca57610376565b80631c95096d146104b85780631d777856146104e357806323b872dd1461050e57610376565b806313114a9d1161034957806313114a9d1461040e57806318160ddd146104395780631816467f146104645780631a8145bb1461048d57610376565b806303fd2a451461037b57806306fdde03146103a6578063095ea7b3146103d157610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d67565b60405161039d91906136cc565b60405180910390f35b3480156103b257600080fd5b506103bb610d6d565b6040516103c89190613777565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190613800565b610dff565b604051610405919061385b565b60405180910390f35b34801561041a57600080fd5b50610423610e22565b6040516104309190613885565b60405180910390f35b34801561044557600080fd5b5061044e610e28565b60405161045b9190613885565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906138a0565b610e32565b005b34801561049957600080fd5b506104a2610e7e565b6040516104af9190613885565b60405180910390f35b3480156104c457600080fd5b506104cd610e84565b6040516104da9190613885565b60405180910390f35b3480156104ef57600080fd5b506104f8610e8a565b6040516105059190613885565b60405180910390f35b34801561051a57600080fd5b50610535600480360381019061053091906138cd565b610e90565b604051610542919061385b565b60405180910390f35b34801561055757600080fd5b50610560610ebf565b60405161056d919061397f565b60405180910390f35b34801561058257600080fd5b5061058b610ee3565b60405161059891906139b6565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c391906139d1565b610eec565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613800565b610f87565b6040516105fe919061385b565b60405180910390f35b34801561061357600080fd5b5061061c610fbe565b6040516106299190613885565b60405180910390f35b34801561063e57600080fd5b50610647610fc4565b604051610654919061385b565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906138a0565b610fd7565b604051610691919061385b565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613a2a565b61102d565b005b3480156106cf57600080fd5b506106d8611090565b6040516106e59190613885565b60405180910390f35b3480156106fa57600080fd5b50610703611096565b6040516107109190613885565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613a6a565b61109c565b005b34801561074e57600080fd5b50610757611155565b604051610764919061385b565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906138a0565b611168565b6040516107a19190613885565b60405180910390f35b3480156107b657600080fd5b506107bf6111b0565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906139d1565b6111c4565b005b3480156107f657600080fd5b506107ff61125f565b60405161080c919061385b565b60405180910390f35b34801561082157600080fd5b5061082a61128b565b60405161083791906136cc565b60405180910390f35b34801561084c57600080fd5b50610867600480360381019061086291906138a0565b6112b1565b005b34801561087557600080fd5b5061087e611333565b60405161088b91906136cc565b60405180910390f35b3480156108a057600080fd5b506108a9611357565b6040516108b691906136cc565b60405180910390f35b3480156108cb57600080fd5b506108d4611381565b6040516108e191906136cc565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c9190613aaa565b6113a7565b005b34801561091f57600080fd5b5061093a60048036038101906109359190613ad7565b6113cc565b005b34801561094857600080fd5b506109516114e1565b60405161095e9190613777565b60405180910390f35b34801561097357600080fd5b5061097c611573565b6040516109899190613885565b60405180910390f35b34801561099e57600080fd5b506109a7611579565b6040516109b49190613885565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df91906138a0565b61157f565b6040516109f1919061385b565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190613a2a565b61159f565b005b348015610a2f57600080fd5b50610a38611643565b604051610a459190613885565b60405180910390f35b348015610a5a57600080fd5b50610a63611649565b604051610a709190613885565b60405180910390f35b348015610a8557600080fd5b50610aa06004803603810190610a9b9190613800565b61164f565b604051610aad919061385b565b60405180910390f35b348015610ac257600080fd5b50610add6004803603810190610ad89190613800565b6116c6565b604051610aea919061385b565b60405180910390f35b348015610aff57600080fd5b50610b086116e9565b604051610b159190613885565b60405180910390f35b348015610b2a57600080fd5b50610b336116ef565b604051610b409190613885565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b91906138a0565b6116f5565b005b348015610b7e57600080fd5b50610b996004803603810190610b9491906138a0565b6117bd565b604051610ba6919061385b565b60405180910390f35b348015610bbb57600080fd5b50610bc46117dd565b604051610bd1919061385b565b60405180910390f35b348015610be657600080fd5b50610c016004803603810190610bfc9190613b52565b6117f0565b005b348015610c0f57600080fd5b50610c2a6004803603810190610c259190613a2a565b611969565b005b348015610c3857600080fd5b50610c41611a1a565b005b348015610c4f57600080fd5b50610c6a6004803603810190610c6591906139d1565b611ac3565b604051610c77919061385b565b60405180910390f35b348015610c8c57600080fd5b50610c95611ba4565b604051610ca29190613885565b60405180910390f35b348015610cb757600080fd5b50610cd26004803603810190610ccd9190613b52565b611baa565b604051610cdf9190613885565b60405180910390f35b348015610cf457600080fd5b50610cfd611c31565b604051610d0a9190613885565b60405180910390f35b348015610d1f57600080fd5b50610d3a6004803603810190610d3591906138a0565b611c37565b005b348015610d4857600080fd5b50610d51611cba565b604051610d5e9190613885565b60405180910390f35b61dead81565b606060038054610d7c90613bc1565b80601f0160208091040260200160405190810160405280929190818152602001828054610da890613bc1565b8015610df55780601f10610dca57610100808354040283529160200191610df5565b820191906000526020600020905b815481529060010190602001808311610dd857829003601f168201915b5050505050905090565b600080610e0a611cc0565b9050610e17818585611cc8565b600191505092915050565b60125481565b6000600254905090565b610e3a611e91565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b60175481565b60145481565b600080610e9b611cc0565b9050610ea8858285611f0f565b610eb3858585611f9b565b60019150509392505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60006012905090565b610ef4611e91565b670de0b6b3a76400006103e86001610f0a610e28565b610f149190613c21565b610f1e9190613c92565b610f289190613c92565b811015610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613d35565b60405180910390fd5b670de0b6b3a764000081610f7e9190613c21565b60088190555050565b600080610f92611cc0565b9050610fb3818585610fa48589611baa565b610fae9190613d55565b611cc8565b600191505092915050565b60185481565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611035611e91565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60105481565b600d5481565b6110a4611e91565b6101f482111580156110b857506101f48111155b6110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613dd5565b60405180910390fd5b81600c8190555080600d81905550601e600c54101561112b57601e600c60008282546111239190613d55565b925050819055505b601e600d54101561115157601e600d60008282546111499190613d55565b925050819055505b5050565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b8611e91565b6111c26000612b90565b565b6111cc611e91565b670de0b6b3a76400006103e8600a6111e2610e28565b6111ec9190613c21565b6111f69190613c92565b6112009190613c92565b811015611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613e67565b60405180910390fd5b670de0b6b3a7640000816112569190613c21565b600a8190555050565b6000611269611e91565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112b9611e91565b60008173ffffffffffffffffffffffffffffffffffffffff16476040516112df90613eb8565b60006040518083038185875af1925050503d806000811461131c576040519150601f19603f3d011682016040523d82523d6000602084013e611321565b606091505b505090508061132f57600080fd5b5050565b7f0000000000000000000000006255997f35e8cf375721d2a60fd3445254c41c0081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113af611e91565b80600b60026101000a81548160ff02191690831515021790555050565b6113d4611e91565b600082111561144d57600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144390613f19565b60405180910390fd5b5b84600e8190555083600f819055508260108190555081601181905550601154601054600f54600e5461147f9190613d55565b6114899190613d55565b6114939190613d55565b60128190555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b6060600480546114f090613bc1565b80601f016020809104026020016040519081016040528092919081815260200182805461151c90613bc1565b80156115695780601f1061153e57610100808354040283529160200191611569565b820191906000526020600020905b81548152906001019060200180831161154c57829003601f168201915b5050505050905090565b60085481565b600f5481565b601a6020528060005260406000206000915054906101000a900460ff1681565b6115a7611e91565b7f0000000000000000000000006255997f35e8cf375721d2a60fd3445254c41c0073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613fab565b60405180910390fd5b61163f8282612c56565b5050565b60135481565b60165481565b60008061165a611cc0565b905060006116688286611baa565b9050838110156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a49061403d565b60405180910390fd5b6116ba8286868403611cc8565b60019250505092915050565b6000806116d1611cc0565b90506116de818585611f9b565b600191505092915050565b600a5481565b60115481565b6116fd611e91565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6117f8611e91565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906140a9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118a291906136cc565b602060405180830381865afa1580156118bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e391906140de565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161192092919061410b565b6020604051808303816000875af115801561193f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119639190614149565b50505050565b611971611e91565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611a0e919061385b565b60405180910390a25050565b611a22611e91565b600b60019054906101000a900460ff1615611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a69906141c2565b60405180910390fd5b611a84611a7e30611168565b47612cf7565b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601c81905550565b6000611acd611e91565b620186a06001611adb610e28565b611ae59190613c21565b611aef9190613c92565b821015611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890614254565b60405180910390fd5b6103e86005611b3e610e28565b611b489190613c21565b611b529190613c92565b821115611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b906142e6565b60405180910390fd5b8160098190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611c3f611e91565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590614378565b60405180910390fd5b611cb781612b90565b50565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e9061440a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061449c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611e849190613885565b60405180910390a3505050565b611e99611cc0565b73ffffffffffffffffffffffffffffffffffffffff16611eb7611357565b73ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490614508565b60405180910390fd5b565b6000611f1b8484611baa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611f955781811015611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90614574565b60405180910390fd5b611f948484848403611cc8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190614606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612079576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207090614698565b60405180910390fd5b600081036120925761208d83836000612dd8565b612b8b565b600b60009054906101000a900460ff16156125b7576120af611357565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561211d57506120ed611357565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121565750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612190575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121a95750600560149054906101000a900460ff16155b156125b657600b60019054906101000a900460ff166122a357601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122635750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990614704565b60405180910390fd5b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123465750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561241757600854811115612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790614796565b60405180910390fd5b600a5461239c83611168565b826123a79190613d55565b11156123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df90614802565b60405180910390fd5b436003601c546123f89190613d55565b1115612412576124078261304e565b1561241157600080fd5b5b6125b5565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124ba5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561250957600854811115612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614894565b60405180910390fd5b6125b4565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125b357600a5461256683611168565b826125719190613d55565b11156125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990614802565b60405180910390fd5b5b5b5b5b5b6000600954601854101590508080156125dc5750600b60029054906101000a900460ff165b80156125f55750600560149054906101000a900460ff16155b801561264b5750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126a15750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612743576001600560146101000a81548160ff02191690831515021790555061271f613061565b60006018819055506000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161580156127ff5750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127fe5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b9050601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128a25750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156128ac57600090505b60008115612b7c57601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561290f57506000600d54115b156129445761293d61271061292f600d548761340290919063ffffffff16565b61341890919063ffffffff16565b90506129d1565b601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561299f57506000600c54115b156129d0576129cd6127106129bf600c548761340290919063ffffffff16565b61341890919063ffffffff16565b90505b5b60006129fb6127106129ed601e8861340290919063ffffffff16565b61341890919063ffffffff16565b90506000821115612a1257612a11873084612dd8565b5b6000612a27828461342e90919063ffffffff16565b90508160136000828254612a3b9190613d55565b9250508190555060006012541115612b5257612a76601254612a68600e548461340290919063ffffffff16565b61341890919063ffffffff16565b60146000828254612a879190613d55565b92505081905550612ab7601254612aa96010548461340290919063ffffffff16565b61341890919063ffffffff16565b60166000828254612ac89190613d55565b92505081905550612af8601254612aea600f548461340290919063ffffffff16565b61341890919063ffffffff16565b60156000828254612b099190613d55565b92505081905550612b39601254612b2b6011548461340290919063ffffffff16565b61341890919063ffffffff16565b60176000828254612b4a9190613d55565b925050819055505b8286612b5e91906148b4565b95508260186000828254612b729190613d55565b9250508190555050505b612b87868686612dd8565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b612d22307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611cc8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612d6c611357565b426040518863ffffffff1660e01b8152600401612d8e96959493929190614923565b60606040518083038185885af1158015612dac573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612dd19190614984565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90614606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ead90614698565b60405180910390fd5b612ec1838383613444565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614a49565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130359190613885565b60405180910390a3613048848484613449565b50505050565b600080823b905060008111915050919050565b600061306c30611168565b9050601460095461307d9190613c21565b8111156130965760146009546130939190613c21565b90505b600081036130a45750613400565b8060135411156130b657806013819055505b60006130ce600260155461341890919063ffffffff16565b905060006130f2601454836130e39190613d55565b8461342e90919063ffffffff16565b90506000601454111561310f5761310e3061dead601454612dd8565b5b60008111156133dc5760004790506131268261344e565b600061313b824761342e90919063ffffffff16565b90506000613166846131586013548561340290919063ffffffff16565b61341890919063ffffffff16565b90506000613191856131836016548661340290919063ffffffff16565b61341890919063ffffffff16565b905060006131bc866131ae6017548761340290919063ffffffff16565b61341890919063ffffffff16565b905060006131f7826131e9856131db888a61342e90919063ffffffff16565b61342e90919063ffffffff16565b61342e90919063ffffffff16565b9050600080851115613284577391fead7f2b2172e75ffcf4cadff5049c9270ee4173ffffffffffffffffffffffffffffffffffffffff168560405161323b90613eb8565b60006040518083038185875af1925050503d8060008114613278576040519150601f19603f3d011682016040523d82523d6000602084013e61327d565b606091505b5050809150505b600084111561331c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516132d390613eb8565b60006040518083038185875af1925050503d8060008114613310576040519150601f19603f3d011682016040523d82523d6000602084013e613315565b606091505b5050809150505b60008311156133b457600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161336b90613eb8565b60006040518083038185875af1925050503d80600081146133a8576040519150601f19603f3d011682016040523d82523d6000602084013e6133ad565b606091505b5050809150505b6000891180156133c45750600082115b156133d4576133d38983612cf7565b5b505050505050505b60006013819055506000601681905550600060178190555060006015819055505050505b565b600081836134109190613c21565b905092915050565b600081836134269190613c92565b905092915050565b6000818361343c91906148b4565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561346b5761346a614a69565b5b6040519080825280602002602001820160405280156134995781602001602082028036833780820191505090505b50905030816000815181106134b1576134b0614a98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061357a9190614adc565b8160018151811061358e5761358d614a98565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135f3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611cc8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613655959493929190614bc7565b600060405180830381600087803b15801561366f57600080fd5b505af1158015613683573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136b68261368b565b9050919050565b6136c6816136ab565b82525050565b60006020820190506136e160008301846136bd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613721578082015181840152602081019050613706565b60008484015250505050565b6000601f19601f8301169050919050565b6000613749826136e7565b61375381856136f2565b9350613763818560208601613703565b61376c8161372d565b840191505092915050565b60006020820190508181036000830152613791818461373e565b905092915050565b600080fd5b6137a7816136ab565b81146137b257600080fd5b50565b6000813590506137c48161379e565b92915050565b6000819050919050565b6137dd816137ca565b81146137e857600080fd5b50565b6000813590506137fa816137d4565b92915050565b6000806040838503121561381757613816613799565b5b6000613825858286016137b5565b9250506020613836858286016137eb565b9150509250929050565b60008115159050919050565b61385581613840565b82525050565b6000602082019050613870600083018461384c565b92915050565b61387f816137ca565b82525050565b600060208201905061389a6000830184613876565b92915050565b6000602082840312156138b6576138b5613799565b5b60006138c4848285016137b5565b91505092915050565b6000806000606084860312156138e6576138e5613799565b5b60006138f4868287016137b5565b9350506020613905868287016137b5565b9250506040613916868287016137eb565b9150509250925092565b6000819050919050565b600061394561394061393b8461368b565b613920565b61368b565b9050919050565b60006139578261392a565b9050919050565b60006139698261394c565b9050919050565b6139798161395e565b82525050565b60006020820190506139946000830184613970565b92915050565b600060ff82169050919050565b6139b08161399a565b82525050565b60006020820190506139cb60008301846139a7565b92915050565b6000602082840312156139e7576139e6613799565b5b60006139f5848285016137eb565b91505092915050565b613a0781613840565b8114613a1257600080fd5b50565b600081359050613a24816139fe565b92915050565b60008060408385031215613a4157613a40613799565b5b6000613a4f858286016137b5565b9250506020613a6085828601613a15565b9150509250929050565b60008060408385031215613a8157613a80613799565b5b6000613a8f858286016137eb565b9250506020613aa0858286016137eb565b9150509250929050565b600060208284031215613ac057613abf613799565b5b6000613ace84828501613a15565b91505092915050565b600080600080600060a08688031215613af357613af2613799565b5b6000613b01888289016137eb565b9550506020613b12888289016137eb565b9450506040613b23888289016137eb565b9350506060613b34888289016137eb565b9250506080613b45888289016137b5565b9150509295509295909350565b60008060408385031215613b6957613b68613799565b5b6000613b77858286016137b5565b9250506020613b88858286016137b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613bd957607f821691505b602082108103613bec57613beb613b92565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c2c826137ca565b9150613c37836137ca565b9250828202613c45816137ca565b91508282048414831517613c5c57613c5b613bf2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c9d826137ca565b9150613ca8836137ca565b925082613cb857613cb7613c63565b5b828204905092915050565b7f43616e6e6f7420736574206d617854726164696e67416d6f756e74206c6f776560008201527f72207468616e20302e3125000000000000000000000000000000000000000000602082015250565b6000613d1f602b836136f2565b9150613d2a82613cc3565b604082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b6000613d60826137ca565b9150613d6b836137ca565b9250828201905080821115613d8357613d82613bf2565b5b92915050565b7f4275792f73656c6c2066656573206d757374206265203c3d2035250000000000600082015250565b6000613dbf601b836136f2565b9150613dca82613d89565b602082019050919050565b60006020820190508181036000830152613dee81613db2565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e74206c6f77657260008201527f207468616e20312e302500000000000000000000000000000000000000000000602082015250565b6000613e51602a836136f2565b9150613e5c82613df5565b604082019050919050565b60006020820190508181036000830152613e8081613e44565b9050919050565b600081905092915050565b50565b6000613ea2600083613e87565b9150613ead82613e92565b600082019050919050565b6000613ec382613e95565b9150819050919050565b7f52657673686172652057616c6c65742069732072657175697265642100000000600082015250565b6000613f03601c836136f2565b9150613f0e82613ecd565b602082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613f956039836136f2565b9150613fa082613f39565b604082019050919050565b60006020820190508181036000830152613fc481613f88565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140276025836136f2565b915061403282613fcb565b604082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614093601a836136f2565b915061409e8261405d565b602082019050919050565b600060208201905081810360008301526140c281614086565b9050919050565b6000815190506140d8816137d4565b92915050565b6000602082840312156140f4576140f3613799565b5b6000614102848285016140c9565b91505092915050565b600060408201905061412060008301856136bd565b61412d6020830184613876565b9392505050565b600081519050614143816139fe565b92915050565b60006020828403121561415f5761415e613799565b5b600061416d84828501614134565b91505092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006141ac6017836136f2565b91506141b782614176565b602082019050919050565b600060208201905081810360008301526141db8161419f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061423e6035836136f2565b9150614249826141e2565b604082019050919050565b6000602082019050818103600083015261426d81614231565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006142d06034836136f2565b91506142db82614274565b604082019050919050565b600060208201905081810360008301526142ff816142c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143626026836136f2565b915061436d82614306565b604082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143f46024836136f2565b91506143ff82614398565b604082019050919050565b60006020820190508181036000830152614423816143e7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144866022836136f2565b91506144918261442a565b604082019050919050565b600060208201905081810360008301526144b581614479565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144f26020836136f2565b91506144fd826144bc565b602082019050919050565b60006020820190508181036000830152614521816144e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061455e601d836136f2565b915061456982614528565b602082019050919050565b6000602082019050818103600083015261458d81614551565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006145f06025836136f2565b91506145fb82614594565b604082019050919050565b6000602082019050818103600083015261461f816145e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006146826023836136f2565b915061468d82614626565b604082019050919050565b600060208201905081810360008301526146b181614675565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006146ee6016836136f2565b91506146f9826146b8565b602082019050919050565b6000602082019050818103600083015261471d816146e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854726164696e67416d6f756e742e000000000000000000000000000000602082015250565b60006147806031836136f2565b915061478b82614724565b604082019050919050565b600060208201905081810360008301526147af81614773565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147ec6013836136f2565b91506147f7826147b6565b602082019050919050565b6000602082019050818103600083015261481b816147df565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854726164696e67416d6f756e742e0000000000000000000000000000602082015250565b600061487e6032836136f2565b915061488982614822565b604082019050919050565b600060208201905081810360008301526148ad81614871565b9050919050565b60006148bf826137ca565b91506148ca836137ca565b92508282039050818111156148e2576148e1613bf2565b5b92915050565b6000819050919050565b600061490d614908614903846148e8565b613920565b6137ca565b9050919050565b61491d816148f2565b82525050565b600060c08201905061493860008301896136bd565b6149456020830188613876565b6149526040830187614914565b61495f6060830186614914565b61496c60808301856136bd565b61497960a0830184613876565b979650505050505050565b60008060006060848603121561499d5761499c613799565b5b60006149ab868287016140c9565b93505060206149bc868287016140c9565b92505060406149cd868287016140c9565b9150509250925092565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614a336026836136f2565b9150614a3e826149d7565b604082019050919050565b60006020820190508181036000830152614a6281614a26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ad68161379e565b92915050565b600060208284031215614af257614af1613799565b5b6000614b0084828501614ac7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b3e816136ab565b82525050565b6000614b508383614b35565b60208301905092915050565b6000602082019050919050565b6000614b7482614b09565b614b7e8185614b14565b9350614b8983614b25565b8060005b83811015614bba578151614ba18882614b44565b9750614bac83614b5c565b925050600181019050614b8d565b5085935050505092915050565b600060a082019050614bdc6000830188613876565b614be96020830187614914565b8181036040830152614bfb8186614b69565b9050614c0a60608301856136bd565b614c176080830184613876565b969550505050505056fea2646970667358221220a701e923471058ce9f2d3a4d08253567f52917ecc0daaea6e822956e85ed3a2f64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c3e80732043d271a3b12a61fc32d3575879362b5000000000000000000000000000000000000000000000000000000000000000c457468657265756d20322e300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ce7a791e5a4aae5b881322e300000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : params (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [4] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 000000000000000000000000c3e80732043d271a3b12a61fc32d3575879362b5
Arg [15] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [16] : 457468657265756d20322e300000000000000000000000000000000000000000
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [18] : e7a791e5a4aae5b881322e300000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.