Overview
Max Total Supply
500,001,005 BITBOT
Holders
11,613 (0.00%)
Transfers
-
8 ( -27.27%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BITBOTL2
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import { IOptimismMintableERC20 } from "./IOptimismMintableERC20.sol";
contract BITBOTL2 is IOptimismMintableERC20, ERC20, Ownable {
/// @notice Address of the corresponding version of this token on the remote chain.
address public immutable REMOTE_TOKEN;
/// @notice Address of the StandardBridge on this network.
address public immutable BRIDGE;
address private feeReceiver;
uint256 public feeRate = 0;
mapping(address => bool) fromTaxWhitelist;
mapping(address => bool) toTaxWhitelist;
/// @notice Emitted whenever tokens are minted for an account.
/// @param account Address of the account tokens are being minted for.
/// @param amount Amount of tokens minted.
event Mint(address indexed account, uint256 amount);
/// @notice Emitted whenever tokens are burned from an account.
/// @param account Address of the account tokens are being burned from.
/// @param amount Amount of tokens burned.
event Burn(address indexed account, uint256 amount);
/// @notice A modifier that only allows the bridge to call.
modifier onlyBridge() {
require(msg.sender == BRIDGE, "MyCustomL2Token: only bridge can mint and burn");
_;
}
/// @param _bridge Address of the L2 standard bridge.
/// @param _remoteToken Address of the corresponding L1 token.
/// @param _name ERC20 name.
/// @param _symbol ERC20 symbol.
constructor(
address _bridge,
address _remoteToken,
string memory _name,
string memory _symbol,
address _feeReceiver
) ERC20(_name, _symbol) {
REMOTE_TOKEN = _remoteToken;
BRIDGE = _bridge;
feeReceiver = _feeReceiver;
}
/// @custom:legacy
/// @notice Legacy getter for REMOTE_TOKEN.
function remoteToken() public view returns (address) {
return REMOTE_TOKEN;
}
/// @custom:legacy
/// @notice Legacy getter for BRIDGE.
function bridge() public view returns (address) {
return BRIDGE;
}
/// @notice ERC165 interface check function.
/// @param _interfaceId Interface ID to check.
/// @return Whether or not the interface is supported by this contract.
function supportsInterface(bytes4 _interfaceId) external pure virtual returns (bool) {
bytes4 iface1 = type(IERC165).interfaceId;
// Interface corresponding to the updated OptimismMintableERC20 (this contract).
bytes4 iface2 = type(IOptimismMintableERC20).interfaceId;
return _interfaceId == iface1 || _interfaceId == iface2;
}
/// @notice Allows the StandardBridge on this network to mint tokens.
/// @param _to Address to mint tokens to.
/// @param _amount Amount of tokens to mint.
function mint(address _to, uint256 _amount) external virtual override(IOptimismMintableERC20) onlyBridge {
_mint(_to, _amount);
emit Mint(_to, _amount);
}
/// @notice Prevents tokens from being withdrawn to L1.
function burn(
address internalAccount,
uint256 _amount
) external virtual override(IOptimismMintableERC20) onlyBridge {
_burn(internalAccount, _amount);
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
bool disableTax = fromTaxWhitelist[_msgSender()] || toTaxWhitelist[recipient] || feeRate == 0;
uint256 tax = disableTax ? 0 : getTransferTax(amount);
uint256 amountAfterTax = amount - tax;
_transfer(_msgSender(), recipient, amountAfterTax);
if (tax > 0) {
_transfer(_msgSender(), feeReceiver, tax);
}
return true;
}
function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
bool disableTax = fromTaxWhitelist[from] || toTaxWhitelist[to] || feeRate == 0;
uint256 tax = disableTax ? 0 : getTransferTax(amount);
uint256 amountAfterTax = amount - tax;
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amountAfterTax);
if (tax > 0) {
_transfer(from, feeReceiver, tax);
}
return true;
}
function getTransferTax(uint256 amount) private view returns (uint256) {
if (feeRate == 0) {
return 0;
}
return (amount * feeRate) / 10000;
}
function setFromTaxWhitelist(address account, bool isWhitelisted) public onlyOwner {
fromTaxWhitelist[account] = isWhitelisted;
}
function setToTaxWhitelist(address account, bool isWhitelisted) public onlyOwner {
toTaxWhitelist[account] = isWhitelisted;
}
function getFromTaxWhitelist(address account) public view returns (bool) {
return fromTaxWhitelist[account];
}
function getToTaxWhitelist(address account) public view returns (bool) {
return toTaxWhitelist[account];
}
function setFeeReceiver(address _feeReceiver) public onlyOwner {
feeReceiver = _feeReceiver;
}
function setFeeRate(uint256 _feeRate) public onlyOwner {
// Max fee 5%
require(_feeRate <= 500, "Invalid fee rate");
feeRate = _feeRate;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @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 {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.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.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the 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 override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
/// @title IOptimismMintableERC20
/// @notice This interface is available on the OptimismMintableERC20 contract.
/// We declare it as a separate interface so that it can be used in
/// custom implementations of OptimismMintableERC20.
interface IOptimismMintableERC20 is IERC165 {
function remoteToken() external view returns (address);
function bridge() external returns (address);
function mint(address _to, uint256 _amount) external;
function burn(address _from, uint256 _amount) external;
}
/// @custom:legacy
/// @title ILegacyMintableERC20
/// @notice This interface was available on the legacy L2StandardERC20 contract.
/// It remains available on the OptimismMintableERC20 contract for
/// backwards compatibility.
interface ILegacyMintableERC20 is IERC165 {
function l1Token() external view returns (address);
function mint(address _to, uint256 _amount) external;
function burn(address _from, uint256 _amount) external;
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_bridge","type":"address"},{"internalType":"address","name":"_remoteToken","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_feeReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BRIDGE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REMOTE_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"internalAccount","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getFromTaxWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getToTaxWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remoteToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeRate","type":"uint256"}],"name":"setFeeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setFromTaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"setToTaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405260006007553480156200001657600080fd5b5060405162002fe738038062002fe783398181016040528101906200003c9190620003fe565b828281600390816200004f91906200070f565b5080600490816200006191906200070f565b50505062000084620000786200013860201b60201c565b6200014060201b60201c565b8373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508473ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050620007f6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000247826200021a565b9050919050565b62000259816200023a565b81146200026557600080fd5b50565b60008151905062000279816200024e565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002d48262000289565b810181811067ffffffffffffffff82111715620002f657620002f56200029a565b5b80604052505050565b60006200030b62000206565b9050620003198282620002c9565b919050565b600067ffffffffffffffff8211156200033c576200033b6200029a565b5b620003478262000289565b9050602081019050919050565b60005b838110156200037457808201518184015260208101905062000357565b60008484015250505050565b60006200039762000391846200031e565b620002ff565b905082815260208101848484011115620003b657620003b562000284565b5b620003c384828562000354565b509392505050565b600082601f830112620003e357620003e26200027f565b5b8151620003f584826020860162000380565b91505092915050565b600080600080600060a086880312156200041d576200041c62000210565b5b60006200042d8882890162000268565b9550506020620004408882890162000268565b945050604086015167ffffffffffffffff81111562000464576200046362000215565b5b6200047288828901620003cb565b935050606086015167ffffffffffffffff81111562000496576200049562000215565b5b620004a488828901620003cb565b9250506080620004b78882890162000268565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051757607f821691505b6020821081036200052d576200052c620004cf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000558565b620005a3868362000558565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f0620005ea620005e484620005bb565b620005c5565b620005bb565b9050919050565b6000819050919050565b6200060c83620005cf565b620006246200061b82620005f7565b84845462000565565b825550505050565b600090565b6200063b6200062c565b6200064881848462000601565b505050565b5b8181101562000670576200066460008262000631565b6001810190506200064e565b5050565b601f821115620006bf57620006898162000533565b620006948462000548565b81016020851015620006a4578190505b620006bc620006b38562000548565b8301826200064d565b50505b505050565b600082821c905092915050565b6000620006e460001984600802620006c4565b1980831691505092915050565b6000620006ff8383620006d1565b9150826002028217905092915050565b6200071a82620004c4565b67ffffffffffffffff8111156200073657620007356200029a565b5b620007428254620004fe565b6200074f82828562000674565b600060209050601f83116001811462000787576000841562000772578287015190505b6200077e8582620006f1565b865550620007ee565b601f198416620007978662000533565b60005b82811015620007c1578489015182556001820191506020850194506020810190506200079a565b86831015620007e15784890151620007dd601f891682620006d1565b8355505b6001600288020188555050505b505050505050565b60805160a0516127af620008386000396000818161094001528181610bf501528181610fc00152610fe60152600081816106820152610f1101526127af6000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063b63ee78511610097578063e78cea9211610071578063e78cea921461052f578063ee9a31a21461054d578063efdcd9741461056b578063f2fde38b14610587576101c4565b8063b63ee785146104c5578063d6c0b2c4146104e1578063dd62ed3e146104ff576101c4565b80639dc29fac116100d35780639dc29fac1461042d578063a457c2d714610449578063a82d9d7d14610479578063a9059cbb14610495576101c4565b80638da5cb5b146103d357806395d89b41146103f1578063978bbdb91461040f576101c4565b8063313ce5671161016657806345596e2e1161014057806345596e2e1461034d5780636f0c88261461036957806370a0823114610399578063715018a6146103c9576101c4565b8063313ce567146102e3578063395093511461030157806340c10f1914610331576101c4565b8063095ea7b3116101a2578063095ea7b31461023557806318160ddd1461026557806323b872dd14610283578063263c5533146102b3576101c4565b806301ffc9a7146101c9578063033964be146101f957806306fdde0314610217575b600080fd5b6101e360048036038101906101de9190611aaf565b6105a3565b6040516101f09190611af7565b60405180910390f35b610201610680565b60405161020e9190611b53565b60405180910390f35b61021f6106a4565b60405161022c9190611bfe565b60405180910390f35b61024f600480360381019061024a9190611c82565b610736565b60405161025c9190611af7565b60405180910390f35b61026d610759565b60405161027a9190611cd1565b60405180910390f35b61029d60048036038101906102989190611cec565b610763565b6040516102aa9190611af7565b60405180910390f35b6102cd60048036038101906102c89190611d3f565b6108a8565b6040516102da9190611af7565b60405180910390f35b6102eb6108fe565b6040516102f89190611d88565b60405180910390f35b61031b60048036038101906103169190611c82565b610907565b6040516103289190611af7565b60405180910390f35b61034b60048036038101906103469190611c82565b61093e565b005b61036760048036038101906103629190611da3565b610a28565b005b610383600480360381019061037e9190611d3f565b610a7f565b6040516103909190611af7565b60405180910390f35b6103b360048036038101906103ae9190611d3f565b610ad5565b6040516103c09190611cd1565b60405180910390f35b6103d1610b1d565b005b6103db610b31565b6040516103e89190611b53565b60405180910390f35b6103f9610b5b565b6040516104069190611bfe565b60405180910390f35b610417610bed565b6040516104249190611cd1565b60405180910390f35b61044760048036038101906104429190611c82565b610bf3565b005b610463600480360381019061045e9190611c82565b610c8f565b6040516104709190611af7565b60405180910390f35b610493600480360381019061048e9190611dfc565b610d06565b005b6104af60048036038101906104aa9190611c82565b610d69565b6040516104bc9190611af7565b60405180910390f35b6104df60048036038101906104da9190611dfc565b610eaa565b005b6104e9610f0d565b6040516104f69190611b53565b60405180910390f35b61051960048036038101906105149190611e3c565b610f35565b6040516105269190611cd1565b60405180910390f35b610537610fbc565b6040516105449190611b53565b60405180910390f35b610555610fe4565b6040516105629190611b53565b60405180910390f35b61058560048036038101906105809190611d3f565b611008565b005b6105a1600480360381019061059c9190611d3f565b611054565b005b6000807f01ffc9a700000000000000000000000000000000000000000000000000000000905060007fec4fc8e3000000000000000000000000000000000000000000000000000000009050817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106775750807bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b92505050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546106b390611eab565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90611eab565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b6000806107416110d7565b905061074e8185856110df565b600191505092915050565b6000600254905090565b600080600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806108075750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061081457506000600754145b905060008161082b57610826846112a8565b61082e565b60005b90506000818561083e9190611f0b565b9050600061084a6110d7565b90506108578882886112df565b61086288888461136b565b60008311156108995761089888600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561136b565b5b60019450505050509392505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b6000806109126110d7565b90506109338185856109248589610f35565b61092e9190611f3f565b6110df565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390611fe5565b60405180910390fd5b6109d682826115e1565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688582604051610a1c9190611cd1565b60405180910390a25050565b610a30611737565b6101f4811115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612051565b60405180910390fd5b8060078190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b25611737565b610b2f60006117b5565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6a90611eab565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9690611eab565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b60075481565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890611fe5565b60405180910390fd5b610c8b828261187b565b5050565b600080610c9a6110d7565b90506000610ca88286610f35565b905083811015610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906120e3565b60405180910390fd5b610cfa82868684036110df565b60019250505092915050565b610d0e611737565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060086000610d786110d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e145750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610e2157506000600754145b9050600081610e3857610e33846112a8565b610e3b565b60005b905060008185610e4b9190611f0b565b9050610e5f610e586110d7565b878361136b565b6000821115610e9d57610e9c610e736110d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461136b565b5b6001935050505092915050565b610eb2611737565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b611010611737565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61105c611737565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290612175565b60405180910390fd5b6110d4816117b5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590612207565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490612299565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129b9190611cd1565b60405180910390a3505050565b600080600754036112bc57600090506112da565b612710600754836112cd91906122b9565b6112d7919061232a565b90505b919050565b60006112eb8484610f35565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113655781811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906123a7565b60405180910390fd5b61136484848484036110df565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190612439565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906124cb565b60405180910390fd5b611454838383611a48565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d19061255d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c89190611cd1565b60405180910390a36115db848484611a4d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906125c9565b60405180910390fd5b61165c60008383611a48565b806002600082825461166e9190611f3f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161171f9190611cd1565b60405180910390a361173360008383611a4d565b5050565b61173f6110d7565b73ffffffffffffffffffffffffffffffffffffffff1661175d610b31565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90612635565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e1906126c7565b60405180910390fd5b6118f682600083611a48565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612759565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2f9190611cd1565b60405180910390a3611a4383600084611a4d565b505050565b505050565b505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a8c81611a57565b8114611a9757600080fd5b50565b600081359050611aa981611a83565b92915050565b600060208284031215611ac557611ac4611a52565b5b6000611ad384828501611a9a565b91505092915050565b60008115159050919050565b611af181611adc565b82525050565b6000602082019050611b0c6000830184611ae8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3d82611b12565b9050919050565b611b4d81611b32565b82525050565b6000602082019050611b686000830184611b44565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ba8578082015181840152602081019050611b8d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bd082611b6e565b611bda8185611b79565b9350611bea818560208601611b8a565b611bf381611bb4565b840191505092915050565b60006020820190508181036000830152611c188184611bc5565b905092915050565b611c2981611b32565b8114611c3457600080fd5b50565b600081359050611c4681611c20565b92915050565b6000819050919050565b611c5f81611c4c565b8114611c6a57600080fd5b50565b600081359050611c7c81611c56565b92915050565b60008060408385031215611c9957611c98611a52565b5b6000611ca785828601611c37565b9250506020611cb885828601611c6d565b9150509250929050565b611ccb81611c4c565b82525050565b6000602082019050611ce66000830184611cc2565b92915050565b600080600060608486031215611d0557611d04611a52565b5b6000611d1386828701611c37565b9350506020611d2486828701611c37565b9250506040611d3586828701611c6d565b9150509250925092565b600060208284031215611d5557611d54611a52565b5b6000611d6384828501611c37565b91505092915050565b600060ff82169050919050565b611d8281611d6c565b82525050565b6000602082019050611d9d6000830184611d79565b92915050565b600060208284031215611db957611db8611a52565b5b6000611dc784828501611c6d565b91505092915050565b611dd981611adc565b8114611de457600080fd5b50565b600081359050611df681611dd0565b92915050565b60008060408385031215611e1357611e12611a52565b5b6000611e2185828601611c37565b9250506020611e3285828601611de7565b9150509250929050565b60008060408385031215611e5357611e52611a52565b5b6000611e6185828601611c37565b9250506020611e7285828601611c37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ec357607f821691505b602082108103611ed657611ed5611e7c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f1682611c4c565b9150611f2183611c4c565b9250828203905081811115611f3957611f38611edc565b5b92915050565b6000611f4a82611c4c565b9150611f5583611c4c565b9250828201905080821115611f6d57611f6c611edc565b5b92915050565b7f4d79437573746f6d4c32546f6b656e3a206f6e6c79206272696467652063616e60008201527f206d696e7420616e64206275726e000000000000000000000000000000000000602082015250565b6000611fcf602e83611b79565b9150611fda82611f73565b604082019050919050565b60006020820190508181036000830152611ffe81611fc2565b9050919050565b7f496e76616c696420666565207261746500000000000000000000000000000000600082015250565b600061203b601083611b79565b915061204682612005565b602082019050919050565b6000602082019050818103600083015261206a8161202e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120cd602583611b79565b91506120d882612071565b604082019050919050565b600060208201905081810360008301526120fc816120c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061215f602683611b79565b915061216a82612103565b604082019050919050565b6000602082019050818103600083015261218e81612152565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121f1602483611b79565b91506121fc82612195565b604082019050919050565b60006020820190508181036000830152612220816121e4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612283602283611b79565b915061228e82612227565b604082019050919050565b600060208201905081810360008301526122b281612276565b9050919050565b60006122c482611c4c565b91506122cf83611c4c565b92508282026122dd81611c4c565b915082820484148315176122f4576122f3611edc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061233582611c4c565b915061234083611c4c565b9250826123505761234f6122fb565b5b828204905092915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612391601d83611b79565b915061239c8261235b565b602082019050919050565b600060208201905081810360008301526123c081612384565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612423602583611b79565b915061242e826123c7565b604082019050919050565b6000602082019050818103600083015261245281612416565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124b5602383611b79565b91506124c082612459565b604082019050919050565b600060208201905081810360008301526124e4816124a8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612547602683611b79565b9150612552826124eb565b604082019050919050565b600060208201905081810360008301526125768161253a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006125b3601f83611b79565b91506125be8261257d565b602082019050919050565b600060208201905081810360008301526125e2816125a6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061261f602083611b79565b915061262a826125e9565b602082019050919050565b6000602082019050818103600083015261264e81612612565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006126b1602183611b79565b91506126bc82612655565b604082019050919050565b600060208201905081810360008301526126e0816126a4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612743602283611b79565b915061274e826126e7565b604082019050919050565b6000602082019050818103600083015261277281612736565b905091905056fea2646970667358221220b6930ffd04d731cc76b11096ef1bf5e7fb1d6023a9735fd1d1f6c88495b25f7f64736f6c634300081100330000000000000000000000004200000000000000000000000000000000000010000000000000000000000000252d223d0550bc6c137b003d90bc74f5341a281800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a924cbbd1113a1cced1f1ac5dcd9fd96e37ab1a40000000000000000000000000000000000000000000000000000000000000006426974626f7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424954424f540000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063b63ee78511610097578063e78cea9211610071578063e78cea921461052f578063ee9a31a21461054d578063efdcd9741461056b578063f2fde38b14610587576101c4565b8063b63ee785146104c5578063d6c0b2c4146104e1578063dd62ed3e146104ff576101c4565b80639dc29fac116100d35780639dc29fac1461042d578063a457c2d714610449578063a82d9d7d14610479578063a9059cbb14610495576101c4565b80638da5cb5b146103d357806395d89b41146103f1578063978bbdb91461040f576101c4565b8063313ce5671161016657806345596e2e1161014057806345596e2e1461034d5780636f0c88261461036957806370a0823114610399578063715018a6146103c9576101c4565b8063313ce567146102e3578063395093511461030157806340c10f1914610331576101c4565b8063095ea7b3116101a2578063095ea7b31461023557806318160ddd1461026557806323b872dd14610283578063263c5533146102b3576101c4565b806301ffc9a7146101c9578063033964be146101f957806306fdde0314610217575b600080fd5b6101e360048036038101906101de9190611aaf565b6105a3565b6040516101f09190611af7565b60405180910390f35b610201610680565b60405161020e9190611b53565b60405180910390f35b61021f6106a4565b60405161022c9190611bfe565b60405180910390f35b61024f600480360381019061024a9190611c82565b610736565b60405161025c9190611af7565b60405180910390f35b61026d610759565b60405161027a9190611cd1565b60405180910390f35b61029d60048036038101906102989190611cec565b610763565b6040516102aa9190611af7565b60405180910390f35b6102cd60048036038101906102c89190611d3f565b6108a8565b6040516102da9190611af7565b60405180910390f35b6102eb6108fe565b6040516102f89190611d88565b60405180910390f35b61031b60048036038101906103169190611c82565b610907565b6040516103289190611af7565b60405180910390f35b61034b60048036038101906103469190611c82565b61093e565b005b61036760048036038101906103629190611da3565b610a28565b005b610383600480360381019061037e9190611d3f565b610a7f565b6040516103909190611af7565b60405180910390f35b6103b360048036038101906103ae9190611d3f565b610ad5565b6040516103c09190611cd1565b60405180910390f35b6103d1610b1d565b005b6103db610b31565b6040516103e89190611b53565b60405180910390f35b6103f9610b5b565b6040516104069190611bfe565b60405180910390f35b610417610bed565b6040516104249190611cd1565b60405180910390f35b61044760048036038101906104429190611c82565b610bf3565b005b610463600480360381019061045e9190611c82565b610c8f565b6040516104709190611af7565b60405180910390f35b610493600480360381019061048e9190611dfc565b610d06565b005b6104af60048036038101906104aa9190611c82565b610d69565b6040516104bc9190611af7565b60405180910390f35b6104df60048036038101906104da9190611dfc565b610eaa565b005b6104e9610f0d565b6040516104f69190611b53565b60405180910390f35b61051960048036038101906105149190611e3c565b610f35565b6040516105269190611cd1565b60405180910390f35b610537610fbc565b6040516105449190611b53565b60405180910390f35b610555610fe4565b6040516105629190611b53565b60405180910390f35b61058560048036038101906105809190611d3f565b611008565b005b6105a1600480360381019061059c9190611d3f565b611054565b005b6000807f01ffc9a700000000000000000000000000000000000000000000000000000000905060007fec4fc8e3000000000000000000000000000000000000000000000000000000009050817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106775750807bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b92505050919050565b7f000000000000000000000000252d223d0550bc6c137b003d90bc74f5341a281881565b6060600380546106b390611eab565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90611eab565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b6000806107416110d7565b905061074e8185856110df565b600191505092915050565b6000600254905090565b600080600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806108075750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061081457506000600754145b905060008161082b57610826846112a8565b61082e565b60005b90506000818561083e9190611f0b565b9050600061084a6110d7565b90506108578882886112df565b61086288888461136b565b60008311156108995761089888600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168561136b565b5b60019450505050509392505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b6000806109126110d7565b90506109338185856109248589610f35565b61092e9190611f3f565b6110df565b600191505092915050565b7f000000000000000000000000420000000000000000000000000000000000001073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390611fe5565b60405180910390fd5b6109d682826115e1565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688582604051610a1c9190611cd1565b60405180910390a25050565b610a30611737565b6101f4811115610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612051565b60405180910390fd5b8060078190555050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b25611737565b610b2f60006117b5565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b6a90611eab565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9690611eab565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b60075481565b7f000000000000000000000000420000000000000000000000000000000000001073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7890611fe5565b60405180910390fd5b610c8b828261187b565b5050565b600080610c9a6110d7565b90506000610ca88286610f35565b905083811015610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906120e3565b60405180910390fd5b610cfa82868684036110df565b60019250505092915050565b610d0e611737565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060086000610d786110d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e145750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610e2157506000600754145b9050600081610e3857610e33846112a8565b610e3b565b60005b905060008185610e4b9190611f0b565b9050610e5f610e586110d7565b878361136b565b6000821115610e9d57610e9c610e736110d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461136b565b5b6001935050505092915050565b610eb2611737565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60007f000000000000000000000000252d223d0550bc6c137b003d90bc74f5341a2818905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f0000000000000000000000004200000000000000000000000000000000000010905090565b7f000000000000000000000000420000000000000000000000000000000000001081565b611010611737565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61105c611737565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290612175565b60405180910390fd5b6110d4816117b5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361114e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114590612207565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490612299565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129b9190611cd1565b60405180910390a3505050565b600080600754036112bc57600090506112da565b612710600754836112cd91906122b9565b6112d7919061232a565b90505b919050565b60006112eb8484610f35565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113655781811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906123a7565b60405180910390fd5b61136484848484036110df565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190612439565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611440906124cb565b60405180910390fd5b611454838383611a48565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d19061255d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c89190611cd1565b60405180910390a36115db848484611a4d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906125c9565b60405180910390fd5b61165c60008383611a48565b806002600082825461166e9190611f3f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161171f9190611cd1565b60405180910390a361173360008383611a4d565b5050565b61173f6110d7565b73ffffffffffffffffffffffffffffffffffffffff1661175d610b31565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90612635565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e1906126c7565b60405180910390fd5b6118f682600083611a48565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612759565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2f9190611cd1565b60405180910390a3611a4383600084611a4d565b505050565b505050565b505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a8c81611a57565b8114611a9757600080fd5b50565b600081359050611aa981611a83565b92915050565b600060208284031215611ac557611ac4611a52565b5b6000611ad384828501611a9a565b91505092915050565b60008115159050919050565b611af181611adc565b82525050565b6000602082019050611b0c6000830184611ae8565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b3d82611b12565b9050919050565b611b4d81611b32565b82525050565b6000602082019050611b686000830184611b44565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ba8578082015181840152602081019050611b8d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611bd082611b6e565b611bda8185611b79565b9350611bea818560208601611b8a565b611bf381611bb4565b840191505092915050565b60006020820190508181036000830152611c188184611bc5565b905092915050565b611c2981611b32565b8114611c3457600080fd5b50565b600081359050611c4681611c20565b92915050565b6000819050919050565b611c5f81611c4c565b8114611c6a57600080fd5b50565b600081359050611c7c81611c56565b92915050565b60008060408385031215611c9957611c98611a52565b5b6000611ca785828601611c37565b9250506020611cb885828601611c6d565b9150509250929050565b611ccb81611c4c565b82525050565b6000602082019050611ce66000830184611cc2565b92915050565b600080600060608486031215611d0557611d04611a52565b5b6000611d1386828701611c37565b9350506020611d2486828701611c37565b9250506040611d3586828701611c6d565b9150509250925092565b600060208284031215611d5557611d54611a52565b5b6000611d6384828501611c37565b91505092915050565b600060ff82169050919050565b611d8281611d6c565b82525050565b6000602082019050611d9d6000830184611d79565b92915050565b600060208284031215611db957611db8611a52565b5b6000611dc784828501611c6d565b91505092915050565b611dd981611adc565b8114611de457600080fd5b50565b600081359050611df681611dd0565b92915050565b60008060408385031215611e1357611e12611a52565b5b6000611e2185828601611c37565b9250506020611e3285828601611de7565b9150509250929050565b60008060408385031215611e5357611e52611a52565b5b6000611e6185828601611c37565b9250506020611e7285828601611c37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ec357607f821691505b602082108103611ed657611ed5611e7c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f1682611c4c565b9150611f2183611c4c565b9250828203905081811115611f3957611f38611edc565b5b92915050565b6000611f4a82611c4c565b9150611f5583611c4c565b9250828201905080821115611f6d57611f6c611edc565b5b92915050565b7f4d79437573746f6d4c32546f6b656e3a206f6e6c79206272696467652063616e60008201527f206d696e7420616e64206275726e000000000000000000000000000000000000602082015250565b6000611fcf602e83611b79565b9150611fda82611f73565b604082019050919050565b60006020820190508181036000830152611ffe81611fc2565b9050919050565b7f496e76616c696420666565207261746500000000000000000000000000000000600082015250565b600061203b601083611b79565b915061204682612005565b602082019050919050565b6000602082019050818103600083015261206a8161202e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120cd602583611b79565b91506120d882612071565b604082019050919050565b600060208201905081810360008301526120fc816120c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061215f602683611b79565b915061216a82612103565b604082019050919050565b6000602082019050818103600083015261218e81612152565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121f1602483611b79565b91506121fc82612195565b604082019050919050565b60006020820190508181036000830152612220816121e4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612283602283611b79565b915061228e82612227565b604082019050919050565b600060208201905081810360008301526122b281612276565b9050919050565b60006122c482611c4c565b91506122cf83611c4c565b92508282026122dd81611c4c565b915082820484148315176122f4576122f3611edc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061233582611c4c565b915061234083611c4c565b9250826123505761234f6122fb565b5b828204905092915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612391601d83611b79565b915061239c8261235b565b602082019050919050565b600060208201905081810360008301526123c081612384565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612423602583611b79565b915061242e826123c7565b604082019050919050565b6000602082019050818103600083015261245281612416565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124b5602383611b79565b91506124c082612459565b604082019050919050565b600060208201905081810360008301526124e4816124a8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612547602683611b79565b9150612552826124eb565b604082019050919050565b600060208201905081810360008301526125768161253a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006125b3601f83611b79565b91506125be8261257d565b602082019050919050565b600060208201905081810360008301526125e2816125a6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061261f602083611b79565b915061262a826125e9565b602082019050919050565b6000602082019050818103600083015261264e81612612565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006126b1602183611b79565b91506126bc82612655565b604082019050919050565b600060208201905081810360008301526126e0816126a4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612743602283611b79565b915061274e826126e7565b604082019050919050565b6000602082019050818103600083015261277281612736565b905091905056fea2646970667358221220b6930ffd04d731cc76b11096ef1bf5e7fb1d6023a9735fd1d1f6c88495b25f7f64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004200000000000000000000000000000000000010000000000000000000000000252d223d0550bc6c137b003d90bc74f5341a281800000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a924cbbd1113a1cced1f1ac5dcd9fd96e37ab1a40000000000000000000000000000000000000000000000000000000000000006426974626f7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424954424f540000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _bridge (address): 0x4200000000000000000000000000000000000010
Arg [1] : _remoteToken (address): 0x252D223D0550BC6c137B003D90bc74F5341A2818
Arg [2] : _name (string): Bitbot
Arg [3] : _symbol (string): BITBOT
Arg [4] : _feeReceiver (address): 0xA924cbbD1113A1cCED1f1Ac5DcD9fD96e37Ab1A4
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000004200000000000000000000000000000000000010
Arg [1] : 000000000000000000000000252d223d0550bc6c137b003d90bc74f5341a2818
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 000000000000000000000000a924cbbd1113a1cced1f1ac5dcd9fd96e37ab1a4
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 426974626f740000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 424954424f540000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)