ETH Price: $2,719.76 (-5.67%)
Gas: 1.41 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve217457532025-01-31 16:39:114 days ago1738341551IN
0xE8d2CC91...d2d128190
0 ETH0.0003291313.23304655
Transfer207873082024-09-19 21:24:23138 days ago1726781063IN
0xE8d2CC91...d2d128190
0 ETH0.000446327.90747689
Transfer202040872024-06-30 11:04:47219 days ago1719745487IN
0xE8d2CC91...d2d128190
0 ETH0.000126622.24909704
Transfer199154332024-05-21 2:55:23259 days ago1716260123IN
0xE8d2CC91...d2d128190
0 ETH0.0006018910.65022471
Approve196877142024-04-19 6:30:35291 days ago1713508235IN
0xE8d2CC91...d2d128190
0 ETH0.000226289.09780904
Approve193343112024-02-29 16:18:35341 days ago1709223515IN
0xE8d2CC91...d2d128190
0 ETH0.001808272.70057428
Transfer192049482024-02-11 12:53:59359 days ago1707656039IN
0xE8d2CC91...d2d128190
0 ETH0.0012333321.82314314
Approve190507612024-01-20 21:28:47381 days ago1705786127IN
0xE8d2CC91...d2d128190
0 ETH0.0003641614.60620967
Approve189351882024-01-04 16:35:47397 days ago1704386147IN
0xE8d2CC91...d2d128190
0 ETH0.0008003732.10235335
Approve188076342023-12-17 18:51:11415 days ago1702839071IN
0xE8d2CC91...d2d128190
0 ETH0.000797632.06834113
Approve185255602023-11-08 6:50:35454 days ago1699426235IN
0xE8d2CC91...d2d128190
0 ETH0.0012341726.13881028
Approve184025472023-10-22 1:25:47471 days ago1697937947IN
0xE8d2CC91...d2d128190
0 ETH0.000306116.48324662
Approve182863812023-10-05 19:26:23488 days ago1696533983IN
0xE8d2CC91...d2d128190
0 ETH0.0006892314.68696893
Approve182849482023-10-05 14:36:59488 days ago1696516619IN
0xE8d2CC91...d2d128190
0 ETH0.0007343415.57259729
Approve182521962023-10-01 0:46:35492 days ago1696121195IN
0xE8d2CC91...d2d128190
0 ETH0.00015886.38505762
Approve182521952023-10-01 0:46:23492 days ago1696121183IN
0xE8d2CC91...d2d128190
0 ETH0.000162826.53076163
Approve182233252023-09-26 23:47:47496 days ago1695772067IN
0xE8d2CC91...d2d128190
0 ETH0.000172836.9490026
Approve181538502023-09-17 5:58:35506 days ago1694930315IN
0xE8d2CC91...d2d128190
0 ETH0.000369847.88121332
Approve181213392023-09-12 16:08:11511 days ago1694534891IN
0xE8d2CC91...d2d128190
0 ETH0.0014365330.46355781
Approve181175952023-09-12 3:31:47511 days ago1694489507IN
0xE8d2CC91...d2d128190
0 ETH0.0005514311.67908505
Approve180617782023-09-04 7:59:35519 days ago1693814375IN
0xE8d2CC91...d2d128190
0 ETH0.0006185213.18030277
Approve179389192023-08-18 3:11:47536 days ago1692328307IN
0xE8d2CC91...d2d128190
0 ETH0.0005532422.24374231
Approve179018872023-08-12 22:53:59542 days ago1691880839IN
0xE8d2CC91...d2d128190
0 ETH0.0006108413
Transfer178552812023-08-06 10:20:23548 days ago1691317223IN
0xE8d2CC91...d2d128190
0 ETH0.000653811.57109862
Approve178024282023-07-30 0:59:47555 days ago1690678787IN
0xE8d2CC91...d2d128190
0 ETH0.0003646114.65973329
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GREGToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-24
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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 Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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


interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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


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);
}

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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 {}
}

contract GREGToken is Ownable, ERC20 {

    bool public limited;
    uint private _supply = 420_690_000_000_000 * 10 ** 18;
    address _owner = address(0x461F445661a8B7E3194DE6D99889621a9452D406);
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("GREG", "$GREG") {
        transferOwnership(_owner);
        _mint(_owner, _supply);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526d14bddab3e51a57cff87a5000000060075573461f445661a8b7e3194de6d99889621a9452d406600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007857600080fd5b506040518060400160405280600481526020017f47524547000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f244752454700000000000000000000000000000000000000000000000000000081525062000105620000f9620001a860201b60201c565b620001b060201b60201c565b81600490805190602001906200011d92919062000898565b5080600590805190602001906200013692919062000898565b5050506200016c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200027460201b60201c565b620001a2600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007546200038a60201b60201c565b62000d54565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000284620001a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002aa6200050460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000303576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fa9062000a87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036d9062000a43565b60405180910390fd5b6200038781620001b060201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f49062000acb565b60405180910390fd5b62000411600083836200052d60201b60201c565b806003600082825462000425919062000b3d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200047d919062000b3d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004e4919062000b0f565b60405180910390a362000500600083836200084a60201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620005d25750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060b9062000aed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141562000738576200067c6200050460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620006f05750620006c16200050460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000aa9565b60405180910390fd5b62000845565b600660009054906101000a900460ff168015620007a25750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620008445760095481620007c2846200084f60201b620008d11760201c565b620007ce919062000b3d565b11158015620008015750600a5481620007f2846200084f60201b620008d11760201c565b620007fe919062000b3d565b10155b62000843576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083a9062000a65565b60405180910390fd5b5b5b505050565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620008a69062000ba4565b90600052602060002090601f016020900481019282620008ca576000855562000916565b82601f10620008e557805160ff191683800117855562000916565b8280016001018555821562000916579182015b8281111562000915578251825591602001919060010190620008f8565b5b50905062000925919062000929565b5090565b5b80821115620009445760008160009055506001016200092a565b5090565b60006200095760268362000b2c565b9150620009648262000c38565b604082019050919050565b60006200097e60068362000b2c565b91506200098b8262000c87565b602082019050919050565b6000620009a560208362000b2c565b9150620009b28262000cb0565b602082019050919050565b6000620009cc60168362000b2c565b9150620009d98262000cd9565b602082019050919050565b6000620009f3601f8362000b2c565b915062000a008262000d02565b602082019050919050565b600062000a1a600b8362000b2c565b915062000a278262000d2b565b602082019050919050565b62000a3d8162000b9a565b82525050565b6000602082019050818103600083015262000a5e8162000948565b9050919050565b6000602082019050818103600083015262000a80816200096f565b9050919050565b6000602082019050818103600083015262000aa28162000996565b9050919050565b6000602082019050818103600083015262000ac481620009bd565b9050919050565b6000602082019050818103600083015262000ae681620009e4565b9050919050565b6000602082019050818103600083015262000b088162000a0b565b9050919050565b600060208201905062000b26600083018462000a32565b92915050565b600082825260208201905092915050565b600062000b4a8262000b9a565b915062000b578362000b9a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b8f5762000b8e62000bda565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000bbd57607f821691505b6020821081141562000bd45762000bd362000c09565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61239f8062000d646000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461036757806395d89b4114610385578063a457c2d7146103a3578063a9059cbb146103d3578063dd62ed3e14610403578063f2fde38b1461043357610142565b806349bd5a5e146102d357806370a08231146102f1578063715018a614610321578063860a32ec1461032b57806389f9a1d31461034957610142565b806323b872dd1161010a57806323b872dd14610201578063313ce56714610231578063395093511461024f5780633aa633aa1461027f578063404e51291461029b57806342966c68146102b757610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461019557806318160ddd146101c55780631ab99e12146101e3575b600080fd5b61014f61044f565b60405161015c9190611b7e565b60405180910390f35b61017f600480360381019061017a9190611815565b6104e1565b60405161018c9190611b63565b60405180910390f35b6101af60048036038101906101aa9190611715565b6104ff565b6040516101bc9190611b63565b60405180910390f35b6101cd61051f565b6040516101da9190611d60565b60405180910390f35b6101eb610529565b6040516101f89190611d60565b60405180910390f35b61021b60048036038101906102169190611782565b61052f565b6040516102289190611b63565b60405180910390f35b610239610627565b6040516102469190611d7b565b60405180910390f35b61026960048036038101906102649190611815565b610630565b6040516102769190611b63565b60405180910390f35b61029960048036038101906102949190611855565b6106dc565b005b6102b560048036038101906102b091906117d5565b6107c7565b005b6102d160048036038101906102cc91906118bc565b61089e565b005b6102db6108ab565b6040516102e89190611b48565b60405180910390f35b61030b60048036038101906103069190611715565b6108d1565b6040516103189190611d60565b60405180910390f35b61032961091a565b005b6103336109a2565b6040516103409190611b63565b60405180910390f35b6103516109b5565b60405161035e9190611d60565b60405180910390f35b61036f6109bb565b60405161037c9190611b48565b60405180910390f35b61038d6109e4565b60405161039a9190611b7e565b60405180910390f35b6103bd60048036038101906103b89190611815565b610a76565b6040516103ca9190611b63565b60405180910390f35b6103ed60048036038101906103e89190611815565b610b61565b6040516103fa9190611b63565b60405180910390f35b61041d60048036038101906104189190611742565b610b7f565b60405161042a9190611d60565b60405180910390f35b61044d60048036038101906104489190611715565b610c06565b005b60606004805461045e90611ec4565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611ec4565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b60006104f56104ee610cfe565b8484610d06565b6001905092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b600a5481565b600061053c848484610ed1565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610587610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611c60565b60405180910390fd5b61061b85610613610cfe565b858403610d06565b60019150509392505050565b60006012905090565b60006106d261063d610cfe565b84846002600061064b610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106cd9190611db2565b610d06565b6001905092915050565b6106e4610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107026109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611c80565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160098190555080600a8190555050505050565b6107cf610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107ed6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90611c80565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108a83382611155565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610922610cfe565b73ffffffffffffffffffffffffffffffffffffffff166109406109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611c80565b60405180910390fd5b6109a0600061132e565b565b600660009054906101000a900460ff1681565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109f390611ec4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90611ec4565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b60008060026000610a85610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611d20565b60405180910390fd5b610b56610b4d610cfe565b85858403610d06565b600191505092915050565b6000610b75610b6e610cfe565b8484610ed1565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c0e610cfe565b73ffffffffffffffffffffffffffffffffffffffff16610c2c6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990611c80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611be0565b60405180910390fd5b610cfb8161132e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90611d00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90611c00565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ec49190611d60565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611ce0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611ba0565b60405180910390fd5b610fbc8383836113f2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611c20565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d89190611db2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113c9190611d60565b60405180910390a361114f8484846116d1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611ca0565b60405180910390fd5b6111d1826000836113f2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90611bc0565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112b09190611e08565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113159190611d60565b60405180910390a3611329836000846116d1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114965750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611d40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115e3576115346109bb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061159f57506115706109bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590611cc0565b60405180910390fd5b6116cc565b600660009054906101000a900460ff16801561164c5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116cb576009548161165e846108d1565b6116689190611db2565b1115801561168b5750600a548161167e846108d1565b6116889190611db2565b10155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190611c40565b60405180910390fd5b5b5b505050565b505050565b6000813590506116e581612324565b92915050565b6000813590506116fa8161233b565b92915050565b60008135905061170f81612352565b92915050565b60006020828403121561172b5761172a611f54565b5b6000611739848285016116d6565b91505092915050565b6000806040838503121561175957611758611f54565b5b6000611767858286016116d6565b9250506020611778858286016116d6565b9150509250929050565b60008060006060848603121561179b5761179a611f54565b5b60006117a9868287016116d6565b93505060206117ba868287016116d6565b92505060406117cb86828701611700565b9150509250925092565b600080604083850312156117ec576117eb611f54565b5b60006117fa858286016116d6565b925050602061180b858286016116eb565b9150509250929050565b6000806040838503121561182c5761182b611f54565b5b600061183a858286016116d6565b925050602061184b85828601611700565b9150509250929050565b6000806000806080858703121561186f5761186e611f54565b5b600061187d878288016116eb565b945050602061188e878288016116d6565b935050604061189f87828801611700565b92505060606118b087828801611700565b91505092959194509250565b6000602082840312156118d2576118d1611f54565b5b60006118e084828501611700565b91505092915050565b6118f281611e3c565b82525050565b61190181611e4e565b82525050565b600061191282611d96565b61191c8185611da1565b935061192c818560208601611e91565b61193581611f59565b840191505092915050565b600061194d602383611da1565b915061195882611f6a565b604082019050919050565b6000611970602283611da1565b915061197b82611fb9565b604082019050919050565b6000611993602683611da1565b915061199e82612008565b604082019050919050565b60006119b6602283611da1565b91506119c182612057565b604082019050919050565b60006119d9602683611da1565b91506119e4826120a6565b604082019050919050565b60006119fc600683611da1565b9150611a07826120f5565b602082019050919050565b6000611a1f602883611da1565b9150611a2a8261211e565b604082019050919050565b6000611a42602083611da1565b9150611a4d8261216d565b602082019050919050565b6000611a65602183611da1565b9150611a7082612196565b604082019050919050565b6000611a88601683611da1565b9150611a93826121e5565b602082019050919050565b6000611aab602583611da1565b9150611ab68261220e565b604082019050919050565b6000611ace602483611da1565b9150611ad98261225d565b604082019050919050565b6000611af1602583611da1565b9150611afc826122ac565b604082019050919050565b6000611b14600b83611da1565b9150611b1f826122fb565b602082019050919050565b611b3381611e7a565b82525050565b611b4281611e84565b82525050565b6000602082019050611b5d60008301846118e9565b92915050565b6000602082019050611b7860008301846118f8565b92915050565b60006020820190508181036000830152611b988184611907565b905092915050565b60006020820190508181036000830152611bb981611940565b9050919050565b60006020820190508181036000830152611bd981611963565b9050919050565b60006020820190508181036000830152611bf981611986565b9050919050565b60006020820190508181036000830152611c19816119a9565b9050919050565b60006020820190508181036000830152611c39816119cc565b9050919050565b60006020820190508181036000830152611c59816119ef565b9050919050565b60006020820190508181036000830152611c7981611a12565b9050919050565b60006020820190508181036000830152611c9981611a35565b9050919050565b60006020820190508181036000830152611cb981611a58565b9050919050565b60006020820190508181036000830152611cd981611a7b565b9050919050565b60006020820190508181036000830152611cf981611a9e565b9050919050565b60006020820190508181036000830152611d1981611ac1565b9050919050565b60006020820190508181036000830152611d3981611ae4565b9050919050565b60006020820190508181036000830152611d5981611b07565b9050919050565b6000602082019050611d756000830184611b2a565b92915050565b6000602082019050611d906000830184611b39565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611dbd82611e7a565b9150611dc883611e7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dfd57611dfc611ef6565b5b828201905092915050565b6000611e1382611e7a565b9150611e1e83611e7a565b925082821015611e3157611e30611ef6565b5b828203905092915050565b6000611e4782611e5a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611eaf578082015181840152602081019050611e94565b83811115611ebe576000848401525b50505050565b60006002820490506001821680611edc57607f821691505b60208210811415611ef057611eef611f25565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61232d81611e3c565b811461233857600080fd5b50565b61234481611e4e565b811461234f57600080fd5b50565b61235b81611e7a565b811461236657600080fd5b5056fea2646970667358221220239fd8c6b7010de550cbfaedd6377a3a4720fe3977cfb4b8471b710897730c7764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461036757806395d89b4114610385578063a457c2d7146103a3578063a9059cbb146103d3578063dd62ed3e14610403578063f2fde38b1461043357610142565b806349bd5a5e146102d357806370a08231146102f1578063715018a614610321578063860a32ec1461032b57806389f9a1d31461034957610142565b806323b872dd1161010a57806323b872dd14610201578063313ce56714610231578063395093511461024f5780633aa633aa1461027f578063404e51291461029b57806342966c68146102b757610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461019557806318160ddd146101c55780631ab99e12146101e3575b600080fd5b61014f61044f565b60405161015c9190611b7e565b60405180910390f35b61017f600480360381019061017a9190611815565b6104e1565b60405161018c9190611b63565b60405180910390f35b6101af60048036038101906101aa9190611715565b6104ff565b6040516101bc9190611b63565b60405180910390f35b6101cd61051f565b6040516101da9190611d60565b60405180910390f35b6101eb610529565b6040516101f89190611d60565b60405180910390f35b61021b60048036038101906102169190611782565b61052f565b6040516102289190611b63565b60405180910390f35b610239610627565b6040516102469190611d7b565b60405180910390f35b61026960048036038101906102649190611815565b610630565b6040516102769190611b63565b60405180910390f35b61029960048036038101906102949190611855565b6106dc565b005b6102b560048036038101906102b091906117d5565b6107c7565b005b6102d160048036038101906102cc91906118bc565b61089e565b005b6102db6108ab565b6040516102e89190611b48565b60405180910390f35b61030b60048036038101906103069190611715565b6108d1565b6040516103189190611d60565b60405180910390f35b61032961091a565b005b6103336109a2565b6040516103409190611b63565b60405180910390f35b6103516109b5565b60405161035e9190611d60565b60405180910390f35b61036f6109bb565b60405161037c9190611b48565b60405180910390f35b61038d6109e4565b60405161039a9190611b7e565b60405180910390f35b6103bd60048036038101906103b89190611815565b610a76565b6040516103ca9190611b63565b60405180910390f35b6103ed60048036038101906103e89190611815565b610b61565b6040516103fa9190611b63565b60405180910390f35b61041d60048036038101906104189190611742565b610b7f565b60405161042a9190611d60565b60405180910390f35b61044d60048036038101906104489190611715565b610c06565b005b60606004805461045e90611ec4565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611ec4565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b60006104f56104ee610cfe565b8484610d06565b6001905092915050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b600a5481565b600061053c848484610ed1565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610587610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611c60565b60405180910390fd5b61061b85610613610cfe565b858403610d06565b60019150509392505050565b60006012905090565b60006106d261063d610cfe565b84846002600061064b610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106cd9190611db2565b610d06565b6001905092915050565b6106e4610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107026109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611c80565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160098190555080600a8190555050505050565b6107cf610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107ed6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90611c80565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108a83382611155565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610922610cfe565b73ffffffffffffffffffffffffffffffffffffffff166109406109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611c80565b60405180910390fd5b6109a0600061132e565b565b600660009054906101000a900460ff1681565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109f390611ec4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1f90611ec4565b8015610a6c5780601f10610a4157610100808354040283529160200191610a6c565b820191906000526020600020905b815481529060010190602001808311610a4f57829003601f168201915b5050505050905090565b60008060026000610a85610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990611d20565b60405180910390fd5b610b56610b4d610cfe565b85858403610d06565b600191505092915050565b6000610b75610b6e610cfe565b8484610ed1565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c0e610cfe565b73ffffffffffffffffffffffffffffffffffffffff16610c2c6109bb565b73ffffffffffffffffffffffffffffffffffffffff1614610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7990611c80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611be0565b60405180910390fd5b610cfb8161132e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90611d00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90611c00565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ec49190611d60565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611ce0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890611ba0565b60405180910390fd5b610fbc8383836113f2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611c20565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d89190611db2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113c9190611d60565b60405180910390a361114f8484846116d1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611ca0565b60405180910390fd5b6111d1826000836113f2565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90611bc0565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112b09190611e08565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113159190611d60565b60405180910390a3611329836000846116d1565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114965750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611d40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115e3576115346109bb565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061159f57506115706109bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590611cc0565b60405180910390fd5b6116cc565b600660009054906101000a900460ff16801561164c5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116cb576009548161165e846108d1565b6116689190611db2565b1115801561168b5750600a548161167e846108d1565b6116889190611db2565b10155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190611c40565b60405180910390fd5b5b5b505050565b505050565b6000813590506116e581612324565b92915050565b6000813590506116fa8161233b565b92915050565b60008135905061170f81612352565b92915050565b60006020828403121561172b5761172a611f54565b5b6000611739848285016116d6565b91505092915050565b6000806040838503121561175957611758611f54565b5b6000611767858286016116d6565b9250506020611778858286016116d6565b9150509250929050565b60008060006060848603121561179b5761179a611f54565b5b60006117a9868287016116d6565b93505060206117ba868287016116d6565b92505060406117cb86828701611700565b9150509250925092565b600080604083850312156117ec576117eb611f54565b5b60006117fa858286016116d6565b925050602061180b858286016116eb565b9150509250929050565b6000806040838503121561182c5761182b611f54565b5b600061183a858286016116d6565b925050602061184b85828601611700565b9150509250929050565b6000806000806080858703121561186f5761186e611f54565b5b600061187d878288016116eb565b945050602061188e878288016116d6565b935050604061189f87828801611700565b92505060606118b087828801611700565b91505092959194509250565b6000602082840312156118d2576118d1611f54565b5b60006118e084828501611700565b91505092915050565b6118f281611e3c565b82525050565b61190181611e4e565b82525050565b600061191282611d96565b61191c8185611da1565b935061192c818560208601611e91565b61193581611f59565b840191505092915050565b600061194d602383611da1565b915061195882611f6a565b604082019050919050565b6000611970602283611da1565b915061197b82611fb9565b604082019050919050565b6000611993602683611da1565b915061199e82612008565b604082019050919050565b60006119b6602283611da1565b91506119c182612057565b604082019050919050565b60006119d9602683611da1565b91506119e4826120a6565b604082019050919050565b60006119fc600683611da1565b9150611a07826120f5565b602082019050919050565b6000611a1f602883611da1565b9150611a2a8261211e565b604082019050919050565b6000611a42602083611da1565b9150611a4d8261216d565b602082019050919050565b6000611a65602183611da1565b9150611a7082612196565b604082019050919050565b6000611a88601683611da1565b9150611a93826121e5565b602082019050919050565b6000611aab602583611da1565b9150611ab68261220e565b604082019050919050565b6000611ace602483611da1565b9150611ad98261225d565b604082019050919050565b6000611af1602583611da1565b9150611afc826122ac565b604082019050919050565b6000611b14600b83611da1565b9150611b1f826122fb565b602082019050919050565b611b3381611e7a565b82525050565b611b4281611e84565b82525050565b6000602082019050611b5d60008301846118e9565b92915050565b6000602082019050611b7860008301846118f8565b92915050565b60006020820190508181036000830152611b988184611907565b905092915050565b60006020820190508181036000830152611bb981611940565b9050919050565b60006020820190508181036000830152611bd981611963565b9050919050565b60006020820190508181036000830152611bf981611986565b9050919050565b60006020820190508181036000830152611c19816119a9565b9050919050565b60006020820190508181036000830152611c39816119cc565b9050919050565b60006020820190508181036000830152611c59816119ef565b9050919050565b60006020820190508181036000830152611c7981611a12565b9050919050565b60006020820190508181036000830152611c9981611a35565b9050919050565b60006020820190508181036000830152611cb981611a58565b9050919050565b60006020820190508181036000830152611cd981611a7b565b9050919050565b60006020820190508181036000830152611cf981611a9e565b9050919050565b60006020820190508181036000830152611d1981611ac1565b9050919050565b60006020820190508181036000830152611d3981611ae4565b9050919050565b60006020820190508181036000830152611d5981611b07565b9050919050565b6000602082019050611d756000830184611b2a565b92915050565b6000602082019050611d906000830184611b39565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611dbd82611e7a565b9150611dc883611e7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611dfd57611dfc611ef6565b5b828201905092915050565b6000611e1382611e7a565b9150611e1e83611e7a565b925082821015611e3157611e30611ef6565b5b828203905092915050565b6000611e4782611e5a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611eaf578082015181840152602081019050611e94565b83811115611ebe576000848401525b50505050565b60006002820490506001821680611edc57607f821691505b60208210811415611ef057611eef611f25565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61232d81611e3c565b811461233857600080fd5b50565b61234481611e4e565b811461234f57600080fd5b50565b61235b81611e7a565b811461236657600080fd5b5056fea2646970667358221220239fd8c6b7010de550cbfaedd6377a3a4720fe3977cfb4b8471b710897730c7764736f6c63430008070033

Deployed Bytecode Sourcemap

16035:1602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8241:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16353:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7194:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16280:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8892:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7036:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9793:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16669:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16526:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17553:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16318:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7365:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1376:103;;;:::i;:::-;;16081:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16242:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;725:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6293:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10511:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7705:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7943:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1634:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6074:100;6128:13;6161:5;6154:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6074:100;:::o;8241:169::-;8324:4;8341:39;8350:12;:10;:12::i;:::-;8364:7;8373:6;8341:8;:39::i;:::-;8398:4;8391:11;;8241:169;;;;:::o;16353:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;7194:108::-;7255:7;7282:12;;7275:19;;7194:108;:::o;16280:31::-;;;;:::o;8892:492::-;9032:4;9049:36;9059:6;9067:9;9078:6;9049:9;:36::i;:::-;9098:24;9125:11;:19;9137:6;9125:19;;;;;;;;;;;;;;;:33;9145:12;:10;:12::i;:::-;9125:33;;;;;;;;;;;;;;;;9098:60;;9197:6;9177:16;:26;;9169:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9284:57;9293:6;9301:12;:10;:12::i;:::-;9334:6;9315:16;:25;9284:8;:57::i;:::-;9372:4;9365:11;;;8892:492;;;;;:::o;7036:93::-;7094:5;7119:2;7112:9;;7036:93;:::o;9793:215::-;9881:4;9898:80;9907:12;:10;:12::i;:::-;9921:7;9967:10;9930:11;:25;9942:12;:10;:12::i;:::-;9930:25;;;;;;;;;;;;;;;:34;9956:7;9930:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9898:8;:80::i;:::-;9996:4;9989:11;;9793:215;;;;:::o;16669:301::-;956:12;:10;:12::i;:::-;945:23;;:7;:5;:7::i;:::-;:23;;;937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16819:8:::1;16809:7;;:18;;;;;;;;;;;;;;;;;;16854:14;16838:13;;:30;;;;;;;;;;;;;;;;;;16898:17;16879:16;:36;;;;16945:17;16926:16;:36;;;;16669:301:::0;;;;:::o;16526:135::-;956:12;:10;:12::i;:::-;945:23;;:7;:5;:7::i;:::-;:23;;;937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16638:15:::1;16615:10;:20;16626:8;16615:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;16526:135:::0;;:::o;17553:81::-;17602:24;17608:10;17620:5;17602;:24::i;:::-;17553:81;:::o;16318:28::-;;;;;;;;;;;;;:::o;7365:127::-;7439:7;7466:9;:18;7476:7;7466:18;;;;;;;;;;;;;;;;7459:25;;7365:127;;;:::o;1376:103::-;956:12;:10;:12::i;:::-;945:23;;:7;:5;:7::i;:::-;:23;;;937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1441:30:::1;1468:1;1441:18;:30::i;:::-;1376:103::o:0;16081:19::-;;;;;;;;;;;;;:::o;16242:31::-;;;;:::o;725:87::-;771:7;798:6;;;;;;;;;;;791:13;;725:87;:::o;6293:104::-;6349:13;6382:7;6375:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6293:104;:::o;10511:413::-;10604:4;10621:24;10648:11;:25;10660:12;:10;:12::i;:::-;10648:25;;;;;;;;;;;;;;;:34;10674:7;10648:34;;;;;;;;;;;;;;;;10621:61;;10721:15;10701:16;:35;;10693:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:67;10823:12;:10;:12::i;:::-;10837:7;10865:15;10846:16;:34;10814:8;:67::i;:::-;10912:4;10905:11;;;10511:413;;;;:::o;7705:175::-;7791:4;7808:42;7818:12;:10;:12::i;:::-;7832:9;7843:6;7808:9;:42::i;:::-;7868:4;7861:11;;7705:175;;;;:::o;7943:151::-;8032:7;8059:11;:18;8071:5;8059:18;;;;;;;;;;;;;;;:27;8078:7;8059:27;;;;;;;;;;;;;;;;8052:34;;7943:151;;;;:::o;1634:201::-;956:12;:10;:12::i;:::-;945:23;;:7;:5;:7::i;:::-;:23;;;937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1743:1:::1;1723:22;;:8;:22;;;;1715:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:28;1818:8;1799:18;:28::i;:::-;1634:201:::0;:::o;97:98::-;150:7;177:10;170:17;;97:98;:::o;14195:380::-;14348:1;14331:19;;:5;:19;;;;14323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14429:1;14410:21;;:7;:21;;;;14402:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14513:6;14483:11;:18;14495:5;14483:18;;;;;;;;;;;;;;;:27;14502:7;14483:27;;;;;;;;;;;;;;;:36;;;;14551:7;14535:32;;14544:5;14535:32;;;14560:6;14535:32;;;;;;:::i;:::-;;;;;;;;14195:380;;;:::o;11414:733::-;11572:1;11554:20;;:6;:20;;;;11546:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11656:1;11635:23;;:9;:23;;;;11627:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11711:47;11732:6;11740:9;11751:6;11711:20;:47::i;:::-;11771:21;11795:9;:17;11805:6;11795:17;;;;;;;;;;;;;;;;11771:41;;11848:6;11831:13;:23;;11823:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11969:6;11953:13;:22;11933:9;:17;11943:6;11933:17;;;;;;;;;;;;;;;:42;;;;12021:6;11997:9;:20;12007:9;11997:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12062:9;12045:35;;12054:6;12045:35;;;12073:6;12045:35;;;;;;:::i;:::-;;;;;;;;12093:46;12113:6;12121:9;12132:6;12093:19;:46::i;:::-;11535:612;11414:733;;;:::o;13166:591::-;13269:1;13250:21;;:7;:21;;;;13242:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13322:49;13343:7;13360:1;13364:6;13322:20;:49::i;:::-;13384:22;13409:9;:18;13419:7;13409:18;;;;;;;;;;;;;;;;13384:43;;13464:6;13446:14;:24;;13438:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13583:6;13566:14;:23;13545:9;:18;13555:7;13545:18;;;;;;;;;;;;;;;:44;;;;13627:6;13611:12;;:22;;;;;;;:::i;:::-;;;;;;;;13677:1;13651:37;;13660:7;13651:37;;;13681:6;13651:37;;;;;;:::i;:::-;;;;;;;;13701:48;13721:7;13738:1;13742:6;13701:19;:48::i;:::-;13231:526;13166:591;;:::o;1995:191::-;2069:16;2088:6;;;;;;;;;;;2069:25;;2114:8;2105:6;;:17;;;;;;;;;;;;;;;;;;2169:8;2138:40;;2159:8;2138:40;;;;;;;;;;;;2058:128;1995:191;:::o;16978:567::-;17130:10;:14;17141:2;17130:14;;;;;;;;;;;;;;;;;;;;;;;;;17129:15;:36;;;;;17149:10;:16;17160:4;17149:16;;;;;;;;;;;;;;;;;;;;;;;;;17148:17;17129:36;17121:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;17223:1;17198:27;;:13;;;;;;;;;;;:27;;;17194:148;;;17258:7;:5;:7::i;:::-;17250:15;;:4;:15;;;:32;;;;17275:7;:5;:7::i;:::-;17269:13;;:2;:13;;;17250:32;17242:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17324:7;;17194:148;17358:7;;;;;;;;;;;:32;;;;;17377:13;;;;;;;;;;;17369:21;;:4;:21;;;17358:32;17354:184;;;17447:16;;17437:6;17415:19;17431:2;17415:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;17499:16;;17489:6;17467:19;17483:2;17467:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;17415:100;17407:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;17354:184;16978:567;;;;:::o;15904:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:119;;;550:79;;:::i;:::-;512:119;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;436:329;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:119;;;902:79;;:::i;:::-;864:119;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;771:474;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:119;;;1399:79;;:::i;:::-;1361:119;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1251:619;;;;;:::o;1876:468::-;1941:6;1949;1998:2;1986:9;1977:7;1973:23;1969:32;1966:119;;;2004:79;;:::i;:::-;1966:119;2124:1;2149:53;2194:7;2185:6;2174:9;2170:22;2149:53;:::i;:::-;2139:63;;2095:117;2251:2;2277:50;2319:7;2310:6;2299:9;2295:22;2277:50;:::i;:::-;2267:60;;2222:115;1876:468;;;;;:::o;2350:474::-;2418:6;2426;2475:2;2463:9;2454:7;2450:23;2446:32;2443:119;;;2481:79;;:::i;:::-;2443:119;2601:1;2626:53;2671:7;2662:6;2651:9;2647:22;2626:53;:::i;:::-;2616:63;;2572:117;2728:2;2754:53;2799:7;2790:6;2779:9;2775:22;2754:53;:::i;:::-;2744:63;;2699:118;2350:474;;;;;:::o;2830:759::-;2913:6;2921;2929;2937;2986:3;2974:9;2965:7;2961:23;2957:33;2954:120;;;2993:79;;:::i;:::-;2954:120;3113:1;3138:50;3180:7;3171:6;3160:9;3156:22;3138:50;:::i;:::-;3128:60;;3084:114;3237:2;3263:53;3308:7;3299:6;3288:9;3284:22;3263:53;:::i;:::-;3253:63;;3208:118;3365:2;3391:53;3436:7;3427:6;3416:9;3412:22;3391:53;:::i;:::-;3381:63;;3336:118;3493:2;3519:53;3564:7;3555:6;3544:9;3540:22;3519:53;:::i;:::-;3509:63;;3464:118;2830:759;;;;;;;:::o;3595:329::-;3654:6;3703:2;3691:9;3682:7;3678:23;3674:32;3671:119;;;3709:79;;:::i;:::-;3671:119;3829:1;3854:53;3899:7;3890:6;3879:9;3875:22;3854:53;:::i;:::-;3844:63;;3800:117;3595:329;;;;:::o;3930:118::-;4017:24;4035:5;4017:24;:::i;:::-;4012:3;4005:37;3930:118;;:::o;4054:109::-;4135:21;4150:5;4135:21;:::i;:::-;4130:3;4123:34;4054:109;;:::o;4169:364::-;4257:3;4285:39;4318:5;4285:39;:::i;:::-;4340:71;4404:6;4399:3;4340:71;:::i;:::-;4333:78;;4420:52;4465:6;4460:3;4453:4;4446:5;4442:16;4420:52;:::i;:::-;4497:29;4519:6;4497:29;:::i;:::-;4492:3;4488:39;4481:46;;4261:272;4169:364;;;;:::o;4539:366::-;4681:3;4702:67;4766:2;4761:3;4702:67;:::i;:::-;4695:74;;4778:93;4867:3;4778:93;:::i;:::-;4896:2;4891:3;4887:12;4880:19;;4539:366;;;:::o;4911:::-;5053:3;5074:67;5138:2;5133:3;5074:67;:::i;:::-;5067:74;;5150:93;5239:3;5150:93;:::i;:::-;5268:2;5263:3;5259:12;5252:19;;4911:366;;;:::o;5283:::-;5425:3;5446:67;5510:2;5505:3;5446:67;:::i;:::-;5439:74;;5522:93;5611:3;5522:93;:::i;:::-;5640:2;5635:3;5631:12;5624:19;;5283:366;;;:::o;5655:::-;5797:3;5818:67;5882:2;5877:3;5818:67;:::i;:::-;5811:74;;5894:93;5983:3;5894:93;:::i;:::-;6012:2;6007:3;6003:12;5996:19;;5655:366;;;:::o;6027:::-;6169:3;6190:67;6254:2;6249:3;6190:67;:::i;:::-;6183:74;;6266:93;6355:3;6266:93;:::i;:::-;6384:2;6379:3;6375:12;6368:19;;6027:366;;;:::o;6399:365::-;6541:3;6562:66;6626:1;6621:3;6562:66;:::i;:::-;6555:73;;6637:93;6726:3;6637:93;:::i;:::-;6755:2;6750:3;6746:12;6739:19;;6399:365;;;:::o;6770:366::-;6912:3;6933:67;6997:2;6992:3;6933:67;:::i;:::-;6926:74;;7009:93;7098:3;7009:93;:::i;:::-;7127:2;7122:3;7118:12;7111:19;;6770:366;;;:::o;7142:::-;7284:3;7305:67;7369:2;7364:3;7305:67;:::i;:::-;7298:74;;7381:93;7470:3;7381:93;:::i;:::-;7499:2;7494:3;7490:12;7483:19;;7142:366;;;:::o;7514:::-;7656:3;7677:67;7741:2;7736:3;7677:67;:::i;:::-;7670:74;;7753:93;7842:3;7753:93;:::i;:::-;7871:2;7866:3;7862:12;7855:19;;7514:366;;;:::o;7886:::-;8028:3;8049:67;8113:2;8108:3;8049:67;:::i;:::-;8042:74;;8125:93;8214:3;8125:93;:::i;:::-;8243:2;8238:3;8234:12;8227:19;;7886:366;;;:::o;8258:::-;8400:3;8421:67;8485:2;8480:3;8421:67;:::i;:::-;8414:74;;8497:93;8586:3;8497:93;:::i;:::-;8615:2;8610:3;8606:12;8599:19;;8258:366;;;:::o;8630:::-;8772:3;8793:67;8857:2;8852:3;8793:67;:::i;:::-;8786:74;;8869:93;8958:3;8869:93;:::i;:::-;8987:2;8982:3;8978:12;8971:19;;8630:366;;;:::o;9002:::-;9144:3;9165:67;9229:2;9224:3;9165:67;:::i;:::-;9158:74;;9241:93;9330:3;9241:93;:::i;:::-;9359:2;9354:3;9350:12;9343:19;;9002:366;;;:::o;9374:::-;9516:3;9537:67;9601:2;9596:3;9537:67;:::i;:::-;9530:74;;9613:93;9702:3;9613:93;:::i;:::-;9731:2;9726:3;9722:12;9715:19;;9374:366;;;:::o;9746:118::-;9833:24;9851:5;9833:24;:::i;:::-;9828:3;9821:37;9746:118;;:::o;9870:112::-;9953:22;9969:5;9953:22;:::i;:::-;9948:3;9941:35;9870:112;;:::o;9988:222::-;10081:4;10119:2;10108:9;10104:18;10096:26;;10132:71;10200:1;10189:9;10185:17;10176:6;10132:71;:::i;:::-;9988:222;;;;:::o;10216:210::-;10303:4;10341:2;10330:9;10326:18;10318:26;;10354:65;10416:1;10405:9;10401:17;10392:6;10354:65;:::i;:::-;10216:210;;;;:::o;10432:313::-;10545:4;10583:2;10572:9;10568:18;10560:26;;10632:9;10626:4;10622:20;10618:1;10607:9;10603:17;10596:47;10660:78;10733:4;10724:6;10660:78;:::i;:::-;10652:86;;10432:313;;;;:::o;10751:419::-;10917:4;10955:2;10944:9;10940:18;10932:26;;11004:9;10998:4;10994:20;10990:1;10979:9;10975:17;10968:47;11032:131;11158:4;11032:131;:::i;:::-;11024:139;;10751:419;;;:::o;11176:::-;11342:4;11380:2;11369:9;11365:18;11357:26;;11429:9;11423:4;11419:20;11415:1;11404:9;11400:17;11393:47;11457:131;11583:4;11457:131;:::i;:::-;11449:139;;11176:419;;;:::o;11601:::-;11767:4;11805:2;11794:9;11790:18;11782:26;;11854:9;11848:4;11844:20;11840:1;11829:9;11825:17;11818:47;11882:131;12008:4;11882:131;:::i;:::-;11874:139;;11601:419;;;:::o;12026:::-;12192:4;12230:2;12219:9;12215:18;12207:26;;12279:9;12273:4;12269:20;12265:1;12254:9;12250:17;12243:47;12307:131;12433:4;12307:131;:::i;:::-;12299:139;;12026:419;;;:::o;12451:::-;12617:4;12655:2;12644:9;12640:18;12632:26;;12704:9;12698:4;12694:20;12690:1;12679:9;12675:17;12668:47;12732:131;12858:4;12732:131;:::i;:::-;12724:139;;12451:419;;;:::o;12876:::-;13042:4;13080:2;13069:9;13065:18;13057:26;;13129:9;13123:4;13119:20;13115:1;13104:9;13100:17;13093:47;13157:131;13283:4;13157:131;:::i;:::-;13149:139;;12876:419;;;:::o;13301:::-;13467:4;13505:2;13494:9;13490:18;13482:26;;13554:9;13548:4;13544:20;13540:1;13529:9;13525:17;13518:47;13582:131;13708:4;13582:131;:::i;:::-;13574:139;;13301:419;;;:::o;13726:::-;13892:4;13930:2;13919:9;13915:18;13907:26;;13979:9;13973:4;13969:20;13965:1;13954:9;13950:17;13943:47;14007:131;14133:4;14007:131;:::i;:::-;13999:139;;13726:419;;;:::o;14151:::-;14317:4;14355:2;14344:9;14340:18;14332:26;;14404:9;14398:4;14394:20;14390:1;14379:9;14375:17;14368:47;14432:131;14558:4;14432:131;:::i;:::-;14424:139;;14151:419;;;:::o;14576:::-;14742:4;14780:2;14769:9;14765:18;14757:26;;14829:9;14823:4;14819:20;14815:1;14804:9;14800:17;14793:47;14857:131;14983:4;14857:131;:::i;:::-;14849:139;;14576:419;;;:::o;15001:::-;15167:4;15205:2;15194:9;15190:18;15182:26;;15254:9;15248:4;15244:20;15240:1;15229:9;15225:17;15218:47;15282:131;15408:4;15282:131;:::i;:::-;15274:139;;15001:419;;;:::o;15426:::-;15592:4;15630:2;15619:9;15615:18;15607:26;;15679:9;15673:4;15669:20;15665:1;15654:9;15650:17;15643:47;15707:131;15833:4;15707:131;:::i;:::-;15699:139;;15426:419;;;:::o;15851:::-;16017:4;16055:2;16044:9;16040:18;16032:26;;16104:9;16098:4;16094:20;16090:1;16079:9;16075:17;16068:47;16132:131;16258:4;16132:131;:::i;:::-;16124:139;;15851:419;;;:::o;16276:::-;16442:4;16480:2;16469:9;16465:18;16457:26;;16529:9;16523:4;16519:20;16515:1;16504:9;16500:17;16493:47;16557:131;16683:4;16557:131;:::i;:::-;16549:139;;16276:419;;;:::o;16701:222::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16845:71;16913:1;16902:9;16898:17;16889:6;16845:71;:::i;:::-;16701:222;;;;:::o;16929:214::-;17018:4;17056:2;17045:9;17041:18;17033:26;;17069:67;17133:1;17122:9;17118:17;17109:6;17069:67;:::i;:::-;16929:214;;;;:::o;17230:99::-;17282:6;17316:5;17310:12;17300:22;;17230:99;;;:::o;17335:169::-;17419:11;17453:6;17448:3;17441:19;17493:4;17488:3;17484:14;17469:29;;17335:169;;;;:::o;17510:305::-;17550:3;17569:20;17587:1;17569:20;:::i;:::-;17564:25;;17603:20;17621:1;17603:20;:::i;:::-;17598:25;;17757:1;17689:66;17685:74;17682:1;17679:81;17676:107;;;17763:18;;:::i;:::-;17676:107;17807:1;17804;17800:9;17793:16;;17510:305;;;;:::o;17821:191::-;17861:4;17881:20;17899:1;17881:20;:::i;:::-;17876:25;;17915:20;17933:1;17915:20;:::i;:::-;17910:25;;17954:1;17951;17948:8;17945:34;;;17959:18;;:::i;:::-;17945:34;18004:1;18001;17997:9;17989:17;;17821:191;;;;:::o;18018:96::-;18055:7;18084:24;18102:5;18084:24;:::i;:::-;18073:35;;18018:96;;;:::o;18120:90::-;18154:7;18197:5;18190:13;18183:21;18172:32;;18120:90;;;:::o;18216:126::-;18253:7;18293:42;18286:5;18282:54;18271:65;;18216:126;;;:::o;18348:77::-;18385:7;18414:5;18403:16;;18348:77;;;:::o;18431:86::-;18466:7;18506:4;18499:5;18495:16;18484:27;;18431:86;;;:::o;18523:307::-;18591:1;18601:113;18615:6;18612:1;18609:13;18601:113;;;18700:1;18695:3;18691:11;18685:18;18681:1;18676:3;18672:11;18665:39;18637:2;18634:1;18630:10;18625:15;;18601:113;;;18732:6;18729:1;18726:13;18723:101;;;18812:1;18803:6;18798:3;18794:16;18787:27;18723:101;18572:258;18523:307;;;:::o;18836:320::-;18880:6;18917:1;18911:4;18907:12;18897:22;;18964:1;18958:4;18954:12;18985:18;18975:81;;19041:4;19033:6;19029:17;19019:27;;18975:81;19103:2;19095:6;19092:14;19072:18;19069:38;19066:84;;;19122:18;;:::i;:::-;19066:84;18887:269;18836:320;;;:::o;19162:180::-;19210:77;19207:1;19200:88;19307:4;19304:1;19297:15;19331:4;19328:1;19321:15;19348:180;19396:77;19393:1;19386:88;19493:4;19490:1;19483:15;19517:4;19514:1;19507:15;19657:117;19766:1;19763;19756:12;19780:102;19821:6;19872:2;19868:7;19863:2;19856:5;19852:14;19848:28;19838:38;;19780:102;;;:::o;19888:222::-;20028:34;20024:1;20016:6;20012:14;20005:58;20097:5;20092:2;20084:6;20080:15;20073:30;19888:222;:::o;20116:221::-;20256:34;20252:1;20244:6;20240:14;20233:58;20325:4;20320:2;20312:6;20308:15;20301:29;20116:221;:::o;20343:225::-;20483:34;20479:1;20471:6;20467:14;20460:58;20552:8;20547:2;20539:6;20535:15;20528:33;20343:225;:::o;20574:221::-;20714:34;20710:1;20702:6;20698:14;20691:58;20783:4;20778:2;20770:6;20766:15;20759:29;20574:221;:::o;20801:225::-;20941:34;20937:1;20929:6;20925:14;20918:58;21010:8;21005:2;20997:6;20993:15;20986:33;20801:225;:::o;21032:156::-;21172:8;21168:1;21160:6;21156:14;21149:32;21032:156;:::o;21194:227::-;21334:34;21330:1;21322:6;21318:14;21311:58;21403:10;21398:2;21390:6;21386:15;21379:35;21194:227;:::o;21427:182::-;21567:34;21563:1;21555:6;21551:14;21544:58;21427:182;:::o;21615:220::-;21755:34;21751:1;21743:6;21739:14;21732:58;21824:3;21819:2;21811:6;21807:15;21800:28;21615:220;:::o;21841:172::-;21981:24;21977:1;21969:6;21965:14;21958:48;21841:172;:::o;22019:224::-;22159:34;22155:1;22147:6;22143:14;22136:58;22228:7;22223:2;22215:6;22211:15;22204:32;22019:224;:::o;22249:223::-;22389:34;22385:1;22377:6;22373:14;22366:58;22458:6;22453:2;22445:6;22441:15;22434:31;22249:223;:::o;22478:224::-;22618:34;22614:1;22606:6;22602:14;22595:58;22687:7;22682:2;22674:6;22670:15;22663:32;22478:224;:::o;22708:161::-;22848:13;22844:1;22836:6;22832:14;22825:37;22708:161;:::o;22875:122::-;22948:24;22966:5;22948:24;:::i;:::-;22941:5;22938:35;22928:63;;22987:1;22984;22977:12;22928:63;22875:122;:::o;23003:116::-;23073:21;23088:5;23073:21;:::i;:::-;23066:5;23063:32;23053:60;;23109:1;23106;23099:12;23053:60;23003:116;:::o;23125:122::-;23198:24;23216:5;23198:24;:::i;:::-;23191:5;23188:35;23178:63;;23237:1;23234;23227:12;23178:63;23125:122;:::o

Swarm Source

ipfs://239fd8c6b7010de550cbfaedd6377a3a4720fe3977cfb4b8471b710897730c77

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.