Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 TRUMPUBLIC
Holders
25
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000255595262 TRUMPUBLICValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TRUMPUBLIC
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* _ //\ V \ \ \_ \,'.`-. |\ `. `. ( \ `. `-. _,.-:\ \ \ `. `-._ __..--' ,-';/ \ `. `-. `-..___..---' _.--' ,'/ `. `. `-._ __..--' ,' / `. `-_ ``--..'' _.-' ,' `-_ `-.___ __,--' ,' `-.__ `----""" __.-' bp `--..____..--' Save the Republic https://truthsocial.com/@realDonaldTrump/posts/112567105610284446 Socials: https://x.com/TRUMPUBLIConETH https://t.me/TRUMPUBLIC */ // SPDX-License-Identifier: MIT pragma solidity 0.8.25; /** * @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; } } /** * @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); } /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } 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); } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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; } interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); function getRoundData( uint80 _roundId ) external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); function latestRoundData() external view returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound); } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * 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); } } } } contract TRUMPUBLIC is Context, ERC20, Ownable { using SafeERC20 for IERC20; using Address for address; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; uint256 public buyTaxes; uint256 public sellTaxes; mapping(address => bool) public pair; mapping (address => bool) public _isExcludedFromFees; uint256 private start; uint256 private end; uint256 public swapTokensAtAmount; uint256 public initialDeploymentTime; bool public swapping; bool public taxDisabled; uint256 private maxWalletTimer; uint256 private started; uint256 private maxWallet; uint256 private _supply; address payable teamWallet; address payable trumpWallet; event TaxesSent( address taxWallet, uint256 ETHAmount ); event TaxesReduce( uint256 oldBuyTax, uint256 oldSellTax, uint256 newBuyTax, uint256 newSellTax ); event TradingPairAdded( address indexed newPair ); constructor() ERC20("Banana Republic", "TRUMPUBLIC") { uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Router address for Uniswap Mainnet uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); start = 0; teamWallet = payable(address(0xFe5B0985b1241ef807894707583a634B7d20A041)); // Team Wallet trumpWallet = payable(address(0x94845333028B1204Fbe14E1278Fd4Adde46B22ce)); // Trumps Wallet _supply = 1 * 10 ** 9 * 10 ** decimals(); buyTaxes = 300; sellTaxes = 300; maxWallet = ((_supply * 93) / 10000); // Max wallet of 0.93% of total supply swapTokensAtAmount = ((_supply * 25) / 10000); // Swap 0.25% of total supply _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(trumpWallet)] = true; _mint(address(this), (_supply * 7976) / 10000); _mint(address(payable(trumpWallet)), (_supply * 2024) / 10000); } receive() external payable { } function saveTheRepublic() public onlyOwner payable { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), balanceOf(address(this))); // add the liquidity uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, // slippage is unavoidable 0, // slippage is unavoidable msg.sender, block.timestamp ); start = block.number; initialDeploymentTime = block.timestamp; pair[uniswapV2Pair] = true; maxWalletTimer = 1800; emit TradingPairAdded(uniswapV2Pair); } function taxCheck() private { uint256 swapTime = block.timestamp; uint256 _buyTaxes = buyTaxes; uint256 _sellTaxes = sellTaxes; if(swapTime > initialDeploymentTime + 30 minutes) { buyTaxes = 0; sellTaxes = 0; taxDisabled = true; emit TaxesReduce(_buyTaxes, _sellTaxes, buyTaxes, sellTaxes); } else if(swapTime > initialDeploymentTime + 20 minutes) { buyTaxes = 10; sellTaxes = 10; emit TaxesReduce(_buyTaxes, _sellTaxes, buyTaxes, sellTaxes); } } function getPriceInUSD(uint256 _amount) public view returns (uint256) { // Import the Chainlink AggregatorV3Interface contract AggregatorV3Interface ethUsdPriceFeed = AggregatorV3Interface(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419); // ETH/USD Price Feed address pairAddress = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH()); (uint112 reserve0, uint112 reserve1, ) = IUniswapV2Pair(pairAddress).getReserves(); // Ensure non-zero reserves require(reserve0 > 0 && reserve1 > 0, "Reserves are zero"); uint256 tokenPriceInETH; if (address(this) < uniswapV2Router.WETH()) { // token is token0 tokenPriceInETH = (uint256(reserve1) * 10**decimals()) / reserve0; } else { // token is token1 tokenPriceInETH = (uint256(reserve0) * 10**decimals()) / reserve1; } // Get the price of ETH in USD from Chainlink (, int price,, ,) = ethUsdPriceFeed.latestRoundData(); uint8 chainlinkDecimals = ethUsdPriceFeed.decimals(); // Adjust for Chainlink's decimals uint256 adjustedEthPriceInUSD = uint256(price) * 10**(decimals() - chainlinkDecimals); uint256 tokenPrice = (tokenPriceInETH * adjustedEthPriceInUSD) / 10**decimals(); // Calculate the MC in USD uint256 mcUsd = ((tokenPrice * _amount) / 10 ** decimals()); return mcUsd; } function _update( address from, address to, uint256 amount ) internal override { uint256 transferValue; if(start != 0 && !taxDisabled && to != owner()) { taxCheck(); transferValue = getPriceInUSD(amount); } if(uniswapV2Pair == address(0) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { revert("Trading is not yet active"); } if((block.timestamp < (initialDeploymentTime + maxWalletTimer)) && to != address(0) && to != uniswapV2Pair && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) { uint256 balance = balanceOf(to); require(balance + amount <= maxWallet, "Transfer amount exceeds maximum wallet"); } uint256 contractTokenBalance = (balanceOf(address(this))); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if(taxDisabled && contractTokenBalance > 0) { canSwap = true; } if(canSwap && !swapping && pair[to] && from != address(uniswapV2Router) && from != owner() && to != owner() && !_isExcludedFromFees[to] && !_isExcludedFromFees[from] && transferValue >= 300) { contractTokenBalance = contractTokenBalance > swapTokensAtAmount ? swapTokensAtAmount : contractTokenBalance; swapping = true; swapTokensForEth(contractTokenBalance); uint256 taxAmount = address(this).balance; (bool success, ) = address(teamWallet).call{value: taxAmount}(""); require(success, "Failed to send marketing fee"); emit TaxesSent(address(teamWallet), taxAmount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || taxDisabled) { takeFee = false; super._update(from, to, amount); } else if(!pair[to] && !pair[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { takeFee = false; super._update(from, to, amount); } if(takeFee) { uint256 BuyFees = ((amount * buyTaxes) / 1000); uint256 SellFees = ((amount * sellTaxes) / 1000); // if sell if(pair[to] && sellTaxes > 0) { amount -= SellFees; super._update(from, address(this), SellFees); super._update(from, to, amount); } // if buy transfer else if(pair[from] && buyTaxes > 0) { amount -= BuyFees; super._update(from, address(this), BuyFees); super._update(from, to, amount); } else { super._update(from, to, amount); } } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","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"},{"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":"oldBuyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldSellTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"TaxesReduce","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"taxWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"ETHAmount","type":"uint256"}],"name":"TaxesSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPair","type":"address"}],"name":"TradingPairAdded","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":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buyTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"getPriceInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialDeploymentTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saveTheRepublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280600f81526020017f42616e616e612052657075626c696300000000000000000000000000000000008152506040518060400160405280600a81526020017f5452554d5055424c494300000000000000000000000000000000000000000000815250816003908161008b9190612158565b50806004908161009b9190612158565b5050505f6100ad61065160201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610208573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061022c9190612285565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102d69190612285565b6040518363ffffffff1660e01b81526004016102f39291906122bf565b6020604051808303815f875af115801561030f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103339190612285565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600c8190555073fe5b0985b1241ef807894707583a634b7d20a04160155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507394845333028b1204fbe14e1278fd4adde46b22ce60165f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061042f61065860201b60201c565b600a61043b919061244e565b633b9aca0061044a9190612498565b60148190555061012c60088190555061012c600981905550612710605d6014546104749190612498565b61047e9190612506565b60138190555061271060196014546104969190612498565b6104a09190612506565b600e819055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f61050e61066060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f60165f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506105ff30612710611f286014546105ea9190612498565b6105f49190612506565b61068860201b60201c565b61064c60165f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166127106107e86014546106379190612498565b6106419190612506565b61068860201b60201c565b612c70565b5f33905090565b5f6012905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106f8575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106ef9190612536565b60405180910390fd5b6107095f838361070d60201b60201c565b5050565b5f80600c541415801561072d5750601060019054906101000a900460ff16155b8015610772575061074261066060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156107975761078561120c60201b60201c565b6107948261131160201b60201c565b90505b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561083a5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561088d5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c4906125a9565b60405180910390fd5b601154600f546108dd91906125c7565b4210801561091757505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610970575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156109c35750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610a165750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610a7f575f610a2b8461189d60201b60201c565b90506013548382610a3c91906125c7565b1115610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a749061266a565b60405180910390fd5b505b5f610a8f3061189d60201b60201c565b90505f600e548210159050601060019054906101000a900460ff168015610ab557505f82115b15610abf57600190505b808015610ad8575060105f9054906101000a900460ff16155b8015610b2a5750600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015610b83575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015610bc85750610b9861066060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015610c0d5750610bdd61066060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015610c605750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cb35750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cc1575061012c8310155b15610e4757600e548211610cd55781610cd9565b600e545b9150600160105f6101000a81548160ff021916908315150217905550610d04826118e260201b60201c565b5f4790505f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d4e906126b5565b5f6040518083038185875af1925050503d805f8114610d88576040519150601f19603f3d011682016040523d82523d5f602084013e610d8d565b606091505b5050905080610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890612713565b60405180910390fd5b7ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33360155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610e23929190612740565b60405180910390a15f60105f6101000a81548160ff02191690831515021790555050505b5f60105f9054906101000a900460ff16159050600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610ef55750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80610f0c5750601060019054906101000a900460ff165b15610f2a575f9050610f25878787611b1e60201b60201c565b611089565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610fc85750600a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561101b5750600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561106e5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611088575f9050611087878787611b1e60201b60201c565b5b5b8015611203575f6103e8600854876110a19190612498565b6110ab9190612506565b90505f6103e8600954886110bf9190612498565b6110c99190612506565b9050600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561112257505f600954115b1561115c5780876111339190612767565b9650611146893083611b1e60201b60201c565b611157898989611b1e60201b60201c565b611200565b600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156111b357505f600854115b156111ed5781876111c49190612767565b96506111d7893084611b1e60201b60201c565b6111e8898989611b1e60201b60201c565b6111ff565b6111fe898989611b1e60201b60201c565b5b5b50505b50505050505050565b5f4290505f60085490505f6009549050610708600f5461122c91906125c7565b8311156112a2575f6008819055505f6009819055506001601060016101000a81548160ff0219169083151502179055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de6972428282600854600954604051611295949392919061279a565b60405180910390a161130c565b6104b0600f546112b291906125c7565b83111561130b57600a600881905550600a6009819055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de6972428282600854600954604051611302949392919061279a565b60405180910390a15b5b505050565b5f80735f4ec3df9cbd43714fe2740f5e3616155c5b841990505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611395573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113b99190612285565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561143f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114639190612285565b6040518363ffffffff1660e01b81526004016114809291906122bf565b602060405180830381865afa15801561149b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114bf9190612285565b90505f808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561150c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115309190612859565b50915091505f826dffffffffffffffffffffffffffff1611801561156357505f816dffffffffffffffffffffffffffff16115b6115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906128f3565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561160d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116319190612285565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1610156116bb57826dffffffffffffffffffffffffffff1661168361065860201b60201c565b600a61168f919061244e565b836dffffffffffffffffffffffffffff166116aa9190612498565b6116b49190612506565b905061170e565b816dffffffffffffffffffffffffffff166116da61065860201b60201c565b600a6116e6919061244e565b846dffffffffffffffffffffffffffff166117019190612498565b61170b9190612506565b90505b5f8573ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611758573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061177c91906129ad565b5050509150505f8673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117f09190612a4e565b90505f8161180261065860201b60201c565b61180c9190612a79565b600a611818919061244e565b836118239190612498565b90505f61183461065860201b60201c565b600a611840919061244e565b828661184c9190612498565b6118569190612506565b90505f61186761065860201b60201c565b600a611873919061244e565b8c8361187f9190612498565b6118899190612506565b9050809a5050505050505050505050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600267ffffffffffffffff8111156118fe576118fd611f28565b5b60405190808252806020026020018201604052801561192c5781602001602082028036833780820191505090505b50905030815f8151811061194357611942612aad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0b9190612285565b81600181518110611a1f57611a1e612aad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a8b3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611d3760201b60201c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611aed959493929190612bca565b5f604051808303815f87803b158015611b04575f80fd5b505af1158015611b16573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b6e578060025f828254611b6291906125c7565b92505081905550611c3c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611bf7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611bee93929190612c22565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c83578060025f8282540392505081905550611ccd565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d2a9190612c57565b60405180910390a3505050565b611d4a8383836001611d4f60201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611dbf575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611db69190612536565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e2f575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611e269190612536565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611f18578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f0f9190612c57565b60405180910390a35b50505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f9957607f821691505b602082108103611fac57611fab611f55565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261200e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fd3565b6120188683611fd3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61205c61205761205284612030565b612039565b612030565b9050919050565b5f819050919050565b61207583612042565b61208961208182612063565b848454611fdf565b825550505050565b5f90565b61209d612091565b6120a881848461206c565b505050565b5b818110156120cb576120c05f82612095565b6001810190506120ae565b5050565b601f821115612110576120e181611fb2565b6120ea84611fc4565b810160208510156120f9578190505b61210d61210585611fc4565b8301826120ad565b50505b505050565b5f82821c905092915050565b5f6121305f1984600802612115565b1980831691505092915050565b5f6121488383612121565b9150826002028217905092915050565b61216182611f1e565b67ffffffffffffffff81111561217a57612179611f28565b5b6121848254611f82565b61218f8282856120cf565b5f60209050601f8311600181146121c0575f84156121ae578287015190505b6121b8858261213d565b86555061221f565b601f1984166121ce86611fb2565b5f5b828110156121f5578489015182556001820191506020850194506020810190506121d0565b86831015612212578489015161220e601f891682612121565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122548261222b565b9050919050565b6122648161224a565b811461226e575f80fd5b50565b5f8151905061227f8161225b565b92915050565b5f6020828403121561229a57612299612227565b5b5f6122a784828501612271565b91505092915050565b6122b98161224a565b82525050565b5f6040820190506122d25f8301856122b0565b6122df60208301846122b0565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561236857808604811115612344576123436122e6565b5b60018516156123535780820291505b808102905061236185612313565b9450612328565b94509492505050565b5f82612380576001905061243b565b8161238d575f905061243b565b81600181146123a357600281146123ad576123dc565b600191505061243b565b60ff8411156123bf576123be6122e6565b5b8360020a9150848211156123d6576123d56122e6565b5b5061243b565b5060208310610133831016604e8410600b84101617156124115782820a90508381111561240c5761240b6122e6565b5b61243b565b61241e848484600161231f565b92509050818404811115612435576124346122e6565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61245882612030565b915061246383612442565b92506124907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612371565b905092915050565b5f6124a282612030565b91506124ad83612030565b92508282026124bb81612030565b915082820484148315176124d2576124d16122e6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61251082612030565b915061251b83612030565b92508261252b5761252a6124d9565b5b828204905092915050565b5f6020820190506125495f8301846122b0565b92915050565b5f82825260208201905092915050565b7f54726164696e67206973206e6f742079657420616374697665000000000000005f82015250565b5f61259360198361254f565b915061259e8261255f565b602082019050919050565b5f6020820190508181035f8301526125c081612587565b9050919050565b5f6125d182612030565b91506125dc83612030565b92508282019050808211156125f4576125f36122e6565b5b92915050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f61265460268361254f565b915061265f826125fa565b604082019050919050565b5f6020820190508181035f83015261268181612648565b9050919050565b5f81905092915050565b50565b5f6126a05f83612688565b91506126ab82612692565b5f82019050919050565b5f6126bf82612695565b9150819050919050565b7f4661696c656420746f2073656e64206d61726b6574696e6720666565000000005f82015250565b5f6126fd601c8361254f565b9150612708826126c9565b602082019050919050565b5f6020820190508181035f83015261272a816126f1565b9050919050565b61273a81612030565b82525050565b5f6040820190506127535f8301856122b0565b6127606020830184612731565b9392505050565b5f61277182612030565b915061277c83612030565b9250828203905081811115612794576127936122e6565b5b92915050565b5f6080820190506127ad5f830187612731565b6127ba6020830186612731565b6127c76040830185612731565b6127d46060830184612731565b95945050505050565b5f6dffffffffffffffffffffffffffff82169050919050565b6127ff816127dd565b8114612809575f80fd5b50565b5f8151905061281a816127f6565b92915050565b5f63ffffffff82169050919050565b61283881612820565b8114612842575f80fd5b50565b5f815190506128538161282f565b92915050565b5f805f606084860312156128705761286f612227565b5b5f61287d8682870161280c565b935050602061288e8682870161280c565b925050604061289f86828701612845565b9150509250925092565b7f526573657276657320617265207a65726f0000000000000000000000000000005f82015250565b5f6128dd60118361254f565b91506128e8826128a9565b602082019050919050565b5f6020820190508181035f83015261290a816128d1565b9050919050565b5f69ffffffffffffffffffff82169050919050565b61292f81612911565b8114612939575f80fd5b50565b5f8151905061294a81612926565b92915050565b5f819050919050565b61296281612950565b811461296c575f80fd5b50565b5f8151905061297d81612959565b92915050565b61298c81612030565b8114612996575f80fd5b50565b5f815190506129a781612983565b92915050565b5f805f805f60a086880312156129c6576129c5612227565b5b5f6129d38882890161293c565b95505060206129e48882890161296f565b94505060406129f588828901612999565b9350506060612a0688828901612999565b9250506080612a178882890161293c565b9150509295509295909350565b612a2d81612442565b8114612a37575f80fd5b50565b5f81519050612a4881612a24565b92915050565b5f60208284031215612a6357612a62612227565b5b5f612a7084828501612a3a565b91505092915050565b5f612a8382612442565b9150612a8e83612442565b9250828203905060ff811115612aa757612aa66122e6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f612afd612af8612af384612ada565b612039565b612030565b9050919050565b612b0d81612ae3565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612b458161224a565b82525050565b5f612b568383612b3c565b60208301905092915050565b5f602082019050919050565b5f612b7882612b13565b612b828185612b1d565b9350612b8d83612b2d565b805f5b83811015612bbd578151612ba48882612b4b565b9750612baf83612b62565b925050600181019050612b90565b5085935050505092915050565b5f60a082019050612bdd5f830188612731565b612bea6020830187612b04565b8181036040830152612bfc8186612b6e565b9050612c0b60608301856122b0565b612c186080830184612731565b9695505050505050565b5f606082019050612c355f8301866122b0565b612c426020830185612731565b612c4f6040830184612731565b949350505050565b5f602082019050612c6a5f830184612731565b92915050565b61369a80612c7d5f395ff3fe60806040526004361061014e575f3560e01c8063864701a5116100b5578063c8978fdb1161006e578063c8978fdb14610473578063dd62ed3e146104af578063e0bf7fd1146104eb578063e2f4560514610527578063f2fde38b14610551578063f66895a31461057957610155565b8063864701a5146103655780638da5cb5b1461038f57806395d89b41146103b95780639a07579a146103e3578063a9059cbb1461040d578063b9eadf3c1461044957610155565b8063313ce56711610107578063313ce5671461027957806349bd5a5e146102a35780636945a12d146102cd57806370a08231146102d7578063715018a6146103135780637fb992f71461032957610155565b806306fdde0314610159578063095ea7b3146101835780631694505e146101bf5780631732cded146101e957806318160ddd1461021357806323b872dd1461023d57610155565b3661015557005b5f80fd5b348015610164575f80fd5b5061016d6105a3565b60405161017a91906127ba565b60405180910390f35b34801561018e575f80fd5b506101a960048036038101906101a4919061286b565b610633565b6040516101b691906128c3565b60405180910390f35b3480156101ca575f80fd5b506101d3610655565b6040516101e09190612937565b60405180910390f35b3480156101f4575f80fd5b506101fd61067a565b60405161020a91906128c3565b60405180910390f35b34801561021e575f80fd5b5061022761068c565b604051610234919061295f565b60405180910390f35b348015610248575f80fd5b50610263600480360381019061025e9190612978565b610695565b60405161027091906128c3565b60405180910390f35b348015610284575f80fd5b5061028d6106c3565b60405161029a91906129e3565b60405180910390f35b3480156102ae575f80fd5b506102b76106cb565b6040516102c49190612a0b565b60405180910390f35b6102d56106f0565b005b3480156102e2575f80fd5b506102fd60048036038101906102f89190612a24565b61095e565b60405161030a919061295f565b60405180910390f35b34801561031e575f80fd5b506103276109a3565b005b348015610334575f80fd5b5061034f600480360381019061034a9190612a24565b610af6565b60405161035c91906128c3565b60405180910390f35b348015610370575f80fd5b50610379610b13565b604051610386919061295f565b60405180910390f35b34801561039a575f80fd5b506103a3610b19565b6040516103b09190612a0b565b60405180910390f35b3480156103c4575f80fd5b506103cd610b41565b6040516103da91906127ba565b60405180910390f35b3480156103ee575f80fd5b506103f7610bd1565b60405161040491906128c3565b60405180910390f35b348015610418575f80fd5b50610433600480360381019061042e919061286b565b610be4565b60405161044091906128c3565b60405180910390f35b348015610454575f80fd5b5061045d610c06565b60405161046a919061295f565b60405180910390f35b34801561047e575f80fd5b5061049960048036038101906104949190612a4f565b610c0c565b6040516104a6919061295f565b60405180910390f35b3480156104ba575f80fd5b506104d560048036038101906104d09190612a7a565b61117a565b6040516104e2919061295f565b60405180910390f35b3480156104f6575f80fd5b50610511600480360381019061050c9190612a24565b6111fc565b60405161051e91906128c3565b60405180910390f35b348015610532575f80fd5b5061053b611219565b604051610548919061295f565b60405180910390f35b34801561055c575f80fd5b5061057760048036038101906105729190612a24565b61121f565b005b348015610584575f80fd5b5061058d6113e1565b60405161059a919061295f565b60405180910390f35b6060600380546105b290612ae5565b80601f01602080910402602001604051908101604052809291908181526020018280546105de90612ae5565b80156106295780601f1061060057610100808354040283529160200191610629565b820191905f5260205f20905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b5f8061063d6113e7565b905061064a8185856113ee565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105f9054906101000a900460ff1681565b5f600254905090565b5f8061069f6113e7565b90506106ac858285611400565b6106b7858585611492565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106f86113e7565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90612b5f565b60405180910390fd5b6107ba3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107b53061095e565b6113ee565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306108023061095e565b5f8033426040518863ffffffff1660e01b815260040161082796959493929190612bb6565b60606040518083038185885af1158015610843573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108689190612c29565b50505043600c8190555042600f819055506001600a5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061070860118190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8b100428088c24d83fb53c36f9e0d15fbacd418536208a138837b7b90d9ae2e960405160405180910390a2565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109ab6113e7565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090612b5f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5090612ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c90612ae5565b8015610bc75780601f10610b9e57610100808354040283529160200191610bc7565b820191905f5260205f20905b815481529060010190602001808311610baa57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b5f80610bee6113e7565b9050610bfb818585611492565b600191505092915050565b600f5481565b5f80735f4ec3df9cbd43714fe2740f5e3616155c5b841990505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb49190612c8d565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5e9190612c8d565b6040518363ffffffff1660e01b8152600401610d7b929190612cb8565b602060405180830381865afa158015610d96573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dba9190612c8d565b90505f808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2b9190612d5b565b50915091505f826dffffffffffffffffffffffffffff16118015610e5e57505f816dffffffffffffffffffffffffffff16115b610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490612df5565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f2c9190612c8d565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161015610fb057826dffffffffffffffffffffffffffff16610f786106c3565b600a610f849190612f6f565b836dffffffffffffffffffffffffffff16610f9f9190612fb9565b610fa99190613027565b9050610ffd565b816dffffffffffffffffffffffffffff16610fc96106c3565b600a610fd59190612f6f565b846dffffffffffffffffffffffffffff16610ff09190612fb9565b610ffa9190613027565b90505b5f8573ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611047573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106b91906130c9565b5050509150505f8673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110df919061316a565b90505f816110eb6106c3565b6110f59190613195565b600a6111019190612f6f565b8361110c9190612fb9565b90505f6111176106c3565b600a6111239190612f6f565b828661112f9190612fb9565b6111399190613027565b90505f6111446106c3565b600a6111509190612f6f565b8c8361115c9190612fb9565b6111669190613027565b9050809a5050505050505050505050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b6112276113e7565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90612b5f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613239565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b5f33905090565b6113fb8383836001611582565b505050565b5f61140b848461117a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461148c578181101561147d578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161147493929190613257565b60405180910390fd5b61148b84848484035f611582565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611502575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114f99190612a0b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611572575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115699190612a0b565b60405180910390fd5b61157d838383611751565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115f2575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115e99190612a0b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611662575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016116599190612a0b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561174b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611742919061295f565b60405180910390a35b50505050565b5f80600c54141580156117715750601060019054906101000a900460ff16155b80156117b05750611780610b19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156117c9576117bd6121f6565b6117c682610c0c565b90505b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561186c5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118bf5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906132d6565b60405180910390fd5b601154600f5461190f91906132f4565b4210801561194957505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156119a2575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156119f55750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611a485750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611aab575f611a578461095e565b90506013548382611a6891906132f4565b1115611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613397565b60405180910390fd5b505b5f611ab53061095e565b90505f600e548210159050601060019054906101000a900460ff168015611adb57505f82115b15611ae557600190505b808015611afe575060105f9054906101000a900460ff16155b8015611b505750600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611ba9575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611be85750611bb8610b19565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611c275750611bf7610b19565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611c7a5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ccd5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611cdb575061012c8310155b15611e5b57600e548211611cef5781611cf3565b600e545b9150600160105f6101000a81548160ff021916908315150217905550611d18826122fb565b5f4790505f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d62906133e2565b5f6040518083038185875af1925050503d805f8114611d9c576040519150601f19603f3d011682016040523d82523d5f602084013e611da1565b606091505b5050905080611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc90613440565b60405180910390fd5b7ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33360155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051611e3792919061345e565b60405180910390a15f60105f6101000a81548160ff02191690831515021790555050505b5f60105f9054906101000a900460ff16159050600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f095750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611f205750601060019054906101000a900460ff165b15611f38575f9050611f33878787612531565b612091565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611fd65750600a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120295750600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561207c5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612090575f905061208f878787612531565b5b5b80156121ed575f6103e8600854876120a99190612fb9565b6120b39190613027565b90505f6103e8600954886120c79190612fb9565b6120d19190613027565b9050600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561212a57505f600954115b1561215857808761213b9190613485565b9650612148893083612531565b612153898989612531565b6121ea565b600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121af57505f600854115b156121dd5781876121c09190613485565b96506121cd893084612531565b6121d8898989612531565b6121e9565b6121e8898989612531565b5b5b50505b50505050505050565b5f4290505f60085490505f6009549050610708600f5461221691906132f4565b83111561228c575f6008819055505f6009819055506001601060016101000a81548160ff0219169083151502179055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de697242828260085460095460405161227f94939291906134b8565b60405180910390a16122f6565b6104b0600f5461229c91906132f4565b8311156122f557600a600881905550600a6009819055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de69724282826008546009546040516122ec94939291906134b8565b60405180910390a15b5b505050565b5f600267ffffffffffffffff811115612317576123166134fb565b5b6040519080825280602002602001820160405280156123455781602001602082028036833780820191505090505b50905030815f8151811061235c5761235b613528565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612400573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124249190612c8d565b8160018151811061243857612437613528565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061249e3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846113ee565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161250095949392919061360c565b5f604051808303815f87803b158015612517575f80fd5b505af1158015612529573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612581578060025f82825461257591906132f4565b9250508190555061264f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561260a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161260193929190613257565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612696578060025f82825403925050819055506126e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161273d919061295f565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61278c8261274a565b6127968185612754565b93506127a6818560208601612764565b6127af81612772565b840191505092915050565b5f6020820190508181035f8301526127d28184612782565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612807826127de565b9050919050565b612817816127fd565b8114612821575f80fd5b50565b5f813590506128328161280e565b92915050565b5f819050919050565b61284a81612838565b8114612854575f80fd5b50565b5f8135905061286581612841565b92915050565b5f8060408385031215612881576128806127da565b5b5f61288e85828601612824565b925050602061289f85828601612857565b9150509250929050565b5f8115159050919050565b6128bd816128a9565b82525050565b5f6020820190506128d65f8301846128b4565b92915050565b5f819050919050565b5f6128ff6128fa6128f5846127de565b6128dc565b6127de565b9050919050565b5f612910826128e5565b9050919050565b5f61292182612906565b9050919050565b61293181612917565b82525050565b5f60208201905061294a5f830184612928565b92915050565b61295981612838565b82525050565b5f6020820190506129725f830184612950565b92915050565b5f805f6060848603121561298f5761298e6127da565b5b5f61299c86828701612824565b93505060206129ad86828701612824565b92505060406129be86828701612857565b9150509250925092565b5f60ff82169050919050565b6129dd816129c8565b82525050565b5f6020820190506129f65f8301846129d4565b92915050565b612a05816127fd565b82525050565b5f602082019050612a1e5f8301846129fc565b92915050565b5f60208284031215612a3957612a386127da565b5b5f612a4684828501612824565b91505092915050565b5f60208284031215612a6457612a636127da565b5b5f612a7184828501612857565b91505092915050565b5f8060408385031215612a9057612a8f6127da565b5b5f612a9d85828601612824565b9250506020612aae85828601612824565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612afc57607f821691505b602082108103612b0f57612b0e612ab8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b49602083612754565b9150612b5482612b15565b602082019050919050565b5f6020820190508181035f830152612b7681612b3d565b9050919050565b5f819050919050565b5f612ba0612b9b612b9684612b7d565b6128dc565b612838565b9050919050565b612bb081612b86565b82525050565b5f60c082019050612bc95f8301896129fc565b612bd66020830188612950565b612be36040830187612ba7565b612bf06060830186612ba7565b612bfd60808301856129fc565b612c0a60a0830184612950565b979650505050505050565b5f81519050612c2381612841565b92915050565b5f805f60608486031215612c4057612c3f6127da565b5b5f612c4d86828701612c15565b9350506020612c5e86828701612c15565b9250506040612c6f86828701612c15565b9150509250925092565b5f81519050612c878161280e565b92915050565b5f60208284031215612ca257612ca16127da565b5b5f612caf84828501612c79565b91505092915050565b5f604082019050612ccb5f8301856129fc565b612cd860208301846129fc565b9392505050565b5f6dffffffffffffffffffffffffffff82169050919050565b612d0181612cdf565b8114612d0b575f80fd5b50565b5f81519050612d1c81612cf8565b92915050565b5f63ffffffff82169050919050565b612d3a81612d22565b8114612d44575f80fd5b50565b5f81519050612d5581612d31565b92915050565b5f805f60608486031215612d7257612d716127da565b5b5f612d7f86828701612d0e565b9350506020612d9086828701612d0e565b9250506040612da186828701612d47565b9150509250925092565b7f526573657276657320617265207a65726f0000000000000000000000000000005f82015250565b5f612ddf601183612754565b9150612dea82612dab565b602082019050919050565b5f6020820190508181035f830152612e0c81612dd3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115612e9557808604811115612e7157612e70612e13565b5b6001851615612e805780820291505b8081029050612e8e85612e40565b9450612e55565b94509492505050565b5f82612ead5760019050612f68565b81612eba575f9050612f68565b8160018114612ed05760028114612eda57612f09565b6001915050612f68565b60ff841115612eec57612eeb612e13565b5b8360020a915084821115612f0357612f02612e13565b5b50612f68565b5060208310610133831016604e8410600b8410161715612f3e5782820a905083811115612f3957612f38612e13565b5b612f68565b612f4b8484846001612e4c565b92509050818404811115612f6257612f61612e13565b5b81810290505b9392505050565b5f612f7982612838565b9150612f84836129c8565b9250612fb17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612e9e565b905092915050565b5f612fc382612838565b9150612fce83612838565b9250828202612fdc81612838565b91508282048414831517612ff357612ff2612e13565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61303182612838565b915061303c83612838565b92508261304c5761304b612ffa565b5b828204905092915050565b5f69ffffffffffffffffffff82169050919050565b61307581613057565b811461307f575f80fd5b50565b5f815190506130908161306c565b92915050565b5f819050919050565b6130a881613096565b81146130b2575f80fd5b50565b5f815190506130c38161309f565b92915050565b5f805f805f60a086880312156130e2576130e16127da565b5b5f6130ef88828901613082565b9550506020613100888289016130b5565b945050604061311188828901612c15565b935050606061312288828901612c15565b925050608061313388828901613082565b9150509295509295909350565b613149816129c8565b8114613153575f80fd5b50565b5f8151905061316481613140565b92915050565b5f6020828403121561317f5761317e6127da565b5b5f61318c84828501613156565b91505092915050565b5f61319f826129c8565b91506131aa836129c8565b9250828203905060ff8111156131c3576131c2612e13565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613223602683612754565b915061322e826131c9565b604082019050919050565b5f6020820190508181035f83015261325081613217565b9050919050565b5f60608201905061326a5f8301866129fc565b6132776020830185612950565b6132846040830184612950565b949350505050565b7f54726164696e67206973206e6f742079657420616374697665000000000000005f82015250565b5f6132c0601983612754565b91506132cb8261328c565b602082019050919050565b5f6020820190508181035f8301526132ed816132b4565b9050919050565b5f6132fe82612838565b915061330983612838565b925082820190508082111561332157613320612e13565b5b92915050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f613381602683612754565b915061338c82613327565b604082019050919050565b5f6020820190508181035f8301526133ae81613375565b9050919050565b5f81905092915050565b50565b5f6133cd5f836133b5565b91506133d8826133bf565b5f82019050919050565b5f6133ec826133c2565b9150819050919050565b7f4661696c656420746f2073656e64206d61726b6574696e6720666565000000005f82015250565b5f61342a601c83612754565b9150613435826133f6565b602082019050919050565b5f6020820190508181035f8301526134578161341e565b9050919050565b5f6040820190506134715f8301856129fc565b61347e6020830184612950565b9392505050565b5f61348f82612838565b915061349a83612838565b92508282039050818111156134b2576134b1612e13565b5b92915050565b5f6080820190506134cb5f830187612950565b6134d86020830186612950565b6134e56040830185612950565b6134f26060830184612950565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613587816127fd565b82525050565b5f613598838361357e565b60208301905092915050565b5f602082019050919050565b5f6135ba82613555565b6135c4818561355f565b93506135cf8361356f565b805f5b838110156135ff5781516135e6888261358d565b97506135f1836135a4565b9250506001810190506135d2565b5085935050505092915050565b5f60a08201905061361f5f830188612950565b61362c6020830187612ba7565b818103604083015261363e81866135b0565b905061364d60608301856129fc565b61365a6080830184612950565b969550505050505056fea264697066735822122014819cf2c8ed79ff63ecd7114e340a8d7a011fc77a86561cd8d63b664df199ab64736f6c63430008190033
Deployed Bytecode
0x60806040526004361061014e575f3560e01c8063864701a5116100b5578063c8978fdb1161006e578063c8978fdb14610473578063dd62ed3e146104af578063e0bf7fd1146104eb578063e2f4560514610527578063f2fde38b14610551578063f66895a31461057957610155565b8063864701a5146103655780638da5cb5b1461038f57806395d89b41146103b95780639a07579a146103e3578063a9059cbb1461040d578063b9eadf3c1461044957610155565b8063313ce56711610107578063313ce5671461027957806349bd5a5e146102a35780636945a12d146102cd57806370a08231146102d7578063715018a6146103135780637fb992f71461032957610155565b806306fdde0314610159578063095ea7b3146101835780631694505e146101bf5780631732cded146101e957806318160ddd1461021357806323b872dd1461023d57610155565b3661015557005b5f80fd5b348015610164575f80fd5b5061016d6105a3565b60405161017a91906127ba565b60405180910390f35b34801561018e575f80fd5b506101a960048036038101906101a4919061286b565b610633565b6040516101b691906128c3565b60405180910390f35b3480156101ca575f80fd5b506101d3610655565b6040516101e09190612937565b60405180910390f35b3480156101f4575f80fd5b506101fd61067a565b60405161020a91906128c3565b60405180910390f35b34801561021e575f80fd5b5061022761068c565b604051610234919061295f565b60405180910390f35b348015610248575f80fd5b50610263600480360381019061025e9190612978565b610695565b60405161027091906128c3565b60405180910390f35b348015610284575f80fd5b5061028d6106c3565b60405161029a91906129e3565b60405180910390f35b3480156102ae575f80fd5b506102b76106cb565b6040516102c49190612a0b565b60405180910390f35b6102d56106f0565b005b3480156102e2575f80fd5b506102fd60048036038101906102f89190612a24565b61095e565b60405161030a919061295f565b60405180910390f35b34801561031e575f80fd5b506103276109a3565b005b348015610334575f80fd5b5061034f600480360381019061034a9190612a24565b610af6565b60405161035c91906128c3565b60405180910390f35b348015610370575f80fd5b50610379610b13565b604051610386919061295f565b60405180910390f35b34801561039a575f80fd5b506103a3610b19565b6040516103b09190612a0b565b60405180910390f35b3480156103c4575f80fd5b506103cd610b41565b6040516103da91906127ba565b60405180910390f35b3480156103ee575f80fd5b506103f7610bd1565b60405161040491906128c3565b60405180910390f35b348015610418575f80fd5b50610433600480360381019061042e919061286b565b610be4565b60405161044091906128c3565b60405180910390f35b348015610454575f80fd5b5061045d610c06565b60405161046a919061295f565b60405180910390f35b34801561047e575f80fd5b5061049960048036038101906104949190612a4f565b610c0c565b6040516104a6919061295f565b60405180910390f35b3480156104ba575f80fd5b506104d560048036038101906104d09190612a7a565b61117a565b6040516104e2919061295f565b60405180910390f35b3480156104f6575f80fd5b50610511600480360381019061050c9190612a24565b6111fc565b60405161051e91906128c3565b60405180910390f35b348015610532575f80fd5b5061053b611219565b604051610548919061295f565b60405180910390f35b34801561055c575f80fd5b5061057760048036038101906105729190612a24565b61121f565b005b348015610584575f80fd5b5061058d6113e1565b60405161059a919061295f565b60405180910390f35b6060600380546105b290612ae5565b80601f01602080910402602001604051908101604052809291908181526020018280546105de90612ae5565b80156106295780601f1061060057610100808354040283529160200191610629565b820191905f5260205f20905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b5f8061063d6113e7565b905061064a8185856113ee565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105f9054906101000a900460ff1681565b5f600254905090565b5f8061069f6113e7565b90506106ac858285611400565b6106b7858585611492565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106f86113e7565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90612b5f565b60405180910390fd5b6107ba3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107b53061095e565b6113ee565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306108023061095e565b5f8033426040518863ffffffff1660e01b815260040161082796959493929190612bb6565b60606040518083038185885af1158015610843573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108689190612c29565b50505043600c8190555042600f819055506001600a5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061070860118190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8b100428088c24d83fb53c36f9e0d15fbacd418536208a138837b7b90d9ae2e960405160405180910390a2565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109ab6113e7565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090612b5f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5090612ae5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c90612ae5565b8015610bc75780601f10610b9e57610100808354040283529160200191610bc7565b820191905f5260205f20905b815481529060010190602001808311610baa57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b5f80610bee6113e7565b9050610bfb818585611492565b600191505092915050565b600f5481565b5f80735f4ec3df9cbd43714fe2740f5e3616155c5b841990505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb49190612c8d565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d5e9190612c8d565b6040518363ffffffff1660e01b8152600401610d7b929190612cb8565b602060405180830381865afa158015610d96573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dba9190612c8d565b90505f808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2b9190612d5b565b50915091505f826dffffffffffffffffffffffffffff16118015610e5e57505f816dffffffffffffffffffffffffffff16115b610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490612df5565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f2c9190612c8d565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161015610fb057826dffffffffffffffffffffffffffff16610f786106c3565b600a610f849190612f6f565b836dffffffffffffffffffffffffffff16610f9f9190612fb9565b610fa99190613027565b9050610ffd565b816dffffffffffffffffffffffffffff16610fc96106c3565b600a610fd59190612f6f565b846dffffffffffffffffffffffffffff16610ff09190612fb9565b610ffa9190613027565b90505b5f8573ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015611047573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106b91906130c9565b5050509150505f8673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110df919061316a565b90505f816110eb6106c3565b6110f59190613195565b600a6111019190612f6f565b8361110c9190612fb9565b90505f6111176106c3565b600a6111239190612f6f565b828661112f9190612fb9565b6111399190613027565b90505f6111446106c3565b600a6111509190612f6f565b8c8361115c9190612fb9565b6111669190613027565b9050809a5050505050505050505050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b6112276113e7565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90612b5f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613239565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b5f33905090565b6113fb8383836001611582565b505050565b5f61140b848461117a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461148c578181101561147d578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161147493929190613257565b60405180910390fd5b61148b84848484035f611582565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611502575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016114f99190612a0b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611572575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115699190612a0b565b60405180910390fd5b61157d838383611751565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115f2575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115e99190612a0b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611662575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016116599190612a0b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561174b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611742919061295f565b60405180910390a35b50505050565b5f80600c54141580156117715750601060019054906101000a900460ff16155b80156117b05750611780610b19565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156117c9576117bd6121f6565b6117c682610c0c565b90505b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561186c5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156118bf5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906132d6565b60405180910390fd5b601154600f5461190f91906132f4565b4210801561194957505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156119a2575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156119f55750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611a485750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611aab575f611a578461095e565b90506013548382611a6891906132f4565b1115611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613397565b60405180910390fd5b505b5f611ab53061095e565b90505f600e548210159050601060019054906101000a900460ff168015611adb57505f82115b15611ae557600190505b808015611afe575060105f9054906101000a900460ff16155b8015611b505750600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611ba9575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611be85750611bb8610b19565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015611c275750611bf7610b19565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611c7a5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611ccd5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611cdb575061012c8310155b15611e5b57600e548211611cef5781611cf3565b600e545b9150600160105f6101000a81548160ff021916908315150217905550611d18826122fb565b5f4790505f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d62906133e2565b5f6040518083038185875af1925050503d805f8114611d9c576040519150601f19603f3d011682016040523d82523d5f602084013e611da1565b606091505b5050905080611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc90613440565b60405180910390fd5b7ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33360155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051611e3792919061345e565b60405180910390a15f60105f6101000a81548160ff02191690831515021790555050505b5f60105f9054906101000a900460ff16159050600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f095750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611f205750601060019054906101000a900460ff165b15611f38575f9050611f33878787612531565b612091565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611fd65750600a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120295750600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561207c5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612090575f905061208f878787612531565b5b5b80156121ed575f6103e8600854876120a99190612fb9565b6120b39190613027565b90505f6103e8600954886120c79190612fb9565b6120d19190613027565b9050600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561212a57505f600954115b1561215857808761213b9190613485565b9650612148893083612531565b612153898989612531565b6121ea565b600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156121af57505f600854115b156121dd5781876121c09190613485565b96506121cd893084612531565b6121d8898989612531565b6121e9565b6121e8898989612531565b5b5b50505b50505050505050565b5f4290505f60085490505f6009549050610708600f5461221691906132f4565b83111561228c575f6008819055505f6009819055506001601060016101000a81548160ff0219169083151502179055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de697242828260085460095460405161227f94939291906134b8565b60405180910390a16122f6565b6104b0600f5461229c91906132f4565b8311156122f557600a600881905550600a6009819055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de69724282826008546009546040516122ec94939291906134b8565b60405180910390a15b5b505050565b5f600267ffffffffffffffff811115612317576123166134fb565b5b6040519080825280602002602001820160405280156123455781602001602082028036833780820191505090505b50905030815f8151811061235c5761235b613528565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612400573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124249190612c8d565b8160018151811061243857612437613528565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061249e3060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846113ee565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b815260040161250095949392919061360c565b5f604051808303815f87803b158015612517575f80fd5b505af1158015612529573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612581578060025f82825461257591906132f4565b9250508190555061264f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561260a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161260193929190613257565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612696578060025f82825403925050819055506126e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161273d919061295f565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61278c8261274a565b6127968185612754565b93506127a6818560208601612764565b6127af81612772565b840191505092915050565b5f6020820190508181035f8301526127d28184612782565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612807826127de565b9050919050565b612817816127fd565b8114612821575f80fd5b50565b5f813590506128328161280e565b92915050565b5f819050919050565b61284a81612838565b8114612854575f80fd5b50565b5f8135905061286581612841565b92915050565b5f8060408385031215612881576128806127da565b5b5f61288e85828601612824565b925050602061289f85828601612857565b9150509250929050565b5f8115159050919050565b6128bd816128a9565b82525050565b5f6020820190506128d65f8301846128b4565b92915050565b5f819050919050565b5f6128ff6128fa6128f5846127de565b6128dc565b6127de565b9050919050565b5f612910826128e5565b9050919050565b5f61292182612906565b9050919050565b61293181612917565b82525050565b5f60208201905061294a5f830184612928565b92915050565b61295981612838565b82525050565b5f6020820190506129725f830184612950565b92915050565b5f805f6060848603121561298f5761298e6127da565b5b5f61299c86828701612824565b93505060206129ad86828701612824565b92505060406129be86828701612857565b9150509250925092565b5f60ff82169050919050565b6129dd816129c8565b82525050565b5f6020820190506129f65f8301846129d4565b92915050565b612a05816127fd565b82525050565b5f602082019050612a1e5f8301846129fc565b92915050565b5f60208284031215612a3957612a386127da565b5b5f612a4684828501612824565b91505092915050565b5f60208284031215612a6457612a636127da565b5b5f612a7184828501612857565b91505092915050565b5f8060408385031215612a9057612a8f6127da565b5b5f612a9d85828601612824565b9250506020612aae85828601612824565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612afc57607f821691505b602082108103612b0f57612b0e612ab8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b49602083612754565b9150612b5482612b15565b602082019050919050565b5f6020820190508181035f830152612b7681612b3d565b9050919050565b5f819050919050565b5f612ba0612b9b612b9684612b7d565b6128dc565b612838565b9050919050565b612bb081612b86565b82525050565b5f60c082019050612bc95f8301896129fc565b612bd66020830188612950565b612be36040830187612ba7565b612bf06060830186612ba7565b612bfd60808301856129fc565b612c0a60a0830184612950565b979650505050505050565b5f81519050612c2381612841565b92915050565b5f805f60608486031215612c4057612c3f6127da565b5b5f612c4d86828701612c15565b9350506020612c5e86828701612c15565b9250506040612c6f86828701612c15565b9150509250925092565b5f81519050612c878161280e565b92915050565b5f60208284031215612ca257612ca16127da565b5b5f612caf84828501612c79565b91505092915050565b5f604082019050612ccb5f8301856129fc565b612cd860208301846129fc565b9392505050565b5f6dffffffffffffffffffffffffffff82169050919050565b612d0181612cdf565b8114612d0b575f80fd5b50565b5f81519050612d1c81612cf8565b92915050565b5f63ffffffff82169050919050565b612d3a81612d22565b8114612d44575f80fd5b50565b5f81519050612d5581612d31565b92915050565b5f805f60608486031215612d7257612d716127da565b5b5f612d7f86828701612d0e565b9350506020612d9086828701612d0e565b9250506040612da186828701612d47565b9150509250925092565b7f526573657276657320617265207a65726f0000000000000000000000000000005f82015250565b5f612ddf601183612754565b9150612dea82612dab565b602082019050919050565b5f6020820190508181035f830152612e0c81612dd3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115612e9557808604811115612e7157612e70612e13565b5b6001851615612e805780820291505b8081029050612e8e85612e40565b9450612e55565b94509492505050565b5f82612ead5760019050612f68565b81612eba575f9050612f68565b8160018114612ed05760028114612eda57612f09565b6001915050612f68565b60ff841115612eec57612eeb612e13565b5b8360020a915084821115612f0357612f02612e13565b5b50612f68565b5060208310610133831016604e8410600b8410161715612f3e5782820a905083811115612f3957612f38612e13565b5b612f68565b612f4b8484846001612e4c565b92509050818404811115612f6257612f61612e13565b5b81810290505b9392505050565b5f612f7982612838565b9150612f84836129c8565b9250612fb17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612e9e565b905092915050565b5f612fc382612838565b9150612fce83612838565b9250828202612fdc81612838565b91508282048414831517612ff357612ff2612e13565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61303182612838565b915061303c83612838565b92508261304c5761304b612ffa565b5b828204905092915050565b5f69ffffffffffffffffffff82169050919050565b61307581613057565b811461307f575f80fd5b50565b5f815190506130908161306c565b92915050565b5f819050919050565b6130a881613096565b81146130b2575f80fd5b50565b5f815190506130c38161309f565b92915050565b5f805f805f60a086880312156130e2576130e16127da565b5b5f6130ef88828901613082565b9550506020613100888289016130b5565b945050604061311188828901612c15565b935050606061312288828901612c15565b925050608061313388828901613082565b9150509295509295909350565b613149816129c8565b8114613153575f80fd5b50565b5f8151905061316481613140565b92915050565b5f6020828403121561317f5761317e6127da565b5b5f61318c84828501613156565b91505092915050565b5f61319f826129c8565b91506131aa836129c8565b9250828203905060ff8111156131c3576131c2612e13565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613223602683612754565b915061322e826131c9565b604082019050919050565b5f6020820190508181035f83015261325081613217565b9050919050565b5f60608201905061326a5f8301866129fc565b6132776020830185612950565b6132846040830184612950565b949350505050565b7f54726164696e67206973206e6f742079657420616374697665000000000000005f82015250565b5f6132c0601983612754565b91506132cb8261328c565b602082019050919050565b5f6020820190508181035f8301526132ed816132b4565b9050919050565b5f6132fe82612838565b915061330983612838565b925082820190508082111561332157613320612e13565b5b92915050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f613381602683612754565b915061338c82613327565b604082019050919050565b5f6020820190508181035f8301526133ae81613375565b9050919050565b5f81905092915050565b50565b5f6133cd5f836133b5565b91506133d8826133bf565b5f82019050919050565b5f6133ec826133c2565b9150819050919050565b7f4661696c656420746f2073656e64206d61726b6574696e6720666565000000005f82015250565b5f61342a601c83612754565b9150613435826133f6565b602082019050919050565b5f6020820190508181035f8301526134578161341e565b9050919050565b5f6040820190506134715f8301856129fc565b61347e6020830184612950565b9392505050565b5f61348f82612838565b915061349a83612838565b92508282039050818111156134b2576134b1612e13565b5b92915050565b5f6080820190506134cb5f830187612950565b6134d86020830186612950565b6134e56040830185612950565b6134f26060830184612950565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613587816127fd565b82525050565b5f613598838361357e565b60208301905092915050565b5f602082019050919050565b5f6135ba82613555565b6135c4818561355f565b93506135cf8361356f565b805f5b838110156135ff5781516135e6888261358d565b97506135f1836135a4565b9250506001810190506135d2565b5085935050505092915050565b5f60a08201905061361f5f830188612950565b61362c6020830187612ba7565b818103604083015261363e81866135b0565b905061364d60608301856129fc565b61365a6080830184612950565b969550505050505056fea264697066735822122014819cf2c8ed79ff63ecd7114e340a8d7a011fc77a86561cd8d63b664df199ab64736f6c63430008190033
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.