ERC-20
Overview
Max Total Supply
34,897,183.429185 USDC.e
Holders
1,150,072 (0.00%)
Market
Price
$0.9998 @ 0.000282 ETH (+0.01%)
Onchain Market Cap
$34,889,436.25
Circulating Supply Market Cap
$76,096,777,447.00
Other Info
Token Contract (WITH 6 Decimals)
Balance
0.039629 USDC.eValue
$0.04 ( ~1.12776220285552E-05 ETH) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Genesis Bytecode Match Only)
Contract Name:
OVMFiatToken
Compiler Version
v0.7.6
Contract Source Code (Solidity)
/** *Submitted for verification at optimistic.etherscan.io on 2021-08-31 */ // Sources flattened with hardhat v2.3.3 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @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 value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to 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 { } } // File @openzeppelin/contracts/introspection/[email protected] pragma solidity >=0.6.0 <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); } // File @eth-optimism/contracts/libraries/standards/[email protected] pragma solidity >=0.5.16 <0.8.0; interface IL2StandardERC20 is IERC20, IERC165 { function l1Token() external returns (address); function mint(address _to, uint256 _amount) external; function burn(address _from, uint256 _amount) external; event Mint(address indexed _account, uint256 _amount); event Burn(address indexed _account, uint256 _amount); } // File @eth-optimism/contracts/libraries/standards/[email protected] pragma solidity >=0.5.16 <0.8.0; contract L2StandardERC20 is IL2StandardERC20, ERC20 { address public override l1Token; address public l2Bridge; /** * @param _l2Bridge Address of the L2 standard bridge. * @param _l1Token Address of the corresponding L1 token. * @param _name ERC20 name. * @param _symbol ERC20 symbol. */ constructor( address _l2Bridge, address _l1Token, string memory _name, string memory _symbol ) ERC20(_name, _symbol) { l1Token = _l1Token; l2Bridge = _l2Bridge; } modifier onlyL2Bridge { require(msg.sender == l2Bridge, "Only L2 Bridge can mint and burn"); _; } function supportsInterface(bytes4 _interfaceId) public override pure returns (bool) { bytes4 firstSupportedInterface = bytes4(keccak256("supportsInterface(bytes4)")); // ERC165 bytes4 secondSupportedInterface = IL2StandardERC20.l1Token.selector ^ IL2StandardERC20.mint.selector ^ IL2StandardERC20.burn.selector; return _interfaceId == firstSupportedInterface || _interfaceId == secondSupportedInterface; } function mint(address _to, uint256 _amount) public virtual override onlyL2Bridge { _mint(_to, _amount); emit Mint(_to, _amount); } function burn(address _from, uint256 _amount) public virtual override onlyL2Bridge { _burn(_from, _amount); emit Burn(_from, _amount); } } // File contracts/USDC/lib/Ownable.sol // Copyright (c) 2021 Coinbase, Inc. pragma solidity >=0.5.16 <0.8.0; /** * @notice Ownable * @dev Similar to OpenZeppelin's Ownable. * Differences: * - An internally callable _changeOwner() function * - No renounceOwnership() function * - No constructor * - No GSN support */ abstract contract Ownable { address internal _owner; /** * @notice Emitted when the owner changes. * @param previousOwner Previous owner's address * @param newOwner New owner's address */ event OwnerChanged(address indexed previousOwner, address indexed newOwner); /** * @notice Throw if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == msg.sender, "caller is not the owner"); _; } /** * @notice Return the address of the current owner. * @return Owner's address */ function owner() external view returns (address) { return _owner; } /** * @notice Change the owner. Can only be called by the current owner. * @param account New owner's address */ function changeOwner(address account) external onlyOwner { _changeOwner(account); } /** * @notice Internal function to change the owner. * @param account New owner's address */ function _changeOwner(address account) internal { require(account != address(0), "account is the zero address"); require(account != address(this), "account is this contract"); emit OwnerChanged(_owner, account); _owner = account; } } // File contracts/USDC/lib/Pausable.sol // Copyright (c) 2021 Coinbase, Inc. pragma solidity >=0.5.16 <0.8.0; /** * @notice Pausable * @dev Similar to OpenZeppelin's Pausable. * Differences: * - Has the pauser role * - External pause/unpause functions callable by the pauser * - No constructor * - No GSN support */ abstract contract Pausable is Ownable { address private _pauser; bool private _paused; /** * @notice Emitted when the pauser changes. * @param previousPauser Previous pauser's address * @param newPauser New pauser's address */ event PauserChanged( address indexed previousPauser, address indexed newPauser ); /** * @notice Emitted when the contract is paused. * @param pauser Pauser's address */ event Paused(address pauser); /** * @notice Emitted when the contract is unpaused. * @param pauser Pauser's address */ event Unpaused(address pauser); /** * @notice Callable only by the pauser. */ modifier onlyPauser() { require(msg.sender == _pauser, "caller is not the pauser"); _; } /** * @notice Callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "contract is paused"); _; } /** * @notice Callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "contract is not paused"); _; } /** * @notice Return the current pauser. * @return Pauser's address */ function pauser() external view returns (address) { return _pauser; } /** * @notice Return whether the contract is paused. * @return True if paused */ function paused() external view returns (bool) { return _paused; } /** * @notice Pause the contract. */ function pause() external onlyPauser { _paused = true; emit Paused(msg.sender); } /** * @notice Unpause the contract. */ function unpause() external onlyPauser { _paused = false; emit Unpaused(msg.sender); } /** * @notice Set a new pauser. * @param account New pauser's address */ function setPauser(address account) external onlyOwner { _setPauser(account); } /** * @notice Initial function to set the pauser. * @param account New pauser's address */ function _setPauser(address account) internal { emit PauserChanged(_pauser, account); _pauser = account; } } // File contracts/USDC/lib/Blacklistable.sol /** * * Copyright (c) 2018-2020 CENTRE SECZ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ pragma solidity >=0.5.16 <0.8.0; abstract contract Blacklistable is Ownable { address internal _blacklister; mapping(address => bool) internal _blacklisted; event Blacklisted(address indexed account); event UnBlacklisted(address indexed account); event BlacklisterChanged(address indexed newBlacklister); /** * @notice Throw if called by any account other than the blacklister */ modifier onlyBlacklister() { require(msg.sender == _blacklister, "caller is not the blacklister"); _; } /** * @notice Throw if argument account is blacklisted * @param account The address to check */ modifier notBlacklisted(address account) { require(!_blacklisted[account], "account is blacklisted"); _; } /** * @notice Blacklister address * @return Address */ function blacklister() external view returns (address) { return _blacklister; } /** * @notice Check whether a given account is blacklisted * @param account The address to check */ function isBlacklisted(address account) external view returns (bool) { return _blacklisted[account]; } /** * @notice Add an account to blacklist * @param account The address to blacklist */ function blacklist(address account) external onlyBlacklister { _blacklisted[account] = true; emit Blacklisted(account); } /** * @notice Remove an account from blacklist * @param account The address to remove from the blacklist */ function unBlacklist(address account) external onlyBlacklister { _blacklisted[account] = false; emit UnBlacklisted(account); } /** * @notice Change the blacklister * @param newBlacklister new blacklister's address */ function updateBlacklister(address newBlacklister) external onlyOwner { require( newBlacklister != address(0), "new blacklister is the zero address" ); _blacklister = newBlacklister; emit BlacklisterChanged(_blacklister); } } // File contracts/USDC/OVMFiatToken.sol // Copyright (c) 2021 Coinbase, Inc. pragma solidity >=0.5.16 <0.8.0; contract OVMFiatToken is L2StandardERC20, Ownable, Pausable, Blacklistable { constructor( address _l2Bridge, address _l1Token, address owner, string memory name, string memory symbol, uint8 decimals ) L2StandardERC20(_l2Bridge, _l1Token, name, symbol) { _setupDecimals(decimals); _changeOwner(owner); } function mint(address account, uint256 amount) public override whenNotPaused notBlacklisted(account) onlyL2Bridge { super.mint(account, amount); } function burn(address account, uint256 amount) public override whenNotPaused notBlacklisted(account) onlyL2Bridge { super.burn(account, amount); } function approve(address spender, uint256 amount) public override whenNotPaused notBlacklisted(msg.sender) notBlacklisted(spender) returns (bool) { return super.approve(spender, amount); } function increaseAllowance(address spender, uint256 addedValue) public override whenNotPaused notBlacklisted(msg.sender) notBlacklisted(spender) returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint256 subtractedValue) public override whenNotPaused notBlacklisted(msg.sender) notBlacklisted(spender) returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } function transfer(address recipient, uint256 amount) public override whenNotPaused notBlacklisted(msg.sender) notBlacklisted(recipient) returns (bool) { return super.transfer(recipient, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override whenNotPaused notBlacklisted(msg.sender) notBlacklisted(sender) notBlacklisted(recipient) returns (bool) { return super.transferFrom(sender, recipient, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_l2Bridge","type":"address"},{"internalType":"address","name":"_l1Token","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"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"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","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":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pauser","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousPauser","type":"address"},{"indexed":true,"internalType":"address","name":"newPauser","type":"address"}],"name":"PauserChanged","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pauser","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1Token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2Bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setPauser","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlacklister","type":"address"}],"name":"updateBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001c576000806200001962000647565b50505b50604051620048e5380380620048e5833981810160405260c08110156200004d576000806200004a62000647565b50505b810190808051906020019092919080519060200190929190805190602001909291908051604051939291908464010000000082111562000097576000806200009462000647565b50505b83820191506020820185811115620000b957600080620000b662000647565b50505b8251866001820283011164010000000082111715620000e257600080620000df62000647565b50505b8083526020830192505050908051906020019080838360005b8381101562000118578082015181840152602081019050620000fb565b50505050905090810190601f168015620001465780820380516001836020036101000a031916815260200191505b506040526020018051604051939291908464010000000082111562000175576000806200017262000647565b50505b8382019150602082018581111562000197576000806200019462000647565b50505b8251866001820283011164010000000082111715620001c057600080620001bd62000647565b50505b8083526020830192505050908051906020019080838360005b83811015620001f6578082015181840152602081019050620001d9565b50505050905090810190601f168015620002245780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190505050858584848181816003908051906020019062000256929190620006b7565b5080600490805190602001906200026f929190620006b7565b506012600560006101000a816200028562000783565b8160ff021916908360ff160217906200029d620007e8565b505050505082600560016101000a81620002b662000783565b8173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790620002f4620007e8565b50505083600660006101000a816200030b62000783565b8173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179062000349620007e8565b5050505050505062000361816200037e60201b60201c565b6200037284620003b060201b60201c565b50505050505062000879565b80600560006101000a816200039262000783565b8160ff021916908360ff16021790620003aa620007e8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200045f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f6163636f756e7420697320746865207a65726f20616464726573730000000000815250602001915050604051809103906200045c62000647565b50505b5a63996d79a5598160e01b8152602081600483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b8051925060005b6040811015620004ba576000818301526020810190506200049e565b50505073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200056a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6163636f756e74206973207468697320636f6e74726163740000000000000000815250602001915050604051809103906200056762000647565b50505b8073ffffffffffffffffffffffffffffffffffffffff1660076000906200059062000783565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c60405160405180910390a380600760006101000a816200060362000783565b8173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179062000641620007e8565b50505050565b632a2a7adb598160e01b8152600481016020815285602082015260005b868110156200068457808601518160408401015260208101905062000664565b506020828760640184336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b505050565b8280620006c362000783565b600181600116156101000203166002900490600052602060002090601f0160209004810192826200070357600085620006fb620007e8565b505062000770565b82601f106200072957805160ff1916838001178562000721620007e8565b505062000770565b828001600101856200073a620007e8565b5050821562000770579182015b828111156200076f578251826200075d620007e8565b50509160200191906001019062000747565b5b5090506200077f91906200084f565b5090565b6303daa959598160e01b8152836004820152602081602483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b8051935060005b6040811015620007e357600081830152602081019050620007c7565b505050565b6322bd64c0598160e01b8152836004820152846024820152600081604483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b60005b60408110156200084a576000818301526020810190506200082e565b505050565b5b80821115620008755760008160009062000869620007e8565b50505060010162000850565b5090565b61405c80620008896000396000f3fe608060405234801561001957600080610016613d61565b50505b50600436106101cd5760003560e01c80638da5cb5b11610102578063ad38bf22116100a0578063c01e1bd61161007a578063c01e1bd614610914578063dd62ed3e14610948578063f9f92be4146109c9578063fe575a8714610a16576101cd565b8063ad38bf221461085f578063ae1f6aaf146108ac578063bd102430146108e0576101cd565b80639fd0506d116100dc5780639fd0506d14610704578063a457c2d714610738578063a6f9dae1146107a5578063a9059cbb146107f2576101cd565b80638da5cb5b146105f657806395d89b411461062a5780639dc29fac146106ad576101cd565b8063313ce5671161016f57806340c10f191161014957806340c10f19146105145780635c975abb1461056b57806370a082311461058b5780638456cb59146105ec576101cd565b8063313ce5671461047c578063395093511461049d5780633f4ba83a1461050a576101cd565b806318160ddd116101ab57806318160ddd146103375780631a8952661461035557806323b872dd146103a25780632d88af4a1461042f576101cd565b806301ffc9a7146101db57806306fdde0314610247578063095ea7b3146102ca575b6000806101d8613d61565b50505b61022f600480360360208110156101fa576000806101f7613d61565b50505b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610a79565b60405180821515815260200191505060405180910390f35b61024f610b4f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028f578082015181840152602081019050610274565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031f600480360360408110156102e9576000806102e6613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c0d565b60405180821515815260200191505060405180910390f35b61033f610e60565b6040518082815260200191505060405180910390f35b6103a06004803603602081101561037457600080610371613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e71565b005b610417600480360360608110156103c1576000806103be613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ffa565b60405180821515815260200191505060405180910390f35b61047a6004803603602081101561044e5760008061044b613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611321565b005b610484611408565b604051808260ff16815260200191505060405180910390f35b6104f2600480360360408110156104bc576000806104b9613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611426565b60405180821515815260200191505060405180910390f35b610512611679565b005b6105696004803603604081101561053357600080610530613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117d6565b005b610573611a24565b60405180821515815260200191505060405180910390f35b6105d6600480360360208110156105aa576000806105a7613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a42565b6040518082815260200191505060405180910390f35b6105f4611a91565b005b6105fe611bee565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611c1f565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610672578082015181840152602081019050610657565b50505050905090810190601f16801561069f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610702600480360360408110156106cc576000806106c9613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611cdd565b005b61070c611f2b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61078d6004803603604081101561075757600080610754613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f5c565b60405180821515815260200191505060405180910390f35b6107f0600480360360208110156107c4576000806107c1613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121af565b005b610847600480360360408110156108115760008061080e613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612296565b60405180821515815260200191505060405180910390f35b6108aa6004803603602081101561087e5760008061087b613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124e9565b005b6108b4612713565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108e8612740565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61091c612771565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109b36004803603604081101561096757600080610964613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061279e565b6040518082815260200191505060405180910390f35b610a14600480360360208110156109e8576000806109e5613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061282c565b005b610a6160048036036020811015610a3557600080610a32613d61565b50505b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129b5565b60405180821515815260200191505060405180910390f35b6000807f01ffc9a7a5cef8baa21ed3c5c0d7e23accb804b619e9333b597f47a0d84076e290506000639dc29fac60e01b6340c10f1960e01b63c01e1bd660e01b18189050817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b465750807bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b92505050919050565b6060600380610b5c613dcf565b600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280610b97613dcf565b60018160011615610100020316600290048015610c035780601f10610bd1576101008083610bc3613dcf565b040283529160200191610c03565b820191906000526020600020905b81610be8613dcf565b81529060010190602001808311610bdf57829003601f168201915b5050505050905090565b60006008601490610c1c613dcf565b906101000a900460ff1615610ca2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390610c9f613d61565b50505b5a610cab613e32565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090610cf5613dcf565b906101000a900460ff1615610d7b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390610d78613d61565b50505b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090610dc6613dcf565b906101000a900460ff1615610e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390610e49613d61565b50505b610e568585612a12565b9250505092915050565b60006002610e6c613dcf565b905090565b6009600090610e7e613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a610eba613e32565b73ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f63616c6c6572206973206e6f742074686520626c61636b6c697374657200000081525060200191505060405180910390610f49613d61565b50505b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81610f9c613dcf565b8160ff02191690831515021790610fb1613e8f565b5050508073ffffffffffffffffffffffffffffffffffffffff167f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e60405160405180910390a250565b60006008601490611009613dcf565b906101000a900460ff161561108f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e74726163742069732070617573656400000000000000000000000000008152506020019150506040518091039061108c613d61565b50505b5a611098613e32565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000906110e2613dcf565b906101000a900460ff1615611168576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611165613d61565b50505b84600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000906111b3613dcf565b906101000a900460ff1615611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611236613d61565b50505b84600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090611284613dcf565b906101000a900460ff161561130a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611307613d61565b50505b611315878787612a30565b93505050509392505050565b5a61132a613e32565b73ffffffffffffffffffffffffffffffffffffffff16600760009061134d613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000815250602001915050604051809103906113f9613d61565b50505b61140581612b10565b50565b60006005600090611417613dcf565b906101000a900460ff16905090565b60006008601490611435613dcf565b906101000a900460ff16156114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e7472616374206973207061757365640000000000000000000000000000815250602001915050604051809103906114b8613d61565b50505b5a6114c4613e32565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009061150e613dcf565b906101000a900460ff1615611594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611591613d61565b50505b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000906115df613dcf565b906101000a900460ff1615611665576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611662613d61565b50505b61166f8585612be7565b9250505092915050565b6008600090611686613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a6116c2613e32565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f63616c6c6572206973206e6f742074686520706175736572000000000000000081525060200191505060405180910390611751613d61565b50505b6000600860146101000a81611767613dcf565b8160ff0219169083151502179061177c613e8f565b5050507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5a6117a9613e32565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60086014906117e3613dcf565b906101000a900460ff1615611869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390611866613d61565b50505b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000906118b4613dcf565b906101000a900460ff161561193a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611937613d61565b50505b6006600090611947613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a611983613e32565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390611a12613d61565b50505b611a1f8383612ca1565b505050565b60006008601490611a33613dcf565b906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a8a613dcf565b9050919050565b6008600090611a9e613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a611ada613e32565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f63616c6c6572206973206e6f742074686520706175736572000000000000000081525060200191505060405180910390611b69613d61565b50505b6001600860146101000a81611b7f613dcf565b8160ff02191690831515021790611b94613e8f565b5050507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585a611bc1613e32565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006007600090611bfd613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480611c2c613dcf565b600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280611c67613dcf565b60018160011615610100020316600290048015611cd35780601f10611ca1576101008083611c93613dcf565b040283529160200191611cd3565b820191906000526020600020905b81611cb8613dcf565b81529060010190602001808311611caf57829003601f168201915b5050505050905090565b6008601490611cea613dcf565b906101000a900460ff1615611d70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390611d6d613d61565b50505b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090611dbb613dcf565b906101000a900460ff1615611e41576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390611e3e613d61565b50505b6006600090611e4e613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a611e8a613e32565b73ffffffffffffffffffffffffffffffffffffffff1614611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390611f19613d61565b50505b611f268383612dd8565b505050565b60006008600090611f3a613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006008601490611f6b613dcf565b906101000a900460ff1615611ff1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390611fee613d61565b50505b5a611ffa613e32565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090612044613dcf565b906101000a900460ff16156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c697374656400000000000000000000815250602001915050604051809103906120c7613d61565b50505b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090612115613dcf565b906101000a900460ff161561219b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390612198613d61565b50505b6121a58585612f0f565b9250505092915050565b5a6121b8613e32565b73ffffffffffffffffffffffffffffffffffffffff1660076000906121db613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461228a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390612287613d61565b50505b61229381612fe3565b50565b600060086014906122a5613dcf565b906101000a900460ff161561232b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390612328613d61565b50505b5a612334613e32565b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009061237e613dcf565b906101000a900460ff1615612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390612401613d61565b50505b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009061244f613dcf565b906101000a900460ff16156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c697374656400000000000000000000815250602001915050604051809103906124d2613d61565b50505b6124df858561326c565b9250505092915050565b5a6124f2613e32565b73ffffffffffffffffffffffffffffffffffffffff166007600090612515613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e6572000000000000000000815250602001915050604051809103906125c1613d61565b50505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612653576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f826023913960400191505060405180910390612650613d61565b50505b80600960006101000a81612665613dcf565b8173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217906126a1613e8f565b50505060096000906126b1613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e60405160405180910390a250565b6006600090612720613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009061274f613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560019061277e613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612824613dcf565b905092915050565b6009600090612839613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a612875613e32565b73ffffffffffffffffffffffffffffffffffffffff1614612907576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f63616c6c6572206973206e6f742074686520626c61636b6c697374657200000081525060200191505060405180910390612904613d61565b50505b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81612957613dcf565b8160ff0219169083151502179061296c613e8f565b5050508073ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a250565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090612a01613dcf565b906101000a900460ff169050919050565b6000612a26612a1f61328a565b848461329a565b6001905092915050565b6000612a3d8484846134ac565b612b0584612a4961328a565b612b0085604051806060016040528060288152602001613fa560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612aaf61328a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612af1613dcf565b61379f9092919063ffffffff16565b61329a565b600190509392505050565b8073ffffffffffffffffffffffffffffffffffffffff166008600090612b34613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f95bb211a5a393c4d30c3edc9a745825fba4e6ad3e3bb949e6bf8ccdfe431a81160405160405180910390a380600860006101000a81612ba5613dcf565b8173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790612be1613e8f565b50505050565b6000612c97612bf461328a565b84612c928560016000612c0561328a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c84613dcf565b61386290919063ffffffff16565b61329a565b6001905092915050565b6006600090612cae613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a612cea613e32565b73ffffffffffffffffffffffffffffffffffffffff1614612d7c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390612d79613d61565b50505b612d8682826138f3565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b6006600090612de5613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165a612e21613e32565b73ffffffffffffffffffffffffffffffffffffffff1614612eb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390612eb0613d61565b50505b612ebd8282613ae3565b8173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b6000612fd9612f1c61328a565b84612fd4856040518060600160405280602581526020016140376025913960016000612f4661328a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612fc5613dcf565b61379f9092919063ffffffff16565b61329a565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561308f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f6163636f756e7420697320746865207a65726f206164647265737300000000008152506020019150506040518091039061308c613d61565b50505b5a63996d79a5598160e01b8152602081600483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b8051925060005b60408110156130e8576000818301526020810190506130ce565b50505073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613195576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6163636f756e74206973207468697320636f6e7472616374000000000000000081525060200191505060405180910390613192613d61565b50505b8073ffffffffffffffffffffffffffffffffffffffff1660076000906131b9613dcf565b906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c60405160405180910390a380600760006101000a8161322a613dcf565b8173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790613266613e8f565b50505050565b600061328061327961328a565b84846134ac565b6001905092915050565b60005a613295613e32565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140136024913960400191505060405180910390613326613d61565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613f3a60229139604001915050604051809103906133b5613d61565b50505b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819061343f613e8f565b5050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561353b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613fee6025913960400191505060405180910390613538613d61565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613ef560239139604001915050604051809103906135c7613d61565b50505b6135d5838383613cd0565b61364781604051806060016040528060268152602001613f5c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613638613dcf565b61379f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819061368f613e8f565b5050506136ea816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206136dc613dcf565b61386290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190613732613e8f565b5050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613855576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156138115780820151818401526020810190506137f6565b50505050905090810190601f16801561383e5780820380516001836020036101000a031916815260200191505b509250505060405180910390613852613d61565b50505b5082840390509392505050565b6000808284019050838110156138e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815250602001915050604051809103906138e6613d61565b50505b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561399f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f2061646472657373008152506020019150506040518091039061399c613d61565b50505b6139ab60008383613cd0565b6139c78160026139b9613dcf565b61386290919063ffffffff16565b600281906139d3613e8f565b505050613a2e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613a20613dcf565b61386290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190613a76613e8f565b5050508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613fcd6021913960400191505060405180910390613b6f613d61565b50505b613b7e82600083613cd0565b613bf081604051806060016040528060228152602001613f18602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613be1613dcf565b61379f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190613c38613e8f565b505050613c57816002613c49613dcf565b613cd590919063ffffffff16565b60028190613c63613e8f565b505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600082821115613d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390613d53613d61565b50505b818303905092915050565b632a2a7adb598160e01b8152600481016020815285602082015260005b86811015613d9c578086015181604084010152602081019050613d7e565b506020828760640184336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b505050565b6303daa959598160e01b8152836004820152602081602483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b8051935060005b6040811015613e2d57600081830152602081019050613e13565b505050565b6373509064598160e01b8152602081600483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b8051935060005b6040811015613e8a57600081830152602081019050613e70565b505050565b6322bd64c0598160e01b8152836004820152846024820152600081604483336000905af158600e01573d6000803e3d6000fd5b3d6001141558600a015760016000f35b60005b6040811015613eef57600081830152602081019050613ed5565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656e657720626c61636b6c697374657220697320746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f0000000000000000000000004200000000000000000000000000000000000010000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000007492ce19d83b3a0bac1bebc9706ce0df4add105f00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000855534420436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553444300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063ad38bf2211610097578063c01e1bd611610071578063c01e1bd61461088d578063dd62ed3e146108c1578063f9f92be414610939578063fe575a871461097d576101c4565b8063ad38bf22146107e1578063ae1f6aaf14610825578063bd10243014610859576101c4565b80639fd0506d116100d35780639fd0506d146106a1578063a457c2d7146106d5578063a6f9dae114610739578063a9059cbb1461077d576101c4565b80638da5cb5b1461059c57806395d89b41146105d05780639dc29fac14610653576101c4565b8063313ce5671161016657806340c10f191161014057806340c10f19146104cc5780635c975abb1461051a57806370a082311461053a5780638456cb5914610592576101c4565b8063313ce5671461043d578063395093511461045e5780633f4ba83a146104c2576101c4565b806318160ddd116101a257806318160ddd146103135780631a8952661461033157806323b872dd146103755780632d88af4a146103f9576101c4565b806301ffc9a7146101c957806306fdde031461022c578063095ea7b3146102af575b600080fd5b610214600480360360208110156101df57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506109d7565b60405180821515815260200191505060405180910390f35b610234610aad565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fb600480360360408110156102c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b4f565b60405180821515815260200191505060405180910390f35b61031b610d6a565b6040518082815260200191505060405180910390f35b6103736004803603602081101561034757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d74565b005b6103e16004803603606081101561038b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed5565b60405180821515815260200191505060405180910390f35b61043b6004803603602081101561040f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111b4565b005b610445611283565b604051808260ff16815260200191505060405180910390f35b6104aa6004803603604081101561047457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061129a565b60405180821515815260200191505060405180910390f35b6104ca6114b5565b005b610518600480360360408110156104e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115e2565b005b6105226117f8565b60405180821515815260200191505060405180910390f35b61057c6004803603602081101561055057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061180f565b6040518082815260200191505060405180910390f35b61059a611857565b005b6105a4611984565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105d86119ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106185780820151818401526020810190506105fd565b50505050905090810190601f1680156106455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61069f6004803603604081101561066957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a50565b005b6106a9611c66565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610721600480360360408110156106eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c90565b60405180821515815260200191505060405180910390f35b61077b6004803603602081101561074f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611eab565b005b6107c96004803603604081101561079357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f7a565b60405180821515815260200191505060405180910390f35b610823600480360360208110156107f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612195565b005b61082d612387565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108616123ad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108956123d7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610923600480360360408110156108d757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123fd565b6040518082815260200191505060405180910390f35b61097b6004803603602081101561094f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612484565b005b6109bf6004803603602081101561099357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125e5565b60405180821515815260200191505060405180910390f35b6000807f01ffc9a7a5cef8baa21ed3c5c0d7e23accb804b619e9333b597f47a0d84076e290506000639dc29fac60e01b6340c10f1960e01b63c01e1bd660e01b18189050817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aa45750807bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916847bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b92505050919050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b455780601f10610b1a57610100808354040283529160200191610b45565b820191906000526020600020905b815481529060010190602001808311610b2857829003601f168201915b5050505050905090565b6000600860149054906101000a900460ff1615610bd4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b33600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b610d60858561263b565b9250505092915050565b6000600254905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f63616c6c6572206973206e6f742074686520626c61636b6c697374657200000081525060200191505060405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e60405160405180910390a250565b6000600860149054906101000a900460ff1615610f5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b33600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b84600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b84600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561119d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b6111a8878787612659565b93505050509392505050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b61128081612732565b50565b6000600560009054906101000a900460ff16905090565b6000600860149054906101000a900460ff161561131f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b33600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b6114ab85856127f2565b9250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f63616c6c6572206973206e6f742074686520706175736572000000000000000081525060200191505060405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600860149054906101000a900460ff1615611665576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390fd5b6117f383836128a5565b505050565b6000600860149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f63616c6c6572206973206e6f742074686520706175736572000000000000000081525060200191505060405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a465780601f10611a1b57610100808354040283529160200191611a46565b820191906000526020600020905b815481529060010190602001808311611a2957829003601f168201915b5050505050905090565b600860149054906101000a900460ff1615611ad3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b81600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390fd5b611c6183836129c4565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860149054906101000a900460ff1615611d15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b33600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dd6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b611ea18585612ae3565b9250505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f6e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b611f7781612bb0565b50565b6000600860149054906101000a900460ff1615611fff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f636f6e747261637420697320706175736564000000000000000000000000000081525060200191505060405180910390fd5b33600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b83600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f6163636f756e7420697320626c61636b6c69737465640000000000000000000081525060200191505060405180910390fd5b61218b8585612db5565b9250505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f63616c6c6572206973206e6f7420746865206f776e657200000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806138766023913960400191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e60405160405180910390a250565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f63616c6c6572206973206e6f742074686520626c61636b6c697374657200000081525060200191505060405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a250565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061264f612648612dd3565b8484612ddb565b6001905092915050565b6000612666848484612fd2565b61272784612672612dd3565b6127228560405180606001604052806028815260200161389960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006126d8612dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132939092919063ffffffff16565b612ddb565b600190509392505050565b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f95bb211a5a393c4d30c3edc9a745825fba4e6ad3e3bb949e6bf8ccdfe431a81160405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061289b6127ff612dd3565b846128968560016000612810612dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334d90919063ffffffff16565b612ddb565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612968576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390fd5b61297282826133d5565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885826040518082815260200191505060405180910390a25050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612a87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e81525060200191505060405180910390fd5b612a91828261359c565b8173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5826040518082815260200191505060405180910390a25050565b6000612ba6612af0612dd3565b84612ba18560405180606001604052806025815260200161392b6025913960016000612b1a612dd3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132939092919063ffffffff16565b612ddb565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f6163636f756e7420697320746865207a65726f2061646472657373000000000081525060200191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cf5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6163636f756e74206973207468697320636f6e7472616374000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000612dc9612dc2612dd3565b8484612fd2565b6001905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806139076024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ee7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061382e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613058576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806138e26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806137e96023913960400191505060405180910390fd5b6130e9838383613760565b61315481604051806060016040528060268152602001613850602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132939092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506131e7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156133055780820151818401526020810190506132ea565b50505050905090810190601f1680156133325780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000808284019050838110156133cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61348460008383613760565b6134998160025461334d90919063ffffffff16565b6002819055506134f0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461334d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138c16021913960400191505060405180910390fd5b61362e82600083613760565b6136998160405180606001604052806022815260200161380c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132939092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136f08160025461376590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b6000828211156137dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656e657720626c61636b6c697374657220697320746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce806cb1f51075c0f04f3b2463c1905a267511e3a378a7110a4160f2bdcaa1af64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004200000000000000000000000000000000000010000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000007492ce19d83b3a0bac1bebc9706ce0df4add105f00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000855534420436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553444300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _l2Bridge (address): 0x4200000000000000000000000000000000000010
Arg [1] : _l1Token (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [2] : owner (address): 0x7492ce19d83b3a0BaC1BEBC9706ce0dF4ADD105F
Arg [3] : name (string): USD Coin
Arg [4] : symbol (string): USDC
Arg [5] : decimals (uint8): 6
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000004200000000000000000000000000000000000010
Arg [1] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [2] : 0000000000000000000000007492ce19d83b3a0bac1bebc9706ce0df4add105f
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 55534420436f696e000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 5553444300000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
33340:2353:0:-:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;24576:463;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13542:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34173:261;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14641:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32644:149;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35323:367;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29455:93;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14485:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34442:289;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29242:109;;;:::i;:::-;;33737:210;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28932:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14812:127;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29074:104;;;:::i;:::-;;26345:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13752:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33955:210;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28737:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34739:299;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26570:97;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35046:269;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32914:290;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23962:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31903:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23924:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15390:151;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32361:144;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32127:116;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24576:463;24654:4;24671:30;24711:38;24671:79;;24771:31;24900:30;;;24854;;;24805:33;;;:79;:125;24771:159;;24964:23;24948:39;;;:12;:39;;;;:83;;;;25007:24;24991:40;;;:12;:40;;;;24948:83;24941:90;;;;24576:463;;;:::o;13542:91::-;13587:13;13620:5;13613:12;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13542:91;:::o;34173:261::-;34367:4;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34304:10:::1;;;:::i;:::-;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;34340:7:::2;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;34396:30:::3;34410:7;34419:6;34396:13;:30::i;:::-;34389:37;;31808:1:::2;28446::::1;34173:261:::0;;;;:::o;14641:108::-;14702:7;14729:12;;;:::i;:::-;14722:19;;14641:108;:::o;32644:149::-;31495:12;;;;;:::i;:::-;;;;;;;;31481:26;;:10;;;:::i;:::-;:26;;;31473:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32742:5:::1;32718:12;:21;32731:7;32718:21;;;;;;;;;;;;;;;;:29;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;32777:7;32763:22;;;;;;;;;;;;32644:149:::0;:::o;35323:367::-;35608:4;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35511:10:::1;;;:::i;:::-;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;35547:6:::2;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;35579:9:::3;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;:::i;:::-;;;;35637:45:::4;35656:6;35664:9;35675:6;35637:18;:45::i;:::-;35630:52;;31808:1:::3;::::2;28446::::1;35323:367:::0;;;;;:::o;29455:93::-;26172:10;;;:::i;:::-;26162:20;;:6;;;;;:::i;:::-;;;;;;;;:20;;;26154:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29521:19:::1;29532:7;29521:10;:19::i;:::-;29455:93:::0;:::o;14485:91::-;14534:5;14559:9;;;;;:::i;:::-;;;;;;;;14552:16;;14485:91;:::o;34442:289::-;34650:4;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34587:10:::1;;;:::i;:::-;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;34623:7:::2;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;34679:44:::3;34703:7;34712:10;34679:23;:44::i;:::-;34672:51;;31808:1:::2;28446::::1;34442:289:::0;;;;:::o;29242:109::-;28215:7;;;;;:::i;:::-;;;;;;;;28201:21;;:10;;;:::i;:::-;:21;;;28193:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29302:5:::1;29292:7;;:15;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;29323:20;29332:10;;;:::i;:::-;29323:20;;;;;;;;;;;;;;;;;;;;29242:109::o:0;33737:210::-;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33865:7:::1;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;24503:8:::2;;;;;:::i;:::-;;;;;;;;24489:22;;:10;;;:::i;:::-;:22;;;24481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;33912:27:::3;33923:7;33932:6;33912:10;:27::i;:::-;28446:1:::1;33737:210:::0;;:::o;28932:80::-;28973:4;28997:7;;;;;:::i;:::-;;;;;;;;28990:14;;28932:80;:::o;14812:127::-;14886:7;14913:9;:18;14923:7;14913:18;;;;;;;;;;;;;;;;;:::i;:::-;14906:25;;14812:127;;;:::o;29074:104::-;28215:7;;;;;:::i;:::-;;;;;;;;28201:21;;:10;;;:::i;:::-;:21;;;28193:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29132:4:::1;29122:7;;:14;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;29152:18;29159:10;;;:::i;:::-;29152:18;;;;;;;;;;;;;;;;;;;;29074:104::o:0;26345:81::-;26385:7;26412:6;;;;;:::i;:::-;;;;;;;;26405:13;;26345:81;:::o;13752:95::-;13799:13;13832:7;13825:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13752:95;:::o;33955:210::-;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34083:7:::1;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;24503:8:::2;;;;;:::i;:::-;;;;;;;;24489:22;;:10;;;:::i;:::-;:22;;;24481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;34130:27:::3;34141:7;34150:6;34130:10;:27::i;:::-;28446:1:::1;33955:210:::0;;:::o;28737:83::-;28778:7;28805;;;;;:::i;:::-;;;;;;;;28798:14;;28737:83;:::o;34739:299::-;34952:4;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34889:10:::1;;;:::i;:::-;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;34925:7:::2;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;34981:49:::3;35005:7;35014:15;34981:23;:49::i;:::-;34974:56;;31808:1:::2;28446::::1;34739:299:::0;;;;:::o;26570:97::-;26172:10;;;:::i;:::-;26162:20;;:6;;;;;:::i;:::-;;;;;;;;:20;;;26154:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;26638:21:::1;26651:7;26638:12;:21::i;:::-;26570:97:::0;:::o;35046:269::-;35245:4;28405:7;;;;;:::i;:::-;;;;;;;;28404:8;28396:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35180:10:::1;;;:::i;:::-;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;:::i;:::-;;;;35216:9:::2;31749:12;:21;31762:7;31749:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;31748:22;31740:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;:::i;:::-;;;;35274:33:::3;35289:9;35300:6;35274:14;:33::i;:::-;35267:40;;31808:1:::2;28446::::1;35046:269:::0;;;;:::o;32914:290::-;26172:10;;;:::i;:::-;26162:20;;:6;;;;;:::i;:::-;;;;;;;;:20;;;26154:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33043:1:::1;33017:28;;:14;:28;;;;32995:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33134:14;33119:12;;:29;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;33183:12;;;;;:::i;:::-;;;;;;;;33164:32;;;;;;;;;;;;32914:290:::0;:::o;23962:23::-;;;;;;:::i;:::-;;;;;;;;;:::o;31903:93::-;31949:7;31976:12;;;;;:::i;:::-;;;;;;;;31969:19;;31903:93;:::o;23924:31::-;;;;;;:::i;:::-;;;;;;;;;:::o;15390:151::-;15479:7;15506:11;:18;15518:5;15506:18;;;;;;;;;;;;;;;:27;15525:7;15506:27;;;;;;;;;;;;;;;;;:::i;:::-;15499:34;;15390:151;;;;:::o;32361:144::-;31495:12;;;;;:::i;:::-;;;;;;;;31481:26;;:10;;;:::i;:::-;:26;;;31473:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;32457:4:::1;32433:12;:21;32446:7;32433:21;;;;;;;;;;;;;;;;:28;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;32489:7;32477:20;;;;;;;;;;;;32361:144:::0;:::o;32127:116::-;32190:4;32214:12;:21;32227:7;32214:21;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;32207:28;;32127:116;;;:::o;15688:169::-;15771:4;15788:39;15797:12;:10;:12::i;:::-;15811:7;15820:6;15788:8;:39::i;:::-;15845:4;15838:11;;15688:169;;;;:::o;16339:321::-;16445:4;16462:36;16472:6;16480:9;16491:6;16462:9;:36::i;:::-;16509:121;16518:6;16526:12;:10;:12::i;:::-;16540:89;16578:6;16540:89;;;;;;;;;;;;;;;;;:11;:19;16552:6;16540:19;;;;;;;;;;;;;;;:33;16560:12;:10;:12::i;:::-;16540:33;;;;;;;;;;;;;;;;;:::i;:::-;:37;;:89;;;;;:::i;:::-;16509:8;:121::i;:::-;16648:4;16641:11;;16339:321;;;;;:::o;29670:129::-;29755:7;29732:31;;29746:7;;;;;:::i;:::-;;;;;;;;29732:31;;;;;;;;;;;;29784:7;29774;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;29670:129;:::o;17069:218::-;17157:4;17174:83;17183:12;:10;:12::i;:::-;17197:7;17206:50;17245:10;17206:11;:25;17218:12;:10;:12::i;:::-;17206:25;;;;;;;;;;;;;;;:34;17232:7;17206:34;;;;;;;;;;;;;;;;;:::i;:::-;:38;;:50;;;;:::i;:::-;17174:8;:83::i;:::-;17275:4;17268:11;;17069:218;;;;:::o;25047:155::-;24503:8;;;;;:::i;:::-;;;;;;;;24489:22;;:10;;;:::i;:::-;:22;;;24481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;25139:19:::1;25145:3;25150:7;25139:5;:19::i;:::-;25181:3;25176:18;;;25186:7;25176:18;;;;;;;;;;;;;;;;;;25047:155:::0;;:::o;25210:161::-;24503:8;;;;;:::i;:::-;;;;;;;;24489:22;;:10;;;:::i;:::-;:22;;;24481:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;25304:21:::1;25310:5;25317:7;25304:5;:21::i;:::-;25348:5;25343:20;;;25355:7;25343:20;;;;;;;;;;;;;;;;;;25210:161:::0;;:::o;17790:269::-;17883:4;17900:129;17909:12;:10;:12::i;:::-;17923:7;17932:96;17971:15;17932:96;;;;;;;;;;;;;;;;;:11;:25;17944:12;:10;:12::i;:::-;17932:25;;;;;;;;;;;;;;;:34;17958:7;17932:34;;;;;;;;;;;;;;;;;:::i;:::-;:38;;:96;;;;;:::i;:::-;17900:8;:129::i;:::-;18047:4;18040:11;;17790:269;;;;:::o;26791:272::-;26877:1;26858:21;;:7;:21;;;;26850:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;26949:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26930:24;;:7;:24;;;;26922:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;27020:7;26999:29;;27012:6;;;;;:::i;:::-;;;;;;;;26999:29;;;;;;;;;;;;27048:7;27039:6;;:16;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;26791:272;:::o;15152:175::-;15238:4;15255:42;15265:12;:10;:12::i;:::-;15279:9;15290:6;15255:9;:42::i;:::-;15315:4;15308:11;;15152:175;;;;:::o;737:106::-;790:15;825:10;;;:::i;:::-;818:17;;737:106;:::o;20937:346::-;21056:1;21039:19;;:5;:19;;;;21031:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;21137:1;21118:21;;:7;:21;;;;21110:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;21221:6;21191:11;:18;21203:5;21191:18;;;;;;;;;;;;;;;:27;21210:7;21191:27;;;;;;;;;;;;;;;:36;;;;:::i;:::-;;;;21259:7;21243:32;;21252:5;21243:32;;;21268:6;21243:32;;;;;;;;;;;;;;;;;;20937:346;;;:::o;18549:539::-;18673:1;18655:20;;:6;:20;;;;18647:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;18757:1;18736:23;;:9;:23;;;;18728:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;18812:47;18833:6;18841:9;18852:6;18812:20;:47::i;:::-;18892:71;18914:6;18892:71;;;;;;;;;;;;;;;;;:9;:17;18902:6;18892:17;;;;;;;;;;;;;;;;;:::i;:::-;:21;;:71;;;;;:::i;:::-;18872:9;:17;18882:6;18872:17;;;;;;;;;;;;;;;:91;;;;:::i;:::-;;;;18997:32;19022:6;18997:9;:20;19007:9;18997:20;;;;;;;;;;;;;;;;;:::i;:::-;:24;;:32;;;;:::i;:::-;18974:9;:20;18984:9;18974:20;;;;;;;;;;;;;;;:55;;;;:::i;:::-;;;;19062:9;19045:35;;19054:6;19045:35;;;19073:6;19045:35;;;;;;;;;;;;;;;;;;18549:539;;;:::o;9532:166::-;9618:7;9651:1;9646;:6;;9654:12;9638:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;9689:1;9685;:5;9678:12;;9532:166;;;;;:::o;6705:179::-;6763:7;6783:9;6799:1;6795;:5;6783:17;;6824:1;6819;:6;;6811:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;6875:1;6868:8;;;6705:179;;;;:::o;19370:378::-;19473:1;19454:21;;:7;:21;;;;19446:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;19524:49;19553:1;19557:7;19566:6;19524:20;:49::i;:::-;19601:24;19618:6;19601:12;;;:::i;:::-;:16;;:24;;;;:::i;:::-;19586:12;:39;;;;:::i;:::-;;;;19657:30;19680:6;19657:9;:18;19667:7;19657:18;;;;;;;;;;;;;;;;;:::i;:::-;:22;;:30;;;;:::i;:::-;19636:9;:18;19646:7;19636:18;;;;;;;;;;;;;;;:51;;;;:::i;:::-;;;;19724:7;19703:37;;19720:1;19703:37;;;19733:6;19703:37;;;;;;;;;;;;;;;;;;19370:378;;:::o;20081:418::-;20184:1;20165:21;;:7;:21;;;;20157:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;20237:49;20258:7;20275:1;20279:6;20237:20;:49::i;:::-;20320:68;20343:6;20320:68;;;;;;;;;;;;;;;;;:9;:18;20330:7;20320:18;;;;;;;;;;;;;;;;;:::i;:::-;:22;;:68;;;;;:::i;:::-;20299:9;:18;20309:7;20299:18;;;;;;;;;;;;;;;:89;;;;:::i;:::-;;;;20414:24;20431:6;20414:12;;;:::i;:::-;:16;;:24;;;;:::i;:::-;20399:12;:39;;;;:::i;:::-;;;;20480:1;20454:37;;20463:7;20454:37;;;20484:6;20454:37;;;;;;;;;;;;;;;;;;20081:418;;:::o;22316:92::-;;;;:::o;7167:158::-;7225:7;7258:1;7253;:6;;7245:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;7316:1;7312;:5;7305:12;;7167:158;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
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)