ERC-20
Overview
Max Total Supply
76,000,000 DCAY
Holders
429
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 DCAYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-16 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: ProofPlatform/contracts/interfaces/ITeamFinanceLocker.sol pragma solidity ^0.8.24; interface ITeamFinanceLocker { function lockToken( address _tokenAddress, address _withdrawalAddress, uint256 _amount, uint256 _unlockTime, bool _mintNFT, address referrer ) external payable returns (uint256 _id); } // File: ProofPlatform/contracts/interfaces/IToken.sol pragma solidity ^0.8.24; interface IToken { struct FeeInfo { uint256 main; uint256 secondary; uint256 liquidity; uint256 proof; uint256 total; } struct ProofInfo { address locker; address router; address proofWallet; address proofStaking; } error ExceedsMaxTxAmount(); error ExceedsMaxWalletAmount(); error InvalidConfiguration(); error TradingNotEnabled(); error TransferDelayEnabled(uint256 currentBlock, uint256 delayedUntil); } // File: ProofPlatform/contracts/ProofStandardStealth.sol pragma solidity ^0.8.24; /// This token was incubated and launched by PROOF: https://proofplatform.io/projects. The smart contract is audited by SourceHat: https://sourcehat.com/ contract Token is IToken, ERC20, Ownable { struct UserInfo { bool isFeeExempt; bool isTxLimitExempt; uint256 lastTxBlock; } IUniswapV2Router02 public immutable uniswapV2Router; address public immutable pair; address payable public mainWallet; address payable public secondaryWallet; address payable public immutable proofWallet; address payable public immutable proofStaking; bool public isTradingEnabled; bool public isAntiSnipeActive = true; uint256 public antiSnipeEndBlock; uint256 public launchedAt; uint256 public maxTxAmount; uint256 public maxWallet; uint256 public initMaxWallet; bool public restrictWhales = true; bool public maxWalletChanged; uint256 public swapping; bool public swapEnabled = true; uint256 public swapTokensAtAmount; FeeInfo public feeTokens; FeeInfo public buyFees; FeeInfo public sellFees; uint256 public restingBuyTotal; uint256 public restingSellTotal; bool public buyTaxesSettled; bool public sellTaxesSettled; bool public proofFeeReduced; bool public proofFeeRemoved; uint256 public lockID; uint256 public immutable lpLockDuration; address public immutable lockerAddress; mapping (address => UserInfo) public userInfo; mapping (uint256 => bool) public swapThrottle; event SwapAndLiquify(uint256 tokensAutoLiq, uint256 ethAutoLiq); event SwapAndLiquifyEnabledUpdated(bool enabled); constructor( string memory _name, string memory _symbol, uint256 _totalSupply, FeeInfo memory _buyFees, FeeInfo memory _sellFees, uint256 _percentToLP, uint256 _lpLockDuration, uint256 _initMaxWallet, address _mainWallet, address _secondaryWallet, ProofInfo memory _addresses ) ERC20(_name, _symbol) Ownable(msg.sender) payable { if (_lpLockDuration < 30 days || msg.value < 1 ether || _initMaxWallet < 1) { revert InvalidConfiguration(); } (_buyFees.proof, _sellFees.proof) = (2,2); _validateFees(_buyFees, _sellFees); restingBuyTotal = _buyFees.total; restingSellTotal = _sellFees.total; _buyFees.main = 15 - _buyFees.proof - _buyFees.secondary - _buyFees.liquidity; _buyFees.total = 15; _sellFees.main = 20 - _sellFees.proof - _sellFees.secondary - _sellFees.liquidity; _sellFees.total = 20; buyFees = _buyFees; sellFees = _sellFees; // set addresses mainWallet = payable(_mainWallet); secondaryWallet = payable(_secondaryWallet); lockerAddress = _addresses.locker; proofWallet = payable(_addresses.proofWallet); proofStaking = payable(_addresses.proofStaking); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_addresses.router); uniswapV2Router = _uniswapV2Router; pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uint256 amountToPair = _totalSupply * _percentToLP / 100; super._update(address(0), address(this), amountToPair); // mint to contract for liquidity // set basic data lpLockDuration = _lpLockDuration; swapTokensAtAmount = _totalSupply * 5 / 4000; maxTxAmount = _totalSupply * 5 / 1000; initMaxWallet = _initMaxWallet; maxWallet = _totalSupply * _initMaxWallet / 1000; userInfo[address(this)] = UserInfo(true, true, 0); userInfo[pair].isTxLimitExempt = true; super._update(address(0), owner(), _totalSupply - amountToPair); // mint to owner } function launch() external payable onlyOwner lockTheSwap { if (launchedAt != 0) { revert InvalidConfiguration(); } // enable trading antiSnipeEndBlock = block.number + 10; launchedAt = block.timestamp; isTradingEnabled = true; // add liquidity _approve(address(this), address(uniswapV2Router), type(uint256).max); addLiquidity(balanceOf(address(this)), address(this).balance - msg.value, address(this)); // lock liquidity uint256 lpBalance = IERC20(pair).balanceOf(address(this)); IERC20(pair).approve(lockerAddress, lpBalance); lockID = ITeamFinanceLocker(lockerAddress).lockToken{value: msg.value}(pair, msg.sender, lpBalance, block.timestamp + lpLockDuration, false, address(0)); } function cancel() external onlyOwner { if (launchedAt != 0) { revert InvalidConfiguration(); } // send the tokens and eth back to the owner super._update(address(this), owner(), balanceOf(address(this))); address(owner()).call{value: address(this).balance}(""); } function _update( address from, address to, uint256 amount ) internal override { if (!isTradingEnabled) { revert TradingNotEnabled(); } if (swapping == 2 || from == owner() || to == owner() || amount == 0) { super._update(from, to, amount); return; } UserInfo storage sender = userInfo[from]; UserInfo storage recipient = userInfo[to]; // 1 purchase per block for the first 10 blocks if (isAntiSnipeActive) { if (block.number < antiSnipeEndBlock) { UserInfo storage user = userInfo[tx.origin]; uint256 delayedUntil = user.lastTxBlock + 1; if (delayedUntil > block.number) { revert TransferDelayEnabled(block.number, delayedUntil); } user.lastTxBlock = block.number; } else { isAntiSnipeActive = false; } } //start at anywhere from 0.1% to 0.5%, increase by 0.1%, every 10 blocks, until it reaches 1% if (!maxWalletChanged) { uint256 secondsPassed = block.timestamp - launchedAt; uint256 percentage = initMaxWallet + (secondsPassed / 120); if (percentage > 9) { percentage = 10; maxWalletChanged = true; } uint256 newMax = totalSupply() * percentage / 1000; if (newMax != maxWallet) { maxWallet = newMax; } } if (restrictWhales) { if (to == pair && !sender.isTxLimitExempt && amount > maxTxAmount) { revert ExceedsMaxTxAmount(); } if (!recipient.isTxLimitExempt && amount + balanceOf(to) > maxWallet) { revert ExceedsMaxWalletAmount(); } } uint256 total = feeTokens.total; bool canSwap = total >= swapTokensAtAmount; if ( canSwap && swapEnabled && from != pair && !swapThrottle[block.number] ) { swapThrottle[block.number] = true; processFees(total, swapTokensAtAmount); } if (!sender.isFeeExempt && !recipient.isFeeExempt) { FeeInfo storage _buyFees = buyFees; FeeInfo storage _sellFees = sellFees; if (!proofFeeRemoved) { uint256 secondsPassed = block.timestamp - launchedAt; if (!proofFeeReduced && secondsPassed > 1 days) { uint256 totalBuy = _buyFees.total - _buyFees.proof; if (totalBuy == 0) { _buyFees.total = 0; _buyFees.proof = 0; } else { _buyFees.total = totalBuy + 1; _buyFees.proof = 1; } uint256 totalSell = _sellFees.total - _sellFees.proof; if (totalSell == 0) { _sellFees.total = 0; _sellFees.proof = 0; } else { _sellFees.total = totalSell + 1; _sellFees.proof = 1; } proofFeeReduced = true; } else if (secondsPassed > 31 days) { _buyFees.total -= _buyFees.proof; _sellFees.total -= _sellFees.proof; _buyFees.proof = 0; _sellFees.proof = 0; proofFeeRemoved = true; } else { if (!buyTaxesSettled) { uint256 restingTotal = restingBuyTotal; uint256 feeTotal = restingTotal; if (secondsPassed < 1801) { feeTotal = 15 - (secondsPassed / 120); } if (feeTotal <= restingTotal) { _buyFees.total = restingTotal; _buyFees.main = restingTotal - _buyFees.liquidity - _buyFees.secondary - _buyFees.proof; buyTaxesSettled = true; } else if (feeTotal != _buyFees.total) { _buyFees.total = feeTotal; _buyFees.main = feeTotal - _buyFees.liquidity - _buyFees.secondary - _buyFees.proof; } } if (!sellTaxesSettled) { uint256 restingTotal = restingSellTotal; uint256 feeTotal = restingTotal; if (secondsPassed < 2401) { feeTotal = 20 - (secondsPassed / 120); } if (feeTotal <= restingTotal) { _sellFees.total = restingTotal; _sellFees.main = restingTotal - _sellFees.liquidity - _sellFees.secondary - _sellFees.proof; sellTaxesSettled = true; } else if (feeTotal != _sellFees.total) { _sellFees.total = feeTotal; _sellFees.main = feeTotal - _sellFees.liquidity - _sellFees.secondary - _sellFees.proof; } } } } uint256 fees; if (to == pair) { //sell fees = _calculateFees(_sellFees, amount); } else if (from == pair) { //buy fees = _calculateFees(_buyFees, amount); } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } super._update(from, to, amount); } function _calculateFees(FeeInfo memory feeRate, uint256 amount) internal returns (uint256 fees) { if (feeRate.total != 0) { fees = amount * feeRate.total / 100; FeeInfo storage _feeTokens = feeTokens; _feeTokens.main += fees * feeRate.main / feeRate.total; _feeTokens.secondary += fees * feeRate.secondary / feeRate.total; _feeTokens.liquidity += fees * feeRate.liquidity / feeRate.total; _feeTokens.proof += fees * feeRate.proof / feeRate.total; _feeTokens.total += fees; } } function processFees(uint256 total, uint256 amountToSwap) internal lockTheSwap { FeeInfo storage _feeTokens = feeTokens; FeeInfo memory swapTokens; swapTokens.main = amountToSwap * _feeTokens.main / total; swapTokens.secondary = amountToSwap * _feeTokens.secondary / total; swapTokens.liquidity = amountToSwap * _feeTokens.liquidity / total; swapTokens.proof = amountToSwap * _feeTokens.proof / total; uint256 amountToPair = swapTokens.liquidity / 2; swapTokens.total = amountToSwap - amountToPair; uint256 ethBalance = swapTokensForETH(swapTokens.total); FeeInfo memory ethSplit; ethSplit.main = ethBalance * swapTokens.main / swapTokens.total; if (ethSplit.main > 0) { address(mainWallet).call{value: ethSplit.main}(""); } ethSplit.secondary = ethBalance * swapTokens.secondary / swapTokens.total; if (ethSplit.secondary > 0) { address(secondaryWallet).call{value: ethSplit.secondary}(""); } ethSplit.proof = ethBalance * swapTokens.proof / swapTokens.total; if (ethSplit.proof > 0) { uint256 revenueSplit = ethSplit.proof / 2; address(proofStaking).call{value: revenueSplit}(""); address(proofWallet).call{value: ethSplit.proof - revenueSplit}(""); } uint256 amountPaired; ethSplit.liquidity = address(this).balance; if (amountToPair > 0 && ethSplit.liquidity > 0) { amountPaired = addLiquidity(amountToPair, ethSplit.liquidity, address(0xdead)); emit SwapAndLiquify(amountToPair, ethSplit.liquidity); } uint256 liquidityAdjustment = swapTokens.liquidity - (amountToPair - amountPaired); _feeTokens.main -= swapTokens.main; _feeTokens.secondary -= swapTokens.secondary; _feeTokens.liquidity -= liquidityAdjustment; _feeTokens.proof -= swapTokens.proof; _feeTokens.total -= swapTokens.main + swapTokens.secondary + swapTokens.proof + liquidityAdjustment; } function swapTokensForETH(uint256 tokenAmount) internal returns (uint256 ethBalance) { uint256 ethBalBefore = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); ethBalance = address(this).balance - ethBalBefore; } function addLiquidity(uint256 tokenAmount, uint256 ethAmount, address recipient) private returns (uint256) { (uint256 amountA,,) = uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable recipient, block.timestamp ); return amountA; } function changeFees( uint256 liquidityBuy, uint256 mainBuy, uint256 secondaryBuy, uint256 liquiditySell, uint256 mainSell, uint256 secondarySell ) external onlyOwner { if (!buyTaxesSettled || !sellTaxesSettled) { revert InvalidConfiguration(); } FeeInfo memory _buyFees; _buyFees.liquidity = liquidityBuy; _buyFees.main = mainBuy; _buyFees.secondary = secondaryBuy; FeeInfo memory _sellFees; _sellFees.liquidity = liquiditySell; _sellFees.main = mainSell; _sellFees.secondary = secondarySell; (_buyFees.proof, _sellFees.proof) = launchedAt != 0 ? _calculateProofFee() : (2,2); _validateFees(_buyFees, _sellFees); buyFees = _buyFees; sellFees = _sellFees; } function _calculateProofFee() internal returns (uint256, uint256) { uint256 secondsPassed = block.timestamp - launchedAt; if (secondsPassed > 31 days) { proofFeeRemoved = true; return (0,0); } else if (secondsPassed > 1 days) { proofFeeReduced = true; return (1,1); } else { return (2,2); } } function _validateFees(FeeInfo memory _buyFees, FeeInfo memory _sellFees) internal pure { _buyFees.total = _buyFees.liquidity + _buyFees.main + _buyFees.secondary; if (_buyFees.total == 0) { _buyFees.proof = 0; } else { _buyFees.total += _buyFees.proof; } _sellFees.total = _sellFees.liquidity + _sellFees.main + _sellFees.secondary; if (_sellFees.total == 0) { _sellFees.proof = 0; } else { _sellFees.total += _sellFees.proof; } if (_buyFees.total > 7 || _sellFees.total > 7) { revert InvalidConfiguration(); } } function setMaxTxAmount(uint256 _maxTxAmt) external onlyOwner() { if (launchedAt == 0 || _maxTxAmt < (totalSupply() * 5) / 1000 || _maxTxAmt > (totalSupply() * 3) / 100 ) { revert InvalidConfiguration(); } maxTxAmount = _maxTxAmt; } function setMaxWalletSize(uint256 _maxWalletSize) external onlyOwner() { if (launchedAt == 0 || _maxWalletSize < (totalSupply() * 5) / 1000 || _maxWalletSize > (totalSupply() * 3) / 100 ) { revert InvalidConfiguration(); } maxWallet = _maxWalletSize; maxWalletChanged = true; } function setRestrictWhalesEnabled(bool _enabled) external onlyOwner{ restrictWhales = _enabled; } function setFeeExempt(address account, bool value) public onlyOwner { userInfo[account].isFeeExempt = value; } function setFeeExempt(address[] memory accounts) public onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; i++) { userInfo[accounts[i]].isFeeExempt = true; } } function setTxLimitExempt(address account, bool value) public onlyOwner { userInfo[account].isTxLimitExempt = value; } function setTxLimitExempt(address[] memory accounts) public onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; i++) { userInfo[accounts[i]].isTxLimitExempt = true; } } function setMainWallet(address newWallet) external onlyOwner { mainWallet = payable(newWallet); } function setSecondaryWallet(address newWallet) external onlyOwner { secondaryWallet = payable(newWallet); } function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function setSwapAtAmount(uint256 amount) external onlyOwner { swapTokensAtAmount = amount; } function withdrawStuckTokens() external onlyOwner { super._update(address(this), _msgSender(), balanceOf(address(this)) - feeTokens.total); } function getCirculatingSupply() external view returns (uint256) { return totalSupply() - balanceOf(address(0xdead)); } modifier lockTheSwap() { swapping = 2; _; swapping = 1; } function decimals() public view virtual override returns (uint8) { return 9; } function version() public pure returns (uint8) { return 2; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"components":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct IToken.FeeInfo","name":"_buyFees","type":"tuple"},{"components":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"internalType":"struct IToken.FeeInfo","name":"_sellFees","type":"tuple"},{"internalType":"uint256","name":"_percentToLP","type":"uint256"},{"internalType":"uint256","name":"_lpLockDuration","type":"uint256"},{"internalType":"uint256","name":"_initMaxWallet","type":"uint256"},{"internalType":"address","name":"_mainWallet","type":"address"},{"internalType":"address","name":"_secondaryWallet","type":"address"},{"components":[{"internalType":"address","name":"locker","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"proofWallet","type":"address"},{"internalType":"address","name":"proofStaking","type":"address"}],"internalType":"struct IToken.ProofInfo","name":"_addresses","type":"tuple"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"ExceedsMaxTxAmount","type":"error"},{"inputs":[],"name":"ExceedsMaxWalletAmount","type":"error"},{"inputs":[],"name":"InvalidConfiguration","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TradingNotEnabled","type":"error"},{"inputs":[{"internalType":"uint256","name":"currentBlock","type":"uint256"},{"internalType":"uint256","name":"delayedUntil","type":"uint256"}],"name":"TransferDelayEnabled","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensAutoLiq","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAutoLiq","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiSnipeEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxesSettled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityBuy","type":"uint256"},{"internalType":"uint256","name":"mainBuy","type":"uint256"},{"internalType":"uint256","name":"secondaryBuy","type":"uint256"},{"internalType":"uint256","name":"liquiditySell","type":"uint256"},{"internalType":"uint256","name":"mainSell","type":"uint256"},{"internalType":"uint256","name":"secondarySell","type":"uint256"}],"name":"changeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeTokens","outputs":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initMaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAntiSnipeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletChanged","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofFeeReduced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofFeeRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofStaking","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proofWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restingBuyTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"restingSellTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"restrictWhales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondaryWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"main","type":"uint256"},{"internalType":"uint256","name":"secondary","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"proof","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxesSettled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMainWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmt","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setRestrictWhalesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setSecondaryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"setTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTxLimitExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"swapThrottle","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":"swapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"bool","name":"isFeeExempt","type":"bool"},{"internalType":"bool","name":"isTxLimitExempt","type":"bool"},{"internalType":"uint256","name":"lastTxBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101406040526001600760156101000a81548160ff0219169083151502179055506001600d5f6101000a81548160ff0219169083151502179055506001600f5f6101000a81548160ff021916908315150217905550604051615ba0380380615ba083398181016040528101906100759190610e58565b338b8b81600390816100879190611185565b5080600490816100979190611185565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101019190611263565b60405180910390fd5b6101198161076060201b60201c565b5062278d008510806101325750670de0b6b3a764000034105b8061013d5750600184105b15610174576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600280896060018960600182815250828152505050610199888861082360201b60201c565b87608001516020819055508660800151602181905550876040015188602001518960600151600f6101ca91906112a9565b6101d491906112a9565b6101de91906112a9565b885f018181525050600f886080018181525050866040015187602001518860600151601461020c91906112a9565b61021691906112a9565b61022091906112a9565b875f01818152505060148760800181815250508760165f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505086601b5f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050508260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550805f015173ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff1681525050806040015173ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050806060015173ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250505f816020015190508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561044c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061047091906112dc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f991906112dc565b6040518363ffffffff1660e01b8152600401610516929190611307565b6020604051808303815f875af1158015610532573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055691906112dc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250505f6064888c610598919061132e565b6105a2919061139c565b90506105b55f308361093b60201b60201c565b866101008181525050610fa060058c6105ce919061132e565b6105d8919061139c565b6010819055506103e860058c6105ee919061132e565b6105f8919061139c565b600a8190555085600c819055506103e8868c610614919061132e565b61061e919061139c565b600b8190555060405180606001604052806001151581526020016001151581526020015f81525060245f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f015f6101000a81548160ff0219169083151502179055506020820151815f0160016101000a81548160ff02191690831515021790555060408201518160010155905050600160245f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff02191690831515021790555061074e5f610737610b5460201b60201c565b838e61074391906112a9565b61093b60201b60201c565b5050505050505050505050505061145c565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8160200151825f0151836040015161083b91906113cc565b61084591906113cc565b8260800181815250505f826080015103610868575f826060018181525050610886565b81606001518260800181815161087e91906113cc565b915081815250505b8060200151815f0151826040015161089e91906113cc565b6108a891906113cc565b8160800181815250505f8160800151036108cb575f8160600181815250506108e9565b8060600151816080018181516108e191906113cc565b915081815250505b600782608001511180610900575060078160800151115b15610937576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361098b578060025f82825461097f91906113cc565b92505081905550610a59565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a14578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610a0b9392919061140e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa0578060025f8282540392505081905550610aea565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b479190611443565b60405180910390a3505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610bdb82610b95565b810181811067ffffffffffffffff82111715610bfa57610bf9610ba5565b5b80604052505050565b5f610c0c610b7c565b9050610c188282610bd2565b919050565b5f67ffffffffffffffff821115610c3757610c36610ba5565b5b610c4082610b95565b9050602081019050919050565b8281835e5f83830152505050565b5f610c6d610c6884610c1d565b610c03565b905082815260208101848484011115610c8957610c88610b91565b5b610c94848285610c4d565b509392505050565b5f82601f830112610cb057610caf610b8d565b5b8151610cc0848260208601610c5b565b91505092915050565b5f819050919050565b610cdb81610cc9565b8114610ce5575f80fd5b50565b5f81519050610cf681610cd2565b92915050565b5f80fd5b5f60a08284031215610d1557610d14610cfc565b5b610d1f60a0610c03565b90505f610d2e84828501610ce8565b5f830152506020610d4184828501610ce8565b6020830152506040610d5584828501610ce8565b6040830152506060610d6984828501610ce8565b6060830152506080610d7d84828501610ce8565b60808301525092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610db282610d89565b9050919050565b610dc281610da8565b8114610dcc575f80fd5b50565b5f81519050610ddd81610db9565b92915050565b5f60808284031215610df857610df7610cfc565b5b610e026080610c03565b90505f610e1184828501610dcf565b5f830152506020610e2484828501610dcf565b6020830152506040610e3884828501610dcf565b6040830152506060610e4c84828501610dcf565b60608301525092915050565b5f805f805f805f805f805f6102c08c8e031215610e7857610e77610b85565b5b5f8c015167ffffffffffffffff811115610e9557610e94610b89565b5b610ea18e828f01610c9c565b9b505060208c015167ffffffffffffffff811115610ec257610ec1610b89565b5b610ece8e828f01610c9c565b9a50506040610edf8e828f01610ce8565b9950506060610ef08e828f01610d00565b985050610100610f028e828f01610d00565b9750506101a0610f148e828f01610ce8565b9650506101c0610f268e828f01610ce8565b9550506101e0610f388e828f01610ce8565b945050610200610f4a8e828f01610dcf565b935050610220610f5c8e828f01610dcf565b925050610240610f6e8e828f01610de3565b9150509295989b509295989b9093969950565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fcf57607f821691505b602082108103610fe257610fe1610f8b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026110447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611009565b61104e8683611009565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61108961108461107f84610cc9565b611066565b610cc9565b9050919050565b5f819050919050565b6110a28361106f565b6110b66110ae82611090565b848454611015565b825550505050565b5f90565b6110ca6110be565b6110d5818484611099565b505050565b5b818110156110f8576110ed5f826110c2565b6001810190506110db565b5050565b601f82111561113d5761110e81610fe8565b61111784610ffa565b81016020851015611126578190505b61113a61113285610ffa565b8301826110da565b50505b505050565b5f82821c905092915050565b5f61115d5f1984600802611142565b1980831691505092915050565b5f611175838361114e565b9150826002028217905092915050565b61118e82610f81565b67ffffffffffffffff8111156111a7576111a6610ba5565b5b6111b18254610fb8565b6111bc8282856110fc565b5f60209050601f8311600181146111ed575f84156111db578287015190505b6111e5858261116a565b86555061124c565b601f1984166111fb86610fe8565b5f5b82811015611222578489015182556001820191506020850194506020810190506111fd565b8683101561123f578489015161123b601f89168261114e565b8355505b6001600288020188555050505b505050505050565b61125d81610da8565b82525050565b5f6020820190506112765f830184611254565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112b382610cc9565b91506112be83610cc9565b92508282039050818111156112d6576112d561127c565b5b92915050565b5f602082840312156112f1576112f0610b85565b5b5f6112fe84828501610dcf565b91505092915050565b5f60408201905061131a5f830185611254565b6113276020830184611254565b9392505050565b5f61133882610cc9565b915061134383610cc9565b925082820261135181610cc9565b915082820484148315176113685761136761127c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113a682610cc9565b91506113b183610cc9565b9250826113c1576113c061136f565b5b828204905092915050565b5f6113d682610cc9565b91506113e183610cc9565b92508282019050808211156113f9576113f861127c565b5b92915050565b61140881610cc9565b82525050565b5f6060820190506114215f830186611254565b61142e60208301856113ff565b61143b60408301846113ff565b949350505050565b5f6020820190506114565f8301846113ff565b92915050565b60805160a05160c05160e051610100516101205161468d6115135f395f8181610f8b0152818161100b01526112cc01525f818161106b0152611a0a01525f818161144b01526133fa01525f8181611415015261348001525f8181610eb501528181610f4f01528181611048015281816116ec01528181612a2701528181612b6f01528181612fda015261307a01525f8181610e4e015281816111d101528181611ea001528181613842015261391d015261468d5ff3fe6080604052600436106103a5575f3560e01c806387f86db7116101e6578063cb29813c1161010c578063ea8a1af01161009f578063f8b45b051161006e578063f8b45b0514610d22578063f8f9892814610d4c578063f954662114610d74578063f9f4bfdd14610d9e576103ac565b8063ea8a1af014610c92578063ec28438a14610ca8578063f2fde38b14610cd0578063f66a79a014610cf8576103ac565b8063e0f3ccf5116100db578063e0f3ccf514610be4578063e2f4560514610c12578063e4748b9e14610c3c578063ea1644d514610c6a576103ac565b8063cb29813c14610b2e578063d0a5eb4e14610b56578063dd62ed3e14610b7e578063de35eb2414610bba576103ac565b80639ff77da411610184578063baae066611610153578063baae066614610a86578063bee0d6ad14610aae578063bf56b37114610adc578063c49b9a8014610b06576103ac565b80639ff77da4146109ba578063a8aa1b31146109f6578063a9059cbb14610a20578063acb52a9814610a5c576103ac565b80638d7a8ba7116101c05780638d7a8ba7146109165780638da5cb5b1461093e5780638ebfc7961461096857806395d89b4114610990576103ac565b806387f86db71461089857806388cda873146108c25780638c0b5e22146108ec576103ac565b806344de2e4c116102cb5780636402511e11610269578063715018a611610238578063715018a6146108185780638183b3c81461082e578063838420131461084457806383ebc78d1461086e576103ac565b80636402511e1461076057806367dd0179146107885780636ddd1713146107b257806370a08231146107dc576103ac565b806353027501116102a557806353027501146106ba57806354fd4d50146106e45780635ace11221461070e5780636101f1f814610736576103ac565b806344de2e4c1461063e5780634a829e79146106685780634b78286a14610692576103ac565b80631959a002116103435780632ffe729a116103125780632ffe729a14610596578063313ce567146105c057806332a8db87146105ea5780633675f29b14610614576103ac565b80631959a002146104c857806323b62b751461050657806323b872dd146105305780632b112e491461056c576103ac565b8063095ea7b31161037f578063095ea7b31461040e5780631694505e1461044a5780631732cded1461047457806318160ddd1461049e576103ac565b806301339c21146103b0578063064a59d0146103ba57806306fdde03146103e4576103ac565b366103ac57005b5f80fd5b6103b8610dc8565b005b3480156103c5575f80fd5b506103ce61110a565b6040516103db9190613a02565b60405180910390f35b3480156103ef575f80fd5b506103f861111d565b6040516104059190613a8b565b60405180910390f35b348015610419575f80fd5b50610434600480360381019061042f9190613b49565b6111ad565b6040516104419190613a02565b60405180910390f35b348015610455575f80fd5b5061045e6111cf565b60405161046b9190613be2565b60405180910390f35b34801561047f575f80fd5b506104886111f3565b6040516104959190613c0a565b60405180910390f35b3480156104a9575f80fd5b506104b26111f9565b6040516104bf9190613c0a565b60405180910390f35b3480156104d3575f80fd5b506104ee60048036038101906104e99190613c23565b611202565b6040516104fd93929190613c4e565b60405180910390f35b348015610511575f80fd5b5061051a611240565b6040516105279190613ca3565b60405180910390f35b34801561053b575f80fd5b5061055660048036038101906105519190613cbc565b611265565b6040516105639190613a02565b60405180910390f35b348015610577575f80fd5b50610580611293565b60405161058d9190613c0a565b60405180910390f35b3480156105a1575f80fd5b506105aa6112b6565b6040516105b79190613c0a565b60405180910390f35b3480156105cb575f80fd5b506105d46112bc565b6040516105e19190613d27565b60405180910390f35b3480156105f5575f80fd5b506105fe6112c4565b60405161060b9190613c0a565b60405180910390f35b34801561061f575f80fd5b506106286112ca565b6040516106359190613d4f565b60405180910390f35b348015610649575f80fd5b506106526112ee565b60405161065f9190613a02565b60405180910390f35b348015610673575f80fd5b5061067c611300565b6040516106899190613a02565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190613c23565b611313565b005b3480156106c5575f80fd5b506106ce61135e565b6040516106db9190613a02565b60405180910390f35b3480156106ef575f80fd5b506106f8611370565b6040516107059190613d27565b60405180910390f35b348015610719575f80fd5b50610734600480360381019061072f9190613ea8565b611378565b005b348015610741575f80fd5b5061074a611413565b6040516107579190613ca3565b60405180910390f35b34801561076b575f80fd5b5061078660048036038101906107819190613eef565b611437565b005b348015610793575f80fd5b5061079c611449565b6040516107a99190613ca3565b60405180910390f35b3480156107bd575f80fd5b506107c661146d565b6040516107d39190613a02565b60405180910390f35b3480156107e7575f80fd5b5061080260048036038101906107fd9190613c23565b61147f565b60405161080f9190613c0a565b60405180910390f35b348015610823575f80fd5b5061082c6114c4565b005b348015610839575f80fd5b506108426114d7565b005b34801561084f575f80fd5b5061085861150b565b6040516108659190613a02565b60405180910390f35b348015610879575f80fd5b5061088261151e565b60405161088f9190613c0a565b60405180910390f35b3480156108a3575f80fd5b506108ac611524565b6040516108b99190613a02565b60405180910390f35b3480156108cd575f80fd5b506108d6611537565b6040516108e39190613a02565b60405180910390f35b3480156108f7575f80fd5b5061090061154a565b60405161090d9190613c0a565b60405180910390f35b348015610921575f80fd5b5061093c60048036038101906109379190613f44565b611550565b005b348015610949575f80fd5b506109526115b3565b60405161095f9190613d4f565b60405180910390f35b348015610973575f80fd5b5061098e60048036038101906109899190613f44565b6115db565b005b34801561099b575f80fd5b506109a461163d565b6040516109b19190613a8b565b60405180910390f35b3480156109c5575f80fd5b506109e060048036038101906109db9190613eef565b6116cd565b6040516109ed9190613a02565b60405180910390f35b348015610a01575f80fd5b50610a0a6116ea565b604051610a179190613d4f565b60405180910390f35b348015610a2b575f80fd5b50610a466004803603810190610a419190613b49565b61170e565b604051610a539190613a02565b60405180910390f35b348015610a67575f80fd5b50610a70611730565b604051610a7d9190613c0a565b60405180910390f35b348015610a91575f80fd5b50610aac6004803603810190610aa79190613f82565b611736565b005b348015610ab9575f80fd5b50610ac261175a565b604051610ad3959493929190613fad565b60405180910390f35b348015610ae7575f80fd5b50610af061177d565b604051610afd9190613c0a565b60405180910390f35b348015610b11575f80fd5b50610b2c6004803603810190610b279190613f82565b611783565b005b348015610b39575f80fd5b50610b546004803603810190610b4f9190613ffe565b6117de565b005b348015610b61575f80fd5b50610b7c6004803603810190610b779190613c23565b61193b565b005b348015610b89575f80fd5b50610ba46004803603810190610b9f9190614087565b611986565b604051610bb19190613c0a565b60405180910390f35b348015610bc5575f80fd5b50610bce611a08565b604051610bdb9190613c0a565b60405180910390f35b348015610bef575f80fd5b50610bf8611a2c565b604051610c09959493929190613fad565b60405180910390f35b348015610c1d575f80fd5b50610c26611a4f565b604051610c339190613c0a565b60405180910390f35b348015610c47575f80fd5b50610c50611a55565b604051610c61959493929190613fad565b60405180910390f35b348015610c75575f80fd5b50610c906004803603810190610c8b9190613eef565b611a78565b005b348015610c9d575f80fd5b50610ca6611b34565b005b348015610cb3575f80fd5b50610cce6004803603810190610cc99190613eef565b611c00565b005b348015610cdb575f80fd5b50610cf66004803603810190610cf19190613c23565b611ca1565b005b348015610d03575f80fd5b50610d0c611d25565b604051610d199190613ca3565b60405180910390f35b348015610d2d575f80fd5b50610d36611d4a565b604051610d439190613c0a565b60405180910390f35b348015610d57575f80fd5b50610d726004803603810190610d6d9190613ea8565b611d50565b005b348015610d7f575f80fd5b50610d88611dea565b604051610d959190613c0a565b60405180910390f35b348015610da9575f80fd5b50610db2611df0565b604051610dbf9190613a02565b60405180910390f35b610dd0611e03565b6002600e819055505f60095414610e13576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a43610e2091906140f2565b600881905550426009819055506001600760146101000a81548160ff021916908315150217905550610e93307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e8a565b610eb1610e9f3061147f565b3447610eab9190614125565b30611e9c565b505f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f0c9190613d4f565b602060405180830381865afa158015610f27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4b919061416c565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401610fc8929190614197565b6020604051808303815f875af1158015610fe4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100891906141d2565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635af06fed347f000000000000000000000000000000000000000000000000000000000000000033857f00000000000000000000000000000000000000000000000000000000000000004261109591906140f2565b5f806040518863ffffffff1660e01b81526004016110b8969594939291906141fd565b60206040518083038185885af11580156110d4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906110f9919061416c565b602381905550506001600e81905550565b600760149054906101000a900460ff1681565b60606003805461112c90614289565b80601f016020809104026020016040519081016040528092919081815260200182805461115890614289565b80156111a35780601f1061117a576101008083540402835291602001916111a3565b820191905f5260205f20905b81548152906001019060200180831161118657829003601f168201915b5050505050905090565b5f806111b7611f52565b90506111c4818585611e8a565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e5481565b5f600254905090565b6024602052805f5260405f205f91509050805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff16908060010154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8061126f611f52565b905061127c858285611f59565b611287858585611feb565b60019150509392505050565b5f61129f61dead61147f565b6112a76111f9565b6112b19190614125565b905090565b600c5481565b5f6009905090565b60215481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5f9054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b61131b611e03565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60225f9054906101000a900460ff1681565b5f6002905090565b611380611e03565b5f815190505f5b8181101561140e57600160245f8584815181106113a7576113a66142b9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055508080600101915050611387565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61143f611e03565b8060108190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6114cc611e03565b6114d55f6120db565b565b6114df611e03565b611509306114eb611f52565b6011600401546114fa3061147f565b6115049190614125565b61219e565b565b602260039054906101000a900460ff1681565b60205481565b600760159054906101000a900460ff1681565b602260029054906101000a900460ff1681565b600a5481565b611558611e03565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e3611e03565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055505050565b60606004805461164c90614289565b80601f016020809104026020016040519081016040528092919081815260200182805461167890614289565b80156116c35780601f1061169a576101008083540402835291602001916116c3565b820191905f5260205f20905b8154815290600101906020018083116116a657829003601f168201915b5050505050905090565b6025602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f80611718611f52565b9050611725818585611feb565b600191505092915050565b60085481565b61173e611e03565b80600d5f6101000a81548160ff02191690831515021790555050565b6011805f0154908060010154908060020154908060030154908060040154905085565b60095481565b61178b611e03565b80600f5f6101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516117d39190613a02565b60405180910390a150565b6117e6611e03565b60225f9054906101000a900460ff16158061180e5750602260019054906101000a900460ff16155b15611845576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61184d6139be565b8681604001818152505085815f018181525050848160200181815250506118726139be565b8481604001818152505083815f018181525050828160200181815250505f600954036118a0576002806118a9565b6118a86123b7565b5b8360600183606001828152508281525050506118c5828261243c565b8160165f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505080601b5f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050505050565b611943611e03565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601b805f0154908060010154908060020154908060030154908060040154905085565b60105481565b6016805f0154908060010154908060020154908060030154908060040154905085565b611a80611e03565b5f6009541480611aaf57506103e86005611a986111f9565b611aa291906142e6565b611aac9190614354565b81105b80611ad8575060646003611ac16111f9565b611acb91906142e6565b611ad59190614354565b81115b15611b0f576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b819055506001600d60016101000a81548160ff02191690831515021790555050565b611b3c611e03565b5f60095414611b77576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9130611b836115b3565b611b8c3061147f565b61219e565b611b996115b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051611bbc906143b1565b5f6040518083038185875af1925050503d805f8114611bf6576040519150601f19603f3d011682016040523d82523d5f602084013e611bfb565b606091505b505050565b611c08611e03565b5f6009541480611c3757506103e86005611c206111f9565b611c2a91906142e6565b611c349190614354565b81105b80611c60575060646003611c496111f9565b611c5391906142e6565b611c5d9190614354565b81115b15611c97576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8190555050565b611ca9611e03565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d19575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611d109190613d4f565b60405180910390fd5b611d22816120db565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b611d58611e03565b5f815190505f5b81811015611de557600160245f858481518110611d7f57611d7e6142b9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055508080600101915050611d5f565b505050565b60235481565b602260019054906101000a900460ff1681565b611e0b611f52565b73ffffffffffffffffffffffffffffffffffffffff16611e296115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611e8857611e4c611f52565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611e7f9190613d4f565b60405180910390fd5b565b611e978383836001612554565b505050565b5f807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198530885f8089426040518863ffffffff1660e01b8152600401611f02969594939291906143fe565b60606040518083038185885af1158015611f1e573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611f43919061445d565b50509050809150509392505050565b5f33905090565b5f611f648484611986565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fe55781811015611fd6578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611fcd939291906144ad565b60405180910390fd5b611fe484848484035f612554565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361205b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016120529190613d4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120cb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016120c29190613d4f565b60405180910390fd5b6120d6838383612723565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ee578060025f8282546121e291906140f2565b925050819055506122bc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612277578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161226e939291906144ad565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612303578060025f828254039250508190555061234d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123aa9190613c0a565b60405180910390a3505050565b5f805f600954426123c89190614125565b90506228de808111156123fc576001602260036101000a81548160ff0219169083151502179055505f809250925050612438565b6201518081111561242f576001602260026101000a81548160ff0219169083151502179055506001809250925050612438565b60028092509250505b9091565b8160200151825f0151836040015161245491906140f2565b61245e91906140f2565b8260800181815250505f826080015103612481575f82606001818152505061249f565b81606001518260800181815161249791906140f2565b915081815250505b8060200151815f015182604001516124b791906140f2565b6124c191906140f2565b8160800181815250505f8160800151036124e4575f816060018181525050612502565b8060600151816080018181516124fa91906140f2565b915081815250505b600782608001511180612519575060078160800151115b15612550576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125c4575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125bb9190613d4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612634575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161262b9190613d4f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561271d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516127149190613c0a565b60405180910390a35b50505050565b600760149054906101000a900460ff16612769576040517f12f1f92300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600e5414806127ac575061277d6115b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806127e957506127ba6115b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806127f357505f81145b156128085761280383838361219e565b61314b565b5f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050600760159054906101000a900460ff161561296e57600854431015612952575f60245f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f600182600101546128f991906140f2565b9050438111156129425743816040517f4a24f3d20000000000000000000000000000000000000000000000000000000081526004016129399291906144e2565b60405180910390fd5b438260010181905550505061296d565b5f600760156101000a81548160ff0219169083151502179055505b5b600d60019054906101000a900460ff16612a11575f600954426129919190614125565b90505f6078826129a19190614354565b600c546129ae91906140f2565b905060098111156129d957600a90506001600d60016101000a81548160ff0219169083151502179055505b5f6103e8826129e66111f9565b6129f091906142e6565b6129fa9190614354565b9050600b548114612a0d5780600b819055505b5050505b600d5f9054906101000a900460ff1615612b3c577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612a8e5750815f0160019054906101000a900460ff16155b8015612a9b5750600a5483115b15612ad2576040517fa504b6d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f0160019054906101000a900460ff16158015612b045750600b54612af78561147f565b84612b0291906140f2565b115b15612b3b576040517ffd42866100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f60116004015490505f6010548210159050808015612b665750600f5f9054906101000a900460ff165b8015612bbe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b8015612be5575060255f4381526020019081526020015f205f9054906101000a900460ff16155b15612c2057600160255f4381526020019081526020015f205f6101000a81548160ff021916908315150217905550612c1f82601054613150565b5b835f015f9054906101000a900460ff16158015612c4a5750825f015f9054906101000a900460ff16155b1561313b575f601690505f601b9050602260039054906101000a900460ff16612fd7575f60095442612c7c9190614125565b9050602260029054906101000a900460ff16158015612c9d57506201518081115b15612d6e575f83600301548460040154612cb79190614125565b90505f8103612cd7575f84600401819055505f8460030181905550612cf7565b600181612ce491906140f2565b8460040181905550600184600301819055505b5f83600301548460040154612d0c9190614125565b90505f8103612d2c575f84600401819055505f8460030181905550612d4c565b600181612d3991906140f2565b8460040181905550600184600301819055505b6001602260026101000a81548160ff0219169083151502179055505050612fd5565b6228de80811115612de7578260030154836004015f828254612d909190614125565b925050819055508160030154826004015f828254612dae9190614125565b925050819055505f83600301819055505f82600301819055506001602260036101000a81548160ff021916908315150217905550612fd4565b60225f9054906101000a900460ff16612edc575f60205490505f819050610709831015612e2a57607883612e1b9190614354565b600f612e279190614125565b90505b818111612e8e5781856004018190555084600301548560010154866002015484612e549190614125565b612e5e9190614125565b612e689190614125565b855f0181905550600160225f6101000a81548160ff021916908315150217905550612ed9565b84600401548114612ed85780856004018190555084600301548560010154866002015483612ebc9190614125565b612ec69190614125565b612ed09190614125565b855f01819055505b5b50505b602260019054906101000a900460ff16612fd3575f60215490505f819050610961831015612f2057607883612f119190614354565b6014612f1d9190614125565b90505b818111612f855781846004018190555083600301548460010154856002015484612f4a9190614125565b612f549190614125565b612f5e9190614125565b845f01819055506001602260016101000a81548160ff021916908315150217905550612fd0565b83600401548114612fcf5780846004018190555083600301548460010154856002015483612fb39190614125565b612fbd9190614125565b612fc79190614125565b845f01819055505b5b50505b5b5b505b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff160361307857613071826040518060a00160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505089613671565b9050613115565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff160361311457613111836040518060a00160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505089613671565b90505b5b5f8111156131375780886131299190614125565b97506131368a308361219e565b5b5050505b61314687878761219e565b505050505b505050565b6002600e819055505f601190506131656139be565b83825f01548461317591906142e6565b61317f9190614354565b815f0181815250508382600101548461319891906142e6565b6131a29190614354565b816020018181525050838260020154846131bc91906142e6565b6131c69190614354565b816040018181525050838260030154846131e091906142e6565b6131ea9190614354565b8160600181815250505f600282604001516132059190614354565b905080846132139190614125565b8260800181815250505f61322a83608001516137a0565b90506132346139be565b8360800151845f01518361324891906142e6565b6132529190614354565b815f0181815250505f815f015111156132f05760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815f01516040516132ad906143b1565b5f6040518083038185875af1925050503d805f81146132e7576040519150601f19603f3d011682016040523d82523d5f602084013e6132ec565b606091505b5050505b836080015184602001518361330591906142e6565b61330f9190614354565b8160200181815250505f816020015111156133b05760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816020015160405161336d906143b1565b5f6040518083038185875af1925050503d805f81146133a7576040519150601f19603f3d011682016040523d82523d5f602084013e6133ac565b606091505b5050505b83608001518460600151836133c591906142e6565b6133cf9190614354565b8160600181815250505f81606001511115613515575f600282606001516133f69190614354565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168160405161343c906143b1565b5f6040518083038185875af1925050503d805f8114613476576040519150601f19603f3d011682016040523d82523d5f602084013e61347b565b606091505b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168183606001516134c59190614125565b6040516134d1906143b1565b5f6040518083038185875af1925050503d805f811461350b576040519150601f19603f3d011682016040523d82523d5f602084013e613510565b606091505b505050505b5f478260400181815250505f8411801561353257505f8260400151115b156135885761354884836040015161dead611e9c565b90507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684836040015160405161357f9291906144e2565b60405180910390a15b5f81856135959190614125565b86604001516135a49190614125565b9050855f0151875f015f8282546135bb9190614125565b925050819055508560200151876001015f8282546135d99190614125565b9250508190555080876002015f8282546135f39190614125565b925050819055508560600151876003015f8282546136119190614125565b925050819055508086606001518760200151885f015161363191906140f2565b61363b91906140f2565b61364591906140f2565b876004015f8282546136579190614125565b92505081905550505050505050506001600e819055505050565b5f8083608001511461379a57606483608001518361368f91906142e6565b6136999190614354565b90505f601190508360800151845f0151836136b491906142e6565b6136be9190614354565b815f015f8282546136cf91906140f2565b9250508190555083608001518460200151836136eb91906142e6565b6136f59190614354565b816001015f82825461370791906140f2565b92505081905550836080015184604001518361372391906142e6565b61372d9190614354565b816002015f82825461373f91906140f2565b92505081905550836080015184606001518361375b91906142e6565b6137659190614354565b816003015f82825461377791906140f2565b9250508190555081816004015f82825461379191906140f2565b92505081905550505b92915050565b5f804790505f600267ffffffffffffffff8111156137c1576137c0613d6c565b5b6040519080825280602002602001820160405280156137ef5781602001602082028036833780820191505090505b50905030815f81518110613806576138056142b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138cd919061451d565b816001815181106138e1576138e06142b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947855f8430426040518663ffffffff1660e01b815260040161397c9594939291906145ff565b5f604051808303815f87803b158015613993575f80fd5b505af11580156139a5573d5f803e3d5ffd5b5050505081476139b59190614125565b92505050919050565b6040518060a001604052805f81526020015f81526020015f81526020015f81526020015f81525090565b5f8115159050919050565b6139fc816139e8565b82525050565b5f602082019050613a155f8301846139f3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613a5d82613a1b565b613a678185613a25565b9350613a77818560208601613a35565b613a8081613a43565b840191505092915050565b5f6020820190508181035f830152613aa38184613a53565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613ae582613abc565b9050919050565b613af581613adb565b8114613aff575f80fd5b50565b5f81359050613b1081613aec565b92915050565b5f819050919050565b613b2881613b16565b8114613b32575f80fd5b50565b5f81359050613b4381613b1f565b92915050565b5f8060408385031215613b5f57613b5e613ab4565b5b5f613b6c85828601613b02565b9250506020613b7d85828601613b35565b9150509250929050565b5f819050919050565b5f613baa613ba5613ba084613abc565b613b87565b613abc565b9050919050565b5f613bbb82613b90565b9050919050565b5f613bcc82613bb1565b9050919050565b613bdc81613bc2565b82525050565b5f602082019050613bf55f830184613bd3565b92915050565b613c0481613b16565b82525050565b5f602082019050613c1d5f830184613bfb565b92915050565b5f60208284031215613c3857613c37613ab4565b5b5f613c4584828501613b02565b91505092915050565b5f606082019050613c615f8301866139f3565b613c6e60208301856139f3565b613c7b6040830184613bfb565b949350505050565b5f613c8d82613abc565b9050919050565b613c9d81613c83565b82525050565b5f602082019050613cb65f830184613c94565b92915050565b5f805f60608486031215613cd357613cd2613ab4565b5b5f613ce086828701613b02565b9350506020613cf186828701613b02565b9250506040613d0286828701613b35565b9150509250925092565b5f60ff82169050919050565b613d2181613d0c565b82525050565b5f602082019050613d3a5f830184613d18565b92915050565b613d4981613adb565b82525050565b5f602082019050613d625f830184613d40565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613da282613a43565b810181811067ffffffffffffffff82111715613dc157613dc0613d6c565b5b80604052505050565b5f613dd3613aab565b9050613ddf8282613d99565b919050565b5f67ffffffffffffffff821115613dfe57613dfd613d6c565b5b602082029050602081019050919050565b5f80fd5b5f613e25613e2084613de4565b613dca565b90508083825260208201905060208402830185811115613e4857613e47613e0f565b5b835b81811015613e715780613e5d8882613b02565b845260208401935050602081019050613e4a565b5050509392505050565b5f82601f830112613e8f57613e8e613d68565b5b8135613e9f848260208601613e13565b91505092915050565b5f60208284031215613ebd57613ebc613ab4565b5b5f82013567ffffffffffffffff811115613eda57613ed9613ab8565b5b613ee684828501613e7b565b91505092915050565b5f60208284031215613f0457613f03613ab4565b5b5f613f1184828501613b35565b91505092915050565b613f23816139e8565b8114613f2d575f80fd5b50565b5f81359050613f3e81613f1a565b92915050565b5f8060408385031215613f5a57613f59613ab4565b5b5f613f6785828601613b02565b9250506020613f7885828601613f30565b9150509250929050565b5f60208284031215613f9757613f96613ab4565b5b5f613fa484828501613f30565b91505092915050565b5f60a082019050613fc05f830188613bfb565b613fcd6020830187613bfb565b613fda6040830186613bfb565b613fe76060830185613bfb565b613ff46080830184613bfb565b9695505050505050565b5f805f805f8060c0878903121561401857614017613ab4565b5b5f61402589828a01613b35565b965050602061403689828a01613b35565b955050604061404789828a01613b35565b945050606061405889828a01613b35565b935050608061406989828a01613b35565b92505060a061407a89828a01613b35565b9150509295509295509295565b5f806040838503121561409d5761409c613ab4565b5b5f6140aa85828601613b02565b92505060206140bb85828601613b02565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6140fc82613b16565b915061410783613b16565b925082820190508082111561411f5761411e6140c5565b5b92915050565b5f61412f82613b16565b915061413a83613b16565b9250828203905081811115614152576141516140c5565b5b92915050565b5f8151905061416681613b1f565b92915050565b5f6020828403121561418157614180613ab4565b5b5f61418e84828501614158565b91505092915050565b5f6040820190506141aa5f830185613d40565b6141b76020830184613bfb565b9392505050565b5f815190506141cc81613f1a565b92915050565b5f602082840312156141e7576141e6613ab4565b5b5f6141f4848285016141be565b91505092915050565b5f60c0820190506142105f830189613d40565b61421d6020830188613d40565b61422a6040830187613bfb565b6142376060830186613bfb565b61424460808301856139f3565b61425160a0830184613d40565b979650505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806142a057607f821691505b6020821081036142b3576142b261425c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6142f082613b16565b91506142fb83613b16565b925082820261430981613b16565b915082820484148315176143205761431f6140c5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61435e82613b16565b915061436983613b16565b92508261437957614378614327565b5b828204905092915050565b5f81905092915050565b50565b5f61439c5f83614384565b91506143a78261438e565b5f82019050919050565b5f6143bb82614391565b9150819050919050565b5f819050919050565b5f6143e86143e36143de846143c5565b613b87565b613b16565b9050919050565b6143f8816143ce565b82525050565b5f60c0820190506144115f830189613d40565b61441e6020830188613bfb565b61442b60408301876143ef565b61443860608301866143ef565b6144456080830185613d40565b61445260a0830184613bfb565b979650505050505050565b5f805f6060848603121561447457614473613ab4565b5b5f61448186828701614158565b935050602061449286828701614158565b92505060406144a386828701614158565b9150509250925092565b5f6060820190506144c05f830186613d40565b6144cd6020830185613bfb565b6144da6040830184613bfb565b949350505050565b5f6040820190506144f55f830185613bfb565b6145026020830184613bfb565b9392505050565b5f8151905061451781613aec565b92915050565b5f6020828403121561453257614531613ab4565b5b5f61453f84828501614509565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61457a81613adb565b82525050565b5f61458b8383614571565b60208301905092915050565b5f602082019050919050565b5f6145ad82614548565b6145b78185614552565b93506145c283614562565b805f5b838110156145f25781516145d98882614580565b97506145e483614597565b9250506001810190506145c5565b5085935050505092915050565b5f60a0820190506146125f830188613bfb565b61461f60208301876143ef565b818103604083015261463181866145a3565b90506146406060830185613d40565b61464d6080830184613bfb565b969550505050505056fea2646970667358221220ab77e9392de87fd7ff0f053ba328fc6cdd7c26590187c3c5b09690d07097236d64736f6c634300081a003300000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000010e0198eaee00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000000000000000000500000000000000000000000017f29b0ac7b0a3ddc19004fe2cb954c2c2553842000000000000000000000000ccafd46c156751da018041a43ba17d8f35c78111000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e000000000000000000000000377e168af6a06075423aede50856de177efaac3e00000000000000000000000000000000000000000000000000000000000000115768697370657273204f6620446563617900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044443415900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103a5575f3560e01c806387f86db7116101e6578063cb29813c1161010c578063ea8a1af01161009f578063f8b45b051161006e578063f8b45b0514610d22578063f8f9892814610d4c578063f954662114610d74578063f9f4bfdd14610d9e576103ac565b8063ea8a1af014610c92578063ec28438a14610ca8578063f2fde38b14610cd0578063f66a79a014610cf8576103ac565b8063e0f3ccf5116100db578063e0f3ccf514610be4578063e2f4560514610c12578063e4748b9e14610c3c578063ea1644d514610c6a576103ac565b8063cb29813c14610b2e578063d0a5eb4e14610b56578063dd62ed3e14610b7e578063de35eb2414610bba576103ac565b80639ff77da411610184578063baae066611610153578063baae066614610a86578063bee0d6ad14610aae578063bf56b37114610adc578063c49b9a8014610b06576103ac565b80639ff77da4146109ba578063a8aa1b31146109f6578063a9059cbb14610a20578063acb52a9814610a5c576103ac565b80638d7a8ba7116101c05780638d7a8ba7146109165780638da5cb5b1461093e5780638ebfc7961461096857806395d89b4114610990576103ac565b806387f86db71461089857806388cda873146108c25780638c0b5e22146108ec576103ac565b806344de2e4c116102cb5780636402511e11610269578063715018a611610238578063715018a6146108185780638183b3c81461082e578063838420131461084457806383ebc78d1461086e576103ac565b80636402511e1461076057806367dd0179146107885780636ddd1713146107b257806370a08231146107dc576103ac565b806353027501116102a557806353027501146106ba57806354fd4d50146106e45780635ace11221461070e5780636101f1f814610736576103ac565b806344de2e4c1461063e5780634a829e79146106685780634b78286a14610692576103ac565b80631959a002116103435780632ffe729a116103125780632ffe729a14610596578063313ce567146105c057806332a8db87146105ea5780633675f29b14610614576103ac565b80631959a002146104c857806323b62b751461050657806323b872dd146105305780632b112e491461056c576103ac565b8063095ea7b31161037f578063095ea7b31461040e5780631694505e1461044a5780631732cded1461047457806318160ddd1461049e576103ac565b806301339c21146103b0578063064a59d0146103ba57806306fdde03146103e4576103ac565b366103ac57005b5f80fd5b6103b8610dc8565b005b3480156103c5575f80fd5b506103ce61110a565b6040516103db9190613a02565b60405180910390f35b3480156103ef575f80fd5b506103f861111d565b6040516104059190613a8b565b60405180910390f35b348015610419575f80fd5b50610434600480360381019061042f9190613b49565b6111ad565b6040516104419190613a02565b60405180910390f35b348015610455575f80fd5b5061045e6111cf565b60405161046b9190613be2565b60405180910390f35b34801561047f575f80fd5b506104886111f3565b6040516104959190613c0a565b60405180910390f35b3480156104a9575f80fd5b506104b26111f9565b6040516104bf9190613c0a565b60405180910390f35b3480156104d3575f80fd5b506104ee60048036038101906104e99190613c23565b611202565b6040516104fd93929190613c4e565b60405180910390f35b348015610511575f80fd5b5061051a611240565b6040516105279190613ca3565b60405180910390f35b34801561053b575f80fd5b5061055660048036038101906105519190613cbc565b611265565b6040516105639190613a02565b60405180910390f35b348015610577575f80fd5b50610580611293565b60405161058d9190613c0a565b60405180910390f35b3480156105a1575f80fd5b506105aa6112b6565b6040516105b79190613c0a565b60405180910390f35b3480156105cb575f80fd5b506105d46112bc565b6040516105e19190613d27565b60405180910390f35b3480156105f5575f80fd5b506105fe6112c4565b60405161060b9190613c0a565b60405180910390f35b34801561061f575f80fd5b506106286112ca565b6040516106359190613d4f565b60405180910390f35b348015610649575f80fd5b506106526112ee565b60405161065f9190613a02565b60405180910390f35b348015610673575f80fd5b5061067c611300565b6040516106899190613a02565b60405180910390f35b34801561069d575f80fd5b506106b860048036038101906106b39190613c23565b611313565b005b3480156106c5575f80fd5b506106ce61135e565b6040516106db9190613a02565b60405180910390f35b3480156106ef575f80fd5b506106f8611370565b6040516107059190613d27565b60405180910390f35b348015610719575f80fd5b50610734600480360381019061072f9190613ea8565b611378565b005b348015610741575f80fd5b5061074a611413565b6040516107579190613ca3565b60405180910390f35b34801561076b575f80fd5b5061078660048036038101906107819190613eef565b611437565b005b348015610793575f80fd5b5061079c611449565b6040516107a99190613ca3565b60405180910390f35b3480156107bd575f80fd5b506107c661146d565b6040516107d39190613a02565b60405180910390f35b3480156107e7575f80fd5b5061080260048036038101906107fd9190613c23565b61147f565b60405161080f9190613c0a565b60405180910390f35b348015610823575f80fd5b5061082c6114c4565b005b348015610839575f80fd5b506108426114d7565b005b34801561084f575f80fd5b5061085861150b565b6040516108659190613a02565b60405180910390f35b348015610879575f80fd5b5061088261151e565b60405161088f9190613c0a565b60405180910390f35b3480156108a3575f80fd5b506108ac611524565b6040516108b99190613a02565b60405180910390f35b3480156108cd575f80fd5b506108d6611537565b6040516108e39190613a02565b60405180910390f35b3480156108f7575f80fd5b5061090061154a565b60405161090d9190613c0a565b60405180910390f35b348015610921575f80fd5b5061093c60048036038101906109379190613f44565b611550565b005b348015610949575f80fd5b506109526115b3565b60405161095f9190613d4f565b60405180910390f35b348015610973575f80fd5b5061098e60048036038101906109899190613f44565b6115db565b005b34801561099b575f80fd5b506109a461163d565b6040516109b19190613a8b565b60405180910390f35b3480156109c5575f80fd5b506109e060048036038101906109db9190613eef565b6116cd565b6040516109ed9190613a02565b60405180910390f35b348015610a01575f80fd5b50610a0a6116ea565b604051610a179190613d4f565b60405180910390f35b348015610a2b575f80fd5b50610a466004803603810190610a419190613b49565b61170e565b604051610a539190613a02565b60405180910390f35b348015610a67575f80fd5b50610a70611730565b604051610a7d9190613c0a565b60405180910390f35b348015610a91575f80fd5b50610aac6004803603810190610aa79190613f82565b611736565b005b348015610ab9575f80fd5b50610ac261175a565b604051610ad3959493929190613fad565b60405180910390f35b348015610ae7575f80fd5b50610af061177d565b604051610afd9190613c0a565b60405180910390f35b348015610b11575f80fd5b50610b2c6004803603810190610b279190613f82565b611783565b005b348015610b39575f80fd5b50610b546004803603810190610b4f9190613ffe565b6117de565b005b348015610b61575f80fd5b50610b7c6004803603810190610b779190613c23565b61193b565b005b348015610b89575f80fd5b50610ba46004803603810190610b9f9190614087565b611986565b604051610bb19190613c0a565b60405180910390f35b348015610bc5575f80fd5b50610bce611a08565b604051610bdb9190613c0a565b60405180910390f35b348015610bef575f80fd5b50610bf8611a2c565b604051610c09959493929190613fad565b60405180910390f35b348015610c1d575f80fd5b50610c26611a4f565b604051610c339190613c0a565b60405180910390f35b348015610c47575f80fd5b50610c50611a55565b604051610c61959493929190613fad565b60405180910390f35b348015610c75575f80fd5b50610c906004803603810190610c8b9190613eef565b611a78565b005b348015610c9d575f80fd5b50610ca6611b34565b005b348015610cb3575f80fd5b50610cce6004803603810190610cc99190613eef565b611c00565b005b348015610cdb575f80fd5b50610cf66004803603810190610cf19190613c23565b611ca1565b005b348015610d03575f80fd5b50610d0c611d25565b604051610d199190613ca3565b60405180910390f35b348015610d2d575f80fd5b50610d36611d4a565b604051610d439190613c0a565b60405180910390f35b348015610d57575f80fd5b50610d726004803603810190610d6d9190613ea8565b611d50565b005b348015610d7f575f80fd5b50610d88611dea565b604051610d959190613c0a565b60405180910390f35b348015610da9575f80fd5b50610db2611df0565b604051610dbf9190613a02565b60405180910390f35b610dd0611e03565b6002600e819055505f60095414610e13576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a43610e2091906140f2565b600881905550426009819055506001600760146101000a81548160ff021916908315150217905550610e93307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e8a565b610eb1610e9f3061147f565b3447610eab9190614125565b30611e9c565b505f7f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f0c9190613d4f565b602060405180830381865afa158015610f27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4b919061416c565b90507f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c73ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb836040518363ffffffff1660e01b8152600401610fc8929190614197565b6020604051808303815f875af1158015610fe4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061100891906141d2565b507f000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb73ffffffffffffffffffffffffffffffffffffffff16635af06fed347f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c33857f0000000000000000000000000000000000000000000000000000000001e133804261109591906140f2565b5f806040518863ffffffff1660e01b81526004016110b8969594939291906141fd565b60206040518083038185885af11580156110d4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906110f9919061416c565b602381905550506001600e81905550565b600760149054906101000a900460ff1681565b60606003805461112c90614289565b80601f016020809104026020016040519081016040528092919081815260200182805461115890614289565b80156111a35780601f1061117a576101008083540402835291602001916111a3565b820191905f5260205f20905b81548152906001019060200180831161118657829003601f168201915b5050505050905090565b5f806111b7611f52565b90506111c4818585611e8a565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e5481565b5f600254905090565b6024602052805f5260405f205f91509050805f015f9054906101000a900460ff1690805f0160019054906101000a900460ff16908060010154905083565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8061126f611f52565b905061127c858285611f59565b611287858585611feb565b60019150509392505050565b5f61129f61dead61147f565b6112a76111f9565b6112b19190614125565b905090565b600c5481565b5f6009905090565b60215481565b7f000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb81565b600d5f9054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b61131b611e03565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60225f9054906101000a900460ff1681565b5f6002905090565b611380611e03565b5f815190505f5b8181101561140e57600160245f8584815181106113a7576113a66142b9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055508080600101915050611387565b505050565b7f000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e81565b61143f611e03565b8060108190555050565b7f000000000000000000000000377e168af6a06075423aede50856de177efaac3e81565b600f5f9054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6114cc611e03565b6114d55f6120db565b565b6114df611e03565b611509306114eb611f52565b6011600401546114fa3061147f565b6115049190614125565b61219e565b565b602260039054906101000a900460ff1681565b60205481565b600760159054906101000a900460ff1681565b602260029054906101000a900460ff1681565b600a5481565b611558611e03565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160016101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e3611e03565b8060245f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055505050565b60606004805461164c90614289565b80601f016020809104026020016040519081016040528092919081815260200182805461167890614289565b80156116c35780601f1061169a576101008083540402835291602001916116c3565b820191905f5260205f20905b8154815290600101906020018083116116a657829003601f168201915b5050505050905090565b6025602052805f5260405f205f915054906101000a900460ff1681565b7f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c81565b5f80611718611f52565b9050611725818585611feb565b600191505092915050565b60085481565b61173e611e03565b80600d5f6101000a81548160ff02191690831515021790555050565b6011805f0154908060010154908060020154908060030154908060040154905085565b60095481565b61178b611e03565b80600f5f6101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516117d39190613a02565b60405180910390a150565b6117e6611e03565b60225f9054906101000a900460ff16158061180e5750602260019054906101000a900460ff16155b15611845576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61184d6139be565b8681604001818152505085815f018181525050848160200181815250506118726139be565b8481604001818152505083815f018181525050828160200181815250505f600954036118a0576002806118a9565b6118a86123b7565b5b8360600183606001828152508281525050506118c5828261243c565b8160165f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015590505080601b5f820151815f0155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505050505050505050565b611943611e03565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f0000000000000000000000000000000000000000000000000000000001e1338081565b601b805f0154908060010154908060020154908060030154908060040154905085565b60105481565b6016805f0154908060010154908060020154908060030154908060040154905085565b611a80611e03565b5f6009541480611aaf57506103e86005611a986111f9565b611aa291906142e6565b611aac9190614354565b81105b80611ad8575060646003611ac16111f9565b611acb91906142e6565b611ad59190614354565b81115b15611b0f576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b819055506001600d60016101000a81548160ff02191690831515021790555050565b611b3c611e03565b5f60095414611b77576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b9130611b836115b3565b611b8c3061147f565b61219e565b611b996115b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051611bbc906143b1565b5f6040518083038185875af1925050503d805f8114611bf6576040519150601f19603f3d011682016040523d82523d5f602084013e611bfb565b606091505b505050565b611c08611e03565b5f6009541480611c3757506103e86005611c206111f9565b611c2a91906142e6565b611c349190614354565b81105b80611c60575060646003611c496111f9565b611c5391906142e6565b611c5d9190614354565b81115b15611c97576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a8190555050565b611ca9611e03565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d19575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611d109190613d4f565b60405180910390fd5b611d22816120db565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b611d58611e03565b5f815190505f5b81811015611de557600160245f858481518110611d7f57611d7e6142b9565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f6101000a81548160ff0219169083151502179055508080600101915050611d5f565b505050565b60235481565b602260019054906101000a900460ff1681565b611e0b611f52565b73ffffffffffffffffffffffffffffffffffffffff16611e296115b3565b73ffffffffffffffffffffffffffffffffffffffff1614611e8857611e4c611f52565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611e7f9190613d4f565b60405180910390fd5b565b611e978383836001612554565b505050565b5f807f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198530885f8089426040518863ffffffff1660e01b8152600401611f02969594939291906143fe565b60606040518083038185885af1158015611f1e573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611f43919061445d565b50509050809150509392505050565b5f33905090565b5f611f648484611986565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fe55781811015611fd6578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611fcd939291906144ad565b60405180910390fd5b611fe484848484035f612554565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361205b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016120529190613d4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120cb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016120c29190613d4f565b60405180910390fd5b6120d6838383612723565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121ee578060025f8282546121e291906140f2565b925050819055506122bc565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612277578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161226e939291906144ad565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612303578060025f828254039250508190555061234d565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123aa9190613c0a565b60405180910390a3505050565b5f805f600954426123c89190614125565b90506228de808111156123fc576001602260036101000a81548160ff0219169083151502179055505f809250925050612438565b6201518081111561242f576001602260026101000a81548160ff0219169083151502179055506001809250925050612438565b60028092509250505b9091565b8160200151825f0151836040015161245491906140f2565b61245e91906140f2565b8260800181815250505f826080015103612481575f82606001818152505061249f565b81606001518260800181815161249791906140f2565b915081815250505b8060200151815f015182604001516124b791906140f2565b6124c191906140f2565b8160800181815250505f8160800151036124e4575f816060018181525050612502565b8060600151816080018181516124fa91906140f2565b915081815250505b600782608001511180612519575060078160800151115b15612550576040517fc52a9bd300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036125c4575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125bb9190613d4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612634575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161262b9190613d4f565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561271d578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516127149190613c0a565b60405180910390a35b50505050565b600760149054906101000a900460ff16612769576040517f12f1f92300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600e5414806127ac575061277d6115b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806127e957506127ba6115b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b806127f357505f81145b156128085761280383838361219e565b61314b565b5f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f60245f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050600760159054906101000a900460ff161561296e57600854431015612952575f60245f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f600182600101546128f991906140f2565b9050438111156129425743816040517f4a24f3d20000000000000000000000000000000000000000000000000000000081526004016129399291906144e2565b60405180910390fd5b438260010181905550505061296d565b5f600760156101000a81548160ff0219169083151502179055505b5b600d60019054906101000a900460ff16612a11575f600954426129919190614125565b90505f6078826129a19190614354565b600c546129ae91906140f2565b905060098111156129d957600a90506001600d60016101000a81548160ff0219169083151502179055505b5f6103e8826129e66111f9565b6129f091906142e6565b6129fa9190614354565b9050600b548114612a0d5780600b819055505b5050505b600d5f9054906101000a900460ff1615612b3c577f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015612a8e5750815f0160019054906101000a900460ff16155b8015612a9b5750600a5483115b15612ad2576040517fa504b6d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f0160019054906101000a900460ff16158015612b045750600b54612af78561147f565b84612b0291906140f2565b115b15612b3b576040517ffd42866100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f60116004015490505f6010548210159050808015612b665750600f5f9054906101000a900460ff165b8015612bbe57507f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b8015612be5575060255f4381526020019081526020015f205f9054906101000a900460ff16155b15612c2057600160255f4381526020019081526020015f205f6101000a81548160ff021916908315150217905550612c1f82601054613150565b5b835f015f9054906101000a900460ff16158015612c4a5750825f015f9054906101000a900460ff16155b1561313b575f601690505f601b9050602260039054906101000a900460ff16612fd7575f60095442612c7c9190614125565b9050602260029054906101000a900460ff16158015612c9d57506201518081115b15612d6e575f83600301548460040154612cb79190614125565b90505f8103612cd7575f84600401819055505f8460030181905550612cf7565b600181612ce491906140f2565b8460040181905550600184600301819055505b5f83600301548460040154612d0c9190614125565b90505f8103612d2c575f84600401819055505f8460030181905550612d4c565b600181612d3991906140f2565b8460040181905550600184600301819055505b6001602260026101000a81548160ff0219169083151502179055505050612fd5565b6228de80811115612de7578260030154836004015f828254612d909190614125565b925050819055508160030154826004015f828254612dae9190614125565b925050819055505f83600301819055505f82600301819055506001602260036101000a81548160ff021916908315150217905550612fd4565b60225f9054906101000a900460ff16612edc575f60205490505f819050610709831015612e2a57607883612e1b9190614354565b600f612e279190614125565b90505b818111612e8e5781856004018190555084600301548560010154866002015484612e549190614125565b612e5e9190614125565b612e689190614125565b855f0181905550600160225f6101000a81548160ff021916908315150217905550612ed9565b84600401548114612ed85780856004018190555084600301548560010154866002015483612ebc9190614125565b612ec69190614125565b612ed09190614125565b855f01819055505b5b50505b602260019054906101000a900460ff16612fd3575f60215490505f819050610961831015612f2057607883612f119190614354565b6014612f1d9190614125565b90505b818111612f855781846004018190555083600301548460010154856002015484612f4a9190614125565b612f549190614125565b612f5e9190614125565b845f01819055506001602260016101000a81548160ff021916908315150217905550612fd0565b83600401548114612fcf5780846004018190555083600301548460010154856002015483612fb39190614125565b612fbd9190614125565b612fc79190614125565b845f01819055505b5b50505b5b5b505b5f7f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff160361307857613071826040518060a00160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505089613671565b9050613115565b7f00000000000000000000000091924534d1001c9e5a652816bc9728600bf9c45c73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff160361311457613111836040518060a00160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505089613671565b90505b5b5f8111156131375780886131299190614125565b97506131368a308361219e565b5b5050505b61314687878761219e565b505050505b505050565b6002600e819055505f601190506131656139be565b83825f01548461317591906142e6565b61317f9190614354565b815f0181815250508382600101548461319891906142e6565b6131a29190614354565b816020018181525050838260020154846131bc91906142e6565b6131c69190614354565b816040018181525050838260030154846131e091906142e6565b6131ea9190614354565b8160600181815250505f600282604001516132059190614354565b905080846132139190614125565b8260800181815250505f61322a83608001516137a0565b90506132346139be565b8360800151845f01518361324891906142e6565b6132529190614354565b815f0181815250505f815f015111156132f05760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815f01516040516132ad906143b1565b5f6040518083038185875af1925050503d805f81146132e7576040519150601f19603f3d011682016040523d82523d5f602084013e6132ec565b606091505b5050505b836080015184602001518361330591906142e6565b61330f9190614354565b8160200181815250505f816020015111156133b05760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816020015160405161336d906143b1565b5f6040518083038185875af1925050503d805f81146133a7576040519150601f19603f3d011682016040523d82523d5f602084013e6133ac565b606091505b5050505b83608001518460600151836133c591906142e6565b6133cf9190614354565b8160600181815250505f81606001511115613515575f600282606001516133f69190614354565b90507f000000000000000000000000377e168af6a06075423aede50856de177efaac3e73ffffffffffffffffffffffffffffffffffffffff168160405161343c906143b1565b5f6040518083038185875af1925050503d805f8114613476576040519150601f19603f3d011682016040523d82523d5f602084013e61347b565b606091505b5050507f000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e73ffffffffffffffffffffffffffffffffffffffff168183606001516134c59190614125565b6040516134d1906143b1565b5f6040518083038185875af1925050503d805f811461350b576040519150601f19603f3d011682016040523d82523d5f602084013e613510565b606091505b505050505b5f478260400181815250505f8411801561353257505f8260400151115b156135885761354884836040015161dead611e9c565b90507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684836040015160405161357f9291906144e2565b60405180910390a15b5f81856135959190614125565b86604001516135a49190614125565b9050855f0151875f015f8282546135bb9190614125565b925050819055508560200151876001015f8282546135d99190614125565b9250508190555080876002015f8282546135f39190614125565b925050819055508560600151876003015f8282546136119190614125565b925050819055508086606001518760200151885f015161363191906140f2565b61363b91906140f2565b61364591906140f2565b876004015f8282546136579190614125565b92505081905550505050505050506001600e819055505050565b5f8083608001511461379a57606483608001518361368f91906142e6565b6136999190614354565b90505f601190508360800151845f0151836136b491906142e6565b6136be9190614354565b815f015f8282546136cf91906140f2565b9250508190555083608001518460200151836136eb91906142e6565b6136f59190614354565b816001015f82825461370791906140f2565b92505081905550836080015184604001518361372391906142e6565b61372d9190614354565b816002015f82825461373f91906140f2565b92505081905550836080015184606001518361375b91906142e6565b6137659190614354565b816003015f82825461377791906140f2565b9250508190555081816004015f82825461379191906140f2565b92505081905550505b92915050565b5f804790505f600267ffffffffffffffff8111156137c1576137c0613d6c565b5b6040519080825280602002602001820160405280156137ef5781602001602082028036833780820191505090505b50905030815f81518110613806576138056142b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138cd919061451d565b816001815181106138e1576138e06142b9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947855f8430426040518663ffffffff1660e01b815260040161397c9594939291906145ff565b5f604051808303815f87803b158015613993575f80fd5b505af11580156139a5573d5f803e3d5ffd5b5050505081476139b59190614125565b92505050919050565b6040518060a001604052805f81526020015f81526020015f81526020015f81526020015f81525090565b5f8115159050919050565b6139fc816139e8565b82525050565b5f602082019050613a155f8301846139f3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613a5d82613a1b565b613a678185613a25565b9350613a77818560208601613a35565b613a8081613a43565b840191505092915050565b5f6020820190508181035f830152613aa38184613a53565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613ae582613abc565b9050919050565b613af581613adb565b8114613aff575f80fd5b50565b5f81359050613b1081613aec565b92915050565b5f819050919050565b613b2881613b16565b8114613b32575f80fd5b50565b5f81359050613b4381613b1f565b92915050565b5f8060408385031215613b5f57613b5e613ab4565b5b5f613b6c85828601613b02565b9250506020613b7d85828601613b35565b9150509250929050565b5f819050919050565b5f613baa613ba5613ba084613abc565b613b87565b613abc565b9050919050565b5f613bbb82613b90565b9050919050565b5f613bcc82613bb1565b9050919050565b613bdc81613bc2565b82525050565b5f602082019050613bf55f830184613bd3565b92915050565b613c0481613b16565b82525050565b5f602082019050613c1d5f830184613bfb565b92915050565b5f60208284031215613c3857613c37613ab4565b5b5f613c4584828501613b02565b91505092915050565b5f606082019050613c615f8301866139f3565b613c6e60208301856139f3565b613c7b6040830184613bfb565b949350505050565b5f613c8d82613abc565b9050919050565b613c9d81613c83565b82525050565b5f602082019050613cb65f830184613c94565b92915050565b5f805f60608486031215613cd357613cd2613ab4565b5b5f613ce086828701613b02565b9350506020613cf186828701613b02565b9250506040613d0286828701613b35565b9150509250925092565b5f60ff82169050919050565b613d2181613d0c565b82525050565b5f602082019050613d3a5f830184613d18565b92915050565b613d4981613adb565b82525050565b5f602082019050613d625f830184613d40565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613da282613a43565b810181811067ffffffffffffffff82111715613dc157613dc0613d6c565b5b80604052505050565b5f613dd3613aab565b9050613ddf8282613d99565b919050565b5f67ffffffffffffffff821115613dfe57613dfd613d6c565b5b602082029050602081019050919050565b5f80fd5b5f613e25613e2084613de4565b613dca565b90508083825260208201905060208402830185811115613e4857613e47613e0f565b5b835b81811015613e715780613e5d8882613b02565b845260208401935050602081019050613e4a565b5050509392505050565b5f82601f830112613e8f57613e8e613d68565b5b8135613e9f848260208601613e13565b91505092915050565b5f60208284031215613ebd57613ebc613ab4565b5b5f82013567ffffffffffffffff811115613eda57613ed9613ab8565b5b613ee684828501613e7b565b91505092915050565b5f60208284031215613f0457613f03613ab4565b5b5f613f1184828501613b35565b91505092915050565b613f23816139e8565b8114613f2d575f80fd5b50565b5f81359050613f3e81613f1a565b92915050565b5f8060408385031215613f5a57613f59613ab4565b5b5f613f6785828601613b02565b9250506020613f7885828601613f30565b9150509250929050565b5f60208284031215613f9757613f96613ab4565b5b5f613fa484828501613f30565b91505092915050565b5f60a082019050613fc05f830188613bfb565b613fcd6020830187613bfb565b613fda6040830186613bfb565b613fe76060830185613bfb565b613ff46080830184613bfb565b9695505050505050565b5f805f805f8060c0878903121561401857614017613ab4565b5b5f61402589828a01613b35565b965050602061403689828a01613b35565b955050604061404789828a01613b35565b945050606061405889828a01613b35565b935050608061406989828a01613b35565b92505060a061407a89828a01613b35565b9150509295509295509295565b5f806040838503121561409d5761409c613ab4565b5b5f6140aa85828601613b02565b92505060206140bb85828601613b02565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6140fc82613b16565b915061410783613b16565b925082820190508082111561411f5761411e6140c5565b5b92915050565b5f61412f82613b16565b915061413a83613b16565b9250828203905081811115614152576141516140c5565b5b92915050565b5f8151905061416681613b1f565b92915050565b5f6020828403121561418157614180613ab4565b5b5f61418e84828501614158565b91505092915050565b5f6040820190506141aa5f830185613d40565b6141b76020830184613bfb565b9392505050565b5f815190506141cc81613f1a565b92915050565b5f602082840312156141e7576141e6613ab4565b5b5f6141f4848285016141be565b91505092915050565b5f60c0820190506142105f830189613d40565b61421d6020830188613d40565b61422a6040830187613bfb565b6142376060830186613bfb565b61424460808301856139f3565b61425160a0830184613d40565b979650505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806142a057607f821691505b6020821081036142b3576142b261425c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6142f082613b16565b91506142fb83613b16565b925082820261430981613b16565b915082820484148315176143205761431f6140c5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61435e82613b16565b915061436983613b16565b92508261437957614378614327565b5b828204905092915050565b5f81905092915050565b50565b5f61439c5f83614384565b91506143a78261438e565b5f82019050919050565b5f6143bb82614391565b9150819050919050565b5f819050919050565b5f6143e86143e36143de846143c5565b613b87565b613b16565b9050919050565b6143f8816143ce565b82525050565b5f60c0820190506144115f830189613d40565b61441e6020830188613bfb565b61442b60408301876143ef565b61443860608301866143ef565b6144456080830185613d40565b61445260a0830184613bfb565b979650505050505050565b5f805f6060848603121561447457614473613ab4565b5b5f61448186828701614158565b935050602061449286828701614158565b92505060406144a386828701614158565b9150509250925092565b5f6060820190506144c05f830186613d40565b6144cd6020830185613bfb565b6144da6040830184613bfb565b949350505050565b5f6040820190506144f55f830185613bfb565b6145026020830184613bfb565b9392505050565b5f8151905061451781613aec565b92915050565b5f6020828403121561453257614531613ab4565b5b5f61453f84828501614509565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61457a81613adb565b82525050565b5f61458b8383614571565b60208301905092915050565b5f602082019050919050565b5f6145ad82614548565b6145b78185614552565b93506145c283614562565b805f5b838110156145f25781516145d98882614580565b97506145e483614597565b9250506001810190506145c5565b5085935050505092915050565b5f60a0820190506146125f830188613bfb565b61461f60208301876143ef565b818103604083015261463181866145a3565b90506146406060830185613d40565b61464d6080830184613bfb565b969550505050505056fea2646970667358221220ab77e9392de87fd7ff0f053ba328fc6cdd7c26590187c3c5b09690d07097236d64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000010e0198eaee00000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c0000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000000000000000000500000000000000000000000017f29b0ac7b0a3ddc19004fe2cb954c2c2553842000000000000000000000000ccafd46c156751da018041a43ba17d8f35c78111000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e000000000000000000000000377e168af6a06075423aede50856de177efaac3e00000000000000000000000000000000000000000000000000000000000000115768697370657273204f6620446563617900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044443415900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Whispers Of Decay
Arg [1] : _symbol (string): DCAY
Arg [2] : _totalSupply (uint256): 76000000000000000
Arg [3] : _buyFees (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : _sellFees (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : _percentToLP (uint256): 60
Arg [6] : _lpLockDuration (uint256): 31536000
Arg [7] : _initMaxWallet (uint256): 5
Arg [8] : _mainWallet (address): 0x17f29B0AC7B0a3DDC19004Fe2Cb954C2c2553842
Arg [9] : _secondaryWallet (address): 0xcCafD46C156751Da018041a43bA17d8f35c78111
Arg [10] : _addresses (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
26 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [2] : 000000000000000000000000000000000000000000000000010e0198eaee0000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [14] : 0000000000000000000000000000000000000000000000000000000001e13380
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [16] : 00000000000000000000000017f29b0ac7b0a3ddc19004fe2cb954c2c2553842
Arg [17] : 000000000000000000000000ccafd46c156751da018041a43ba17d8f35c78111
Arg [18] : 000000000000000000000000e2fe530c047f2d85298b07d9333c05737f1435fb
Arg [19] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [20] : 000000000000000000000000e9b4d32f829951a3ce145d2caa84cf66af56ca5e
Arg [21] : 000000000000000000000000377e168af6a06075423aede50856de177efaac3e
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [23] : 5768697370657273204f66204465636179000000000000000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [25] : 4443415900000000000000000000000000000000000000000000000000000000
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.