Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Token | 9694019 | 19 hrs ago | IN | 0 S | 0.11653712 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
9694019 | 19 hrs ago | Contract Creation | 0 S |
Loading...
Loading
Contract Name:
TokenFactory
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Sources flattened with hardhat v2.22.18 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity 0.8.20; /** * @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/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity 0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/interfaces/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity 0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity 0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity 0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 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/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol) pragma solidity 0.8.20; /** * @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 ERC-20 * applications. */ 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) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev 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: * * ```solidity * 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 contracts/TokenFactory.sol // Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.20; contract CustomToken is ERC20, Ownable { struct TokenMetadata { string tokenURI; string description; string website; string twitter; string telegram; } struct TokenPermissions { bool canMint; bool canFreeze; bool canUpdateMetadata; } TokenMetadata public metadata; TokenPermissions public permissions; uint8 private immutable _decimals; constructor( string memory name, string memory symbol, uint256 initialSupply, uint8 decimals_, address creator, TokenMetadata memory _metadata, TokenPermissions memory _permissions ) ERC20(name, symbol) Ownable(msg.sender) { transferOwnership(creator); metadata = _metadata; permissions = _permissions; _decimals = decimals_; _mint(creator, initialSupply); } function decimals() public view override returns (uint8) { return _decimals; } // Getters para manter compatibilidade function tokenURI() public view returns (string memory) { return metadata.tokenURI; } function description() public view returns (string memory) { return metadata.description; } function website() public view returns (string memory) { return metadata.website; } function twitter() public view returns (string memory) { return metadata.twitter; } function telegram() public view returns (string memory) { return metadata.telegram; } function canMint() public view returns (bool) { return permissions.canMint; } function canFreeze() public view returns (bool) { return permissions.canFreeze; } function canUpdateMetadata() public view returns (bool) { return permissions.canUpdateMetadata; } } contract TokenFactory is Ownable { event TokenCreated( address indexed tokenAddress, string name, string symbol, uint256 totalSupply, address creator ); constructor() Ownable(msg.sender) {} function createToken( string memory name, string memory symbol, uint256 initialSupply, uint8 decimals_, CustomToken.TokenMetadata memory metadata, CustomToken.TokenPermissions memory permissions ) external returns (address) { CustomToken newToken = new CustomToken( name, symbol, initialSupply, decimals_, msg.sender, metadata, permissions ); emit TokenCreated( address(newToken), name, symbol, initialSupply, msg.sender ); return address(newToken); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"},{"indexed":false,"internalType":"address","name":"creator","type":"address"}],"name":"TokenCreated","type":"event"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"components":[{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"string","name":"twitter","type":"string"},{"internalType":"string","name":"telegram","type":"string"}],"internalType":"struct CustomToken.TokenMetadata","name":"metadata","type":"tuple"},{"components":[{"internalType":"bool","name":"canMint","type":"bool"},{"internalType":"bool","name":"canFreeze","type":"bool"},{"internalType":"bool","name":"canUpdateMetadata","type":"bool"}],"internalType":"struct CustomToken.TokenPermissions","name":"permissions","type":"tuple"}],"name":"createToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5033600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100845760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161007b919061019e565b60405180910390fd5b6100938161009960201b60201c565b506101b9565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006101888261015d565b9050919050565b6101988161017d565b82525050565b60006020820190506101b3600083018461018f565b92915050565b6136b9806101c86000396000f3fe60806040523480156200001157600080fd5b5060043610620000525760003560e01c8063715018a614620000575780638da5cb5b1462000063578063b1c4733a1462000085578063f2fde38b14620000bb575b600080fd5b62000061620000db565b005b6200006d620000f3565b6040516200007c919062000406565b60405180910390f35b620000a360048036038101906200009d9190620007fe565b6200011c565b604051620000b2919062000406565b60405180910390f35b620000d96004803603810190620000d3919062000929565b620001ca565b005b620000e562000257565b620000f16000620002e7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080878787873388886040516200013490620003b3565b62000146979695949392919062000b4d565b604051809103906000f08015801562000163573d6000803e3d6000fd5b5090508073ffffffffffffffffffffffffffffffffffffffff167fb7d8fd3c9d56d12c15c8e139bc4e6febd6ad2349b3ebe6a1a91c0a9e7797710d89898933604051620001b4949392919062000be0565b60405180910390a2809150509695505050505050565b620001d462000257565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002495760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000240919062000406565b60405180910390fd5b6200025481620002e7565b50565b62000261620003ab565b73ffffffffffffffffffffffffffffffffffffffff1662000281620000f3565b73ffffffffffffffffffffffffffffffffffffffff1614620002e557620002a7620003ab565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620002dc919062000406565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b612a488062000c3c83390190565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003ee82620003c1565b9050919050565b6200040081620003e1565b82525050565b60006020820190506200041d6000830184620003f5565b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048c8262000441565b810181811067ffffffffffffffff82111715620004ae57620004ad62000452565b5b80604052505050565b6000620004c362000423565b9050620004d1828262000481565b919050565b600067ffffffffffffffff821115620004f457620004f362000452565b5b620004ff8262000441565b9050602081019050919050565b82818337600083830152505050565b6000620005326200052c84620004d6565b620004b7565b9050828152602081018484840111156200055157620005506200043c565b5b6200055e8482856200050c565b509392505050565b600082601f8301126200057e576200057d62000437565b5b8135620005908482602086016200051b565b91505092915050565b6000819050919050565b620005ae8162000599565b8114620005ba57600080fd5b50565b600081359050620005ce81620005a3565b92915050565b600060ff82169050919050565b620005ec81620005d4565b8114620005f857600080fd5b50565b6000813590506200060c81620005e1565b92915050565b600080fd5b600080fd5b600060a0828403121562000635576200063462000612565b5b6200064160a0620004b7565b9050600082013567ffffffffffffffff81111562000664576200066362000617565b5b620006728482850162000566565b600083015250602082013567ffffffffffffffff81111562000699576200069862000617565b5b620006a78482850162000566565b602083015250604082013567ffffffffffffffff811115620006ce57620006cd62000617565b5b620006dc8482850162000566565b604083015250606082013567ffffffffffffffff81111562000703576200070262000617565b5b620007118482850162000566565b606083015250608082013567ffffffffffffffff81111562000738576200073762000617565b5b620007468482850162000566565b60808301525092915050565b60008115159050919050565b620007698162000752565b81146200077557600080fd5b50565b60008135905062000789816200075e565b92915050565b600060608284031215620007a857620007a762000612565b5b620007b46060620004b7565b90506000620007c68482850162000778565b6000830152506020620007dc8482850162000778565b6020830152506040620007f28482850162000778565b60408301525092915050565b60008060008060008061010087890312156200081f576200081e6200042d565b5b600087013567ffffffffffffffff81111562000840576200083f62000432565b5b6200084e89828a0162000566565b965050602087013567ffffffffffffffff81111562000872576200087162000432565b5b6200088089828a0162000566565b95505060406200089389828a01620005bd565b9450506060620008a689828a01620005fb565b935050608087013567ffffffffffffffff811115620008ca57620008c962000432565b5b620008d889828a016200061c565b92505060a0620008eb89828a016200078f565b9150509295509295509295565b6200090381620003e1565b81146200090f57600080fd5b50565b6000813590506200092381620008f8565b92915050565b6000602082840312156200094257620009416200042d565b5b6000620009528482850162000912565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620009975780820151818401526020810190506200097a565b60008484015250505050565b6000620009b0826200095b565b620009bc818562000966565b9350620009ce81856020860162000977565b620009d98162000441565b840191505092915050565b620009ef8162000599565b82525050565b62000a0081620005d4565b82525050565b600082825260208201905092915050565b600062000a24826200095b565b62000a30818562000a06565b935062000a4281856020860162000977565b62000a4d8162000441565b840191505092915050565b600060a083016000830151848203600086015262000a77828262000a17565b9150506020830151848203602086015262000a93828262000a17565b9150506040830151848203604086015262000aaf828262000a17565b9150506060830151848203606086015262000acb828262000a17565b9150506080830151848203608086015262000ae7828262000a17565b9150508091505092915050565b62000aff8162000752565b82525050565b60608201600082015162000b1d600085018262000af4565b50602082015162000b32602085018262000af4565b50604082015162000b47604085018262000af4565b50505050565b600061012082019050818103600083015262000b6a818a620009a3565b9050818103602083015262000b808189620009a3565b905062000b916040830188620009e4565b62000ba06060830187620009f5565b62000baf6080830186620003f5565b81810360a083015262000bc3818562000a58565b905062000bd460c083018462000b05565b98975050505050505050565b6000608082019050818103600083015262000bfc8187620009a3565b9050818103602083015262000c128186620009a3565b905062000c236040830185620009e4565b62000c326060830184620003f5565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162002a4838038062002a48833981810160405281019062000037919062000b56565b33878781600390816200004b919062000ea8565b5080600490816200005d919062000ea8565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000d55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000cc919062000fa0565b60405180910390fd5b620000e6816200020960201b60201c565b50620000f883620002cf60201b60201c565b816006600082015181600001908162000112919062000ea8565b5060208201518160010190816200012a919062000ea8565b50604082015181600201908162000142919062000ea8565b5060608201518160030190816200015a919062000ea8565b50608082015181600401908162000172919062000ea8565b5090505080600b60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff0219169083151502179055509050508360ff1660808160ff1681525050620001fc83866200036860201b60201c565b5050505050505062001092565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002df620003f560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003545760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200034b919062000fa0565b60405180910390fd5b62000365816200020960201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003dd5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003d4919062000fa0565b60405180910390fd5b620003f1600083836200049760201b60201c565b5050565b62000405620006c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200042b620006cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004955762000457620006c760201b60201c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016200048c919062000fa0565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620004ed578060026000828254620004e0919062000fec565b92505081905550620005c3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200057c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005739392919062001038565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200060e57806002600082825403925050819055506200065b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006ba919062001075565b60405180910390a3505050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007628262000717565b810181811067ffffffffffffffff8211171562000784576200078362000728565b5b80604052505050565b600062000799620006f9565b9050620007a7828262000757565b919050565b600067ffffffffffffffff821115620007ca57620007c962000728565b5b620007d58262000717565b9050602081019050919050565b60005b8381101562000802578082015181840152602081019050620007e5565b60008484015250505050565b6000620008256200081f84620007ac565b6200078d565b90508281526020810184848401111562000844576200084362000712565b5b62000851848285620007e2565b509392505050565b600082601f8301126200087157620008706200070d565b5b8151620008838482602086016200080e565b91505092915050565b6000819050919050565b620008a1816200088c565b8114620008ad57600080fd5b50565b600081519050620008c18162000896565b92915050565b600060ff82169050919050565b620008df81620008c7565b8114620008eb57600080fd5b50565b600081519050620008ff81620008d4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009328262000905565b9050919050565b620009448162000925565b81146200095057600080fd5b50565b600081519050620009648162000939565b92915050565b600080fd5b600080fd5b600060a082840312156200098d576200098c6200096a565b5b6200099960a06200078d565b9050600082015167ffffffffffffffff811115620009bc57620009bb6200096f565b5b620009ca8482850162000859565b600083015250602082015167ffffffffffffffff811115620009f157620009f06200096f565b5b620009ff8482850162000859565b602083015250604082015167ffffffffffffffff81111562000a265762000a256200096f565b5b62000a348482850162000859565b604083015250606082015167ffffffffffffffff81111562000a5b5762000a5a6200096f565b5b62000a698482850162000859565b606083015250608082015167ffffffffffffffff81111562000a905762000a8f6200096f565b5b62000a9e8482850162000859565b60808301525092915050565b60008115159050919050565b62000ac18162000aaa565b811462000acd57600080fd5b50565b60008151905062000ae18162000ab6565b92915050565b60006060828403121562000b005762000aff6200096a565b5b62000b0c60606200078d565b9050600062000b1e8482850162000ad0565b600083015250602062000b348482850162000ad0565b602083015250604062000b4a8482850162000ad0565b60408301525092915050565b6000806000806000806000610120888a03121562000b795762000b7862000703565b5b600088015167ffffffffffffffff81111562000b9a5762000b9962000708565b5b62000ba88a828b0162000859565b975050602088015167ffffffffffffffff81111562000bcc5762000bcb62000708565b5b62000bda8a828b0162000859565b965050604062000bed8a828b01620008b0565b955050606062000c008a828b01620008ee565b945050608062000c138a828b0162000953565b93505060a088015167ffffffffffffffff81111562000c375762000c3662000708565b5b62000c458a828b0162000974565b92505060c062000c588a828b0162000ae7565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cba57607f821691505b60208210810362000cd05762000ccf62000c72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cfb565b62000d46868362000cfb565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000d8962000d8362000d7d846200088c565b62000d5e565b6200088c565b9050919050565b6000819050919050565b62000da58362000d68565b62000dbd62000db48262000d90565b84845462000d08565b825550505050565b600090565b62000dd462000dc5565b62000de181848462000d9a565b505050565b5b8181101562000e095762000dfd60008262000dca565b60018101905062000de7565b5050565b601f82111562000e585762000e228162000cd6565b62000e2d8462000ceb565b8101602085101562000e3d578190505b62000e5562000e4c8562000ceb565b83018262000de6565b50505b505050565b600082821c905092915050565b600062000e7d6000198460080262000e5d565b1980831691505092915050565b600062000e98838362000e6a565b9150826002028217905092915050565b62000eb38262000c67565b67ffffffffffffffff81111562000ecf5762000ece62000728565b5b62000edb825462000ca1565b62000ee882828562000e0d565b600060209050601f83116001811462000f20576000841562000f0b578287015190505b62000f17858262000e8a565b86555062000f87565b601f19841662000f308662000cd6565b60005b8281101562000f5a5784890151825560018201915060208501945060208101905062000f33565b8683101562000f7a578489015162000f76601f89168262000e6a565b8355505b6001600288020188555050505b505050505050565b62000f9a8162000925565b82525050565b600060208201905062000fb7600083018462000f8f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ff9826200088c565b915062001006836200088c565b925082820190508082111562001021576200102062000fbd565b5b92915050565b62001032816200088c565b82525050565b60006060820190506200104f600083018662000f8f565b6200105e602083018562001027565b6200106d604083018462001027565b949350505050565b60006020820190506200108c600083018462001027565b92915050565b60805161199a620010ae6000396000610531015261199a6000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637284e416116100b8578063abfaeee01161007c578063abfaeee014610361578063beb0a4161461037f578063beb9716d1461039d578063dd62ed3e146103bb578063f2fde38b146103eb578063fbc6e84e1461040757610142565b80637284e416146102b75780638da5cb5b146102d557806395d89b41146102f3578063a9059cbb14610311578063ab8c71c01461034157610142565b8063313ce5671161010a578063313ce56714610201578063392f37e91461021f5780633c130d901461024157806347ecb6651461025f57806370a082311461027d578063715018a6146102ad57610142565b806306fdde0314610147578063095ea7b3146101655780630facaef31461019557806318160ddd146101b357806323b872dd146101d1575b600080fd5b61014f610425565b60405161015c9190611541565b60405180910390f35b61017f600480360381019061017a91906115fc565b6104b7565b60405161018c9190611657565b60405180910390f35b61019d6104da565b6040516101aa9190611657565b60405180910390f35b6101bb6104f4565b6040516101c89190611681565b60405180910390f35b6101eb60048036038101906101e6919061169c565b6104fe565b6040516101f89190611657565b60405180910390f35b61020961052d565b604051610216919061170b565b60405180910390f35b610227610555565b604051610238959493929190611726565b60405180910390f35b610249610821565b6040516102569190611541565b60405180910390f35b6102676108b6565b6040516102749190611541565b60405180910390f35b6102976004803603810190610292919061179c565b61094b565b6040516102a49190611681565b60405180910390f35b6102b5610993565b005b6102bf6109a7565b6040516102cc9190611541565b60405180910390f35b6102dd610a3c565b6040516102ea91906117d8565b60405180910390f35b6102fb610a66565b6040516103089190611541565b60405180910390f35b61032b600480360381019061032691906115fc565b610af8565b6040516103389190611657565b60405180910390f35b610349610b1b565b604051610358939291906117f3565b60405180910390f35b610369610b5a565b6040516103769190611541565b60405180910390f35b610387610bef565b6040516103949190611541565b60405180910390f35b6103a5610c84565b6040516103b29190611657565b60405180910390f35b6103d560048036038101906103d0919061182a565b610c9e565b6040516103e29190611681565b60405180910390f35b6104056004803603810190610400919061179c565b610d25565b005b61040f610dab565b60405161041c9190611657565b60405180910390f35b60606003805461043490611899565b80601f016020809104026020016040519081016040528092919081815260200182805461046090611899565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610dc5565b90506104cf818585610dcd565b600191505092915050565b6000600b60000160029054906101000a900460ff16905090565b6000600254905090565b600080610509610dc5565b9050610516858285610ddf565b610521858585610e74565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600680600001805461056690611899565b80601f016020809104026020016040519081016040528092919081815260200182805461059290611899565b80156105df5780601f106105b4576101008083540402835291602001916105df565b820191906000526020600020905b8154815290600101906020018083116105c257829003601f168201915b5050505050908060010180546105f490611899565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611899565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b50505050509080600201805461068290611899565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90611899565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b50505050509080600301805461071090611899565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90611899565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b50505050509080600401805461079e90611899565b80601f01602080910402602001604051908101604052809291908181526020018280546107ca90611899565b80156108175780601f106107ec57610100808354040283529160200191610817565b820191906000526020600020905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905085565b60606006600001805461083390611899565b80601f016020809104026020016040519081016040528092919081815260200182805461085f90611899565b80156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b6060600660040180546108c890611899565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490611899565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099b610f68565b6109a56000610fef565b565b6060600660010180546109b990611899565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590611899565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a7590611899565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa190611899565b8015610aee5780601f10610ac357610100808354040283529160200191610aee565b820191906000526020600020905b815481529060010190602001808311610ad157829003601f168201915b5050505050905090565b600080610b03610dc5565b9050610b10818585610e74565b600191505092915050565b600b8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16905083565b606060066003018054610b6c90611899565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9890611899565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b606060066002018054610c0190611899565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2d90611899565b8015610c7a5780601f10610c4f57610100808354040283529160200191610c7a565b820191906000526020600020905b815481529060010190602001808311610c5d57829003601f168201915b5050505050905090565b6000600b60000160009054906101000a900460ff16905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2d610f68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9f5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d9691906117d8565b60405180910390fd5b610da881610fef565b50565b6000600b60000160019054906101000a900460ff16905090565b600033905090565b610dda83838360016110b5565b505050565b6000610deb8484610c9e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610e6e5781811015610e5e578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e55939291906118ca565b60405180910390fd5b610e6d848484840360006110b5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee65760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610edd91906117d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f585760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f4f91906117d8565b60405180910390fd5b610f6383838361128c565b505050565b610f70610dc5565b73ffffffffffffffffffffffffffffffffffffffff16610f8e610a3c565b73ffffffffffffffffffffffffffffffffffffffff1614610fed57610fb1610dc5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610fe491906117d8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111275760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161111e91906117d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111995760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161119091906117d8565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611286578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161127d9190611681565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112de5780600260008282546112d29190611930565b925050819055506113b1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561136a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611361939291906118ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fa5780600260008282540392505081905550611447565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a49190611681565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114eb5780820151818401526020810190506114d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611513826114b1565b61151d81856114bc565b935061152d8185602086016114cd565b611536816114f7565b840191505092915050565b6000602082019050818103600083015261155b8184611508565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061159382611568565b9050919050565b6115a381611588565b81146115ae57600080fd5b50565b6000813590506115c08161159a565b92915050565b6000819050919050565b6115d9816115c6565b81146115e457600080fd5b50565b6000813590506115f6816115d0565b92915050565b6000806040838503121561161357611612611563565b5b6000611621858286016115b1565b9250506020611632858286016115e7565b9150509250929050565b60008115159050919050565b6116518161163c565b82525050565b600060208201905061166c6000830184611648565b92915050565b61167b816115c6565b82525050565b60006020820190506116966000830184611672565b92915050565b6000806000606084860312156116b5576116b4611563565b5b60006116c3868287016115b1565b93505060206116d4868287016115b1565b92505060406116e5868287016115e7565b9150509250925092565b600060ff82169050919050565b611705816116ef565b82525050565b600060208201905061172060008301846116fc565b92915050565b600060a08201905081810360008301526117408188611508565b905081810360208301526117548187611508565b905081810360408301526117688186611508565b9050818103606083015261177c8185611508565b905081810360808301526117908184611508565b90509695505050505050565b6000602082840312156117b2576117b1611563565b5b60006117c0848285016115b1565b91505092915050565b6117d281611588565b82525050565b60006020820190506117ed60008301846117c9565b92915050565b60006060820190506118086000830186611648565b6118156020830185611648565b6118226040830184611648565b949350505050565b6000806040838503121561184157611840611563565b5b600061184f858286016115b1565b9250506020611860858286016115b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118b157607f821691505b6020821081036118c4576118c361186a565b5b50919050565b60006060820190506118df60008301866117c9565b6118ec6020830185611672565b6118f96040830184611672565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061193b826115c6565b9150611946836115c6565b925082820190508082111561195e5761195d611901565b5b9291505056fea264697066735822122000d1f570b7bcb802d550080055993b5844f7211071000c5c34a1c538eaf19c6964736f6c63430008140033a26469706673582212200a398d4fff4e4678636e1f2254b45c87ee0c9e4d2bc6a51c6fde46f4a4ac750764736f6c63430008140033
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620000525760003560e01c8063715018a614620000575780638da5cb5b1462000063578063b1c4733a1462000085578063f2fde38b14620000bb575b600080fd5b62000061620000db565b005b6200006d620000f3565b6040516200007c919062000406565b60405180910390f35b620000a360048036038101906200009d9190620007fe565b6200011c565b604051620000b2919062000406565b60405180910390f35b620000d96004803603810190620000d3919062000929565b620001ca565b005b620000e562000257565b620000f16000620002e7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080878787873388886040516200013490620003b3565b62000146979695949392919062000b4d565b604051809103906000f08015801562000163573d6000803e3d6000fd5b5090508073ffffffffffffffffffffffffffffffffffffffff167fb7d8fd3c9d56d12c15c8e139bc4e6febd6ad2349b3ebe6a1a91c0a9e7797710d89898933604051620001b4949392919062000be0565b60405180910390a2809150509695505050505050565b620001d462000257565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002495760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000240919062000406565b60405180910390fd5b6200025481620002e7565b50565b62000261620003ab565b73ffffffffffffffffffffffffffffffffffffffff1662000281620000f3565b73ffffffffffffffffffffffffffffffffffffffff1614620002e557620002a7620003ab565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620002dc919062000406565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b612a488062000c3c83390190565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003ee82620003c1565b9050919050565b6200040081620003e1565b82525050565b60006020820190506200041d6000830184620003f5565b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048c8262000441565b810181811067ffffffffffffffff82111715620004ae57620004ad62000452565b5b80604052505050565b6000620004c362000423565b9050620004d1828262000481565b919050565b600067ffffffffffffffff821115620004f457620004f362000452565b5b620004ff8262000441565b9050602081019050919050565b82818337600083830152505050565b6000620005326200052c84620004d6565b620004b7565b9050828152602081018484840111156200055157620005506200043c565b5b6200055e8482856200050c565b509392505050565b600082601f8301126200057e576200057d62000437565b5b8135620005908482602086016200051b565b91505092915050565b6000819050919050565b620005ae8162000599565b8114620005ba57600080fd5b50565b600081359050620005ce81620005a3565b92915050565b600060ff82169050919050565b620005ec81620005d4565b8114620005f857600080fd5b50565b6000813590506200060c81620005e1565b92915050565b600080fd5b600080fd5b600060a0828403121562000635576200063462000612565b5b6200064160a0620004b7565b9050600082013567ffffffffffffffff81111562000664576200066362000617565b5b620006728482850162000566565b600083015250602082013567ffffffffffffffff81111562000699576200069862000617565b5b620006a78482850162000566565b602083015250604082013567ffffffffffffffff811115620006ce57620006cd62000617565b5b620006dc8482850162000566565b604083015250606082013567ffffffffffffffff81111562000703576200070262000617565b5b620007118482850162000566565b606083015250608082013567ffffffffffffffff81111562000738576200073762000617565b5b620007468482850162000566565b60808301525092915050565b60008115159050919050565b620007698162000752565b81146200077557600080fd5b50565b60008135905062000789816200075e565b92915050565b600060608284031215620007a857620007a762000612565b5b620007b46060620004b7565b90506000620007c68482850162000778565b6000830152506020620007dc8482850162000778565b6020830152506040620007f28482850162000778565b60408301525092915050565b60008060008060008061010087890312156200081f576200081e6200042d565b5b600087013567ffffffffffffffff81111562000840576200083f62000432565b5b6200084e89828a0162000566565b965050602087013567ffffffffffffffff81111562000872576200087162000432565b5b6200088089828a0162000566565b95505060406200089389828a01620005bd565b9450506060620008a689828a01620005fb565b935050608087013567ffffffffffffffff811115620008ca57620008c962000432565b5b620008d889828a016200061c565b92505060a0620008eb89828a016200078f565b9150509295509295509295565b6200090381620003e1565b81146200090f57600080fd5b50565b6000813590506200092381620008f8565b92915050565b6000602082840312156200094257620009416200042d565b5b6000620009528482850162000912565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620009975780820151818401526020810190506200097a565b60008484015250505050565b6000620009b0826200095b565b620009bc818562000966565b9350620009ce81856020860162000977565b620009d98162000441565b840191505092915050565b620009ef8162000599565b82525050565b62000a0081620005d4565b82525050565b600082825260208201905092915050565b600062000a24826200095b565b62000a30818562000a06565b935062000a4281856020860162000977565b62000a4d8162000441565b840191505092915050565b600060a083016000830151848203600086015262000a77828262000a17565b9150506020830151848203602086015262000a93828262000a17565b9150506040830151848203604086015262000aaf828262000a17565b9150506060830151848203606086015262000acb828262000a17565b9150506080830151848203608086015262000ae7828262000a17565b9150508091505092915050565b62000aff8162000752565b82525050565b60608201600082015162000b1d600085018262000af4565b50602082015162000b32602085018262000af4565b50604082015162000b47604085018262000af4565b50505050565b600061012082019050818103600083015262000b6a818a620009a3565b9050818103602083015262000b808189620009a3565b905062000b916040830188620009e4565b62000ba06060830187620009f5565b62000baf6080830186620003f5565b81810360a083015262000bc3818562000a58565b905062000bd460c083018462000b05565b98975050505050505050565b6000608082019050818103600083015262000bfc8187620009a3565b9050818103602083015262000c128186620009a3565b905062000c236040830185620009e4565b62000c326060830184620003f5565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162002a4838038062002a48833981810160405281019062000037919062000b56565b33878781600390816200004b919062000ea8565b5080600490816200005d919062000ea8565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000d55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000cc919062000fa0565b60405180910390fd5b620000e6816200020960201b60201c565b50620000f883620002cf60201b60201c565b816006600082015181600001908162000112919062000ea8565b5060208201518160010190816200012a919062000ea8565b50604082015181600201908162000142919062000ea8565b5060608201518160030190816200015a919062000ea8565b50608082015181600401908162000172919062000ea8565b5090505080600b60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff0219169083151502179055509050508360ff1660808160ff1681525050620001fc83866200036860201b60201c565b5050505050505062001092565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002df620003f560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003545760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200034b919062000fa0565b60405180910390fd5b62000365816200020960201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003dd5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003d4919062000fa0565b60405180910390fd5b620003f1600083836200049760201b60201c565b5050565b62000405620006c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200042b620006cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004955762000457620006c760201b60201c565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016200048c919062000fa0565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620004ed578060026000828254620004e0919062000fec565b92505081905550620005c3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200057c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005739392919062001038565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200060e57806002600082825403925050819055506200065b565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006ba919062001075565b60405180910390a3505050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007628262000717565b810181811067ffffffffffffffff8211171562000784576200078362000728565b5b80604052505050565b600062000799620006f9565b9050620007a7828262000757565b919050565b600067ffffffffffffffff821115620007ca57620007c962000728565b5b620007d58262000717565b9050602081019050919050565b60005b8381101562000802578082015181840152602081019050620007e5565b60008484015250505050565b6000620008256200081f84620007ac565b6200078d565b90508281526020810184848401111562000844576200084362000712565b5b62000851848285620007e2565b509392505050565b600082601f8301126200087157620008706200070d565b5b8151620008838482602086016200080e565b91505092915050565b6000819050919050565b620008a1816200088c565b8114620008ad57600080fd5b50565b600081519050620008c18162000896565b92915050565b600060ff82169050919050565b620008df81620008c7565b8114620008eb57600080fd5b50565b600081519050620008ff81620008d4565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009328262000905565b9050919050565b620009448162000925565b81146200095057600080fd5b50565b600081519050620009648162000939565b92915050565b600080fd5b600080fd5b600060a082840312156200098d576200098c6200096a565b5b6200099960a06200078d565b9050600082015167ffffffffffffffff811115620009bc57620009bb6200096f565b5b620009ca8482850162000859565b600083015250602082015167ffffffffffffffff811115620009f157620009f06200096f565b5b620009ff8482850162000859565b602083015250604082015167ffffffffffffffff81111562000a265762000a256200096f565b5b62000a348482850162000859565b604083015250606082015167ffffffffffffffff81111562000a5b5762000a5a6200096f565b5b62000a698482850162000859565b606083015250608082015167ffffffffffffffff81111562000a905762000a8f6200096f565b5b62000a9e8482850162000859565b60808301525092915050565b60008115159050919050565b62000ac18162000aaa565b811462000acd57600080fd5b50565b60008151905062000ae18162000ab6565b92915050565b60006060828403121562000b005762000aff6200096a565b5b62000b0c60606200078d565b9050600062000b1e8482850162000ad0565b600083015250602062000b348482850162000ad0565b602083015250604062000b4a8482850162000ad0565b60408301525092915050565b6000806000806000806000610120888a03121562000b795762000b7862000703565b5b600088015167ffffffffffffffff81111562000b9a5762000b9962000708565b5b62000ba88a828b0162000859565b975050602088015167ffffffffffffffff81111562000bcc5762000bcb62000708565b5b62000bda8a828b0162000859565b965050604062000bed8a828b01620008b0565b955050606062000c008a828b01620008ee565b945050608062000c138a828b0162000953565b93505060a088015167ffffffffffffffff81111562000c375762000c3662000708565b5b62000c458a828b0162000974565b92505060c062000c588a828b0162000ae7565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cba57607f821691505b60208210810362000cd05762000ccf62000c72565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cfb565b62000d46868362000cfb565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000d8962000d8362000d7d846200088c565b62000d5e565b6200088c565b9050919050565b6000819050919050565b62000da58362000d68565b62000dbd62000db48262000d90565b84845462000d08565b825550505050565b600090565b62000dd462000dc5565b62000de181848462000d9a565b505050565b5b8181101562000e095762000dfd60008262000dca565b60018101905062000de7565b5050565b601f82111562000e585762000e228162000cd6565b62000e2d8462000ceb565b8101602085101562000e3d578190505b62000e5562000e4c8562000ceb565b83018262000de6565b50505b505050565b600082821c905092915050565b600062000e7d6000198460080262000e5d565b1980831691505092915050565b600062000e98838362000e6a565b9150826002028217905092915050565b62000eb38262000c67565b67ffffffffffffffff81111562000ecf5762000ece62000728565b5b62000edb825462000ca1565b62000ee882828562000e0d565b600060209050601f83116001811462000f20576000841562000f0b578287015190505b62000f17858262000e8a565b86555062000f87565b601f19841662000f308662000cd6565b60005b8281101562000f5a5784890151825560018201915060208501945060208101905062000f33565b8683101562000f7a578489015162000f76601f89168262000e6a565b8355505b6001600288020188555050505b505050505050565b62000f9a8162000925565b82525050565b600060208201905062000fb7600083018462000f8f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ff9826200088c565b915062001006836200088c565b925082820190508082111562001021576200102062000fbd565b5b92915050565b62001032816200088c565b82525050565b60006060820190506200104f600083018662000f8f565b6200105e602083018562001027565b6200106d604083018462001027565b949350505050565b60006020820190506200108c600083018462001027565b92915050565b60805161199a620010ae6000396000610531015261199a6000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637284e416116100b8578063abfaeee01161007c578063abfaeee014610361578063beb0a4161461037f578063beb9716d1461039d578063dd62ed3e146103bb578063f2fde38b146103eb578063fbc6e84e1461040757610142565b80637284e416146102b75780638da5cb5b146102d557806395d89b41146102f3578063a9059cbb14610311578063ab8c71c01461034157610142565b8063313ce5671161010a578063313ce56714610201578063392f37e91461021f5780633c130d901461024157806347ecb6651461025f57806370a082311461027d578063715018a6146102ad57610142565b806306fdde0314610147578063095ea7b3146101655780630facaef31461019557806318160ddd146101b357806323b872dd146101d1575b600080fd5b61014f610425565b60405161015c9190611541565b60405180910390f35b61017f600480360381019061017a91906115fc565b6104b7565b60405161018c9190611657565b60405180910390f35b61019d6104da565b6040516101aa9190611657565b60405180910390f35b6101bb6104f4565b6040516101c89190611681565b60405180910390f35b6101eb60048036038101906101e6919061169c565b6104fe565b6040516101f89190611657565b60405180910390f35b61020961052d565b604051610216919061170b565b60405180910390f35b610227610555565b604051610238959493929190611726565b60405180910390f35b610249610821565b6040516102569190611541565b60405180910390f35b6102676108b6565b6040516102749190611541565b60405180910390f35b6102976004803603810190610292919061179c565b61094b565b6040516102a49190611681565b60405180910390f35b6102b5610993565b005b6102bf6109a7565b6040516102cc9190611541565b60405180910390f35b6102dd610a3c565b6040516102ea91906117d8565b60405180910390f35b6102fb610a66565b6040516103089190611541565b60405180910390f35b61032b600480360381019061032691906115fc565b610af8565b6040516103389190611657565b60405180910390f35b610349610b1b565b604051610358939291906117f3565b60405180910390f35b610369610b5a565b6040516103769190611541565b60405180910390f35b610387610bef565b6040516103949190611541565b60405180910390f35b6103a5610c84565b6040516103b29190611657565b60405180910390f35b6103d560048036038101906103d0919061182a565b610c9e565b6040516103e29190611681565b60405180910390f35b6104056004803603810190610400919061179c565b610d25565b005b61040f610dab565b60405161041c9190611657565b60405180910390f35b60606003805461043490611899565b80601f016020809104026020016040519081016040528092919081815260200182805461046090611899565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610dc5565b90506104cf818585610dcd565b600191505092915050565b6000600b60000160029054906101000a900460ff16905090565b6000600254905090565b600080610509610dc5565b9050610516858285610ddf565b610521858585610e74565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600680600001805461056690611899565b80601f016020809104026020016040519081016040528092919081815260200182805461059290611899565b80156105df5780601f106105b4576101008083540402835291602001916105df565b820191906000526020600020905b8154815290600101906020018083116105c257829003601f168201915b5050505050908060010180546105f490611899565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611899565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b50505050509080600201805461068290611899565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90611899565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b50505050509080600301805461071090611899565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90611899565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b50505050509080600401805461079e90611899565b80601f01602080910402602001604051908101604052809291908181526020018280546107ca90611899565b80156108175780601f106107ec57610100808354040283529160200191610817565b820191906000526020600020905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905085565b60606006600001805461083390611899565b80601f016020809104026020016040519081016040528092919081815260200182805461085f90611899565b80156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b6060600660040180546108c890611899565b80601f01602080910402602001604051908101604052809291908181526020018280546108f490611899565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099b610f68565b6109a56000610fef565b565b6060600660010180546109b990611899565b80601f01602080910402602001604051908101604052809291908181526020018280546109e590611899565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a7590611899565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa190611899565b8015610aee5780601f10610ac357610100808354040283529160200191610aee565b820191906000526020600020905b815481529060010190602001808311610ad157829003601f168201915b5050505050905090565b600080610b03610dc5565b9050610b10818585610e74565b600191505092915050565b600b8060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16905083565b606060066003018054610b6c90611899565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9890611899565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b5050505050905090565b606060066002018054610c0190611899565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2d90611899565b8015610c7a5780601f10610c4f57610100808354040283529160200191610c7a565b820191906000526020600020905b815481529060010190602001808311610c5d57829003601f168201915b5050505050905090565b6000600b60000160009054906101000a900460ff16905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2d610f68565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9f5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d9691906117d8565b60405180910390fd5b610da881610fef565b50565b6000600b60000160019054906101000a900460ff16905090565b600033905090565b610dda83838360016110b5565b505050565b6000610deb8484610c9e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811015610e6e5781811015610e5e578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e55939291906118ca565b60405180910390fd5b610e6d848484840360006110b5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee65760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610edd91906117d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f585760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f4f91906117d8565b60405180910390fd5b610f6383838361128c565b505050565b610f70610dc5565b73ffffffffffffffffffffffffffffffffffffffff16610f8e610a3c565b73ffffffffffffffffffffffffffffffffffffffff1614610fed57610fb1610dc5565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610fe491906117d8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036111275760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161111e91906117d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111995760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161119091906117d8565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611286578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161127d9190611681565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112de5780600260008282546112d29190611930565b925050819055506113b1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561136a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611361939291906118ca565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fa5780600260008282540392505081905550611447565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114a49190611681565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114eb5780820151818401526020810190506114d0565b60008484015250505050565b6000601f19601f8301169050919050565b6000611513826114b1565b61151d81856114bc565b935061152d8185602086016114cd565b611536816114f7565b840191505092915050565b6000602082019050818103600083015261155b8184611508565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061159382611568565b9050919050565b6115a381611588565b81146115ae57600080fd5b50565b6000813590506115c08161159a565b92915050565b6000819050919050565b6115d9816115c6565b81146115e457600080fd5b50565b6000813590506115f6816115d0565b92915050565b6000806040838503121561161357611612611563565b5b6000611621858286016115b1565b9250506020611632858286016115e7565b9150509250929050565b60008115159050919050565b6116518161163c565b82525050565b600060208201905061166c6000830184611648565b92915050565b61167b816115c6565b82525050565b60006020820190506116966000830184611672565b92915050565b6000806000606084860312156116b5576116b4611563565b5b60006116c3868287016115b1565b93505060206116d4868287016115b1565b92505060406116e5868287016115e7565b9150509250925092565b600060ff82169050919050565b611705816116ef565b82525050565b600060208201905061172060008301846116fc565b92915050565b600060a08201905081810360008301526117408188611508565b905081810360208301526117548187611508565b905081810360408301526117688186611508565b9050818103606083015261177c8185611508565b905081810360808301526117908184611508565b90509695505050505050565b6000602082840312156117b2576117b1611563565b5b60006117c0848285016115b1565b91505092915050565b6117d281611588565b82525050565b60006020820190506117ed60008301846117c9565b92915050565b60006060820190506118086000830186611648565b6118156020830185611648565b6118226040830184611648565b949350505050565b6000806040838503121561184157611840611563565b5b600061184f858286016115b1565b9250506020611860858286016115b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118b157607f821691505b6020821081036118c4576118c361186a565b5b50919050565b60006060820190506118df60008301866117c9565b6118ec6020830185611672565b6118f96040830184611672565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061193b826115c6565b9150611946836115c6565b925082820190508082111561195e5761195d611901565b5b9291505056fea264697066735822122000d1f570b7bcb802d550080055993b5844f7211071000c5c34a1c538eaf19c6964736f6c63430008140033a26469706673582212200a398d4fff4e4678636e1f2254b45c87ee0c9e4d2bc6a51c6fde46f4a4ac750764736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.