ERC-20
DeFi
Overview
Max Total Supply
1,000,000,000 EVIL
Holders
1,404 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (-0.41%)
Onchain Market Cap
$43,920.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
69.42 EVILValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DoctorEvil
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion, Audited
Contract Source Code (Solidity Standard Json-Input format)Audit Report
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.15;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/utils/Address.sol";import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol";import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";contract DoctorEvil is Context, ERC20, Ownable {using SafeERC20 for IERC20;using Address for address;IUniswapV2Router02 public uniswapV2Router;address public uniswapV2Pair;_Tax public Tax;mapping(address => bool) public pair;mapping (address => bool) public _isExcludedFromFees;uint256 private start;
1234567891011121314151617181920212223242526pragma solidity >=0.6.2;import './IUniswapV2Router01.sol';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,
1234567891011121314151617181920212223242526pragma solidity >=0.6.2;interface IUniswapV2Router01 {function factory() external pure returns (address);function WETH() external pure returns (address);function addLiquidity(address tokenA,address tokenB,uint amountADesired,uint amountBDesired,uint amountAMin,uint amountBMin,address to,uint deadline) external returns (uint amountA, uint amountB, uint liquidity);function addLiquidityETH(address token,uint amountTokenDesired,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);function removeLiquidity(address tokenA,
1234567891011121314151617181920212223242526pragma solidity >=0.5.0;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(
1234567891011121314151617pragma solidity >=0.5.0;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint) external view returns (address pair);function allPairsLength() external view returns (uint);function createPair(address tokenA, address tokenB) external returns (address pair);function setFeeTo(address) external;function setFeeToSetter(address) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../extensions/IERC20Permit.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;/*** @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,* non-reverting calls are assumed to be successful.*/function safeTransfer(IERC20 token, address to, uint256 value) internal {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed** Furthermore, `isContract` will also return true if the target contract within
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** The default value of {decimals} is 18. To change this, you should override* this function so it returns a different value.** We have followed general OpenZeppelin Contracts guidelines: functions revert* instead returning `false` on failure. This behavior is nonetheless* conventional and does not conflict with the expectations of ERC20
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/interface IERC20Permit {/*** @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,* given ``owner``'s signed approval.** IMPORTANT: The same issues {IERC20-approve} has related to transaction* ordering also apply here.** Emits an {Approval} event.** Requirements:** - `spender` cannot be the zero address.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/
123456789101112131415161718{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- Solidproof- Jul 7th, 2023 - Security Audit Report
[{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"uint256","name":"_end","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"taxDisabled","type":"bool"}],"name":"TaxDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"TaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Tax","outputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"uint256","name":"maxBuyFee","type":"uint256"},{"internalType":"uint256","name":"maxSellFee","type":"uint256"},{"internalType":"uint256","name":"taxPhaseOneTimer","type":"uint256"},{"internalType":"uint256","name":"taxPhaseTwoTimer","type":"uint256"},{"internalType":"uint256","name":"taxPhase","type":"uint256"},{"internalType":"bool","name":"taxesDisabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"starting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620022e6380380620022e6833981016040819052620000349162000369565b6040518060400160405280600b81526020016a111bd8dd1bdc88115d9a5b60aa1b815250604051806040016040528060048152602001631155925360e21b815250816003908162000086919062000449565b50600462000095828262000449565b505050620000b2620000ac6200024860201b60201c565b6200024c565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055620000e1601290565b620000ee90600a6200062a565b620000fe90633b9aca0062000642565b6019819055612710906200011490605e62000642565b62000120919062000664565b601755601980546127109162000137919062000642565b62000143919062000664565b60185561a8c06016556013819055600f805460ff199081169091556202a300600c5562093a80600d55601a80546001600160a01b0319166001600160a01b03851617905530600090815260116020819052604082208054909316600190811790935590620001b96005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055426014554360125562000227620002006005546001600160a01b031690565b6103e86019546103a362000215919062000642565b62000221919062000664565b6200029e565b62000240826103e8601954604562000215919062000642565b5050620006a2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002f95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200030d919062000687565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600080604083850312156200037d57600080fd5b82516001600160a01b03811681146200039557600080fd5b6020939093015192949293505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003d057607f821691505b602082108103620003f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200036457600081815260208120601f850160051c81016020861015620004205750805b601f850160051c820191505b8181101562000441578281556001016200042c565b505050505050565b81516001600160401b03811115620004655762000465620003a5565b6200047d81620004768454620003bb565b84620003f7565b602080601f831160018114620004b557600084156200049c5750858301515b600019600386901b1c1916600185901b17855562000441565b600085815260208120601f198616915b82811015620004e657888601518255948401946001909101908401620004c5565b5085821015620005055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200056c57816000190482111562000550576200055062000515565b808516156200055e57918102915b93841c939080029062000530565b509250929050565b600082620005855750600162000624565b81620005945750600062000624565b8160018114620005ad5760028114620005b857620005d8565b600191505062000624565b60ff841115620005cc57620005cc62000515565b50506001821b62000624565b5060208310610133831016604e8410600b8410161715620005fd575081810a62000624565b6200060983836200052b565b806000190482111562000620576200062062000515565b0290505b92915050565b60006200063b60ff84168362000574565b9392505050565b60008160001904831182151516156200065f576200065f62000515565b500290565b6000826200068257634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200069d576200069d62000515565b500190565b611c3480620006b26000396000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063c2b7bbb61161008a578063e0bf7fd111610064578063e0bf7fd11461050b578063e2f456051461053b578063f2fde38b14610551578063f8b45b051461057157600080fd5b8063c2b7bbb6146104b6578063ced695a4146104d6578063dd62ed3e146104eb57600080fd5b806395d89b41116100c657806395d89b4114610447578063a457c2d71461045c578063a9059cbb1461047c578063be46e9ca1461049c57600080fd5b8063715018a6146103e45780637fb992f7146103f95780638da5cb5b1461042957600080fd5b80632f37aa6d1161015957806342966c681161013357806342966c68146102fb57806349bd5a5e1461031b5780636ea405d31461033b57806370a08231146103ae57600080fd5b80632f37aa6d1461029d578063313ce567146102bf57806339509351146102db57600080fd5b806306fdde03146101ac578063095ea7b3146101d75780631694505e146102075780631732cded1461023f57806318160ddd1461025e57806323b872dd1461027d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610587565b6040516101ce91906117b0565b60405180910390f35b3480156101e357600080fd5b506101f76101f236600461181a565b610619565b60405190151581526020016101ce565b34801561021357600080fd5b50600654610227906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b34801561024b57600080fd5b506015546101f790610100900460ff1681565b34801561026a57600080fd5b506002545b6040519081526020016101ce565b34801561028957600080fd5b506101f7610298366004611846565b610633565b3480156102a957600080fd5b506102bd6102b8366004611887565b610657565b005b3480156102cb57600080fd5b50604051601281526020016101ce565b3480156102e757600080fd5b506101f76102f636600461181a565b6107cb565b34801561030757600080fd5b506102bd6103163660046118a9565b6107ed565b34801561032757600080fd5b50600754610227906001600160a01b031681565b34801561034757600080fd5b50600854600954600a54600b54600c54600d54600e54600f54610371979695949392919060ff1688565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c0830152151560e0820152610100016101ce565b3480156103ba57600080fd5b5061026f6103c93660046118c2565b6001600160a01b031660009081526020819052604090205490565b3480156103f057600080fd5b506102bd61080f565b34801561040557600080fd5b506101f76104143660046118c2565b60106020526000908152604090205460ff1681565b34801561043557600080fd5b506005546001600160a01b0316610227565b34801561045357600080fd5b506101c1610823565b34801561046857600080fd5b506101f761047736600461181a565b610832565b34801561048857600080fd5b506101f761049736600461181a565b6108ad565b3480156104a857600080fd5b506015546101f79060ff1681565b3480156104c257600080fd5b506102bd6104d13660046118c2565b6108bb565b3480156104e257600080fd5b506102bd610970565b3480156104f757600080fd5b5061026f6105063660046118e6565b61099b565b34801561051757600080fd5b506101f76105263660046118c2565b60116020526000908152604090205460ff1681565b34801561054757600080fd5b5061026f60185481565b34801561055d57600080fd5b506102bd61056c3660046118c2565b6109c6565b34801561057d57600080fd5b5061026f60175481565b6060600380546105969061191f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c29061191f565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b600033610627818585610a3c565b60019150505b92915050565b600033610641858285610b61565b61064c858585610bdb565b506001949350505050565b61065f611244565b600f5460ff16156106ac5760405162461bcd60e51b815260206004820152601260248201527115185e195cc8185c9948191a5cd8589b195960721b60448201526064015b60405180910390fd5b600a548211156106f45760405162461bcd60e51b8152602060048201526013602482015272084eaf240cccaca40d2e640e8dede40d0d2ced606b1b60448201526064016106a3565b600b5481111561073d5760405162461bcd60e51b81526020600482015260146024820152730a6cad8d840cccaca40d2e640e8dede40d0d2ced60631b60448201526064016106a3565b600e546003146107845760405162461bcd60e51b8152602060048201526012602482015271546178207068617365206973206e6f74203360701b60448201526064016106a3565b6008829055600981905560408051838152602081018390527fb841faf0d1b32571f4ef966a2f35e3ae51f3cdda45318c3da5570a5b2ad85605910160405180910390a15050565b6000336106278185856107de838361099b565b6107e8919061196f565b610a3c565b61080c336107fd6012600a611a6b565b6108079084611a7a565b61129e565b50565b610817611244565b61082160006113c8565b565b6060600480546105969061191f565b60003381610840828661099b565b9050838110156108a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a3565b61064c8286868403610a3c565b600033610627818585610bdb565b6108c3611244565b6001600160a01b03811660009081526010602052604090205460ff161561092c5760405162461bcd60e51b815260206004820152601860248201527f54686973207061697220616c726561647920657869737473000000000000000060448201526064016106a3565b6001600160a01b03166000818152601060205260409020805460ff19908116600117909155600780546001600160a01b031916909217909155601580549091169055565b610978611244565b600060088190556009819055600a819055600b55600f805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ce611244565b6001600160a01b038116610a335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a3565b61080c816113c8565b6001600160a01b038316610a9e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a3565b6001600160a01b038216610aff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610b6d848461099b565b90506000198114610bd55781811015610bc85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106a3565b610bd58484848403610a3c565b50505050565b6001600160a01b038316610c015760405162461bcd60e51b81526004016106a390611a99565b6001600160a01b038216610c275760405162461bcd60e51b81526004016106a390611ade565b60155460ff1615610ca7576005546001600160a01b0384811691161480610c5b57506005546001600160a01b038381169116145b610ca75760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420656e61626c656400000000000060448201526064016106a3565b6016546014544391610cb89161196f565b42108015610cce57506001600160a01b03831615155b8015610ce857506007546001600160a01b03848116911614155b8015610d0d57506001600160a01b03831660009081526011602052604090205460ff16155b8015610d3257506001600160a01b03841660009081526011602052604090205460ff16155b15610dbc576001600160a01b038316600090815260208190526040902054601754610d5d848361196f565b1115610dba5760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d206044820152651dd85b1b195d60d21b60648201526084016106a3565b505b3060009081526020819052604090205460185481108015908190610de85750601554610100900460ff16155b8015610e0c57506001600160a01b03851660009081526010602052604090205460ff165b8015610e2657506006546001600160a01b03878116911614155b8015610e4057506005546001600160a01b03878116911614155b8015610e5a57506005546001600160a01b03868116911614155b8015610e7f57506001600160a01b03851660009081526011602052604090205460ff16155b8015610ea457506001600160a01b03861660009081526011602052604090205460ff16155b15610f7a576018546015805461ff0019166101001790559150610ec68261141a565b601a546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f13576040519150601f19603f3d011682016040523d82523d6000602084013e610f18565b606091505b5050905080610f695760405162461bcd60e51b815260206004820152601c60248201527f4661696c656420746f2073656e64206d61726b6574696e67206665650000000060448201526064016106a3565b506015805461ff0019169055610fa5565b80158015610f8a5750600f5460ff165b8015610f965750600082115b15610fa557610fa5308361129e565b6015546001600160a01b03871660009081526011602052604090205460ff610100909204821615911680610ff157506001600160a01b03861660009081526011602052604090205460ff165b1561100957506000611004878787611574565b611138565b601354601254611019919061196f565b841115801561103657506005546001600160a01b03888116911614155b801561105057506005546001600160a01b03878116911614155b156110995760006103e861106587600a611a7a565b61106f9190611b21565b905061107b8187611b43565b9550611088888883611574565b611093883088611574565b50611138565b6001600160a01b03861660009081526010602052604090205460ff161580156110db57506001600160a01b03871660009081526010602052604090205460ff16155b801561110057506001600160a01b03871660009081526011602052604090205460ff16155b801561112557506001600160a01b03861660009081526011602052604090205460ff16155b1561113857506000611138878787611574565b801561123b57600e546003146111505761115061169e565b6008546000906103e8906111649088611a7a565b61116e9190611b21565b905060006103e8600860010154886111869190611a7a565b6111909190611b21565b6001600160a01b03891660009081526010602052604090205490915060ff1680156111bc575060095415155b156111e8576111cb8188611b43565b96506111d8893083611574565b6111e3898989611574565b611238565b6001600160a01b03891660009081526010602052604090205460ff168015611211575060085415155b1561122d576112208288611b43565b96506111d8893084611574565b611238898989611574565b50505b50505050505050565b6005546001600160a01b031633146108215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a3565b6001600160a01b0382166112fe5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106a3565b6001600160a01b038216600090815260208190526040902054818110156113725760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106a3565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b54565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061144f5761144f611b5a565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156114a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cc9190611b70565b816001815181106114df576114df611b5a565b6001600160a01b0392831660209182029290920101526006546115059130911684610a3c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061153e908590600090869030904290600401611b8d565b600060405180830381600087803b15801561155857600080fd5b505af115801561156c573d6000803e3d6000fd5b505050505050565b6001600160a01b03831661159a5760405162461bcd60e51b81526004016106a390611a99565b6001600160a01b0382166115c05760405162461bcd60e51b81526004016106a390611ade565b6001600160a01b038316600090815260208190526040902054818110156116385760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd5565b600f5460ff16156116e65760405162461bcd60e51b815260206004820152601260248201527115185e195cc8185c9948191a5cd8589b195960721b60448201526064016106a3565b600c546014546116f6919061196f565b421080156117075750600e54600114155b1561172a576032600881905560646009819055600a91909155600b556001600e55565b600d5460145461173a919061196f565b4210801561174b5750600e54600214155b1561176b57603260088190556009819055600a819055600b556002600e55565b600d5460145461177b919061196f565b421015801561178d5750600e54600314155b15610821576019600881905560326009819055600a91909155600b556003600e55565b600060208083528351808285015260005b818110156117dd578581018301518582016040015282016117c1565b818111156117ef576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461080c57600080fd5b6000806040838503121561182d57600080fd5b823561183881611805565b946020939093013593505050565b60008060006060848603121561185b57600080fd5b833561186681611805565b9250602084013561187681611805565b929592945050506040919091013590565b6000806040838503121561189a57600080fd5b50508035926020909101359150565b6000602082840312156118bb57600080fd5b5035919050565b6000602082840312156118d457600080fd5b81356118df81611805565b9392505050565b600080604083850312156118f957600080fd5b823561190481611805565b9150602083013561191481611805565b809150509250929050565b600181811c9082168061193357607f821691505b60208210810361195357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561198257611982611959565b500190565b600181815b808511156119c25781600019048211156119a8576119a8611959565b808516156119b557918102915b93841c939080029061198c565b509250929050565b6000826119d95750600161062d565b816119e65750600061062d565b81600181146119fc5760028114611a0657611a22565b600191505061062d565b60ff841115611a1757611a17611959565b50506001821b61062d565b5060208310610133831016604e8410600b8410161715611a45575081810a61062d565b611a4f8383611987565b8060001904821115611a6357611a63611959565b029392505050565b60006118df60ff8416836119ca565b6000816000190483118215151615611a9457611a94611959565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082611b3e57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611b5557611b55611959565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b8257600080fd5b81516118df81611805565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bdd5784516001600160a01b031683529383019391830191600101611bb8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220cd08052c12922156ad91a688db8a7395492f124436882fdaaf092c5836f24dbe64736f6c634300080f0033000000000000000000000000627b1ea23b4a6c4c33caa3e1e0b9d0aa35b9567d0000000000000000000000000000000000000000000000000000000000000019
Deployed Bytecode
0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063c2b7bbb61161008a578063e0bf7fd111610064578063e0bf7fd11461050b578063e2f456051461053b578063f2fde38b14610551578063f8b45b051461057157600080fd5b8063c2b7bbb6146104b6578063ced695a4146104d6578063dd62ed3e146104eb57600080fd5b806395d89b41116100c657806395d89b4114610447578063a457c2d71461045c578063a9059cbb1461047c578063be46e9ca1461049c57600080fd5b8063715018a6146103e45780637fb992f7146103f95780638da5cb5b1461042957600080fd5b80632f37aa6d1161015957806342966c681161013357806342966c68146102fb57806349bd5a5e1461031b5780636ea405d31461033b57806370a08231146103ae57600080fd5b80632f37aa6d1461029d578063313ce567146102bf57806339509351146102db57600080fd5b806306fdde03146101ac578063095ea7b3146101d75780631694505e146102075780631732cded1461023f57806318160ddd1461025e57806323b872dd1461027d57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c1610587565b6040516101ce91906117b0565b60405180910390f35b3480156101e357600080fd5b506101f76101f236600461181a565b610619565b60405190151581526020016101ce565b34801561021357600080fd5b50600654610227906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b34801561024b57600080fd5b506015546101f790610100900460ff1681565b34801561026a57600080fd5b506002545b6040519081526020016101ce565b34801561028957600080fd5b506101f7610298366004611846565b610633565b3480156102a957600080fd5b506102bd6102b8366004611887565b610657565b005b3480156102cb57600080fd5b50604051601281526020016101ce565b3480156102e757600080fd5b506101f76102f636600461181a565b6107cb565b34801561030757600080fd5b506102bd6103163660046118a9565b6107ed565b34801561032757600080fd5b50600754610227906001600160a01b031681565b34801561034757600080fd5b50600854600954600a54600b54600c54600d54600e54600f54610371979695949392919060ff1688565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c0830152151560e0820152610100016101ce565b3480156103ba57600080fd5b5061026f6103c93660046118c2565b6001600160a01b031660009081526020819052604090205490565b3480156103f057600080fd5b506102bd61080f565b34801561040557600080fd5b506101f76104143660046118c2565b60106020526000908152604090205460ff1681565b34801561043557600080fd5b506005546001600160a01b0316610227565b34801561045357600080fd5b506101c1610823565b34801561046857600080fd5b506101f761047736600461181a565b610832565b34801561048857600080fd5b506101f761049736600461181a565b6108ad565b3480156104a857600080fd5b506015546101f79060ff1681565b3480156104c257600080fd5b506102bd6104d13660046118c2565b6108bb565b3480156104e257600080fd5b506102bd610970565b3480156104f757600080fd5b5061026f6105063660046118e6565b61099b565b34801561051757600080fd5b506101f76105263660046118c2565b60116020526000908152604090205460ff1681565b34801561054757600080fd5b5061026f60185481565b34801561055d57600080fd5b506102bd61056c3660046118c2565b6109c6565b34801561057d57600080fd5b5061026f60175481565b6060600380546105969061191f565b80601f01602080910402602001604051908101604052809291908181526020018280546105c29061191f565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b600033610627818585610a3c565b60019150505b92915050565b600033610641858285610b61565b61064c858585610bdb565b506001949350505050565b61065f611244565b600f5460ff16156106ac5760405162461bcd60e51b815260206004820152601260248201527115185e195cc8185c9948191a5cd8589b195960721b60448201526064015b60405180910390fd5b600a548211156106f45760405162461bcd60e51b8152602060048201526013602482015272084eaf240cccaca40d2e640e8dede40d0d2ced606b1b60448201526064016106a3565b600b5481111561073d5760405162461bcd60e51b81526020600482015260146024820152730a6cad8d840cccaca40d2e640e8dede40d0d2ced60631b60448201526064016106a3565b600e546003146107845760405162461bcd60e51b8152602060048201526012602482015271546178207068617365206973206e6f74203360701b60448201526064016106a3565b6008829055600981905560408051838152602081018390527fb841faf0d1b32571f4ef966a2f35e3ae51f3cdda45318c3da5570a5b2ad85605910160405180910390a15050565b6000336106278185856107de838361099b565b6107e8919061196f565b610a3c565b61080c336107fd6012600a611a6b565b6108079084611a7a565b61129e565b50565b610817611244565b61082160006113c8565b565b6060600480546105969061191f565b60003381610840828661099b565b9050838110156108a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a3565b61064c8286868403610a3c565b600033610627818585610bdb565b6108c3611244565b6001600160a01b03811660009081526010602052604090205460ff161561092c5760405162461bcd60e51b815260206004820152601860248201527f54686973207061697220616c726561647920657869737473000000000000000060448201526064016106a3565b6001600160a01b03166000818152601060205260409020805460ff19908116600117909155600780546001600160a01b031916909217909155601580549091169055565b610978611244565b600060088190556009819055600a819055600b55600f805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ce611244565b6001600160a01b038116610a335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a3565b61080c816113c8565b6001600160a01b038316610a9e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a3565b6001600160a01b038216610aff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610b6d848461099b565b90506000198114610bd55781811015610bc85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106a3565b610bd58484848403610a3c565b50505050565b6001600160a01b038316610c015760405162461bcd60e51b81526004016106a390611a99565b6001600160a01b038216610c275760405162461bcd60e51b81526004016106a390611ade565b60155460ff1615610ca7576005546001600160a01b0384811691161480610c5b57506005546001600160a01b038381169116145b610ca75760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f742079657420656e61626c656400000000000060448201526064016106a3565b6016546014544391610cb89161196f565b42108015610cce57506001600160a01b03831615155b8015610ce857506007546001600160a01b03848116911614155b8015610d0d57506001600160a01b03831660009081526011602052604090205460ff16155b8015610d3257506001600160a01b03841660009081526011602052604090205460ff16155b15610dbc576001600160a01b038316600090815260208190526040902054601754610d5d848361196f565b1115610dba5760405162461bcd60e51b815260206004820152602660248201527f5472616e7366657220616d6f756e742065786365656473206d6178696d756d206044820152651dd85b1b195d60d21b60648201526084016106a3565b505b3060009081526020819052604090205460185481108015908190610de85750601554610100900460ff16155b8015610e0c57506001600160a01b03851660009081526010602052604090205460ff165b8015610e2657506006546001600160a01b03878116911614155b8015610e4057506005546001600160a01b03878116911614155b8015610e5a57506005546001600160a01b03868116911614155b8015610e7f57506001600160a01b03851660009081526011602052604090205460ff16155b8015610ea457506001600160a01b03861660009081526011602052604090205460ff16155b15610f7a576018546015805461ff0019166101001790559150610ec68261141a565b601a546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f13576040519150601f19603f3d011682016040523d82523d6000602084013e610f18565b606091505b5050905080610f695760405162461bcd60e51b815260206004820152601c60248201527f4661696c656420746f2073656e64206d61726b6574696e67206665650000000060448201526064016106a3565b506015805461ff0019169055610fa5565b80158015610f8a5750600f5460ff165b8015610f965750600082115b15610fa557610fa5308361129e565b6015546001600160a01b03871660009081526011602052604090205460ff610100909204821615911680610ff157506001600160a01b03861660009081526011602052604090205460ff165b1561100957506000611004878787611574565b611138565b601354601254611019919061196f565b841115801561103657506005546001600160a01b03888116911614155b801561105057506005546001600160a01b03878116911614155b156110995760006103e861106587600a611a7a565b61106f9190611b21565b905061107b8187611b43565b9550611088888883611574565b611093883088611574565b50611138565b6001600160a01b03861660009081526010602052604090205460ff161580156110db57506001600160a01b03871660009081526010602052604090205460ff16155b801561110057506001600160a01b03871660009081526011602052604090205460ff16155b801561112557506001600160a01b03861660009081526011602052604090205460ff16155b1561113857506000611138878787611574565b801561123b57600e546003146111505761115061169e565b6008546000906103e8906111649088611a7a565b61116e9190611b21565b905060006103e8600860010154886111869190611a7a565b6111909190611b21565b6001600160a01b03891660009081526010602052604090205490915060ff1680156111bc575060095415155b156111e8576111cb8188611b43565b96506111d8893083611574565b6111e3898989611574565b611238565b6001600160a01b03891660009081526010602052604090205460ff168015611211575060085415155b1561122d576112208288611b43565b96506111d8893084611574565b611238898989611574565b50505b50505050505050565b6005546001600160a01b031633146108215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a3565b6001600160a01b0382166112fe5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106a3565b6001600160a01b038216600090815260208190526040902054818110156113725760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106a3565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b54565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061144f5761144f611b5a565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156114a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cc9190611b70565b816001815181106114df576114df611b5a565b6001600160a01b0392831660209182029290920101526006546115059130911684610a3c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac9479061153e908590600090869030904290600401611b8d565b600060405180830381600087803b15801561155857600080fd5b505af115801561156c573d6000803e3d6000fd5b505050505050565b6001600160a01b03831661159a5760405162461bcd60e51b81526004016106a390611a99565b6001600160a01b0382166115c05760405162461bcd60e51b81526004016106a390611ade565b6001600160a01b038316600090815260208190526040902054818110156116385760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a3565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd5565b600f5460ff16156116e65760405162461bcd60e51b815260206004820152601260248201527115185e195cc8185c9948191a5cd8589b195960721b60448201526064016106a3565b600c546014546116f6919061196f565b421080156117075750600e54600114155b1561172a576032600881905560646009819055600a91909155600b556001600e55565b600d5460145461173a919061196f565b4210801561174b5750600e54600214155b1561176b57603260088190556009819055600a819055600b556002600e55565b600d5460145461177b919061196f565b421015801561178d5750600e54600314155b15610821576019600881905560326009819055600a91909155600b556003600e55565b600060208083528351808285015260005b818110156117dd578581018301518582016040015282016117c1565b818111156117ef576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461080c57600080fd5b6000806040838503121561182d57600080fd5b823561183881611805565b946020939093013593505050565b60008060006060848603121561185b57600080fd5b833561186681611805565b9250602084013561187681611805565b929592945050506040919091013590565b6000806040838503121561189a57600080fd5b50508035926020909101359150565b6000602082840312156118bb57600080fd5b5035919050565b6000602082840312156118d457600080fd5b81356118df81611805565b9392505050565b600080604083850312156118f957600080fd5b823561190481611805565b9150602083013561191481611805565b809150509250929050565b600181811c9082168061193357607f821691505b60208210810361195357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561198257611982611959565b500190565b600181815b808511156119c25781600019048211156119a8576119a8611959565b808516156119b557918102915b93841c939080029061198c565b509250929050565b6000826119d95750600161062d565b816119e65750600061062d565b81600181146119fc5760028114611a0657611a22565b600191505061062d565b60ff841115611a1757611a17611959565b50506001821b61062d565b5060208310610133831016604e8410600b8410161715611a45575081810a61062d565b611a4f8383611987565b8060001904821115611a6357611a63611959565b029392505050565b60006118df60ff8416836119ca565b6000816000190483118215151615611a9457611a94611959565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082611b3e57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611b5557611b55611959565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b8257600080fd5b81516118df81611805565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611bdd5784516001600160a01b031683529383019391830191600101611bb8565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220cd08052c12922156ad91a688db8a7395492f124436882fdaaf092c5836f24dbe64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000627b1ea23b4a6c4c33caa3e1e0b9d0aa35b9567d0000000000000000000000000000000000000000000000000000000000000019
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x627B1ea23B4a6C4c33CAA3e1e0B9d0AA35B9567D
Arg [1] : _end (uint256): 25
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000627b1ea23b4a6c4c33caa3e1e0b9d0aa35b9567d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000019
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.