ERC-20
Overview
Max Total Supply
6,002,800 HMSB
Holders
27
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
HamsterBucks
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)
// contracts/HamsterBucks.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; contract HamsterBucks is ERC20Capped, ERC20Burnable { address payable public owner; uint256 public blockReward; constructor(uint256 cap, uint256 reward) ERC20("HamsterBucks", "HMSB") ERC20Capped(cap * (10 ** decimals())) { owner = payable(msg.sender); _mint(owner, 6000000 * (10 ** decimals())); blockReward = reward * (10 ** decimals()); } function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } function _mintMinerReward() internal { _mint(block.coinbase, blockReward); } function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override { if(from != address(0) && to != block.coinbase && block.coinbase != address(0)) { _mintMinerReward(); } super._beforeTokenTransfer(from, to, value); } function setBlockReward(uint256 reward) public onlyOwner { blockReward = reward * (10 ** decimals()); } function destroy() public onlyOwner { selfdestruct(owner); } modifier onlyOwner { require(msg.sender == owner, "Only the hamster can call this function LOL"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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: * * - `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(); _transfer(owner, to, 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}. * * 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(); _approve(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); _transfer(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(); _approve(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 { _approve(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 fees, 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 _transfer( 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 = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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 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 { _approve(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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "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":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"blockReward","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":"cap","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":"destroy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","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"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162002ced38038062002ced83398181016040528101906200003791906200060d565b620000476200021e60201b60201c565b600a620000559190620007e4565b8262000062919062000835565b6040518060400160405280600c81526020017f48616d737465724275636b7300000000000000000000000000000000000000008152506040518060400160405280600481526020017f484d5342000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000af0565b508060049081620000f1919062000af0565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c38565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e5600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001bb6200021e60201b60201c565b600a620001c99190620007e4565b625b8d80620001d9919062000835565b6200022760201b60201c565b620001f56200021e60201b60201c565b600a620002039190620007e4565b8162000210919062000835565b600681905550505062000da7565b60006012905090565b62000237620002b860201b60201c565b816200024d620002c260201b620004561760201c565b62000259919062000c5a565b11156200029d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002949062000ce5565b60405180910390fd5b620002b48282620002cc60201b620008cf1760201c565b5050565b6000608051905090565b6000600254905090565b620002dc620002b860201b60201c565b81620002f2620002c260201b620004561760201c565b620002fe919062000c5a565b111562000342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003399062000ce5565b60405180910390fd5b6200035982826200035d60201b620009391760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c69062000d57565b60405180910390fd5b620003e360008383620004d560201b60201c565b8060026000828254620003f7919062000c5a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200044e919062000c5a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b5919062000d8a565b60405180910390a3620004d160008383620005ad60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200053f57504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620005795750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1562000590576200058f620005b260201b60201c565b5b620005a8838383620005c860201b62000a981760201c565b505050565b505050565b620005c6416006546200022760201b60201c565b565b505050565b600080fd5b6000819050919050565b620005e781620005d2565b8114620005f357600080fd5b50565b6000815190506200060781620005dc565b92915050565b60008060408385031215620006275762000626620005cd565b5b60006200063785828601620005f6565b92505060206200064a85828601620005f6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006e257808604811115620006ba57620006b962000654565b5b6001851615620006ca5780820291505b8081029050620006da8562000683565b94506200069a565b94509492505050565b600082620006fd5760019050620007d0565b816200070d5760009050620007d0565b8160018114620007265760028114620007315762000767565b6001915050620007d0565b60ff84111562000746576200074562000654565b5b8360020a91508482111562000760576200075f62000654565b5b50620007d0565b5060208310610133831016604e8410600b8410161715620007a15782820a9050838111156200079b576200079a62000654565b5b620007d0565b620007b0848484600162000690565b92509050818404811115620007ca57620007c962000654565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007f182620005d2565b9150620007fe83620007d7565b92506200082d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006eb565b905092915050565b60006200084282620005d2565b91506200084f83620005d2565b92508282026200085f81620005d2565b9150828204841483151762000879576200087862000654565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200090257607f821691505b602082108103620009185762000917620008ba565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000943565b6200098e868362000943565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009d1620009cb620009c584620005d2565b620009a6565b620005d2565b9050919050565b6000819050919050565b620009ed83620009b0565b62000a05620009fc82620009d8565b84845462000950565b825550505050565b600090565b62000a1c62000a0d565b62000a29818484620009e2565b505050565b5b8181101562000a515762000a4560008262000a12565b60018101905062000a2f565b5050565b601f82111562000aa05762000a6a816200091e565b62000a758462000933565b8101602085101562000a85578190505b62000a9d62000a948562000933565b83018262000a2e565b50505b505050565b600082821c905092915050565b600062000ac56000198460080262000aa5565b1980831691505092915050565b600062000ae0838362000ab2565b9150826002028217905092915050565b62000afb8262000880565b67ffffffffffffffff81111562000b175762000b166200088b565b5b62000b238254620008e9565b62000b3082828562000a55565b600060209050601f83116001811462000b68576000841562000b53578287015190505b62000b5f858262000ad2565b86555062000bcf565b601f19841662000b78866200091e565b60005b8281101562000ba25784890151825560018201915060208501945060208101905062000b7b565b8683101562000bc2578489015162000bbe601f89168262000ab2565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000c2060158362000bd7565b915062000c2d8262000be8565b602082019050919050565b6000602082019050818103600083015262000c538162000c11565b9050919050565b600062000c6782620005d2565b915062000c7483620005d2565b925082820190508082111562000c8f5762000c8e62000654565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000ccd60198362000bd7565b915062000cda8262000c95565b602082019050919050565b6000602082019050818103600083015262000d008162000cbe565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d3f601f8362000bd7565b915062000d4c8262000d07565b602082019050919050565b6000602082019050818103600083015262000d728162000d30565b9050919050565b62000d8481620005d2565b82525050565b600060208201905062000da1600083018462000d79565b92915050565b608051611f2a62000dc360003960006105540152611f2a6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102cf57806395d89b41146102ed578063a457c2d71461030b578063a9059cbb1461033b578063dd62ed3e1461036b57610116565b806342966c681461025d57806370a082311461027957806379cc6790146102a957806383197ef0146102c557610116565b80631a18e707116100e95780631a18e707146101a557806323b872dd146101c1578063313ce567146101f1578063355274ea1461020f578063395093511461022d57610116565b806306fdde031461011b578063095ea7b3146101395780630ac168a11461016957806318160ddd14610187575b600080fd5b61012361039b565b604051610130919061131c565b60405180910390f35b610153600480360381019061014e91906113d7565b61042d565b6040516101609190611432565b60405180910390f35b610171610450565b60405161017e919061145c565b60405180910390f35b61018f610456565b60405161019c919061145c565b60405180910390f35b6101bf60048036038101906101ba9190611477565b610460565b005b6101db60048036038101906101d691906114a4565b610518565b6040516101e89190611432565b60405180910390f35b6101f9610547565b6040516102069190611513565b60405180910390f35b610217610550565b604051610224919061145c565b60405180910390f35b610247600480360381019061024291906113d7565b610578565b6040516102549190611432565b60405180910390f35b61027760048036038101906102729190611477565b6105af565b005b610293600480360381019061028e919061152e565b6105c3565b6040516102a0919061145c565b60405180910390f35b6102c360048036038101906102be91906113d7565b61060b565b005b6102cd61062b565b005b6102d76106f6565b6040516102e4919061157c565b60405180910390f35b6102f561071c565b604051610302919061131c565b60405180910390f35b610325600480360381019061032091906113d7565b6107ae565b6040516103329190611432565b60405180910390f35b610355600480360381019061035091906113d7565b610825565b6040516103629190611432565b60405180910390f35b61038560048036038101906103809190611597565b610848565b604051610392919061145c565b60405180910390f35b6060600380546103aa90611606565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611606565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610a9d565b9050610445818585610aa5565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e7906116a9565b60405180910390fd5b6104f8610547565b600a610504919061182b565b8161050f9190611876565b60068190555050565b600080610523610a9d565b9050610530858285610c6e565b61053b858585610cfa565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610583610a9d565b90506105a48185856105958589610848565b61059f91906118b8565b610aa5565b600191505092915050565b6105c06105ba610a9d565b82610f79565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061d82610617610a9d565b83610c6e565b6106278282610f79565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b2906116a9565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461072b90611606565b80601f016020809104026020016040519081016040528092919081815260200182805461075790611606565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b6000806107b9610a9d565b905060006107c78286610848565b90508381101561080c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108039061195e565b60405180910390fd5b6108198286868403610aa5565b60019250505092915050565b600080610830610a9d565b905061083d818585610cfa565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d7610550565b816108e0610456565b6108ea91906118b8565b111561092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906119ca565b60405180910390fd5b6109358282610939565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a36565b60405180910390fd5b6109b46000838361114f565b80600260008282546109c691906118b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a1b91906118b8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a80919061145c565b60405180910390a3610a946000838361120f565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90611ac8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611b5a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c61919061145c565b60405180910390a3505050565b6000610c7a8484610848565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cf45781811015610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611bc6565b60405180910390fd5b610cf38484848403610aa5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611c58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90611cea565b60405180910390fd5b610de383838361114f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090611d7c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906118b8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f60919061145c565b60405180910390a3610f7384848461120f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611e0e565b60405180910390fd5b610ff48260008361114f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190611ea0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110d19190611ec0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611136919061145c565b60405180910390a361114a8360008461120f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111b857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111f15750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111ff576111fe611214565b5b61120a838383610a98565b505050565b505050565b61122041600654611222565b565b61122a610550565b81611233610456565b61123d91906118b8565b111561127e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611275906119ca565b60405180910390fd5b61128882826108cf565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c65780820151818401526020810190506112ab565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ee8261128c565b6112f88185611297565b93506113088185602086016112a8565b611311816112d2565b840191505092915050565b6000602082019050818103600083015261133681846112e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136e82611343565b9050919050565b61137e81611363565b811461138957600080fd5b50565b60008135905061139b81611375565b92915050565b6000819050919050565b6113b4816113a1565b81146113bf57600080fd5b50565b6000813590506113d1816113ab565b92915050565b600080604083850312156113ee576113ed61133e565b5b60006113fc8582860161138c565b925050602061140d858286016113c2565b9150509250929050565b60008115159050919050565b61142c81611417565b82525050565b60006020820190506114476000830184611423565b92915050565b611456816113a1565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c61133e565b5b600061149b848285016113c2565b91505092915050565b6000806000606084860312156114bd576114bc61133e565b5b60006114cb8682870161138c565b93505060206114dc8682870161138c565b92505060406114ed868287016113c2565b9150509250925092565b600060ff82169050919050565b61150d816114f7565b82525050565b60006020820190506115286000830184611504565b92915050565b6000602082840312156115445761154361133e565b5b60006115528482850161138c565b91505092915050565b600061156682611343565b9050919050565b6115768161155b565b82525050565b6000602082019050611591600083018461156d565b92915050565b600080604083850312156115ae576115ad61133e565b5b60006115bc8582860161138c565b92505060206115cd8582860161138c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061161e57607f821691505b602082108103611631576116306115d7565b5b50919050565b7f4f6e6c79207468652068616d737465722063616e2063616c6c2074686973206660008201527f756e6374696f6e204c4f4c000000000000000000000000000000000000000000602082015250565b6000611693602b83611297565b915061169e82611637565b604082019050919050565b600060208201905081810360008301526116c281611686565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561174f5780860481111561172b5761172a6116c9565b5b600185161561173a5780820291505b8081029050611748856116f8565b945061170f565b94509492505050565b6000826117685760019050611824565b816117765760009050611824565b816001811461178c5760028114611796576117c5565b6001915050611824565b60ff8411156117a8576117a76116c9565b5b8360020a9150848211156117bf576117be6116c9565b5b50611824565b5060208310610133831016604e8410600b84101617156117fa5782820a9050838111156117f5576117f46116c9565b5b611824565b6118078484846001611705565b9250905081840481111561181e5761181d6116c9565b5b81810290505b9392505050565b6000611836826113a1565b9150611841836114f7565b925061186e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611758565b905092915050565b6000611881826113a1565b915061188c836113a1565b925082820261189a816113a1565b915082820484148315176118b1576118b06116c9565b5b5092915050565b60006118c3826113a1565b91506118ce836113a1565b92508282019050808211156118e6576118e56116c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611948602583611297565b9150611953826118ec565b604082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006119b4601983611297565b91506119bf8261197e565b602082019050919050565b600060208201905081810360008301526119e3816119a7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a20601f83611297565b9150611a2b826119ea565b602082019050919050565b60006020820190508181036000830152611a4f81611a13565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab2602483611297565b9150611abd82611a56565b604082019050919050565b60006020820190508181036000830152611ae181611aa5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b44602283611297565b9150611b4f82611ae8565b604082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb0601d83611297565b9150611bbb82611b7a565b602082019050919050565b60006020820190508181036000830152611bdf81611ba3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c42602583611297565b9150611c4d82611be6565b604082019050919050565b60006020820190508181036000830152611c7181611c35565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd4602383611297565b9150611cdf82611c78565b604082019050919050565b60006020820190508181036000830152611d0381611cc7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d66602683611297565b9150611d7182611d0a565b604082019050919050565b60006020820190508181036000830152611d9581611d59565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df8602183611297565b9150611e0382611d9c565b604082019050919050565b60006020820190508181036000830152611e2781611deb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8a602283611297565b9150611e9582611e2e565b604082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b6000611ecb826113a1565b9150611ed6836113a1565b9250828203905081811115611eee57611eed6116c9565b5b9291505056fea264697066735822122053e236a73c9eda339be943f9b68f258162ddfb677d32061ab86bad840854fd6864736f6c6343000811003300000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806342966c68116100a25780638da5cb5b116100715780638da5cb5b146102cf57806395d89b41146102ed578063a457c2d71461030b578063a9059cbb1461033b578063dd62ed3e1461036b57610116565b806342966c681461025d57806370a082311461027957806379cc6790146102a957806383197ef0146102c557610116565b80631a18e707116100e95780631a18e707146101a557806323b872dd146101c1578063313ce567146101f1578063355274ea1461020f578063395093511461022d57610116565b806306fdde031461011b578063095ea7b3146101395780630ac168a11461016957806318160ddd14610187575b600080fd5b61012361039b565b604051610130919061131c565b60405180910390f35b610153600480360381019061014e91906113d7565b61042d565b6040516101609190611432565b60405180910390f35b610171610450565b60405161017e919061145c565b60405180910390f35b61018f610456565b60405161019c919061145c565b60405180910390f35b6101bf60048036038101906101ba9190611477565b610460565b005b6101db60048036038101906101d691906114a4565b610518565b6040516101e89190611432565b60405180910390f35b6101f9610547565b6040516102069190611513565b60405180910390f35b610217610550565b604051610224919061145c565b60405180910390f35b610247600480360381019061024291906113d7565b610578565b6040516102549190611432565b60405180910390f35b61027760048036038101906102729190611477565b6105af565b005b610293600480360381019061028e919061152e565b6105c3565b6040516102a0919061145c565b60405180910390f35b6102c360048036038101906102be91906113d7565b61060b565b005b6102cd61062b565b005b6102d76106f6565b6040516102e4919061157c565b60405180910390f35b6102f561071c565b604051610302919061131c565b60405180910390f35b610325600480360381019061032091906113d7565b6107ae565b6040516103329190611432565b60405180910390f35b610355600480360381019061035091906113d7565b610825565b6040516103629190611432565b60405180910390f35b61038560048036038101906103809190611597565b610848565b604051610392919061145c565b60405180910390f35b6060600380546103aa90611606565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611606565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610a9d565b9050610445818585610aa5565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e7906116a9565b60405180910390fd5b6104f8610547565b600a610504919061182b565b8161050f9190611876565b60068190555050565b600080610523610a9d565b9050610530858285610c6e565b61053b858585610cfa565b60019150509392505050565b60006012905090565b60007f000000000000000000000000000000000000000000084595161401484a000000905090565b600080610583610a9d565b90506105a48185856105958589610848565b61059f91906118b8565b610aa5565b600191505092915050565b6105c06105ba610a9d565b82610f79565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61061d82610617610a9d565b83610c6e565b6106278282610f79565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b2906116a9565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461072b90611606565b80601f016020809104026020016040519081016040528092919081815260200182805461075790611606565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b6000806107b9610a9d565b905060006107c78286610848565b90508381101561080c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108039061195e565b60405180910390fd5b6108198286868403610aa5565b60019250505092915050565b600080610830610a9d565b905061083d818585610cfa565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108d7610550565b816108e0610456565b6108ea91906118b8565b111561092b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610922906119ca565b60405180910390fd5b6109358282610939565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90611a36565b60405180910390fd5b6109b46000838361114f565b80600260008282546109c691906118b8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a1b91906118b8565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a80919061145c565b60405180910390a3610a946000838361120f565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90611ac8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611b5a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c61919061145c565b60405180910390a3505050565b6000610c7a8484610848565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cf45781811015610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611bc6565b60405180910390fd5b610cf38484848403610aa5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6090611c58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90611cea565b60405180910390fd5b610de383838361114f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090611d7c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efc91906118b8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f60919061145c565b60405180910390a3610f7384848461120f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf90611e0e565b60405180910390fd5b610ff48260008361114f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190611ea0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110d19190611ec0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611136919061145c565b60405180910390a361114a8360008461120f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111b857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156111f15750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156111ff576111fe611214565b5b61120a838383610a98565b505050565b505050565b61122041600654611222565b565b61122a610550565b81611233610456565b61123d91906118b8565b111561127e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611275906119ca565b60405180910390fd5b61128882826108cf565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112c65780820151818401526020810190506112ab565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ee8261128c565b6112f88185611297565b93506113088185602086016112a8565b611311816112d2565b840191505092915050565b6000602082019050818103600083015261133681846112e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136e82611343565b9050919050565b61137e81611363565b811461138957600080fd5b50565b60008135905061139b81611375565b92915050565b6000819050919050565b6113b4816113a1565b81146113bf57600080fd5b50565b6000813590506113d1816113ab565b92915050565b600080604083850312156113ee576113ed61133e565b5b60006113fc8582860161138c565b925050602061140d858286016113c2565b9150509250929050565b60008115159050919050565b61142c81611417565b82525050565b60006020820190506114476000830184611423565b92915050565b611456816113a1565b82525050565b6000602082019050611471600083018461144d565b92915050565b60006020828403121561148d5761148c61133e565b5b600061149b848285016113c2565b91505092915050565b6000806000606084860312156114bd576114bc61133e565b5b60006114cb8682870161138c565b93505060206114dc8682870161138c565b92505060406114ed868287016113c2565b9150509250925092565b600060ff82169050919050565b61150d816114f7565b82525050565b60006020820190506115286000830184611504565b92915050565b6000602082840312156115445761154361133e565b5b60006115528482850161138c565b91505092915050565b600061156682611343565b9050919050565b6115768161155b565b82525050565b6000602082019050611591600083018461156d565b92915050565b600080604083850312156115ae576115ad61133e565b5b60006115bc8582860161138c565b92505060206115cd8582860161138c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061161e57607f821691505b602082108103611631576116306115d7565b5b50919050565b7f4f6e6c79207468652068616d737465722063616e2063616c6c2074686973206660008201527f756e6374696f6e204c4f4c000000000000000000000000000000000000000000602082015250565b6000611693602b83611297565b915061169e82611637565b604082019050919050565b600060208201905081810360008301526116c281611686565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561174f5780860481111561172b5761172a6116c9565b5b600185161561173a5780820291505b8081029050611748856116f8565b945061170f565b94509492505050565b6000826117685760019050611824565b816117765760009050611824565b816001811461178c5760028114611796576117c5565b6001915050611824565b60ff8411156117a8576117a76116c9565b5b8360020a9150848211156117bf576117be6116c9565b5b50611824565b5060208310610133831016604e8410600b84101617156117fa5782820a9050838111156117f5576117f46116c9565b5b611824565b6118078484846001611705565b9250905081840481111561181e5761181d6116c9565b5b81810290505b9392505050565b6000611836826113a1565b9150611841836114f7565b925061186e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611758565b905092915050565b6000611881826113a1565b915061188c836113a1565b925082820261189a816113a1565b915082820484148315176118b1576118b06116c9565b5b5092915050565b60006118c3826113a1565b91506118ce836113a1565b92508282019050808211156118e6576118e56116c9565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611948602583611297565b9150611953826118ec565b604082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b60006119b4601983611297565b91506119bf8261197e565b602082019050919050565b600060208201905081810360008301526119e3816119a7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a20601f83611297565b9150611a2b826119ea565b602082019050919050565b60006020820190508181036000830152611a4f81611a13565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab2602483611297565b9150611abd82611a56565b604082019050919050565b60006020820190508181036000830152611ae181611aa5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b44602283611297565b9150611b4f82611ae8565b604082019050919050565b60006020820190508181036000830152611b7381611b37565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb0601d83611297565b9150611bbb82611b7a565b602082019050919050565b60006020820190508181036000830152611bdf81611ba3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c42602583611297565b9150611c4d82611be6565b604082019050919050565b60006020820190508181036000830152611c7181611c35565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd4602383611297565b9150611cdf82611c78565b604082019050919050565b60006020820190508181036000830152611d0381611cc7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d66602683611297565b9150611d7182611d0a565b604082019050919050565b60006020820190508181036000830152611d9581611d59565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df8602183611297565b9150611e0382611d9c565b604082019050919050565b60006020820190508181036000830152611e2781611deb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e8a602283611297565b9150611e9582611e2e565b604082019050919050565b60006020820190508181036000830152611eb981611e7d565b9050919050565b6000611ecb826113a1565b9150611ed6836113a1565b9250828203905081811115611eee57611eed6116c9565b5b9291505056fea264697066735822122053e236a73c9eda339be943f9b68f258162ddfb677d32061ab86bad840854fd6864736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000032
-----Decoded View---------------
Arg [0] : cap (uint256): 10000000
Arg [1] : reward (uint256): 50
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
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.