POL Price: $0.709308 (+2.25%)
Gas: 26 GWei
 

Overview

Max Total Supply

1,000,000,000 WERAC

Holders

153,183

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Weracle

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-04-14
*/

// SPDX-License-Identifier: MIT
pragma solidity >= 0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

library SafeMath {
    /**
     * @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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - amount;
    }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
    }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract Weracle is Ownable, ERC20Burnable, ERC20Pausable {

    address public childChainManagerProxy;

    event Deposit(address indexed user, uint256 amount);
    event Withdraw(uint256 amount);

    // constructor with ERC20
    constructor(address _childChainManagerProxy
    ) ERC20("WERACLE", "WERAC") {
        childChainManagerProxy = _childChainManagerProxy;
        _mint(msg.sender, 1000000000 * 10 ** 18);
    }

    // implements ERC20Burnable
    function burn(uint256 amount) public override onlyOwner {
        super.burn(amount);
    }

    function burnFrom(address account, uint256 amount) public override onlyOwner {
        super.burnFrom(account, amount);
    }

    // implements ERC20Pausable
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }

    function deposit(address user, bytes calldata depositData) external {
        require(msg.sender == childChainManagerProxy, "You're not allowed to deposit");
        uint256 amount = abi.decode(depositData, (uint256));
        _mint(user, amount);
        emit Deposit(user, amount);

    }

    function withdraw(uint256 amount) external {
        _burn(_msgSender(), amount);
        emit Withdraw(amount);
    }

    /**
     * @notice Example function to handle minting tokens on matic chain
     * @dev Minting can be done as per requirement,
     * This implementation allows only admin to mint tokens but it can be changed as per requirement
     * @param user user for whom tokens are being minted
     * @param amount amount of token to mint
     */
    function mint(address user, uint256 amount) public onlyOwner {
        _mint(user, amount);
    }

    function transferMulti(address[] memory users, uint256[] memory payments) external {
        require(users.length <= 100, "Too many users");
        require(users.length == payments.length, "Wrong parameters");
        for (uint i = 0; i < users.length; i++) {
            transfer(users[i], payments[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_childChainManagerProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"childChainManagerProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"payments","type":"uint256[]"}],"name":"transferMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620032dd380380620032dd833981810160405281019062000037919062000586565b6040518060400160405280600781526020017f57455241434c45000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5745524143000000000000000000000000000000000000000000000000000000815250620000c3620000b76200017860201b60201c565b6200018060201b60201c565b8160049080519060200190620000db9291906200046c565b508060059080519060200190620000f49291906200046c565b5050506000600660006101000a81548160ff02191690831515021790555080600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000171336b033b2e3c9fd0803ce80000006200024460201b60201c565b50620007fc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ae9062000619565b60405180910390fd5b620002cb60008383620003be60201b60201c565b8060036000828254620002df919062000674565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000337919062000674565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039e9190620006e2565b60405180910390a3620003ba60008383620003db60201b60201c565b5050565b620003d6838383620003e060201b62000e9a1760201c565b505050565b505050565b620003f88383836200045060201b62000ef21760201c565b620004086200045560201b60201c565b156200044b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004429062000775565b60405180910390fd5b505050565b505050565b6000600660009054906101000a900460ff16905090565b8280546200047a90620007c6565b90600052602060002090601f0160209004810192826200049e5760008555620004ea565b82601f10620004b957805160ff1916838001178555620004ea565b82800160010185558215620004ea579182015b82811115620004e9578251825591602001919060010190620004cc565b5b509050620004f99190620004fd565b5090565b5b8082111562000518576000816000905550600101620004fe565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200054e8262000521565b9050919050565b620005608162000541565b81146200056c57600080fd5b50565b600081519050620005808162000555565b92915050565b6000602082840312156200059f576200059e6200051c565b5b6000620005af848285016200056f565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000601601f83620005b8565b91506200060e82620005c9565b602082019050919050565b600060208201905081810360008301526200063481620005f2565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000681826200063b565b91506200068e836200063b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006c657620006c562000645565b5b828201905092915050565b620006dc816200063b565b82525050565b6000602082019050620006f96000830184620006d1565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006200075d602a83620005b8565b91506200076a82620006ff565b604082019050919050565b6000602082019050818103600083015262000790816200074e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007df57607f821691505b60208210811415620007f657620007f562000797565b5b50919050565b612ad1806200080c6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c357806395d89b411161007c57806395d89b4114610366578063a457c2d714610384578063a9059cbb146103b4578063cf2c52cb146103e4578063dd62ed3e14610400578063f2fde38b146104305761014d565b80635c975abb146102b657806362f629e7146102d457806370a08231146102f257806379cc6790146103225780638456cb591461033e5780638da5cb5b146103485761014d565b8063313ce56711610115578063313ce5671461020a57806335bce6e41461022857806339509351146102445780633f4ba83a1461027457806340c10f191461027e57806342966c681461029a5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be5780632e1a7d4d146101ee575b600080fd5b61015a61044c565b60405161016791906119ff565b60405180910390f35b61018a60048036038101906101859190611ac9565b6104de565b6040516101979190611b24565b60405180910390f35b6101a8610501565b6040516101b59190611b4e565b60405180910390f35b6101d860048036038101906101d39190611b69565b61050b565b6040516101e59190611b24565b60405180910390f35b61020860048036038101906102039190611bbc565b61053a565b005b610212610585565b60405161021f9190611c05565b60405180910390f35b610242600480360381019061023d9190611e2b565b61058e565b005b61025e60048036038101906102599190611ac9565b61067a565b60405161026b9190611b24565b60405180910390f35b61027c610724565b005b61029860048036038101906102939190611ac9565b6107aa565b005b6102b460048036038101906102af9190611bbc565b610834565b005b6102be6108bc565b6040516102cb9190611b24565b60405180910390f35b6102dc6108d3565b6040516102e99190611eb2565b60405180910390f35b61030c60048036038101906103079190611ecd565b6108f9565b6040516103199190611b4e565b60405180910390f35b61033c60048036038101906103379190611ac9565b610942565b005b6103466109cc565b005b610350610a52565b60405161035d9190611eb2565b60405180910390f35b61036e610a7b565b60405161037b91906119ff565b60405180910390f35b61039e60048036038101906103999190611ac9565b610b0d565b6040516103ab9190611b24565b60405180910390f35b6103ce60048036038101906103c99190611ac9565b610bf7565b6040516103db9190611b24565b60405180910390f35b6103fe60048036038101906103f99190611f55565b610c1a565b005b61041a60048036038101906104159190611fb5565b610d1b565b6040516104279190611b4e565b60405180910390f35b61044a60048036038101906104459190611ecd565b610da2565b005b60606004805461045b90612024565b80601f016020809104026020016040519081016040528092919081815260200182805461048790612024565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b6000806104e9610ef7565b90506104f6818585610eff565b600191505092915050565b6000600354905090565b600080610516610ef7565b90506105238582856110ca565b61052e858585611156565b60019150509392505050565b61054b610545610ef7565b826113da565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d8160405161057a9190611b4e565b60405180910390a150565b60006012905090565b6064825111156105d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ca906120a2565b60405180910390fd5b8051825114610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e9061210e565b60405180910390fd5b60005b8251811015610675576106618382815181106106395761063861212e565b5b60200260200101518383815181106106545761065361212e565b5b6020026020010151610bf7565b50808061066d9061218c565b91505061061a565b505050565b600080610685610ef7565b9050610719818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461071491906121d5565b610eff565b600191505092915050565b61072c610ef7565b73ffffffffffffffffffffffffffffffffffffffff1661074a610a52565b73ffffffffffffffffffffffffffffffffffffffff16146107a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079790612277565b60405180910390fd5b6107a86115b3565b565b6107b2610ef7565b73ffffffffffffffffffffffffffffffffffffffff166107d0610a52565b73ffffffffffffffffffffffffffffffffffffffff1614610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90612277565b60405180910390fd5b6108308282611655565b5050565b61083c610ef7565b73ffffffffffffffffffffffffffffffffffffffff1661085a610a52565b73ffffffffffffffffffffffffffffffffffffffff16146108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790612277565b60405180910390fd5b6108b9816117b6565b50565b6000600660009054906101000a900460ff16905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094a610ef7565b73ffffffffffffffffffffffffffffffffffffffff16610968610a52565b73ffffffffffffffffffffffffffffffffffffffff16146109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590612277565b60405180910390fd5b6109c882826117ca565b5050565b6109d4610ef7565b73ffffffffffffffffffffffffffffffffffffffff166109f2610a52565b73ffffffffffffffffffffffffffffffffffffffff1614610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f90612277565b60405180910390fd5b610a506117ea565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a8a90612024565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab690612024565b8015610b035780601f10610ad857610100808354040283529160200191610b03565b820191906000526020600020905b815481529060010190602001808311610ae657829003601f168201915b5050505050905090565b600080610b18610ef7565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590612309565b60405180910390fd5b610beb8286868403610eff565b60019250505092915050565b600080610c02610ef7565b9050610c0f818585611156565b600191505092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190612375565b60405180910390fd5b60008282810190610cbb9190611bbc565b9050610cc78482611655565b8373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c82604051610d0d9190611b4e565b60405180910390a250505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610daa610ef7565b73ffffffffffffffffffffffffffffffffffffffff16610dc8610a52565b73ffffffffffffffffffffffffffffffffffffffff1614610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590612277565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612407565b60405180910390fd5b610e978161188d565b50565b610ea5838383610ef2565b610ead6108bc565b15610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490612499565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f669061252b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906125bd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110bd9190611b4e565b60405180910390a3505050565b60006110d68484610d1b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111505781811015611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612629565b60405180910390fd5b61114f8484848403610eff565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906126bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d9061274d565b60405180910390fd5b611241838383611951565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906127df565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135d91906121d5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c19190611b4e565b60405180910390a36113d4848484611961565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190612871565b60405180910390fd5b61145682600083611951565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490612903565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546115359190612923565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161159a9190611b4e565b60405180910390a36115ae83600084611961565b505050565b6115bb6108bc565b6115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906129a3565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61163e610ef7565b60405161164b9190611eb2565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612a0f565b60405180910390fd5b6116d160008383611951565b80600360008282546116e391906121d5565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173991906121d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179e9190611b4e565b60405180910390a36117b260008383611961565b5050565b6117c76117c1610ef7565b826113da565b50565b6117dc826117d6610ef7565b836110ca565b6117e682826113da565b5050565b6117f26108bc565b15611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990612a7b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611876610ef7565b6040516118839190611eb2565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61195c838383610e9a565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119a0578082015181840152602081019050611985565b838111156119af576000848401525b50505050565b6000601f19601f8301169050919050565b60006119d182611966565b6119db8185611971565b93506119eb818560208601611982565b6119f4816119b5565b840191505092915050565b60006020820190508181036000830152611a1981846119c6565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6082611a35565b9050919050565b611a7081611a55565b8114611a7b57600080fd5b50565b600081359050611a8d81611a67565b92915050565b6000819050919050565b611aa681611a93565b8114611ab157600080fd5b50565b600081359050611ac381611a9d565b92915050565b60008060408385031215611ae057611adf611a2b565b5b6000611aee85828601611a7e565b9250506020611aff85828601611ab4565b9150509250929050565b60008115159050919050565b611b1e81611b09565b82525050565b6000602082019050611b396000830184611b15565b92915050565b611b4881611a93565b82525050565b6000602082019050611b636000830184611b3f565b92915050565b600080600060608486031215611b8257611b81611a2b565b5b6000611b9086828701611a7e565b9350506020611ba186828701611a7e565b9250506040611bb286828701611ab4565b9150509250925092565b600060208284031215611bd257611bd1611a2b565b5b6000611be084828501611ab4565b91505092915050565b600060ff82169050919050565b611bff81611be9565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c5d826119b5565b810181811067ffffffffffffffff82111715611c7c57611c7b611c25565b5b80604052505050565b6000611c8f611a21565b9050611c9b8282611c54565b919050565b600067ffffffffffffffff821115611cbb57611cba611c25565b5b602082029050602081019050919050565b600080fd5b6000611ce4611cdf84611ca0565b611c85565b90508083825260208201905060208402830185811115611d0757611d06611ccc565b5b835b81811015611d305780611d1c8882611a7e565b845260208401935050602081019050611d09565b5050509392505050565b600082601f830112611d4f57611d4e611c20565b5b8135611d5f848260208601611cd1565b91505092915050565b600067ffffffffffffffff821115611d8357611d82611c25565b5b602082029050602081019050919050565b6000611da7611da284611d68565b611c85565b90508083825260208201905060208402830185811115611dca57611dc9611ccc565b5b835b81811015611df35780611ddf8882611ab4565b845260208401935050602081019050611dcc565b5050509392505050565b600082601f830112611e1257611e11611c20565b5b8135611e22848260208601611d94565b91505092915050565b60008060408385031215611e4257611e41611a2b565b5b600083013567ffffffffffffffff811115611e6057611e5f611a30565b5b611e6c85828601611d3a565b925050602083013567ffffffffffffffff811115611e8d57611e8c611a30565b5b611e9985828601611dfd565b9150509250929050565b611eac81611a55565b82525050565b6000602082019050611ec76000830184611ea3565b92915050565b600060208284031215611ee357611ee2611a2b565b5b6000611ef184828501611a7e565b91505092915050565b600080fd5b60008083601f840112611f1557611f14611c20565b5b8235905067ffffffffffffffff811115611f3257611f31611efa565b5b602083019150836001820283011115611f4e57611f4d611ccc565b5b9250929050565b600080600060408486031215611f6e57611f6d611a2b565b5b6000611f7c86828701611a7e565b935050602084013567ffffffffffffffff811115611f9d57611f9c611a30565b5b611fa986828701611eff565b92509250509250925092565b60008060408385031215611fcc57611fcb611a2b565b5b6000611fda85828601611a7e565b9250506020611feb85828601611a7e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061203c57607f821691505b602082108114156120505761204f611ff5565b5b50919050565b7f546f6f206d616e79207573657273000000000000000000000000000000000000600082015250565b600061208c600e83611971565b915061209782612056565b602082019050919050565b600060208201905081810360008301526120bb8161207f565b9050919050565b7f57726f6e6720706172616d657465727300000000000000000000000000000000600082015250565b60006120f8601083611971565b9150612103826120c2565b602082019050919050565b60006020820190508181036000830152612127816120eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061219782611a93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156121ca576121c961215d565b5b600182019050919050565b60006121e082611a93565b91506121eb83611a93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122205761221f61215d565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612261602083611971565b915061226c8261222b565b602082019050919050565b6000602082019050818103600083015261229081612254565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122f3602583611971565b91506122fe82612297565b604082019050919050565b60006020820190508181036000830152612322816122e6565b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206465706f736974000000600082015250565b600061235f601d83611971565b915061236a82612329565b602082019050919050565b6000602082019050818103600083015261238e81612352565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123f1602683611971565b91506123fc82612395565b604082019050919050565b60006020820190508181036000830152612420816123e4565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000612483602a83611971565b915061248e82612427565b604082019050919050565b600060208201905081810360008301526124b281612476565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612515602483611971565b9150612520826124b9565b604082019050919050565b6000602082019050818103600083015261254481612508565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125a7602283611971565b91506125b28261254b565b604082019050919050565b600060208201905081810360008301526125d68161259a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612613601d83611971565b915061261e826125dd565b602082019050919050565b6000602082019050818103600083015261264281612606565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126a5602583611971565b91506126b082612649565b604082019050919050565b600060208201905081810360008301526126d481612698565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612737602383611971565b9150612742826126db565b604082019050919050565b600060208201905081810360008301526127668161272a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127c9602683611971565b91506127d48261276d565b604082019050919050565b600060208201905081810360008301526127f8816127bc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061285b602183611971565b9150612866826127ff565b604082019050919050565b6000602082019050818103600083015261288a8161284e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ed602283611971565b91506128f882612891565b604082019050919050565b6000602082019050818103600083015261291c816128e0565b9050919050565b600061292e82611a93565b915061293983611a93565b92508282101561294c5761294b61215d565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061298d601483611971565b915061299882612957565b602082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006129f9601f83611971565b9150612a04826129c3565b602082019050919050565b60006020820190508181036000830152612a28816129ec565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612a65601083611971565b9150612a7082612a2f565b602082019050919050565b60006020820190508181036000830152612a9481612a58565b905091905056fea26469706673582212200899fd0ae12bc1295056b424d641360d2a8104f095733e615121c5f887392ce064736f6c63430008090033000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c357806395d89b411161007c57806395d89b4114610366578063a457c2d714610384578063a9059cbb146103b4578063cf2c52cb146103e4578063dd62ed3e14610400578063f2fde38b146104305761014d565b80635c975abb146102b657806362f629e7146102d457806370a08231146102f257806379cc6790146103225780638456cb591461033e5780638da5cb5b146103485761014d565b8063313ce56711610115578063313ce5671461020a57806335bce6e41461022857806339509351146102445780633f4ba83a1461027457806340c10f191461027e57806342966c681461029a5761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be5780632e1a7d4d146101ee575b600080fd5b61015a61044c565b60405161016791906119ff565b60405180910390f35b61018a60048036038101906101859190611ac9565b6104de565b6040516101979190611b24565b60405180910390f35b6101a8610501565b6040516101b59190611b4e565b60405180910390f35b6101d860048036038101906101d39190611b69565b61050b565b6040516101e59190611b24565b60405180910390f35b61020860048036038101906102039190611bbc565b61053a565b005b610212610585565b60405161021f9190611c05565b60405180910390f35b610242600480360381019061023d9190611e2b565b61058e565b005b61025e60048036038101906102599190611ac9565b61067a565b60405161026b9190611b24565b60405180910390f35b61027c610724565b005b61029860048036038101906102939190611ac9565b6107aa565b005b6102b460048036038101906102af9190611bbc565b610834565b005b6102be6108bc565b6040516102cb9190611b24565b60405180910390f35b6102dc6108d3565b6040516102e99190611eb2565b60405180910390f35b61030c60048036038101906103079190611ecd565b6108f9565b6040516103199190611b4e565b60405180910390f35b61033c60048036038101906103379190611ac9565b610942565b005b6103466109cc565b005b610350610a52565b60405161035d9190611eb2565b60405180910390f35b61036e610a7b565b60405161037b91906119ff565b60405180910390f35b61039e60048036038101906103999190611ac9565b610b0d565b6040516103ab9190611b24565b60405180910390f35b6103ce60048036038101906103c99190611ac9565b610bf7565b6040516103db9190611b24565b60405180910390f35b6103fe60048036038101906103f99190611f55565b610c1a565b005b61041a60048036038101906104159190611fb5565b610d1b565b6040516104279190611b4e565b60405180910390f35b61044a60048036038101906104459190611ecd565b610da2565b005b60606004805461045b90612024565b80601f016020809104026020016040519081016040528092919081815260200182805461048790612024565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b6000806104e9610ef7565b90506104f6818585610eff565b600191505092915050565b6000600354905090565b600080610516610ef7565b90506105238582856110ca565b61052e858585611156565b60019150509392505050565b61054b610545610ef7565b826113da565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d8160405161057a9190611b4e565b60405180910390a150565b60006012905090565b6064825111156105d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ca906120a2565b60405180910390fd5b8051825114610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e9061210e565b60405180910390fd5b60005b8251811015610675576106618382815181106106395761063861212e565b5b60200260200101518383815181106106545761065361212e565b5b6020026020010151610bf7565b50808061066d9061218c565b91505061061a565b505050565b600080610685610ef7565b9050610719818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461071491906121d5565b610eff565b600191505092915050565b61072c610ef7565b73ffffffffffffffffffffffffffffffffffffffff1661074a610a52565b73ffffffffffffffffffffffffffffffffffffffff16146107a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079790612277565b60405180910390fd5b6107a86115b3565b565b6107b2610ef7565b73ffffffffffffffffffffffffffffffffffffffff166107d0610a52565b73ffffffffffffffffffffffffffffffffffffffff1614610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90612277565b60405180910390fd5b6108308282611655565b5050565b61083c610ef7565b73ffffffffffffffffffffffffffffffffffffffff1661085a610a52565b73ffffffffffffffffffffffffffffffffffffffff16146108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790612277565b60405180910390fd5b6108b9816117b6565b50565b6000600660009054906101000a900460ff16905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094a610ef7565b73ffffffffffffffffffffffffffffffffffffffff16610968610a52565b73ffffffffffffffffffffffffffffffffffffffff16146109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590612277565b60405180910390fd5b6109c882826117ca565b5050565b6109d4610ef7565b73ffffffffffffffffffffffffffffffffffffffff166109f2610a52565b73ffffffffffffffffffffffffffffffffffffffff1614610a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3f90612277565b60405180910390fd5b610a506117ea565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a8a90612024565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab690612024565b8015610b035780601f10610ad857610100808354040283529160200191610b03565b820191906000526020600020905b815481529060010190602001808311610ae657829003601f168201915b5050505050905090565b600080610b18610ef7565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590612309565b60405180910390fd5b610beb8286868403610eff565b60019250505092915050565b600080610c02610ef7565b9050610c0f818585611156565b600191505092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190612375565b60405180910390fd5b60008282810190610cbb9190611bbc565b9050610cc78482611655565b8373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c82604051610d0d9190611b4e565b60405180910390a250505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610daa610ef7565b73ffffffffffffffffffffffffffffffffffffffff16610dc8610a52565b73ffffffffffffffffffffffffffffffffffffffff1614610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590612277565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612407565b60405180910390fd5b610e978161188d565b50565b610ea5838383610ef2565b610ead6108bc565b15610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490612499565b60405180910390fd5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f669061252b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906125bd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110bd9190611b4e565b60405180910390a3505050565b60006110d68484610d1b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111505781811015611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612629565b60405180910390fd5b61114f8484848403610eff565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906126bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d9061274d565b60405180910390fd5b611241838383611951565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906127df565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135d91906121d5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c19190611b4e565b60405180910390a36113d4848484611961565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190612871565b60405180910390fd5b61145682600083611951565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490612903565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546115359190612923565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161159a9190611b4e565b60405180910390a36115ae83600084611961565b505050565b6115bb6108bc565b6115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f1906129a3565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61163e610ef7565b60405161164b9190611eb2565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612a0f565b60405180910390fd5b6116d160008383611951565b80600360008282546116e391906121d5565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173991906121d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179e9190611b4e565b60405180910390a36117b260008383611961565b5050565b6117c76117c1610ef7565b826113da565b50565b6117dc826117d6610ef7565b836110ca565b6117e682826113da565b5050565b6117f26108bc565b15611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990612a7b565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611876610ef7565b6040516118839190611eb2565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61195c838383610e9a565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119a0578082015181840152602081019050611985565b838111156119af576000848401525b50505050565b6000601f19601f8301169050919050565b60006119d182611966565b6119db8185611971565b93506119eb818560208601611982565b6119f4816119b5565b840191505092915050565b60006020820190508181036000830152611a1981846119c6565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6082611a35565b9050919050565b611a7081611a55565b8114611a7b57600080fd5b50565b600081359050611a8d81611a67565b92915050565b6000819050919050565b611aa681611a93565b8114611ab157600080fd5b50565b600081359050611ac381611a9d565b92915050565b60008060408385031215611ae057611adf611a2b565b5b6000611aee85828601611a7e565b9250506020611aff85828601611ab4565b9150509250929050565b60008115159050919050565b611b1e81611b09565b82525050565b6000602082019050611b396000830184611b15565b92915050565b611b4881611a93565b82525050565b6000602082019050611b636000830184611b3f565b92915050565b600080600060608486031215611b8257611b81611a2b565b5b6000611b9086828701611a7e565b9350506020611ba186828701611a7e565b9250506040611bb286828701611ab4565b9150509250925092565b600060208284031215611bd257611bd1611a2b565b5b6000611be084828501611ab4565b91505092915050565b600060ff82169050919050565b611bff81611be9565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c5d826119b5565b810181811067ffffffffffffffff82111715611c7c57611c7b611c25565b5b80604052505050565b6000611c8f611a21565b9050611c9b8282611c54565b919050565b600067ffffffffffffffff821115611cbb57611cba611c25565b5b602082029050602081019050919050565b600080fd5b6000611ce4611cdf84611ca0565b611c85565b90508083825260208201905060208402830185811115611d0757611d06611ccc565b5b835b81811015611d305780611d1c8882611a7e565b845260208401935050602081019050611d09565b5050509392505050565b600082601f830112611d4f57611d4e611c20565b5b8135611d5f848260208601611cd1565b91505092915050565b600067ffffffffffffffff821115611d8357611d82611c25565b5b602082029050602081019050919050565b6000611da7611da284611d68565b611c85565b90508083825260208201905060208402830185811115611dca57611dc9611ccc565b5b835b81811015611df35780611ddf8882611ab4565b845260208401935050602081019050611dcc565b5050509392505050565b600082601f830112611e1257611e11611c20565b5b8135611e22848260208601611d94565b91505092915050565b60008060408385031215611e4257611e41611a2b565b5b600083013567ffffffffffffffff811115611e6057611e5f611a30565b5b611e6c85828601611d3a565b925050602083013567ffffffffffffffff811115611e8d57611e8c611a30565b5b611e9985828601611dfd565b9150509250929050565b611eac81611a55565b82525050565b6000602082019050611ec76000830184611ea3565b92915050565b600060208284031215611ee357611ee2611a2b565b5b6000611ef184828501611a7e565b91505092915050565b600080fd5b60008083601f840112611f1557611f14611c20565b5b8235905067ffffffffffffffff811115611f3257611f31611efa565b5b602083019150836001820283011115611f4e57611f4d611ccc565b5b9250929050565b600080600060408486031215611f6e57611f6d611a2b565b5b6000611f7c86828701611a7e565b935050602084013567ffffffffffffffff811115611f9d57611f9c611a30565b5b611fa986828701611eff565b92509250509250925092565b60008060408385031215611fcc57611fcb611a2b565b5b6000611fda85828601611a7e565b9250506020611feb85828601611a7e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061203c57607f821691505b602082108114156120505761204f611ff5565b5b50919050565b7f546f6f206d616e79207573657273000000000000000000000000000000000000600082015250565b600061208c600e83611971565b915061209782612056565b602082019050919050565b600060208201905081810360008301526120bb8161207f565b9050919050565b7f57726f6e6720706172616d657465727300000000000000000000000000000000600082015250565b60006120f8601083611971565b9150612103826120c2565b602082019050919050565b60006020820190508181036000830152612127816120eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061219782611a93565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156121ca576121c961215d565b5b600182019050919050565b60006121e082611a93565b91506121eb83611a93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122205761221f61215d565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612261602083611971565b915061226c8261222b565b602082019050919050565b6000602082019050818103600083015261229081612254565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122f3602583611971565b91506122fe82612297565b604082019050919050565b60006020820190508181036000830152612322816122e6565b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206465706f736974000000600082015250565b600061235f601d83611971565b915061236a82612329565b602082019050919050565b6000602082019050818103600083015261238e81612352565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123f1602683611971565b91506123fc82612395565b604082019050919050565b60006020820190508181036000830152612420816123e4565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000612483602a83611971565b915061248e82612427565b604082019050919050565b600060208201905081810360008301526124b281612476565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612515602483611971565b9150612520826124b9565b604082019050919050565b6000602082019050818103600083015261254481612508565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006125a7602283611971565b91506125b28261254b565b604082019050919050565b600060208201905081810360008301526125d68161259a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612613601d83611971565b915061261e826125dd565b602082019050919050565b6000602082019050818103600083015261264281612606565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126a5602583611971565b91506126b082612649565b604082019050919050565b600060208201905081810360008301526126d481612698565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612737602383611971565b9150612742826126db565b604082019050919050565b600060208201905081810360008301526127668161272a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127c9602683611971565b91506127d48261276d565b604082019050919050565b600060208201905081810360008301526127f8816127bc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061285b602183611971565b9150612866826127ff565b604082019050919050565b6000602082019050818103600083015261288a8161284e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006128ed602283611971565b91506128f882612891565b604082019050919050565b6000602082019050818103600083015261291c816128e0565b9050919050565b600061292e82611a93565b915061293983611a93565b92508282101561294c5761294b61215d565b5b828203905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061298d601483611971565b915061299882612957565b602082019050919050565b600060208201905081810360008301526129bc81612980565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006129f9601f83611971565b9150612a04826129c3565b602082019050919050565b60006020820190508181036000830152612a28816129ec565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612a65601083611971565b9150612a7082612a2f565b602082019050919050565b60006020820190508181036000830152612a9481612a58565b905091905056fea26469706673582212200899fd0ae12bc1295056b424d641360d2a8104f095733e615121c5f887392ce064736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa

-----Decoded View---------------
Arg [0] : _childChainManagerProxy (address): 0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa


Deployed Bytecode Sourcemap

26291:2333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11887:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14238:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13007:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15019:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27708:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12849:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28294:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15723:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27106:65;;;:::i;:::-;;28187:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26768:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9912:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26358:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13178:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26869;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27037:61;;;:::i;:::-;;25277:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12106:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16466:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13511:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27404:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13767:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25732:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11887:100;11941:13;11974:5;11967:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11887:100;:::o;14238:201::-;14321:4;14338:13;14354:12;:10;:12::i;:::-;14338:28;;14377:32;14386:5;14393:7;14402:6;14377:8;:32::i;:::-;14427:4;14420:11;;;14238:201;;;;:::o;13007:108::-;13068:7;13095:12;;13088:19;;13007:108;:::o;15019:295::-;15150:4;15167:15;15185:12;:10;:12::i;:::-;15167:30;;15208:38;15224:4;15230:7;15239:6;15208:15;:38::i;:::-;15257:27;15267:4;15273:2;15277:6;15257:9;:27::i;:::-;15302:4;15295:11;;;15019:295;;;;;:::o;27708:121::-;27762:27;27768:12;:10;:12::i;:::-;27782:6;27762:5;:27::i;:::-;27805:16;27814:6;27805:16;;;;;;:::i;:::-;;;;;;;;27708:121;:::o;12849:93::-;12907:5;12932:2;12925:9;;12849:93;:::o;28294:327::-;28412:3;28396:5;:12;:19;;28388:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;28469:8;:15;28453:5;:12;:31;28445:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28521:6;28516:98;28537:5;:12;28533:1;:16;28516:98;;;28571:31;28580:5;28586:1;28580:8;;;;;;;;:::i;:::-;;;;;;;;28590;28599:1;28590:11;;;;;;;;:::i;:::-;;;;;;;;28571:8;:31::i;:::-;;28551:3;;;;;:::i;:::-;;;;28516:98;;;;28294:327;;:::o;15723:240::-;15811:4;15828:13;15844:12;:10;:12::i;:::-;15828:28;;15867:66;15876:5;15883:7;15922:10;15892:11;:18;15904:5;15892:18;;;;;;;;;;;;;;;:27;15911:7;15892:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;15867:8;:66::i;:::-;15951:4;15944:11;;;15723:240;;;;:::o;27106:65::-;25508:12;:10;:12::i;:::-;25497:23;;:7;:5;:7::i;:::-;:23;;;25489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27153:10:::1;:8;:10::i;:::-;27106:65::o:0;28187:99::-;25508:12;:10;:12::i;:::-;25497:23;;:7;:5;:7::i;:::-;:23;;;25489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28259:19:::1;28265:4;28271:6;28259:5;:19::i;:::-;28187:99:::0;;:::o;26768:93::-;25508:12;:10;:12::i;:::-;25497:23;;:7;:5;:7::i;:::-;:23;;;25489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26835:18:::1;26846:6;26835:10;:18::i;:::-;26768:93:::0;:::o;9912:86::-;9959:4;9983:7;;;;;;;;;;;9976:14;;9912:86;:::o;26358:37::-;;;;;;;;;;;;;:::o;13178:127::-;13252:7;13279:9;:18;13289:7;13279:18;;;;;;;;;;;;;;;;13272:25;;13178:127;;;:::o;26869:::-;25508:12;:10;:12::i;:::-;25497:23;;:7;:5;:7::i;:::-;:23;;;25489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26957:31:::1;26972:7;26981:6;26957:14;:31::i;:::-;26869:127:::0;;:::o;27037:61::-;25508:12;:10;:12::i;:::-;25497:23;;:7;:5;:7::i;:::-;:23;;;25489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27082:8:::1;:6;:8::i;:::-;27037:61::o:0;25277:87::-;25323:7;25350:6;;;;;;;;;;;25343:13;;25277:87;:::o;12106:104::-;12162:13;12195:7;12188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12106:104;:::o;16466:426::-;16559:4;16576:13;16592:12;:10;:12::i;:::-;16576:28;;16615:24;16642:11;:18;16654:5;16642:18;;;;;;;;;;;;;;;:27;16661:7;16642:27;;;;;;;;;;;;;;;;16615:54;;16708:15;16688:16;:35;;16680:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16793:60;16802:5;16809:7;16837:15;16818:16;:34;16793:8;:60::i;:::-;16880:4;16873:11;;;;16466:426;;;;:::o;13511:193::-;13590:4;13607:13;13623:12;:10;:12::i;:::-;13607:28;;13646;13656:5;13663:2;13667:6;13646:9;:28::i;:::-;13692:4;13685:11;;;13511:193;;;;:::o;27404:296::-;27505:22;;;;;;;;;;;27491:36;;:10;:36;;;27483:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;27572:14;27600:11;;27589:34;;;;;;;:::i;:::-;27572:51;;27634:19;27640:4;27646:6;27634:5;:19::i;:::-;27677:4;27669:21;;;27683:6;27669:21;;;;;;:::i;:::-;;;;;;;;27472:228;27404:296;;;:::o;13767:151::-;13856:7;13883:11;:18;13895:5;13883:18;;;;;;;;;;;;;;;:27;13902:7;13883:27;;;;;;;;;;;;;;;;13876:34;;13767:151;;;;:::o;25732:201::-;25508:12;:10;:12::i;:::-;25497:23;;:7;:5;:7::i;:::-;:23;;;25489:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25841:1:::1;25821:22;;:8;:22;;;;25813:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25897:28;25916:8;25897:18;:28::i;:::-;25732:201:::0;:::o;23119:272::-;23262:44;23289:4;23295:2;23299:6;23262:26;:44::i;:::-;23328:8;:6;:8::i;:::-;23327:9;23319:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23119:272;;;:::o;21778:125::-;;;;:::o;602:98::-;655:7;682:10;675:17;;602:98;:::o;20066:380::-;20219:1;20202:19;;:5;:19;;;;20194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20300:1;20281:21;;:7;:21;;;;20273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20384:6;20354:11;:18;20366:5;20354:18;;;;;;;;;;;;;;;:27;20373:7;20354:27;;;;;;;;;;;;;;;:36;;;;20422:7;20406:32;;20415:5;20406:32;;;20431:6;20406:32;;;;;;:::i;:::-;;;;;;;;20066:380;;;:::o;20737:441::-;20872:24;20899:25;20909:5;20916:7;20899:9;:25::i;:::-;20872:52;;20959:17;20939:16;:37;20935:236;;21021:6;21001:16;:26;;20993:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21097:51;21106:5;21113:7;21141:6;21122:16;:25;21097:8;:51::i;:::-;20935:236;20861:317;20737:441;;;:::o;17371:659::-;17518:1;17502:18;;:4;:18;;;;17494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17595:1;17581:16;;:2;:16;;;;17573:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17650:38;17671:4;17677:2;17681:6;17650:20;:38::i;:::-;17701:19;17723:9;:15;17733:4;17723:15;;;;;;;;;;;;;;;;17701:37;;17772:6;17757:11;:21;;17749:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;17881:6;17867:11;:20;17849:9;:15;17859:4;17849:15;;;;;;;;;;;;;;;:38;;;;17922:6;17905:9;:13;17915:2;17905:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;17961:2;17946:26;;17955:4;17946:26;;;17965:6;17946:26;;;;;;:::i;:::-;;;;;;;;17985:37;18005:4;18011:2;18015:6;17985:19;:37::i;:::-;17483:547;17371:659;;;:::o;19049:579::-;19152:1;19133:21;;:7;:21;;;;19125:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19205:49;19226:7;19243:1;19247:6;19205:20;:49::i;:::-;19267:22;19292:9;:18;19302:7;19292:18;;;;;;;;;;;;;;;;19267:43;;19347:6;19329:14;:24;;19321:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19458:6;19441:14;:23;19420:9;:18;19430:7;19420:18;;;;;;;;;;;;;;;:44;;;;19498:6;19482:12;;:22;;;;;;;:::i;:::-;;;;;;;;19548:1;19522:37;;19531:7;19522:37;;;19552:6;19522:37;;;;;;:::i;:::-;;;;;;;;19572:48;19592:7;19609:1;19613:6;19572:19;:48::i;:::-;19114:514;19049:579;;:::o;10971:120::-;10515:8;:6;:8::i;:::-;10507:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;11040:5:::1;11030:7;;:15;;;;;;;;;;;;;;;;;;11061:22;11070:12;:10;:12::i;:::-;11061:22;;;;;;:::i;:::-;;;;;;;;10971:120::o:0;18317:399::-;18420:1;18401:21;;:7;:21;;;;18393:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18471:49;18500:1;18504:7;18513:6;18471:20;:49::i;:::-;18549:6;18533:12;;:22;;;;;;;:::i;:::-;;;;;;;;18588:6;18566:9;:18;18576:7;18566:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18631:7;18610:37;;18627:1;18610:37;;;18640:6;18610:37;;;;;;:::i;:::-;;;;;;;;18660:48;18688:1;18692:7;18701:6;18660:19;:48::i;:::-;18317:399;;:::o;23777:91::-;23833:27;23839:12;:10;:12::i;:::-;23853:6;23833:5;:27::i;:::-;23777:91;:::o;24187:164::-;24264:46;24280:7;24289:12;:10;:12::i;:::-;24303:6;24264:15;:46::i;:::-;24321:22;24327:7;24336:6;24321:5;:22::i;:::-;24187:164;;:::o;10712:118::-;10238:8;:6;:8::i;:::-;10237:9;10229:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;10782:4:::1;10772:7;;:14;;;;;;;;;;;;;;;;;;10802:20;10809:12;:10;:12::i;:::-;10802:20;;;;;;:::i;:::-;;;;;;;;10712:118::o:0;26093:191::-;26167:16;26186:6;;;;;;;;;;;26167:25;;26212:8;26203:6;;:17;;;;;;;;;;;;;;;;;;26267:8;26236:40;;26257:8;26236:40;;;;;;;;;;;;26156:128;26093:191;:::o;27179:217::-;27344:44;27371:4;27377:2;27381:6;27344:26;:44::i;:::-;27179:217;;;:::o;22507:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:329::-;4530:6;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4471:329;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:180;5407:77;5404:1;5397:88;5504:4;5501:1;5494:15;5528:4;5525:1;5518:15;5545:281;5628:27;5650:4;5628:27;:::i;:::-;5620:6;5616:40;5758:6;5746:10;5743:22;5722:18;5710:10;5707:34;5704:62;5701:88;;;5769:18;;:::i;:::-;5701:88;5809:10;5805:2;5798:22;5588:238;5545:281;;:::o;5832:129::-;5866:6;5893:20;;:::i;:::-;5883:30;;5922:33;5950:4;5942:6;5922:33;:::i;:::-;5832:129;;;:::o;5967:311::-;6044:4;6134:18;6126:6;6123:30;6120:56;;;6156:18;;:::i;:::-;6120:56;6206:4;6198:6;6194:17;6186:25;;6266:4;6260;6256:15;6248:23;;5967:311;;;:::o;6284:117::-;6393:1;6390;6383:12;6424:710;6520:5;6545:81;6561:64;6618:6;6561:64;:::i;:::-;6545:81;:::i;:::-;6536:90;;6646:5;6675:6;6668:5;6661:21;6709:4;6702:5;6698:16;6691:23;;6762:4;6754:6;6750:17;6742:6;6738:30;6791:3;6783:6;6780:15;6777:122;;;6810:79;;:::i;:::-;6777:122;6925:6;6908:220;6942:6;6937:3;6934:15;6908:220;;;7017:3;7046:37;7079:3;7067:10;7046:37;:::i;:::-;7041:3;7034:50;7113:4;7108:3;7104:14;7097:21;;6984:144;6968:4;6963:3;6959:14;6952:21;;6908:220;;;6912:21;6526:608;;6424:710;;;;;:::o;7157:370::-;7228:5;7277:3;7270:4;7262:6;7258:17;7254:27;7244:122;;7285:79;;:::i;:::-;7244:122;7402:6;7389:20;7427:94;7517:3;7509:6;7502:4;7494:6;7490:17;7427:94;:::i;:::-;7418:103;;7234:293;7157:370;;;;:::o;7533:311::-;7610:4;7700:18;7692:6;7689:30;7686:56;;;7722:18;;:::i;:::-;7686:56;7772:4;7764:6;7760:17;7752:25;;7832:4;7826;7822:15;7814:23;;7533:311;;;:::o;7867:710::-;7963:5;7988:81;8004:64;8061:6;8004:64;:::i;:::-;7988:81;:::i;:::-;7979:90;;8089:5;8118:6;8111:5;8104:21;8152:4;8145:5;8141:16;8134:23;;8205:4;8197:6;8193:17;8185:6;8181:30;8234:3;8226:6;8223:15;8220:122;;;8253:79;;:::i;:::-;8220:122;8368:6;8351:220;8385:6;8380:3;8377:15;8351:220;;;8460:3;8489:37;8522:3;8510:10;8489:37;:::i;:::-;8484:3;8477:50;8556:4;8551:3;8547:14;8540:21;;8427:144;8411:4;8406:3;8402:14;8395:21;;8351:220;;;8355:21;7969:608;;7867:710;;;;;:::o;8600:370::-;8671:5;8720:3;8713:4;8705:6;8701:17;8697:27;8687:122;;8728:79;;:::i;:::-;8687:122;8845:6;8832:20;8870:94;8960:3;8952:6;8945:4;8937:6;8933:17;8870:94;:::i;:::-;8861:103;;8677:293;8600:370;;;;:::o;8976:894::-;9094:6;9102;9151:2;9139:9;9130:7;9126:23;9122:32;9119:119;;;9157:79;;:::i;:::-;9119:119;9305:1;9294:9;9290:17;9277:31;9335:18;9327:6;9324:30;9321:117;;;9357:79;;:::i;:::-;9321:117;9462:78;9532:7;9523:6;9512:9;9508:22;9462:78;:::i;:::-;9452:88;;9248:302;9617:2;9606:9;9602:18;9589:32;9648:18;9640:6;9637:30;9634:117;;;9670:79;;:::i;:::-;9634:117;9775:78;9845:7;9836:6;9825:9;9821:22;9775:78;:::i;:::-;9765:88;;9560:303;8976:894;;;;;:::o;9876:118::-;9963:24;9981:5;9963:24;:::i;:::-;9958:3;9951:37;9876:118;;:::o;10000:222::-;10093:4;10131:2;10120:9;10116:18;10108:26;;10144:71;10212:1;10201:9;10197:17;10188:6;10144:71;:::i;:::-;10000:222;;;;:::o;10228:329::-;10287:6;10336:2;10324:9;10315:7;10311:23;10307:32;10304:119;;;10342:79;;:::i;:::-;10304:119;10462:1;10487:53;10532:7;10523:6;10512:9;10508:22;10487:53;:::i;:::-;10477:63;;10433:117;10228:329;;;;:::o;10563:117::-;10672:1;10669;10662:12;10699:552;10756:8;10766:6;10816:3;10809:4;10801:6;10797:17;10793:27;10783:122;;10824:79;;:::i;:::-;10783:122;10937:6;10924:20;10914:30;;10967:18;10959:6;10956:30;10953:117;;;10989:79;;:::i;:::-;10953:117;11103:4;11095:6;11091:17;11079:29;;11157:3;11149:4;11141:6;11137:17;11127:8;11123:32;11120:41;11117:128;;;11164:79;;:::i;:::-;11117:128;10699:552;;;;;:::o;11257:672::-;11336:6;11344;11352;11401:2;11389:9;11380:7;11376:23;11372:32;11369:119;;;11407:79;;:::i;:::-;11369:119;11527:1;11552:53;11597:7;11588:6;11577:9;11573:22;11552:53;:::i;:::-;11542:63;;11498:117;11682:2;11671:9;11667:18;11654:32;11713:18;11705:6;11702:30;11699:117;;;11735:79;;:::i;:::-;11699:117;11848:64;11904:7;11895:6;11884:9;11880:22;11848:64;:::i;:::-;11830:82;;;;11625:297;11257:672;;;;;:::o;11935:474::-;12003:6;12011;12060:2;12048:9;12039:7;12035:23;12031:32;12028:119;;;12066:79;;:::i;:::-;12028:119;12186:1;12211:53;12256:7;12247:6;12236:9;12232:22;12211:53;:::i;:::-;12201:63;;12157:117;12313:2;12339:53;12384:7;12375:6;12364:9;12360:22;12339:53;:::i;:::-;12329:63;;12284:118;11935:474;;;;;:::o;12415:180::-;12463:77;12460:1;12453:88;12560:4;12557:1;12550:15;12584:4;12581:1;12574:15;12601:320;12645:6;12682:1;12676:4;12672:12;12662:22;;12729:1;12723:4;12719:12;12750:18;12740:81;;12806:4;12798:6;12794:17;12784:27;;12740:81;12868:2;12860:6;12857:14;12837:18;12834:38;12831:84;;;12887:18;;:::i;:::-;12831:84;12652:269;12601:320;;;:::o;12927:164::-;13067:16;13063:1;13055:6;13051:14;13044:40;12927:164;:::o;13097:366::-;13239:3;13260:67;13324:2;13319:3;13260:67;:::i;:::-;13253:74;;13336:93;13425:3;13336:93;:::i;:::-;13454:2;13449:3;13445:12;13438:19;;13097:366;;;:::o;13469:419::-;13635:4;13673:2;13662:9;13658:18;13650:26;;13722:9;13716:4;13712:20;13708:1;13697:9;13693:17;13686:47;13750:131;13876:4;13750:131;:::i;:::-;13742:139;;13469:419;;;:::o;13894:166::-;14034:18;14030:1;14022:6;14018:14;14011:42;13894:166;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:180::-;14911:77;14908:1;14901:88;15008:4;15005:1;14998:15;15032:4;15029:1;15022:15;15049:180;15097:77;15094:1;15087:88;15194:4;15191:1;15184:15;15218:4;15215:1;15208:15;15235:233;15274:3;15297:24;15315:5;15297:24;:::i;:::-;15288:33;;15343:66;15336:5;15333:77;15330:103;;;15413:18;;:::i;:::-;15330:103;15460:1;15453:5;15449:13;15442:20;;15235:233;;;:::o;15474:305::-;15514:3;15533:20;15551:1;15533:20;:::i;:::-;15528:25;;15567:20;15585:1;15567:20;:::i;:::-;15562:25;;15721:1;15653:66;15649:74;15646:1;15643:81;15640:107;;;15727:18;;:::i;:::-;15640:107;15771:1;15768;15764:9;15757:16;;15474:305;;;;:::o;15785:182::-;15925:34;15921:1;15913:6;15909:14;15902:58;15785:182;:::o;15973:366::-;16115:3;16136:67;16200:2;16195:3;16136:67;:::i;:::-;16129:74;;16212:93;16301:3;16212:93;:::i;:::-;16330:2;16325:3;16321:12;16314:19;;15973:366;;;:::o;16345:419::-;16511:4;16549:2;16538:9;16534:18;16526:26;;16598:9;16592:4;16588:20;16584:1;16573:9;16569:17;16562:47;16626:131;16752:4;16626:131;:::i;:::-;16618:139;;16345:419;;;:::o;16770:224::-;16910:34;16906:1;16898:6;16894:14;16887:58;16979:7;16974:2;16966:6;16962:15;16955:32;16770:224;:::o;17000:366::-;17142:3;17163:67;17227:2;17222:3;17163:67;:::i;:::-;17156:74;;17239:93;17328:3;17239:93;:::i;:::-;17357:2;17352:3;17348:12;17341:19;;17000:366;;;:::o;17372:419::-;17538:4;17576:2;17565:9;17561:18;17553:26;;17625:9;17619:4;17615:20;17611:1;17600:9;17596:17;17589:47;17653:131;17779:4;17653:131;:::i;:::-;17645:139;;17372:419;;;:::o;17797:179::-;17937:31;17933:1;17925:6;17921:14;17914:55;17797:179;:::o;17982:366::-;18124:3;18145:67;18209:2;18204:3;18145:67;:::i;:::-;18138:74;;18221:93;18310:3;18221:93;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;17982:366;;;:::o;18354:419::-;18520:4;18558:2;18547:9;18543:18;18535:26;;18607:9;18601:4;18597:20;18593:1;18582:9;18578:17;18571:47;18635:131;18761:4;18635:131;:::i;:::-;18627:139;;18354:419;;;:::o;18779:225::-;18919:34;18915:1;18907:6;18903:14;18896:58;18988:8;18983:2;18975:6;18971:15;18964:33;18779:225;:::o;19010:366::-;19152:3;19173:67;19237:2;19232:3;19173:67;:::i;:::-;19166:74;;19249:93;19338:3;19249:93;:::i;:::-;19367:2;19362:3;19358:12;19351:19;;19010:366;;;:::o;19382:419::-;19548:4;19586:2;19575:9;19571:18;19563:26;;19635:9;19629:4;19625:20;19621:1;19610:9;19606:17;19599:47;19663:131;19789:4;19663:131;:::i;:::-;19655:139;;19382:419;;;:::o;19807:229::-;19947:34;19943:1;19935:6;19931:14;19924:58;20016:12;20011:2;20003:6;19999:15;19992:37;19807:229;:::o;20042:366::-;20184:3;20205:67;20269:2;20264:3;20205:67;:::i;:::-;20198:74;;20281:93;20370:3;20281:93;:::i;:::-;20399:2;20394:3;20390:12;20383:19;;20042:366;;;:::o;20414:419::-;20580:4;20618:2;20607:9;20603:18;20595:26;;20667:9;20661:4;20657:20;20653:1;20642:9;20638:17;20631:47;20695:131;20821:4;20695:131;:::i;:::-;20687:139;;20414:419;;;:::o;20839:223::-;20979:34;20975:1;20967:6;20963:14;20956:58;21048:6;21043:2;21035:6;21031:15;21024:31;20839:223;:::o;21068:366::-;21210:3;21231:67;21295:2;21290:3;21231:67;:::i;:::-;21224:74;;21307:93;21396:3;21307:93;:::i;:::-;21425:2;21420:3;21416:12;21409:19;;21068:366;;;:::o;21440:419::-;21606:4;21644:2;21633:9;21629:18;21621:26;;21693:9;21687:4;21683:20;21679:1;21668:9;21664:17;21657:47;21721:131;21847:4;21721:131;:::i;:::-;21713:139;;21440:419;;;:::o;21865:221::-;22005:34;22001:1;21993:6;21989:14;21982:58;22074:4;22069:2;22061:6;22057:15;22050:29;21865:221;:::o;22092:366::-;22234:3;22255:67;22319:2;22314:3;22255:67;:::i;:::-;22248:74;;22331:93;22420:3;22331:93;:::i;:::-;22449:2;22444:3;22440:12;22433:19;;22092:366;;;:::o;22464:419::-;22630:4;22668:2;22657:9;22653:18;22645:26;;22717:9;22711:4;22707:20;22703:1;22692:9;22688:17;22681:47;22745:131;22871:4;22745:131;:::i;:::-;22737:139;;22464:419;;;:::o;22889:179::-;23029:31;23025:1;23017:6;23013:14;23006:55;22889:179;:::o;23074:366::-;23216:3;23237:67;23301:2;23296:3;23237:67;:::i;:::-;23230:74;;23313:93;23402:3;23313:93;:::i;:::-;23431:2;23426:3;23422:12;23415:19;;23074:366;;;:::o;23446:419::-;23612:4;23650:2;23639:9;23635:18;23627:26;;23699:9;23693:4;23689:20;23685:1;23674:9;23670:17;23663:47;23727:131;23853:4;23727:131;:::i;:::-;23719:139;;23446:419;;;:::o;23871:224::-;24011:34;24007:1;23999:6;23995:14;23988:58;24080:7;24075:2;24067:6;24063:15;24056:32;23871:224;:::o;24101:366::-;24243:3;24264:67;24328:2;24323:3;24264:67;:::i;:::-;24257:74;;24340:93;24429:3;24340:93;:::i;:::-;24458:2;24453:3;24449:12;24442:19;;24101:366;;;:::o;24473:419::-;24639:4;24677:2;24666:9;24662:18;24654:26;;24726:9;24720:4;24716:20;24712:1;24701:9;24697:17;24690:47;24754:131;24880:4;24754:131;:::i;:::-;24746:139;;24473:419;;;:::o;24898:222::-;25038:34;25034:1;25026:6;25022:14;25015:58;25107:5;25102:2;25094:6;25090:15;25083:30;24898:222;:::o;25126:366::-;25268:3;25289:67;25353:2;25348:3;25289:67;:::i;:::-;25282:74;;25365:93;25454:3;25365:93;:::i;:::-;25483:2;25478:3;25474:12;25467:19;;25126:366;;;:::o;25498:419::-;25664:4;25702:2;25691:9;25687:18;25679:26;;25751:9;25745:4;25741:20;25737:1;25726:9;25722:17;25715:47;25779:131;25905:4;25779:131;:::i;:::-;25771:139;;25498:419;;;:::o;25923:225::-;26063:34;26059:1;26051:6;26047:14;26040:58;26132:8;26127:2;26119:6;26115:15;26108:33;25923:225;:::o;26154:366::-;26296:3;26317:67;26381:2;26376:3;26317:67;:::i;:::-;26310:74;;26393:93;26482:3;26393:93;:::i;:::-;26511:2;26506:3;26502:12;26495:19;;26154:366;;;:::o;26526:419::-;26692:4;26730:2;26719:9;26715:18;26707:26;;26779:9;26773:4;26769:20;26765:1;26754:9;26750:17;26743:47;26807:131;26933:4;26807:131;:::i;:::-;26799:139;;26526:419;;;:::o;26951:220::-;27091:34;27087:1;27079:6;27075:14;27068:58;27160:3;27155:2;27147:6;27143:15;27136:28;26951:220;:::o;27177:366::-;27319:3;27340:67;27404:2;27399:3;27340:67;:::i;:::-;27333:74;;27416:93;27505:3;27416:93;:::i;:::-;27534:2;27529:3;27525:12;27518:19;;27177:366;;;:::o;27549:419::-;27715:4;27753:2;27742:9;27738:18;27730:26;;27802:9;27796:4;27792:20;27788:1;27777:9;27773:17;27766:47;27830:131;27956:4;27830:131;:::i;:::-;27822:139;;27549:419;;;:::o;27974:221::-;28114:34;28110:1;28102:6;28098:14;28091:58;28183:4;28178:2;28170:6;28166:15;28159:29;27974:221;:::o;28201:366::-;28343:3;28364:67;28428:2;28423:3;28364:67;:::i;:::-;28357:74;;28440:93;28529:3;28440:93;:::i;:::-;28558:2;28553:3;28549:12;28542:19;;28201:366;;;:::o;28573:419::-;28739:4;28777:2;28766:9;28762:18;28754:26;;28826:9;28820:4;28816:20;28812:1;28801:9;28797:17;28790:47;28854:131;28980:4;28854:131;:::i;:::-;28846:139;;28573:419;;;:::o;28998:191::-;29038:4;29058:20;29076:1;29058:20;:::i;:::-;29053:25;;29092:20;29110:1;29092:20;:::i;:::-;29087:25;;29131:1;29128;29125:8;29122:34;;;29136:18;;:::i;:::-;29122:34;29181:1;29178;29174:9;29166:17;;28998:191;;;;:::o;29195:170::-;29335:22;29331:1;29323:6;29319:14;29312:46;29195:170;:::o;29371:366::-;29513:3;29534:67;29598:2;29593:3;29534:67;:::i;:::-;29527:74;;29610:93;29699:3;29610:93;:::i;:::-;29728:2;29723:3;29719:12;29712:19;;29371:366;;;:::o;29743:419::-;29909:4;29947:2;29936:9;29932:18;29924:26;;29996:9;29990:4;29986:20;29982:1;29971:9;29967:17;29960:47;30024:131;30150:4;30024:131;:::i;:::-;30016:139;;29743:419;;;:::o;30168:181::-;30308:33;30304:1;30296:6;30292:14;30285:57;30168:181;:::o;30355:366::-;30497:3;30518:67;30582:2;30577:3;30518:67;:::i;:::-;30511:74;;30594:93;30683:3;30594:93;:::i;:::-;30712:2;30707:3;30703:12;30696:19;;30355:366;;;:::o;30727:419::-;30893:4;30931:2;30920:9;30916:18;30908:26;;30980:9;30974:4;30970:20;30966:1;30955:9;30951:17;30944:47;31008:131;31134:4;31008:131;:::i;:::-;31000:139;;30727:419;;;:::o;31152:166::-;31292:18;31288:1;31280:6;31276:14;31269:42;31152:166;:::o;31324:366::-;31466:3;31487:67;31551:2;31546:3;31487:67;:::i;:::-;31480:74;;31563:93;31652:3;31563:93;:::i;:::-;31681:2;31676:3;31672:12;31665:19;;31324:366;;;:::o;31696:419::-;31862:4;31900:2;31889:9;31885:18;31877:26;;31949:9;31943:4;31939:20;31935:1;31924:9;31920:17;31913:47;31977:131;32103:4;31977:131;:::i;:::-;31969:139;;31696:419;;;:::o

Swarm Source

ipfs://0899fd0ae12bc1295056b424d641360d2a8104f095733e615121c5f887392ce0
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.