ETH Price: $2,935.11 (-2.26%)
Gas: 5 Gwei

Contract

0xCB533C592C459C73d0e8EE0c726bB31747ba6195
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60806040111493002020-10-29 3:51:141281 days ago1603943474IN
 Create: KUN
0 ETH0.1585572550

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
KUN

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-29
*/

pragma solidity 0.6.2;


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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// SPDX-License-Identifier: MIT
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, 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.
     */
    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.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// SPDX-License-Identifier: MIT
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20MinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    // constructor(string memory name, string memory symbol) public {
    //     _name = name;
    //     _symbol = symbol;
    //     _decimals = 18;
    // }

    function initializeERC20(
        string memory name,
        string memory symbol,
        uint8 decimals
    ) internal {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public override view 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
        virtual
        override
        view
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    // constructor (uint256 cap) public {
    //     require(cap > 0, "ERC20Capped: cap is 0");
    //     _cap = cap;
    // }

    function initializeERC20Capped(string memory name, string memory symbol, uint8 decimals, uint256 cap) internal {
        initializeERC20(name, symbol, decimals);
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
        }
    }
}

// SPDX-License-Identifier: MIT
/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// SPDX-License-Identifier: MIT
/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

/**
 * @title Modified from Administered
 * @author Alberto Cuesta Canada
 * @notice Implements Admin and User roles.
 */
contract MinterControl is AccessControl {
    using SafeMath for uint256;

    event AddMinter(address account, uint256 mintAllowance);
    event RemoveMinter(address account);

    bytes32 public constant MINTER_ROLE = keccak256("MINTER");

    mapping(address => uint256) public mintAllowances;

    /// @dev Add `root` to the admin role as a member.
    // constructor(address root) public {
    //     _setupRole(DEFAULT_ADMIN_ROLE, root);
    //     _setRoleAdmin(MINTER_ROLE, DEFAULT_ADMIN_ROLE);
    // }

    function initializeMinterControl(address admin) internal {
        _setupRole(DEFAULT_ADMIN_ROLE, admin);
        _setRoleAdmin(MINTER_ROLE, DEFAULT_ADMIN_ROLE);
    }

    /// @dev Restricted to members of the admin role.
    modifier onlyAdmin() {
        require(isAdmin(msg.sender), "Restricted to admins.");
        _;
    }
    /// @dev Restricted to members of the minter role.
    modifier onlyMinter() {
        require(isMinter(msg.sender), "Restricted to minters.");
        _;
    }

    /// @dev Return `true` if the account belongs to the admin role.
    function isAdmin(address account) public virtual view returns (bool) {
        return hasRole(DEFAULT_ADMIN_ROLE, account);
    }

    /// @dev Return `true` if the account belongs to the minter role.
    function isMinter(address account) public virtual view returns (bool) {
        return hasRole(MINTER_ROLE, account);
    }

    /// @dev Add an account to the minter role. Restricted to admins.
    function addMinter(address account, uint256 amount)
        public
        virtual
        onlyAdmin
    {
        grantRole(MINTER_ROLE, account);
        _approveMint(account, amount);
        emit AddMinter(account, amount);
    }

    /// @dev Remove an account from the minter role. Restricted to admins.
    function removeMinter(address account) public virtual onlyAdmin {
        revokeRole(MINTER_ROLE, account);
        _approveMint(account, 0);
        emit RemoveMinter(account);
    }

    /// @dev Add an account to the admin role. Restricted to admins.
    function addAdmin(address account) public virtual onlyAdmin {
        grantRole(DEFAULT_ADMIN_ROLE, account);
    }

    /// @dev Remove oneself from the admin role.
    function renounceAdmin() public virtual {
        renounceRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    function increaseMintAllowance(address minter, uint256 addedValue)
        public
        virtual
        onlyAdmin
        returns (bool)
    {
        _approveMint(minter, mintAllowances[minter].add(addedValue));
        return true;
    }

    function decreaseMintAllowance(address minter, uint256 subtractedValue)
        public
        virtual
        onlyAdmin
        returns (bool)
    {
        _approveMint(
            minter,
            mintAllowances[minter].sub(
                subtractedValue,
                "Decreased mint-allowance below zero"
            )
        );
        return true;
    }

    function _approveMint(address account, uint256 amount) internal virtual {
        require(account != address(0), "Approve mint to the zero address");
        mintAllowances[account] = amount;
    }
}

/**
 * @title VersionedInitializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 *
 * @author Aave, inspired by the OpenZeppelin Initializable contract
 */
abstract contract VersionedInitializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    uint256 private lastInitializedRevision;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private initializing;

    /**
     * @dev Modifier to use in the initializer function of a contract.
     */
    modifier initializer() {
        uint256 revision = getRevision();
        require(
            initializing ||
                isConstructor() ||
                revision > lastInitializedRevision,
            "Contract instance has already been initialized"
        );

        bool isTopLevelCall = !initializing;
        if (isTopLevelCall) {
            initializing = true;
            lastInitializedRevision = revision;
        }

        _;

        if (isTopLevelCall) {
            initializing = false;
        }
    }

    /// @dev returns the revision number of the contract.
    /// Needs to be defined in the inherited class as a constant.
    function getRevision() internal virtual pure returns (uint256);

    /// @dev Returns true if and only if the function is running in the constructor
    function isConstructor() private view returns (bool) {
        // extcodesize checks the size of the code stored in an address, and
        // address returns the current address. Since the code is still not
        // deployed when running a constructor, any checks on its code size will
        // yield zero, making it an effective way to detect if a contract is
        // under construction or not.
        uint256 cs;
        //solium-disable-next-line
        assembly {
            cs := extcodesize(address())
        }
        return cs == 0;
    }

    // Reserved storage space to allow for layout changes in the future.
    uint256[16] private ______gap;
}

contract KUN is ERC20Capped, MinterControl, VersionedInitializable {
    using SafeMath for uint256;

    uint256 public constant maxSupply = 12000000000000000000000000;

    event DestroyedBlackFunds(address account, uint256 balance);
    event AddedBlackList(address account);
    event RemovedBlackList(address account);

    mapping(address => bool) public isBlackListed;

    function initialize(address admin) public initializer {
        initializeMinterControl(admin);
        initializeERC20Capped("QIAN governance token", "KUN", 18, maxSupply);
    }
    
    function addBlackList(address account) public onlyAdmin {
        isBlackListed[account] = true;
        emit AddedBlackList(account);
    }

    function removeBlackList(address account) public onlyAdmin {
        isBlackListed[account] = false;
        emit RemovedBlackList(account);
    }

    function destroyBlackFunds(address account) public onlyAdmin {
        require(isBlackListed[account], "account not in blacklist");
        uint256 dirtyFunds = balanceOf(account);
        _burn(account, dirtyFunds);
        emit DestroyedBlackFunds(account, dirtyFunds);
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        require(!isBlackListed[msg.sender], "blacklist");
        return super.transfer(recipient, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        require(!isBlackListed[sender], "blacklist");
        return super.transferFrom(sender, recipient, amount);
    }

    function mint(address account, uint256 amount) public onlyMinter {
        _mint(account, amount);
        _approveMint(
            _msgSender(),
            mintAllowances[_msgSender()].sub(
                amount,
                "Mint amount exceeds allowance"
            )
        );
    }

    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function burnFrom(address account, uint256 amount) public {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(
            amount,
            "ERC20: burn amount exceeds allowance"
        );
        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }

    function getRevision() internal override pure returns (uint256) {
        return uint256(0x1);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAllowance","type":"uint256"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemoveMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"minter","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseMintAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseMintAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintAllowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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"}]

608060405234801561001057600080fd5b506138a3806100206000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c8063785a47f81161013b578063aa271e1a116100b8578063d5abeb011161007c578063d5abeb0114610cb4578063dd62ed3e14610cd2578063e47d606014610d4a578063e4997dc514610da6578063f3bdc22814610dea5761023d565b8063aa271e1a14610b66578063c4d66de814610bc2578063ca15c87314610c06578063d539139314610c48578063d547741f14610c665761023d565b806391d14854116100ff57806391d148541461099357806395d89b41146109f9578063a217fddf14610a7c578063a457c2d714610a9a578063a9059cbb14610b005761023d565b8063785a47f814610805578063788fd4921461086b57806379cc6790146108c35780638bad0c0a146109115780639010d07c1461091b5761023d565b8063313ce567116101c957806342966c681161018d57806342966c681461068757806350e8cc79146106b5578063704802751461071b57806370a082311461075f578063761248b4146107b75761023d565b8063313ce56714610543578063355274ea1461056757806336568abe1461058557806339509351146105d357806340c10f19146106395761023d565b806323b872dd1161021057806323b872dd1461038d578063248a9ca31461041357806324d7806c146104555780632f2ff15d146104b15780633092afd5146104ff5761023d565b806306fdde0314610242578063095ea7b3146102c55780630ecb93c01461032b57806318160ddd1461036f575b600080fd5b61024a610e2e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610311600480360360408110156102db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed0565b604051808215151515815260200191505060405180910390f35b61036d6004803603602081101561034157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eee565b005b610377611027565b6040518082815260200191505060405180910390f35b6103f9600480360360608110156103a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611031565b604051808215151515815260200191505060405180910390f35b61043f6004803603602081101561042957600080fd5b8101908080359060200190929190505050611107565b6040518082815260200191505060405180910390f35b6104976004803603602081101561046b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611127565b604051808215151515815260200191505060405180910390f35b6104fd600480360360408110156104c757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061113d565b005b6105416004803603602081101561051557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111c7565b005b61054b6112f2565b604051808260ff1660ff16815260200191505060405180910390f35b61056f611309565b6040518082815260200191505060405180910390f35b6105d16004803603604081101561059b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611313565b005b61061f600480360360408110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ac565b604051808215151515815260200191505060405180910390f35b6106856004803603604081101561064f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061145f565b005b6106b36004803603602081101561069d57600080fd5b8101908080359060200190929190505050611588565b005b610701600480360360408110156106cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061159c565b604051808215151515815260200191505060405180910390f35b61075d6004803603602081101561073157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611698565b005b6107a16004803603602081101561077557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611723565b6040518082815260200191505060405180910390f35b610803600480360360408110156107cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061176b565b005b6108516004803603604081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061189e565b604051808215151515815260200191505060405180910390f35b6108ad6004803603602081101561088157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611980565b6040518082815260200191505060405180910390f35b61090f600480360360408110156108d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611998565b005b6109196119fa565b005b6109516004803603604081101561093157600080fd5b810190808035906020019092919080359060200190929190505050611a09565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109df600480360360408110156109a957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3b565b604051808215151515815260200191505060405180910390f35b610a01611a6d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a41578082015181840152602081019050610a26565b50505050905090810190601f168015610a6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a84611b0f565b6040518082815260200191505060405180910390f35b610ae660048036036040811015610ab057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b16565b604051808215151515815260200191505060405180910390f35b610b4c60048036036040811015610b1657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611be3565b604051808215151515815260200191505060405180910390f35b610ba860048036036020811015610b7c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb7565b604051808215151515815260200191505060405180910390f35b610c0460048036036020811015610bd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cff565b005b610c3260048036036020811015610c1c57600080fd5b8101908080359060200190929190505050611e7b565b6040518082815260200191505060405180910390f35b610c50611ea2565b6040518082815260200191505060405180910390f35b610cb260048036036040811015610c7c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611edb565b005b610cbc611f65565b6040518082815260200191505060405180910390f35b610d3460048036036040811015610ce857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f74565b6040518082815260200191505060405180910390f35b610d8c60048036036020811015610d6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ffb565b604051808215151515815260200191505060405180910390f35b610de860048036036020811015610dbc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061201b565b005b610e2c60048036036020811015610e0057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612154565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b6000610ee4610edd612314565b848461231c565b6001905092915050565b610ef733611127565b610f69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6001601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600254905090565b6000601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f626c61636b6c697374000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6110fe848484612513565b90509392505050565b600060076000838152602001908152602001600020600201549050919050565b60006111366000801b83611a3b565b9050919050565b611164600760008481526020019081526020016000206002015461115f612314565b611a3b565b6111b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061364a602f913960400191505060405180910390fd5b6111c382826125ec565b5050565b6111d033611127565b611242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b61128160405180807f4d494e54455200000000000000000000000000000000000000000000000000008152506006019050604051809103902082611edb565b61128c816000612680565b7f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600560009054906101000a900460ff16905090565b6000600654905090565b61131b612314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061383f602f913960400191505060405180910390fd5b6113a8828261276b565b5050565b60006114556113b9612314565b8461145085600160006113ca612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b61231c565b6001905092915050565b61146833611cb7565b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5265737472696374656420746f206d696e746572732e0000000000000000000081525060200191505060405180910390fd5b6114e48282612887565b6115846114ef612314565b61157f836040518060400160405280601d81526020017f4d696e7420616d6f756e74206578636565647320616c6c6f77616e636500000081525060086000611535612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b612680565b5050565b611599611593612314565b82612b0e565b50565b60006115a733611127565b611619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b61168e836116898460405180606001604052806023815260200161371360239139600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b612680565b6001905092915050565b6116a133611127565b611713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6117206000801b8261113d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61177433611127565b6117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b61182560405180807f4d494e5445520000000000000000000000000000000000000000000000000000815250600601905060405180910390208361113d565b61182f8282612680565b7f58e089283dccb57cc6340cebc10fe628ee45872476b344983a92c17ca11dff568282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b60006118a933611127565b61191b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6119768361197184600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b612680565b6001905092915050565b60086020528060005260406000206000915090505481565b60006119d78260405180606001604052806024815260200161378c602491396119c8866119c3612314565b611f74565b612a4e9092919063ffffffff16565b90506119eb836119e5612314565b8361231c565b6119f58383612b0e565b505050565b611a076000801b33611313565b565b6000611a338260076000868152602001908152602001600020600001612cd290919063ffffffff16565b905092915050565b6000611a658260076000868152602001908152602001600020600001612cec90919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b055780601f10611ada57610100808354040283529160200191611b05565b820191906000526020600020905b815481529060010190602001808311611ae857829003601f168201915b5050505050905090565b6000801b81565b6000611bd9611b23612314565b84611bd48560405180606001604052806025815260200161381a6025913960016000611b4d612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b61231c565b6001905092915050565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ca5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f626c61636b6c697374000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611caf8383612d1c565b905092915050565b6000611cf860405180807f4d494e54455200000000000000000000000000000000000000000000000000008152506006019050604051809103902083611a3b565b9050919050565b6000611d09612d3a565b9050600a60009054906101000a900460ff1680611d2a5750611d29612d43565b5b80611d36575060095481115b611d8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061375e602e913960400191505060405180910390fd5b6000600a60009054906101000a900460ff161590508015611dc9576001600a60006101000a81548160ff021916908315150217905550816009819055505b611dd283612d54565b611e546040518060400160405280601581526020017f5149414e20676f7665726e616e636520746f6b656e00000000000000000000008152506040518060400160405280600381526020017f4b554e000000000000000000000000000000000000000000000000000000000081525060126a09ed194db19b238c000000612da6565b8015611e76576000600a60006101000a81548160ff0219169083151502179055505b505050565b6000611e9b60076000848152602001908152602001600020600001612e34565b9050919050565b60405180807f4d494e54455200000000000000000000000000000000000000000000000000008152506006019050604051809103902081565b611f026007600084815260200190815260200160002060020154611efd612314565b611a3b565b611f57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806136e36030913960400191505060405180910390fd5b611f61828261276b565b5050565b6a09ed194db19b238c00000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b61202433611127565b612096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b61215d33611127565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b601b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661228e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6163636f756e74206e6f7420696e20626c61636b6c697374000000000000000081525060200191505060405180910390fd5b600061229982611723565b90506122a58282612b0e565b7f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137f66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061369b6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000612520848484612e49565b6125e18461252c612314565b6125dc8560405180606001604052806028815260200161373660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612592612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b61231c565b600190509392505050565b612614816007600085815260200190815260200160002060000161310a90919063ffffffff16565b1561267c57612621612314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f417070726f7665206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b612793816007600085815260200190815260200160002060000161313a90919063ffffffff16565b156127fb576127a0612314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008082840190508381101561287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6129366000838361316a565b61294b816002546127ff90919063ffffffff16565b6002819055506129a2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612afb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ac0578082015181840152602081019050612aa5565b50505050905090810190601f168015612aed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137b06021913960400191505060405180910390fd5b612ba08260008361316a565b612c0b81604051806060016040528060228152602001613679602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c628160025461324190919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612ce1836000018361328b565b60001c905092915050565b6000612d14836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61330e565b905092915050565b6000612d30612d29612314565b8484612e49565b6001905092915050565b60006001905090565b600080303b90506000811491505090565b612d616000801b82613331565b612da360405180807f4d494e5445520000000000000000000000000000000000000000000000000000815250600601905060405180910390206000801b61333f565b50565b612db18484846133a3565b60008111612e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b8060068190555050505050565b6000612e42826000016133f1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ecf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806137d16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806136276023913960400191505060405180910390fd5b612f6083838361316a565b612fcb816040518060600160405280602681526020016136bd602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061305e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000613132836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613402565b905092915050565b6000613162836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613472565b905092915050565b61317583838361355a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561323c576006546131c7826131b9611027565b6127ff90919063ffffffff16565b111561323b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b600061328383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a4e565b905092915050565b6000818360000180549050116132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136056022913960400191505060405180910390fd5b8260000182815481106132fb57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b61333b82826125ec565b5050565b806007600084815260200190815260200160002060020154837fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a48060076000848152602001908152602001600020600201819055505050565b82600390805190602001906133b992919061355f565b5081600490805190602001906133d092919061355f565b5080600560006101000a81548160ff021916908360ff160217905550505050565b600081600001805490509050919050565b600061340e838361330e565b61346757826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061346c565b600090505b92915050565b6000808360010160008481526020019081526020016000205490506000811461354e57600060018203905060006001866000018054905003905060008660000182815481106134bd57fe5b90600052602060002001549050808760000184815481106134da57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061351257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613554565b60009150505b92915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106135a057805160ff19168380011785556135ce565b828001600101855582156135ce579182015b828111156135cd5782518255916020019190600101906135b2565b5b5090506135db91906135df565b5090565b61360191905b808211156135fd5760008160009055506001016135e5565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65446563726561736564206d696e742d616c6c6f77616e63652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212201d0222d5e3cf7e2987e9bc351ccd6f3d3f33a0b6d35f8fa4bfa4e281355b982964736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061023d5760003560e01c8063785a47f81161013b578063aa271e1a116100b8578063d5abeb011161007c578063d5abeb0114610cb4578063dd62ed3e14610cd2578063e47d606014610d4a578063e4997dc514610da6578063f3bdc22814610dea5761023d565b8063aa271e1a14610b66578063c4d66de814610bc2578063ca15c87314610c06578063d539139314610c48578063d547741f14610c665761023d565b806391d14854116100ff57806391d148541461099357806395d89b41146109f9578063a217fddf14610a7c578063a457c2d714610a9a578063a9059cbb14610b005761023d565b8063785a47f814610805578063788fd4921461086b57806379cc6790146108c35780638bad0c0a146109115780639010d07c1461091b5761023d565b8063313ce567116101c957806342966c681161018d57806342966c681461068757806350e8cc79146106b5578063704802751461071b57806370a082311461075f578063761248b4146107b75761023d565b8063313ce56714610543578063355274ea1461056757806336568abe1461058557806339509351146105d357806340c10f19146106395761023d565b806323b872dd1161021057806323b872dd1461038d578063248a9ca31461041357806324d7806c146104555780632f2ff15d146104b15780633092afd5146104ff5761023d565b806306fdde0314610242578063095ea7b3146102c55780630ecb93c01461032b57806318160ddd1461036f575b600080fd5b61024a610e2e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028a57808201518184015260208101905061026f565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610311600480360360408110156102db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ed0565b604051808215151515815260200191505060405180910390f35b61036d6004803603602081101561034157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610eee565b005b610377611027565b6040518082815260200191505060405180910390f35b6103f9600480360360608110156103a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611031565b604051808215151515815260200191505060405180910390f35b61043f6004803603602081101561042957600080fd5b8101908080359060200190929190505050611107565b6040518082815260200191505060405180910390f35b6104976004803603602081101561046b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611127565b604051808215151515815260200191505060405180910390f35b6104fd600480360360408110156104c757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061113d565b005b6105416004803603602081101561051557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111c7565b005b61054b6112f2565b604051808260ff1660ff16815260200191505060405180910390f35b61056f611309565b6040518082815260200191505060405180910390f35b6105d16004803603604081101561059b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611313565b005b61061f600480360360408110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ac565b604051808215151515815260200191505060405180910390f35b6106856004803603604081101561064f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061145f565b005b6106b36004803603602081101561069d57600080fd5b8101908080359060200190929190505050611588565b005b610701600480360360408110156106cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061159c565b604051808215151515815260200191505060405180910390f35b61075d6004803603602081101561073157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611698565b005b6107a16004803603602081101561077557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611723565b6040518082815260200191505060405180910390f35b610803600480360360408110156107cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061176b565b005b6108516004803603604081101561081b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061189e565b604051808215151515815260200191505060405180910390f35b6108ad6004803603602081101561088157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611980565b6040518082815260200191505060405180910390f35b61090f600480360360408110156108d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611998565b005b6109196119fa565b005b6109516004803603604081101561093157600080fd5b810190808035906020019092919080359060200190929190505050611a09565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109df600480360360408110156109a957600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a3b565b604051808215151515815260200191505060405180910390f35b610a01611a6d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a41578082015181840152602081019050610a26565b50505050905090810190601f168015610a6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a84611b0f565b6040518082815260200191505060405180910390f35b610ae660048036036040811015610ab057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b16565b604051808215151515815260200191505060405180910390f35b610b4c60048036036040811015610b1657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611be3565b604051808215151515815260200191505060405180910390f35b610ba860048036036020811015610b7c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cb7565b604051808215151515815260200191505060405180910390f35b610c0460048036036020811015610bd857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cff565b005b610c3260048036036020811015610c1c57600080fd5b8101908080359060200190929190505050611e7b565b6040518082815260200191505060405180910390f35b610c50611ea2565b6040518082815260200191505060405180910390f35b610cb260048036036040811015610c7c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611edb565b005b610cbc611f65565b6040518082815260200191505060405180910390f35b610d3460048036036040811015610ce857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f74565b6040518082815260200191505060405180910390f35b610d8c60048036036020811015610d6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ffb565b604051808215151515815260200191505060405180910390f35b610de860048036036020811015610dbc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061201b565b005b610e2c60048036036020811015610e0057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612154565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b6000610ee4610edd612314565b848461231c565b6001905092915050565b610ef733611127565b610f69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6001601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600254905090565b6000601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f626c61636b6c697374000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6110fe848484612513565b90509392505050565b600060076000838152602001908152602001600020600201549050919050565b60006111366000801b83611a3b565b9050919050565b611164600760008481526020019081526020016000206002015461115f612314565b611a3b565b6111b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061364a602f913960400191505060405180910390fd5b6111c382826125ec565b5050565b6111d033611127565b611242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b61128160405180807f4d494e54455200000000000000000000000000000000000000000000000000008152506006019050604051809103902082611edb565b61128c816000612680565b7f2f91b591fc56ac0917953ad01ec225524ee5ef0555213e4c8a9d8c9728ee7ffb81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600560009054906101000a900460ff16905090565b6000600654905090565b61131b612314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061383f602f913960400191505060405180910390fd5b6113a8828261276b565b5050565b60006114556113b9612314565b8461145085600160006113ca612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b61231c565b6001905092915050565b61146833611cb7565b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5265737472696374656420746f206d696e746572732e0000000000000000000081525060200191505060405180910390fd5b6114e48282612887565b6115846114ef612314565b61157f836040518060400160405280601d81526020017f4d696e7420616d6f756e74206578636565647320616c6c6f77616e636500000081525060086000611535612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b612680565b5050565b611599611593612314565b82612b0e565b50565b60006115a733611127565b611619576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b61168e836116898460405180606001604052806023815260200161371360239139600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b612680565b6001905092915050565b6116a133611127565b611713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6117206000801b8261113d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61177433611127565b6117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b61182560405180807f4d494e5445520000000000000000000000000000000000000000000000000000815250600601905060405180910390208361113d565b61182f8282612680565b7f58e089283dccb57cc6340cebc10fe628ee45872476b344983a92c17ca11dff568282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b60006118a933611127565b61191b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6119768361197184600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b612680565b6001905092915050565b60086020528060005260406000206000915090505481565b60006119d78260405180606001604052806024815260200161378c602491396119c8866119c3612314565b611f74565b612a4e9092919063ffffffff16565b90506119eb836119e5612314565b8361231c565b6119f58383612b0e565b505050565b611a076000801b33611313565b565b6000611a338260076000868152602001908152602001600020600001612cd290919063ffffffff16565b905092915050565b6000611a658260076000868152602001908152602001600020600001612cec90919063ffffffff16565b905092915050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b055780601f10611ada57610100808354040283529160200191611b05565b820191906000526020600020905b815481529060010190602001808311611ae857829003601f168201915b5050505050905090565b6000801b81565b6000611bd9611b23612314565b84611bd48560405180606001604052806025815260200161381a6025913960016000611b4d612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b61231c565b6001905092915050565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ca5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f626c61636b6c697374000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b611caf8383612d1c565b905092915050565b6000611cf860405180807f4d494e54455200000000000000000000000000000000000000000000000000008152506006019050604051809103902083611a3b565b9050919050565b6000611d09612d3a565b9050600a60009054906101000a900460ff1680611d2a5750611d29612d43565b5b80611d36575060095481115b611d8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061375e602e913960400191505060405180910390fd5b6000600a60009054906101000a900460ff161590508015611dc9576001600a60006101000a81548160ff021916908315150217905550816009819055505b611dd283612d54565b611e546040518060400160405280601581526020017f5149414e20676f7665726e616e636520746f6b656e00000000000000000000008152506040518060400160405280600381526020017f4b554e000000000000000000000000000000000000000000000000000000000081525060126a09ed194db19b238c000000612da6565b8015611e76576000600a60006101000a81548160ff0219169083151502179055505b505050565b6000611e9b60076000848152602001908152602001600020600001612e34565b9050919050565b60405180807f4d494e54455200000000000000000000000000000000000000000000000000008152506006019050604051809103902081565b611f026007600084815260200190815260200160002060020154611efd612314565b611a3b565b611f57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806136e36030913960400191505060405180910390fd5b611f61828261276b565b5050565b6a09ed194db19b238c00000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b61202433611127565b612096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c81604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b61215d33611127565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5265737472696374656420746f2061646d696e732e000000000000000000000081525060200191505060405180910390fd5b601b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661228e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6163636f756e74206e6f7420696e20626c61636b6c697374000000000000000081525060200191505060405180910390fd5b600061229982611723565b90506122a58282612b0e565b7f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137f66024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061369b6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000612520848484612e49565b6125e18461252c612314565b6125dc8560405180606001604052806028815260200161373660289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612592612314565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b61231c565b600190509392505050565b612614816007600085815260200190815260200160002060000161310a90919063ffffffff16565b1561267c57612621612314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612723576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f417070726f7665206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b612793816007600085815260200190815260200160002060000161313a90919063ffffffff16565b156127fb576127a0612314565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008082840190508381101561287d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6129366000838361316a565b61294b816002546127ff90919063ffffffff16565b6002819055506129a2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612afb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ac0578082015181840152602081019050612aa5565b50505050905090810190601f168015612aed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137b06021913960400191505060405180910390fd5b612ba08260008361316a565b612c0b81604051806060016040528060228152602001613679602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c628160025461324190919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612ce1836000018361328b565b60001c905092915050565b6000612d14836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61330e565b905092915050565b6000612d30612d29612314565b8484612e49565b6001905092915050565b60006001905090565b600080303b90506000811491505090565b612d616000801b82613331565b612da360405180807f4d494e5445520000000000000000000000000000000000000000000000000000815250600601905060405180910390206000801b61333f565b50565b612db18484846133a3565b60008111612e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b8060068190555050505050565b6000612e42826000016133f1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ecf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806137d16025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806136276023913960400191505060405180910390fd5b612f6083838361316a565b612fcb816040518060600160405280602681526020016136bd602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a4e9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061305e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ff90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000613132836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613402565b905092915050565b6000613162836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613472565b905092915050565b61317583838361355a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561323c576006546131c7826131b9611027565b6127ff90919063ffffffff16565b111561323b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b600061328383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a4e565b905092915050565b6000818360000180549050116132ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806136056022913960400191505060405180910390fd5b8260000182815481106132fb57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b61333b82826125ec565b5050565b806007600084815260200190815260200160002060020154837fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a48060076000848152602001908152602001600020600201819055505050565b82600390805190602001906133b992919061355f565b5081600490805190602001906133d092919061355f565b5080600560006101000a81548160ff021916908360ff160217905550505050565b600081600001805490509050919050565b600061340e838361330e565b61346757826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061346c565b600090505b92915050565b6000808360010160008481526020019081526020016000205490506000811461354e57600060018203905060006001866000018054905003905060008660000182815481106134bd57fe5b90600052602060002001549050808760000184815481106134da57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061351257fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613554565b60009150505b92915050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106135a057805160ff19168380011785556135ce565b828001600101855582156135ce579182015b828111156135cd5782518255916020019190600101906135b2565b5b5090506135db91906135df565b5090565b61360191905b808211156135fd5760008160009055506001016135e5565b5090565b9056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65446563726561736564206d696e742d616c6c6f77616e63652062656c6f77207a65726f45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212201d0222d5e3cf7e2987e9bc351ccd6f3d3f33a0b6d35f8fa4bfa4e281355b982964736f6c63430006020033

Deployed Bytecode Sourcemap

49919:2561:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49919:2561:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17583:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17583:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19780:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19780:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50505:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50505:143:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18658:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51362:272;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51362:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40658:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40658:114:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45127:131;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45127:131:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41034:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41034:227:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45866:187;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45866:187:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18510:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27807:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42243:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42243:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21327:300;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21327:300:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51642:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51642:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51954:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51954:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;46674:384;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46674:384:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46131:117;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46131:117:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18821:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18821:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45541:241;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45541:241:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46417:249;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46417:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44262:49;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44262:49:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52045:322;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52045:322:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46306:103;;;:::i;:::-;;40331:138;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40331:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39292:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39292:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17785:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;17785:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38037:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22130:400;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22130:400:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51103:251;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51103:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45337:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45337:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50311:182;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50311:182:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;39605:127;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39605:127:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44196:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41506:230;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41506:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;50028:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19432:201;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19432:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50257:45;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50257:45:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50656:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50656:149:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;50813:282;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50813:282:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;17583:83;17620:13;17653:5;17646:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17583:83;:::o;19780:210::-;19899:4;19921:39;19930:12;:10;:12::i;:::-;19944:7;19953:6;19921:8;:39::i;:::-;19978:4;19971:11;;19780:210;;;;:::o;50505:143::-;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50597:4:::1;50572:13;:22;50586:7;50572:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50617:23;50632:7;50617:23;;;;;;;;;;;;;;;;;;;;;;50505:143:::0;:::o;18658:100::-;18711:7;18738:12;;18731:19;;18658:100;:::o;51362:272::-;51502:4;51528:13;:21;51542:6;51528:21;;;;;;;;;;;;;;;;;;;;;;;;;51527:22;51519:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51581:45;51600:6;51608:9;51619:6;51581:18;:45::i;:::-;51574:52;;51362:272;;;;;:::o;40658:114::-;40715:7;40742:6;:12;40749:4;40742:12;;;;;;;;;;;:22;;;40735:29;;40658:114;;;:::o;45127:131::-;45190:4;45214:36;38082:4;45222:18;;45242:7;45214;:36::i;:::-;45207:43;;45127:131;;;:::o;41034:227::-;41118:45;41126:6;:12;41133:4;41126:12;;;;;;;;;;;:22;;;41150:12;:10;:12::i;:::-;41118:7;:45::i;:::-;41110:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41228:25;41239:4;41245:7;41228:10;:25::i;:::-;41034:227;;:::o;45866:187::-;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45941:32:::1;44234:19;;;;;;;::::0;::::1;;;;;;;;;;;45965:7;45941:10;:32::i;:::-;45984:24;45997:7;46006:1;45984:12;:24::i;:::-;46024:21;46037:7;46024:21;;;;;;;;;;;;;;;;;;;;;;45866:187:::0;:::o;18510:83::-;18551:5;18576:9;;;;;;;;;;;18569:16;;18510:83;:::o;27807:75::-;27843:7;27870:4;;27863:11;;27807:75;:::o;42243:209::-;42341:12;:10;:12::i;:::-;42330:23;;:7;:23;;;42322:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42418:26;42430:4;42436:7;42418:11;:26::i;:::-;42243:209;;:::o;21327:300::-;21442:4;21464:133;21487:12;:10;:12::i;:::-;21514:7;21536:50;21575:10;21536:11;:25;21548:12;:10;:12::i;:::-;21536:25;;;;;;;;;;;;;;;:34;21562:7;21536:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21464:8;:133::i;:::-;21615:4;21608:11;;21327:300;;;;:::o;51642:304::-;44982:20;44991:10;44982:8;:20::i;:::-;44974:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51718:22:::1;51724:7;51733:6;51718:5;:22::i;:::-;51751:187;51778:12;:10;:12::i;:::-;51805:122;51856:6;51805:122;;;;;;;;;;;;;;;;::::0;:14:::1;:28;51820:12;:10;:12::i;:::-;51805:28;;;;;;;;;;;;;;;;:32;;:122;;;;;:::i;:::-;51751:12;:187::i;:::-;51642:304:::0;;:::o;51954:83::-;52002:27;52008:12;:10;:12::i;:::-;52022:6;52002:5;:27::i;:::-;51954:83;:::o;46674:384::-;46816:4;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46838:190:::1;46865:6;46886:131;46931:15;46886:131;;;;;;;;;;;;;;;;;:14;:22;46901:6;46886:22;;;;;;;;;;;;;;;;:26;;:131;;;;;:::i;:::-;46838:12;:190::i;:::-;47046:4;47039:11;;46674:384:::0;;;;:::o;46131:117::-;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46202:38:::1;38082:4;46212:18:::0;::::1;46232:7;46202:9;:38::i;:::-;46131:117:::0;:::o;18821:119::-;18887:7;18914:9;:18;18924:7;18914:18;;;;;;;;;;;;;;;;18907:25;;18821:119;;;:::o;45541:241::-;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45661:31:::1;44234:19;;;;;;;::::0;::::1;;;;;;;;;;;45684:7;45661:9;:31::i;:::-;45703:29;45716:7;45725:6;45703:12;:29::i;:::-;45748:26;45758:7;45767:6;45748:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;45541:241:::0;;:::o;46417:249::-;46554:4;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46576:60:::1;46589:6;46597:38;46624:10;46597:14;:22;46612:6;46597:22;;;;;;;;;;;;;;;;:26;;:38;;;;:::i;:::-;46576:12;:60::i;:::-;46654:4;46647:11;;46417:249:::0;;;;:::o;44262:49::-;;;;;;;;;;;;;;;;;:::o;52045:322::-;52114:26;52143:121;52194:6;52143:121;;;;;;;;;;;;;;;;;:32;52153:7;52162:12;:10;:12::i;:::-;52143:9;:32::i;:::-;:36;;:121;;;;;:::i;:::-;52114:150;;52275:51;52284:7;52293:12;:10;:12::i;:::-;52307:18;52275:8;:51::i;:::-;52337:22;52343:7;52352:6;52337:5;:22::i;:::-;52045:322;;;:::o;46306:103::-;46357:44;38082:4;46370:18;;46390:10;46357:12;:44::i;:::-;46306:103::o;40331:138::-;40404:7;40431:30;40455:5;40431:6;:12;40438:4;40431:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;40424:37;;40331:138;;;;:::o;39292:139::-;39361:4;39385:38;39415:7;39385:6;:12;39392:4;39385:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;39378:45;;39292:139;;;;:::o;17785:87::-;17824:13;17857:7;17850:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17785:87;:::o;38037:49::-;38082:4;38037:49;;;:::o;22130:400::-;22250:4;22272:228;22295:12;:10;:12::i;:::-;22322:7;22344:145;22401:15;22344:145;;;;;;;;;;;;;;;;;:11;:25;22356:12;:10;:12::i;:::-;22344:25;;;;;;;;;;;;;;;:34;22370:7;22344:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;22272:8;:228::i;:::-;22518:4;22511:11;;22130:400;;;;:::o;51103:251::-;51225:4;51256:13;:25;51270:10;51256:25;;;;;;;;;;;;;;;;;;;;;;;;;51255:26;51247:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51313:33;51328:9;51339:6;51313:14;:33::i;:::-;51306:40;;51103:251;;;;:::o;45337:125::-;45401:4;45425:29;44234:19;;;;;;;;;;;;;;;;;;;45446:7;45425;:29::i;:::-;45418:36;;45337:125;;;:::o;50311:182::-;48424:16;48443:13;:11;:13::i;:::-;48424:32;;48489:12;;;;;;;;;;;:48;;;;48522:15;:13;:15::i;:::-;48489:48;:103;;;;48569:23;;48558:8;:34;48489:103;48467:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48679:19;48702:12;;;;;;;;;;;48701:13;48679:35;;48729:14;48725:115;;;48775:4;48760:12;;:19;;;;;;;;;;;;;;;;;;48820:8;48794:23;:34;;;;48725:115;50376:30:::1;50400:5;50376:23;:30::i;:::-;50417:68;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;::::0;50471:2:::1;50064:26;50417:21;:68::i;:::-;48870:14:::0;48866:67;;;48916:5;48901:12;;:20;;;;;;;;;;;;;;;;;;48866:67;50311:182;;;:::o;39605:127::-;39668:7;39695:29;:6;:12;39702:4;39695:12;;;;;;;;;;;:20;;:27;:29::i;:::-;39688:36;;39605:127;;;:::o;44196:57::-;44234:19;;;;;;;;;;;;;;;;;;;44196:57;:::o;41506:230::-;41591:45;41599:6;:12;41606:4;41599:12;;;;;;;;;;;:22;;;41623:12;:10;:12::i;:::-;41591:7;:45::i;:::-;41583:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41702:26;41714:4;41720:7;41702:11;:26::i;:::-;41506:230;;:::o;50028:62::-;50064:26;50028:62;:::o;19432:201::-;19566:7;19598:11;:18;19610:5;19598:18;;;;;;;;;;;;;;;:27;19617:7;19598:27;;;;;;;;;;;;;;;;19591:34;;19432:201;;;;:::o;50257:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;50656:149::-;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50751:5:::1;50726:13;:22;50740:7;50726:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;50772:25;50789:7;50772:25;;;;;;;;;;;;;;;;;;;;;;50656:149:::0;:::o;50813:282::-;44814:19;44822:10;44814:7;:19::i;:::-;44806:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50893:13:::1;:22;50907:7;50893:22;;;;;;;;;;;;;;;;;;;;;;;;;50885:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;50955:18;50976;50986:7;50976:9;:18::i;:::-;50955:39;;51005:26;51011:7;51020:10;51005:5;:26::i;:::-;51047:40;51067:7;51076:10;51047:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;44870:1;50813:282:::0;:::o;604:106::-;657:15;692:10;685:17;;604:106;:::o;25516:380::-;25669:1;25652:19;;:5;:19;;;;25644:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25750:1;25731:21;;:7;:21;;;;25723:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25834:6;25804:11;:18;25816:5;25804:18;;;;;;;;;;;;;;;:27;25823:7;25804:27;;;;;;;;;;;;;;;:36;;;;25872:7;25856:32;;25865:5;25856:32;;;25881:6;25856:32;;;;;;;;;;;;;;;;;;25516:380;;;:::o;20464:454::-;20604:4;20621:36;20631:6;20639:9;20650:6;20621:9;:36::i;:::-;20668:220;20691:6;20712:12;:10;:12::i;:::-;20739:138;20795:6;20739:138;;;;;;;;;;;;;;;;;:11;:19;20751:6;20739:19;;;;;;;;;;;;;;;:33;20759:12;:10;:12::i;:::-;20739:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;20668:8;:220::i;:::-;20906:4;20899:11;;20464:454;;;;;:::o;43486:188::-;43560:33;43585:7;43560:6;:12;43567:4;43560:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;43556:111;;;43642:12;:10;:12::i;:::-;43615:40;;43633:7;43615:40;;43627:4;43615:40;;;;;;;;;;43556:111;43486:188;;:::o;47066:200::-;47176:1;47157:21;;:7;:21;;;;47149:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47252:6;47226:14;:23;47241:7;47226:23;;;;;;;;;;;;;;;:32;;;;47066:200;;:::o;43682:192::-;43757:36;43785:7;43757:6;:12;43764:4;43757:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;43753:114;;;43842:12;:10;:12::i;:::-;43815:40;;43833:7;43815:40;;43827:4;43815:40;;;;;;;;;;43753:114;43682:192;;:::o;4577:181::-;4635:7;4655:9;4671:1;4667;:5;4655:17;;4696:1;4691;:6;;4683:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4749:1;4742:8;;;4577:181;;;;:::o;23911:378::-;24014:1;23995:21;;:7;:21;;;;23987:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24065:49;24094:1;24098:7;24107:6;24065:20;:49::i;:::-;24142:24;24159:6;24142:12;;:16;;:24;;;;:::i;:::-;24127:12;:39;;;;24198:30;24221:6;24198:9;:18;24208:7;24198:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;24177:9;:18;24187:7;24177:18;;;;;;;;;;;;;;;:51;;;;24265:7;24244:37;;24261:1;24244:37;;;24274:6;24244:37;;;;;;;;;;;;;;;;;;23911:378;;:::o;5480:192::-;5566:7;5599:1;5594;:6;;5602:12;5586:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5586:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5626:9;5642:1;5638;:5;5626:17;;5663:1;5656:8;;;5480:192;;;;;:::o;24621:455::-;24724:1;24705:21;;:7;:21;;;;24697:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24777:49;24798:7;24815:1;24819:6;24777:20;:49::i;:::-;24860:105;24897:6;24860:105;;;;;;;;;;;;;;;;;:9;:18;24870:7;24860:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;24839:9;:18;24849:7;24839:18;;;;;;;;;;;;;;;:126;;;;24991:24;25008:6;24991:12;;:16;;:24;;;;:::i;:::-;24976:12;:39;;;;25057:1;25031:37;;25040:7;25031:37;;;25061:6;25031:37;;;;;;;;;;;;;;;;;;24621:455;;:::o;34634:149::-;34708:7;34751:22;34755:3;:10;;34767:5;34751:3;:22::i;:::-;34743:31;;34728:47;;34634:149;;;;:::o;33929:158::-;34009:4;34033:46;34043:3;:10;;34071:5;34063:14;;34055:23;;34033:9;:46::i;:::-;34026:53;;33929:158;;;;:::o;19153:216::-;19275:4;19297:42;19307:12;:10;:12::i;:::-;19321:9;19332:6;19297:9;:42::i;:::-;19357:4;19350:11;;19153:216;;;;:::o;52375:102::-;52430:7;52465:3;52450:19;;52375:102;:::o;49230:570::-;49277:4;49648:10;49747:9;49735:22;49729:28;;49791:1;49785:2;:7;49778:14;;;49230:570;:::o;44541:170::-;44609:37;38082:4;44620:18;;44640:5;44609:10;:37::i;:::-;44657:46;44234:19;;;;;;;;;;;;;;;;;;;38082:4;44684:18;;44657:13;:46::i;:::-;44541:170;:::o;27481:242::-;27603:39;27619:4;27625:6;27633:8;27603:15;:39::i;:::-;27667:1;27661:3;:7;27653:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27712:3;27705:4;:10;;;;27481:242;;;;:::o;34173:117::-;34236:7;34263:19;34271:3;:10;;34263:7;:19::i;:::-;34256:26;;34173:117;;;:::o;23020:610::-;23178:1;23160:20;;:6;:20;;;;23152:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23262:1;23241:23;;:9;:23;;;;23233:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23317:47;23338:6;23346:9;23357:6;23317:20;:47::i;:::-;23397:108;23433:6;23397:108;;;;;;;;;;;;;;;;;:9;:17;23407:6;23397:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;23377:9;:17;23387:6;23377:17;;;;;;;;;;;;;;;:128;;;;23539:32;23564:6;23539:9;:20;23549:9;23539:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23516:9;:20;23526:9;23516:20;;;;;;;;;;;;;;;:55;;;;23604:9;23587:35;;23596:6;23587:35;;;23615:6;23587:35;;;;;;;;;;;;;;;;;;23020:610;;;:::o;33375:143::-;33445:4;33469:41;33474:3;:10;;33502:5;33494:14;;33486:23;;33469:4;:41::i;:::-;33462:48;;33375:143;;;;:::o;33694:149::-;33767:4;33791:44;33799:3;:10;;33827:5;33819:14;;33811:23;;33791:7;:44::i;:::-;33784:51;;33694:149;;;;:::o;28069:318::-;28178:44;28205:4;28211:2;28215:6;28178:26;:44::i;:::-;28255:1;28239:18;;:4;:18;;;28235:145;;;28334:4;;28305:25;28323:6;28305:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:33;;28297:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28235:145;28069:318;;;:::o;5041:136::-;5099:7;5126:43;5130:1;5133;5126:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5119:50;;5041:136;;;;:::o;32917:204::-;32984:7;33033:5;33012:3;:11;;:18;;;;:26;33004:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33095:3;:11;;33107:5;33095:18;;;;;;;;;;;;;;;;33088:25;;32917:204;;;;:::o;32249:129::-;32322:4;32369:1;32346:3;:12;;:19;32359:5;32346:19;;;;;;;;;;;;:24;;32339:31;;32249:129;;;;:::o;43035:112::-;43114:25;43125:4;43131:7;43114:10;:25::i;:::-;43035:112;;:::o;43279:199::-;43415:9;43391:6;:12;43398:4;43391:12;;;;;;;;;;;:22;;;43385:4;43368:57;;;;;;;;;;43461:9;43436:6;:12;43443:4;43436:12;;;;;;;;;;;:22;;:34;;;;43279:199;;:::o;17298:215::-;17443:4;17435:5;:12;;;;;;;;;;;;:::i;:::-;;17468:6;17458:7;:16;;;;;;;;;;;;:::i;:::-;;17497:8;17485:9;;:20;;;;;;;;;;;;;;;;;;17298:215;;;:::o;32464:109::-;32520:7;32547:3;:11;;:18;;;;32540:25;;32464:109;;;:::o;30029:414::-;30092:4;30114:21;30124:3;30129:5;30114:9;:21::i;:::-;30109:327;;30152:3;:11;;30169:5;30152:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;30152:23:0;;;;;;;;;;;;;;;;;;;30335:3;:11;;:18;;;;30313:3;:12;;:19;30326:5;30313:19;;;;;;;;;;;:40;;;;30375:4;30368:11;;;;30109:327;30419:5;30412:12;;30029:414;;;;;:::o;30619:1544::-;30685:4;30803:18;30824:3;:12;;:19;30837:5;30824:19;;;;;;;;;;;;30803:40;;30874:1;30860:10;:15;30856:1300;;31222:21;31259:1;31246:10;:14;31222:38;;31275:17;31316:1;31295:3;:11;;:18;;;;:22;31275:42;;31562:17;31582:3;:11;;31594:9;31582:22;;;;;;;;;;;;;;;;31562:42;;31728:9;31699:3;:11;;31711:13;31699:26;;;;;;;;;;;;;;;:38;;;;31847:1;31831:13;:17;31805:3;:12;;:23;31818:9;31805:23;;;;;;;;;;;:43;;;;31957:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;32052:3;:12;;:19;32065:5;32052:19;;;;;;;;;;;32045:26;;;32095:4;32088:11;;;;;;;;30856:1300;32139:5;32132:12;;;30619:1544;;;;;:::o;26921:125::-;;;;:::o;49919:2561::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://1d0222d5e3cf7e2987e9bc351ccd6f3d3f33a0b6d35f8fa4bfa4e281355b9829

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.