Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 ENERGY
Holders
331
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EnergyCredit
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2025-01-24 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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 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); } /** * @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; } } /** * @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() { _transferOwnership(_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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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.zeppelin.solutions/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) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 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 18; } /** * @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 _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, 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 = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _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 _approve( 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"); _allowances[owner][spender] = amount; emit Approval(owner, spender, 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 {} } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require( currentAllowance >= amount, "ERC20: burn amount exceeds allowance" ); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } contract EnergyCredit is ERC20Burnable, Ownable { uint8 private _decimals; constructor( string memory name_, string memory symbol_, uint256 totalSupply_, uint8 decimals_, address[2] memory addr_ ) payable ERC20(name_, symbol_) { _decimals = decimals_; _mint(_msgSender(), totalSupply_ * 10 ** decimals()); if (addr_[1] == 0x0000000000000000000000000000000000000000) { payable(addr_[0]).transfer(getBalance()); } else { payable(addr_[1]).transfer((getBalance() * 10) / 119); payable(addr_[0]).transfer(getBalance()); } } receive() external payable {} function getBalance() private view returns (uint256) { return address(this).balance; } function decimals() public view virtual override returns (uint8) { return _decimals; } function mint(address receiver, uint256 amount) public onlyOwner { _mint(receiver, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address[2]","name":"addr_","type":"address[2]"}],"stateMutability":"payable","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052604051612e9c380380612e9c833981810160405281019061002591906107d3565b848481600390816100369190610a9d565b5080600490816100469190610a9d565b50505061006561005a61027960201b60201c565b61028160201b60201c565b81600560146101000a81548160ff021916908360ff1602179055506100c161009161027960201b60201c565b61009f61034760201b60201c565b600a6100ab9190610cd1565b856100b69190610d1c565b61035e60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff16816001600281106100ed576100ec610d5e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff160361017e578060006002811061012157610120610d5e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc61014d6104c960201b60201c565b9081150290604051600060405180830381858888f19350505050158015610178573d6000803e3d6000fd5b5061026f565b8060016002811061019257610191610d5e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc6077600a6101c26104c960201b60201c565b6101cc9190610d1c565b6101d69190610dbc565b9081150290604051600060405180830381858888f19350505050158015610201573d6000803e3d6000fd5b508060006002811061021657610215610d5e565b5b602002015173ffffffffffffffffffffffffffffffffffffffff166108fc6102426104c960201b60201c565b9081150290604051600060405180830381858888f1935050505015801561026d573d6000803e3d6000fd5b505b5050505050610ec8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560149054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c490610e4a565b60405180910390fd5b6103df600083836104d160201b60201c565b80600260008282546103f19190610e6a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546104469190610e6a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104ab9190610ead565b60405180910390a36104c5600083836104d660201b60201c565b5050565b600047905090565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610542826104f9565b810181811067ffffffffffffffff821117156105615761056061050a565b5b80604052505050565b60006105746104db565b90506105808282610539565b919050565b600067ffffffffffffffff8211156105a05761059f61050a565b5b6105a9826104f9565b9050602081019050919050565b60005b838110156105d45780820151818401526020810190506105b9565b60008484015250505050565b60006105f36105ee84610585565b61056a565b90508281526020810184848401111561060f5761060e6104f4565b5b61061a8482856105b6565b509392505050565b600082601f830112610637576106366104ef565b5b81516106478482602086016105e0565b91505092915050565b6000819050919050565b61066381610650565b811461066e57600080fd5b50565b6000815190506106808161065a565b92915050565b600060ff82169050919050565b61069c81610686565b81146106a757600080fd5b50565b6000815190506106b981610693565b92915050565b600067ffffffffffffffff8211156106da576106d961050a565b5b602082029050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610715826106ea565b9050919050565b6107258161070a565b811461073057600080fd5b50565b6000815190506107428161071c565b92915050565b600061075b610756846106bf565b61056a565b90508060208402830185811115610775576107746106e5565b5b835b8181101561079e578061078a8882610733565b845260208401935050602081019050610777565b5050509392505050565b600082601f8301126107bd576107bc6104ef565b5b60026107ca848285610748565b91505092915050565b600080600080600060c086880312156107ef576107ee6104e5565b5b600086015167ffffffffffffffff81111561080d5761080c6104ea565b5b61081988828901610622565b955050602086015167ffffffffffffffff81111561083a576108396104ea565b5b61084688828901610622565b945050604061085788828901610671565b9350506060610868888289016106aa565b9250506080610879888289016107a8565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806108d857607f821691505b6020821081036108eb576108ea610891565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026109537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610916565b61095d8683610916565b95508019841693508086168417925050509392505050565b6000819050919050565b600061099a61099561099084610650565b610975565b610650565b9050919050565b6000819050919050565b6109b48361097f565b6109c86109c0826109a1565b848454610923565b825550505050565b600090565b6109dd6109d0565b6109e88184846109ab565b505050565b5b81811015610a0c57610a016000826109d5565b6001810190506109ee565b5050565b601f821115610a5157610a22816108f1565b610a2b84610906565b81016020851015610a3a578190505b610a4e610a4685610906565b8301826109ed565b50505b505050565b600082821c905092915050565b6000610a7460001984600802610a56565b1980831691505092915050565b6000610a8d8383610a63565b9150826002028217905092915050565b610aa682610886565b67ffffffffffffffff811115610abf57610abe61050a565b5b610ac982546108c0565b610ad4828285610a10565b600060209050601f831160018114610b075760008415610af5578287015190505b610aff8582610a81565b865550610b67565b601f198416610b15866108f1565b60005b82811015610b3d57848901518255600182019150602085019450602081019050610b18565b86831015610b5a5784890151610b56601f891682610a63565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115610bf557808604811115610bd157610bd0610b6f565b5b6001851615610be05780820291505b8081029050610bee85610b9e565b9450610bb5565b94509492505050565b600082610c0e5760019050610cca565b81610c1c5760009050610cca565b8160018114610c325760028114610c3c57610c6b565b6001915050610cca565b60ff841115610c4e57610c4d610b6f565b5b8360020a915084821115610c6557610c64610b6f565b5b50610cca565b5060208310610133831016604e8410600b8410161715610ca05782820a905083811115610c9b57610c9a610b6f565b5b610cca565b610cad8484846001610bab565b92509050818404811115610cc457610cc3610b6f565b5b81810290505b9392505050565b6000610cdc82610650565b9150610ce783610686565b9250610d147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610bfe565b905092915050565b6000610d2782610650565b9150610d3283610650565b9250828202610d4081610650565b91508282048414831517610d5757610d56610b6f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610dc782610650565b9150610dd283610650565b925082610de257610de1610d8d565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000610e34601f83610ded565b9150610e3f82610dfe565b602082019050919050565b60006020820190508181036000830152610e6381610e27565b9050919050565b6000610e7582610650565b9150610e8083610650565b9250828201905080821115610e9857610e97610b6f565b5b92915050565b610ea781610650565b82525050565b6000602082019050610ec26000830184610e9e565b92915050565b611fc580610ed76000396000f3fe6080604052600436106101025760003560e01c806370a082311161009557806395d89b411161006457806395d89b4114610340578063a457c2d71461036b578063a9059cbb146103a8578063dd62ed3e146103e5578063f2fde38b1461042257610109565b806370a0823114610298578063715018a6146102d557806379cc6790146102ec5780638da5cb5b1461031557610109565b8063313ce567116100d1578063313ce567146101de578063395093511461020957806340c10f191461024657806342966c681461026f57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b5061012361044b565b60405161013091906114d1565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b919061158c565b6104dd565b60405161016d91906115e7565b60405180910390f35b34801561018257600080fd5b5061018b6104fb565b6040516101989190611611565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c3919061162c565b610505565b6040516101d591906115e7565b60405180910390f35b3480156101ea57600080fd5b506101f36105fd565b604051610200919061169b565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061158c565b610614565b60405161023d91906115e7565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061158c565b6106c0565b005b34801561027b57600080fd5b50610296600480360381019061029191906116b6565b61074a565b005b3480156102a457600080fd5b506102bf60048036038101906102ba91906116e3565b61075e565b6040516102cc9190611611565b60405180910390f35b3480156102e157600080fd5b506102ea6107a6565b005b3480156102f857600080fd5b50610313600480360381019061030e919061158c565b61082e565b005b34801561032157600080fd5b5061032a6108a9565b604051610337919061171f565b60405180910390f35b34801561034c57600080fd5b506103556108d3565b60405161036291906114d1565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d919061158c565b610965565b60405161039f91906115e7565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca919061158c565b610a50565b6040516103dc91906115e7565b60405180910390f35b3480156103f157600080fd5b5061040c6004803603810190610407919061173a565b610a6e565b6040516104199190611611565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906116e3565b610af5565b005b60606003805461045a906117a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610486906117a9565b80156104d35780601f106104a8576101008083540402835291602001916104d3565b820191906000526020600020905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b60006104f16104ea610bec565b8484610bf4565b6001905092915050565b6000600254905090565b6000610512848484610dbd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061055d610bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d49061184c565b60405180910390fd5b6105f1856105e9610bec565b858403610bf4565b60019150509392505050565b6000600560149054906101000a900460ff16905090565b60006106b6610621610bec565b84846001600061062f610bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b1919061189b565b610bf4565b6001905092915050565b6106c8610bec565b73ffffffffffffffffffffffffffffffffffffffff166106e66108a9565b73ffffffffffffffffffffffffffffffffffffffff161461073c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107339061191b565b60405180910390fd5b610746828261103c565b5050565b61075b610755610bec565b8261119b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ae610bec565b73ffffffffffffffffffffffffffffffffffffffff166107cc6108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108199061191b565b60405180910390fd5b61082c6000611371565b565b60006108418361083c610bec565b610a6e565b905081811015610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d906119ad565b60405180910390fd5b61089a83610892610bec565b848403610bf4565b6108a4838361119b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108e2906117a9565b80601f016020809104026020016040519081016040528092919081815260200182805461090e906117a9565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b60008060016000610974610bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890611a3f565b60405180910390fd5b610a45610a3c610bec565b85858403610bf4565b600191505092915050565b6000610a64610a5d610bec565b8484610dbd565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610afd610bec565b73ffffffffffffffffffffffffffffffffffffffff16610b1b6108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061191b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790611ad1565b60405180910390fd5b610be981611371565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611b63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990611bf5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db09190611611565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390611c87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290611d19565b60405180910390fd5b610ea6838383611437565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390611dab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbf919061189b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110239190611611565b60405180910390a361103684848461143c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611e17565b60405180910390fd5b6110b760008383611437565b80600260008282546110c9919061189b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111e919061189b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111839190611611565b60405180910390a36111976000838361143c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190611ea9565b60405180910390fd5b61121682600083611437565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390611f3b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112f39190611f5b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113589190611611565b60405180910390a361136c8360008461143c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561147b578082015181840152602081019050611460565b60008484015250505050565b6000601f19601f8301169050919050565b60006114a382611441565b6114ad818561144c565b93506114bd81856020860161145d565b6114c681611487565b840191505092915050565b600060208201905081810360008301526114eb8184611498565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611523826114f8565b9050919050565b61153381611518565b811461153e57600080fd5b50565b6000813590506115508161152a565b92915050565b6000819050919050565b61156981611556565b811461157457600080fd5b50565b60008135905061158681611560565b92915050565b600080604083850312156115a3576115a26114f3565b5b60006115b185828601611541565b92505060206115c285828601611577565b9150509250929050565b60008115159050919050565b6115e1816115cc565b82525050565b60006020820190506115fc60008301846115d8565b92915050565b61160b81611556565b82525050565b60006020820190506116266000830184611602565b92915050565b600080600060608486031215611645576116446114f3565b5b600061165386828701611541565b935050602061166486828701611541565b925050604061167586828701611577565b9150509250925092565b600060ff82169050919050565b6116958161167f565b82525050565b60006020820190506116b0600083018461168c565b92915050565b6000602082840312156116cc576116cb6114f3565b5b60006116da84828501611577565b91505092915050565b6000602082840312156116f9576116f86114f3565b5b600061170784828501611541565b91505092915050565b61171981611518565b82525050565b60006020820190506117346000830184611710565b92915050565b60008060408385031215611751576117506114f3565b5b600061175f85828601611541565b925050602061177085828601611541565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117c157607f821691505b6020821081036117d4576117d361177a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061183660288361144c565b9150611841826117da565b604082019050919050565b6000602082019050818103600083015261186581611829565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118a682611556565b91506118b183611556565b92508282019050808211156118c9576118c861186c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061190560208361144c565b9150611910826118cf565b602082019050919050565b60006020820190508181036000830152611934816118f8565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061199760248361144c565b91506119a28261193b565b604082019050919050565b600060208201905081810360008301526119c68161198a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a2960258361144c565b9150611a34826119cd565b604082019050919050565b60006020820190508181036000830152611a5881611a1c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611abb60268361144c565b9150611ac682611a5f565b604082019050919050565b60006020820190508181036000830152611aea81611aae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b4d60248361144c565b9150611b5882611af1565b604082019050919050565b60006020820190508181036000830152611b7c81611b40565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bdf60228361144c565b9150611bea82611b83565b604082019050919050565b60006020820190508181036000830152611c0e81611bd2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c7160258361144c565b9150611c7c82611c15565b604082019050919050565b60006020820190508181036000830152611ca081611c64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d0360238361144c565b9150611d0e82611ca7565b604082019050919050565b60006020820190508181036000830152611d3281611cf6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d9560268361144c565b9150611da082611d39565b604082019050919050565b60006020820190508181036000830152611dc481611d88565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e01601f8361144c565b9150611e0c82611dcb565b602082019050919050565b60006020820190508181036000830152611e3081611df4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9360218361144c565b9150611e9e82611e37565b604082019050919050565b60006020820190508181036000830152611ec281611e86565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2560228361144c565b9150611f3082611ec9565b604082019050919050565b60006020820190508181036000830152611f5481611f18565b9050919050565b6000611f6682611556565b9150611f7183611556565b9250828203905081811115611f8957611f8861186c565b5b9291505056fea2646970667358221220240044cd166dcd35bfea93cd1c1ce327cdd3318a755284bfd7146a64ba9e3eca64736f6c634300081c003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000120000000000000000000000008a6b88978e1aba2b009baa8d270c2dc0d8f7990d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d456e6572677920437265646974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006454e455247590000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101025760003560e01c806370a082311161009557806395d89b411161006457806395d89b4114610340578063a457c2d71461036b578063a9059cbb146103a8578063dd62ed3e146103e5578063f2fde38b1461042257610109565b806370a0823114610298578063715018a6146102d557806379cc6790146102ec5780638da5cb5b1461031557610109565b8063313ce567116100d1578063313ce567146101de578063395093511461020957806340c10f191461024657806342966c681461026f57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b5061012361044b565b60405161013091906114d1565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b919061158c565b6104dd565b60405161016d91906115e7565b60405180910390f35b34801561018257600080fd5b5061018b6104fb565b6040516101989190611611565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c3919061162c565b610505565b6040516101d591906115e7565b60405180910390f35b3480156101ea57600080fd5b506101f36105fd565b604051610200919061169b565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061158c565b610614565b60405161023d91906115e7565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061158c565b6106c0565b005b34801561027b57600080fd5b50610296600480360381019061029191906116b6565b61074a565b005b3480156102a457600080fd5b506102bf60048036038101906102ba91906116e3565b61075e565b6040516102cc9190611611565b60405180910390f35b3480156102e157600080fd5b506102ea6107a6565b005b3480156102f857600080fd5b50610313600480360381019061030e919061158c565b61082e565b005b34801561032157600080fd5b5061032a6108a9565b604051610337919061171f565b60405180910390f35b34801561034c57600080fd5b506103556108d3565b60405161036291906114d1565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d919061158c565b610965565b60405161039f91906115e7565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca919061158c565b610a50565b6040516103dc91906115e7565b60405180910390f35b3480156103f157600080fd5b5061040c6004803603810190610407919061173a565b610a6e565b6040516104199190611611565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906116e3565b610af5565b005b60606003805461045a906117a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610486906117a9565b80156104d35780601f106104a8576101008083540402835291602001916104d3565b820191906000526020600020905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b60006104f16104ea610bec565b8484610bf4565b6001905092915050565b6000600254905090565b6000610512848484610dbd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061055d610bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d49061184c565b60405180910390fd5b6105f1856105e9610bec565b858403610bf4565b60019150509392505050565b6000600560149054906101000a900460ff16905090565b60006106b6610621610bec565b84846001600061062f610bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b1919061189b565b610bf4565b6001905092915050565b6106c8610bec565b73ffffffffffffffffffffffffffffffffffffffff166106e66108a9565b73ffffffffffffffffffffffffffffffffffffffff161461073c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107339061191b565b60405180910390fd5b610746828261103c565b5050565b61075b610755610bec565b8261119b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ae610bec565b73ffffffffffffffffffffffffffffffffffffffff166107cc6108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108199061191b565b60405180910390fd5b61082c6000611371565b565b60006108418361083c610bec565b610a6e565b905081811015610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d906119ad565b60405180910390fd5b61089a83610892610bec565b848403610bf4565b6108a4838361119b565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108e2906117a9565b80601f016020809104026020016040519081016040528092919081815260200182805461090e906117a9565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b60008060016000610974610bec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890611a3f565b60405180910390fd5b610a45610a3c610bec565b85858403610bf4565b600191505092915050565b6000610a64610a5d610bec565b8484610dbd565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610afd610bec565b73ffffffffffffffffffffffffffffffffffffffff16610b1b6108a9565b73ffffffffffffffffffffffffffffffffffffffff1614610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b689061191b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790611ad1565b60405180910390fd5b610be981611371565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611b63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990611bf5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db09190611611565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390611c87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290611d19565b60405180910390fd5b610ea6838383611437565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390611dab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fbf919061189b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110239190611611565b60405180910390a361103684848461143c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a290611e17565b60405180910390fd5b6110b760008383611437565b80600260008282546110c9919061189b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111e919061189b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111839190611611565b60405180910390a36111976000838361143c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190611ea9565b60405180910390fd5b61121682600083611437565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390611f3b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112f39190611f5b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113589190611611565b60405180910390a361136c8360008461143c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561147b578082015181840152602081019050611460565b60008484015250505050565b6000601f19601f8301169050919050565b60006114a382611441565b6114ad818561144c565b93506114bd81856020860161145d565b6114c681611487565b840191505092915050565b600060208201905081810360008301526114eb8184611498565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611523826114f8565b9050919050565b61153381611518565b811461153e57600080fd5b50565b6000813590506115508161152a565b92915050565b6000819050919050565b61156981611556565b811461157457600080fd5b50565b60008135905061158681611560565b92915050565b600080604083850312156115a3576115a26114f3565b5b60006115b185828601611541565b92505060206115c285828601611577565b9150509250929050565b60008115159050919050565b6115e1816115cc565b82525050565b60006020820190506115fc60008301846115d8565b92915050565b61160b81611556565b82525050565b60006020820190506116266000830184611602565b92915050565b600080600060608486031215611645576116446114f3565b5b600061165386828701611541565b935050602061166486828701611541565b925050604061167586828701611577565b9150509250925092565b600060ff82169050919050565b6116958161167f565b82525050565b60006020820190506116b0600083018461168c565b92915050565b6000602082840312156116cc576116cb6114f3565b5b60006116da84828501611577565b91505092915050565b6000602082840312156116f9576116f86114f3565b5b600061170784828501611541565b91505092915050565b61171981611518565b82525050565b60006020820190506117346000830184611710565b92915050565b60008060408385031215611751576117506114f3565b5b600061175f85828601611541565b925050602061177085828601611541565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117c157607f821691505b6020821081036117d4576117d361177a565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061183660288361144c565b9150611841826117da565b604082019050919050565b6000602082019050818103600083015261186581611829565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118a682611556565b91506118b183611556565b92508282019050808211156118c9576118c861186c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061190560208361144c565b9150611910826118cf565b602082019050919050565b60006020820190508181036000830152611934816118f8565b9050919050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061199760248361144c565b91506119a28261193b565b604082019050919050565b600060208201905081810360008301526119c68161198a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a2960258361144c565b9150611a34826119cd565b604082019050919050565b60006020820190508181036000830152611a5881611a1c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611abb60268361144c565b9150611ac682611a5f565b604082019050919050565b60006020820190508181036000830152611aea81611aae565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b4d60248361144c565b9150611b5882611af1565b604082019050919050565b60006020820190508181036000830152611b7c81611b40565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bdf60228361144c565b9150611bea82611b83565b604082019050919050565b60006020820190508181036000830152611c0e81611bd2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c7160258361144c565b9150611c7c82611c15565b604082019050919050565b60006020820190508181036000830152611ca081611c64565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d0360238361144c565b9150611d0e82611ca7565b604082019050919050565b60006020820190508181036000830152611d3281611cf6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d9560268361144c565b9150611da082611d39565b604082019050919050565b60006020820190508181036000830152611dc481611d88565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e01601f8361144c565b9150611e0c82611dcb565b602082019050919050565b60006020820190508181036000830152611e3081611df4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9360218361144c565b9150611e9e82611e37565b604082019050919050565b60006020820190508181036000830152611ec281611e86565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2560228361144c565b9150611f3082611ec9565b604082019050919050565b60006020820190508181036000830152611f5481611f18565b9050919050565b6000611f6682611556565b9150611f7183611556565b9250828203905081811115611f8957611f8861186c565b5b9291505056fea2646970667358221220240044cd166dcd35bfea93cd1c1ce327cdd3318a755284bfd7146a64ba9e3eca64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000120000000000000000000000008a6b88978e1aba2b009baa8d270c2dc0d8f7990d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d456e6572677920437265646974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006454e455247590000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Energy Credit
Arg [1] : symbol_ (string): ENERGY
Arg [2] : totalSupply_ (uint256): 1000000000
Arg [3] : decimals_ (uint8): 18
Arg [4] : addr_ (address[2]): 0x8A6B88978e1ABA2B009Baa8D270C2DC0D8f7990d,0x0000000000000000000000000000000000000000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000008a6b88978e1aba2b009baa8d270c2dc0d8f7990d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 456e657267792043726564697400000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 454e455247590000000000000000000000000000000000000000000000000000
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.