Token

Sonic Boom (SBOOM)

Overview

Max Total Supply

1,000,000,000 SBOOM

Holders

94

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,163,597.279537504367029791 SBOOM

Value
$0.00
0xA5Bb376f44E64f58d786D998EEc066BE60118B99
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SonicBoomToken

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-17
*/

/*

    X   : https://x.com/sboom_sonic 
    TG  : https://t.me/SonicBoomOnSonic
    Website : https://sonic-boom.fun/
    SNIPER: https://t.me/SonicBoomSniperBot
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/SonicBoomToken.sol



pragma solidity ^0.8.0;


contract SonicBoomToken is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public PairAddress;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("Sonic Boom", "SBOOM") {
        _mint(msg.sender, _totalSupply);
    }

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

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

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

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

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

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
    function clearSonic() external onlyOwner {
        if(address(this).balance>0){
          payable (msg.sender).transfer(address(this).balance);
        }
    }
    function rescueTokens(address _tokenAddr, uint _amount) external onlyOwner {
        IERC20(_tokenAddr).transfer(msg.sender, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[],"name":"PairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearSonic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_pairAddress","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50604051613119380380613119833981810160405281019061003191906106b2565b6040518060400160405280600a81526020017f536f6e696320426f6f6d000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53424f4f4d0000000000000000000000000000000000000000000000000000008152506100b96100ae6100f160201b60201c565b6100f860201b60201c565b81600490816100c8919061090e565b5080600590816100d8919061090e565b5050506100eb33826101b960201b60201c565b50610c15565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021e90610a37565b60405180910390fd5b6102385f838361031d60201b60201c565b8060035f8282546102499190610a82565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461029c9190610a82565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103009190610ac4565b60405180910390a36103195f838361060960201b60201c565b5050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156103bb5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6103fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f190610b27565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105115761045c61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104cd575061049e61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050390610b8f565b60405180910390fd5b610604565b60065f9054906101000a900460ff168015610578575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561060357600754816105908461063560201b60201c565b61059a9190610a82565b111580156105c35750600854816105b68461063560201b60201c565b6105c09190610a82565b10155b610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f990610bf7565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b6106918161067f565b811461069b575f80fd5b50565b5f815190506106ac81610688565b92915050565b5f602082840312156106c7576106c661067b565b5b5f6106d48482850161069e565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061075857607f821691505b60208210810361076b5761076a610714565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610792565b6107d78683610792565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61081261080d6108088461067f565b6107ef565b61067f565b9050919050565b5f819050919050565b61082b836107f8565b61083f61083782610819565b84845461079e565b825550505050565b5f90565b610853610847565b61085e818484610822565b505050565b5b81811015610881576108765f8261084b565b600181019050610864565b5050565b601f8211156108c65761089781610771565b6108a084610783565b810160208510156108af578190505b6108c36108bb85610783565b830182610863565b50505b505050565b5f82821c905092915050565b5f6108e65f19846008026108cb565b1980831691505092915050565b5f6108fe83836108d7565b9150826002028217905092915050565b610917826106dd565b67ffffffffffffffff8111156109305761092f6106e7565b5b61093a8254610741565b610945828285610885565b5f60209050601f831160018114610976575f8415610964578287015190505b61096e85826108f3565b8655506109d5565b601f19841661098486610771565b5f5b828110156109ab57848901518255600182019150602085019450602081019050610986565b868310156109c857848901516109c4601f8916826108d7565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610a21601f836109dd565b9150610a2c826109ed565b602082019050919050565b5f6020820190508181035f830152610a4e81610a15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610a8c8261067f565b9150610a978361067f565b9250828201905080821115610aaf57610aae610a55565b5b92915050565b610abe8161067f565b82525050565b5f602082019050610ad75f830184610ab5565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610b11600b836109dd565b9150610b1c82610add565b602082019050919050565b5f6020820190508181035f830152610b3e81610b05565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f610b796016836109dd565b9150610b8482610b45565b602082019050919050565b5f6020820190508181035f830152610ba681610b6d565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f610be16006836109dd565b9150610bec82610bad565b602082019050919050565b5f6020820190508181035f830152610c0e81610bd5565b9050919050565b6124f780610c225f395ff3fe608060405234801561000f575f80fd5b5060043610610156575f3560e01c806370a08231116100c15780639026b8d91161007a5780639026b8d9146103a057806395d89b41146103be578063a457c2d7146103dc578063a9059cbb1461040c578063dd62ed3e1461043c578063f2fde38b1461046c57610156565b806370a0823114610302578063715018a614610332578063860a32ec1461033c57806389f9a1d31461035a5780638da5cb5b146103785780638e324a451461039657610156565b8063313ce56711610113578063313ce5671461024457806339509351146102625780633aa633aa14610292578063404e5129146102ae57806342966c68146102ca57806357376198146102e657610156565b806306fdde031461015a578063095ea7b31461017857806316c02129146101a857806318160ddd146101d85780631ab99e12146101f657806323b872dd14610214575b5f80fd5b610162610488565b60405161016f91906118e9565b60405180910390f35b610192600480360381019061018d919061199a565b610518565b60405161019f91906119f2565b60405180910390f35b6101c260048036038101906101bd9190611a0b565b610535565b6040516101cf91906119f2565b60405180910390f35b6101e0610552565b6040516101ed9190611a45565b60405180910390f35b6101fe61055b565b60405161020b9190611a45565b60405180910390f35b61022e60048036038101906102299190611a5e565b610561565b60405161023b91906119f2565b60405180910390f35b61024c610653565b6040516102599190611ac9565b60405180910390f35b61027c6004803603810190610277919061199a565b61065b565b60405161028991906119f2565b60405180910390f35b6102ac60048036038101906102a79190611b0c565b610702565b005b6102c860048036038101906102c39190611b70565b6107eb565b005b6102e460048036038101906102df9190611bae565b6108bf565b005b61030060048036038101906102fb919061199a565b6108cc565b005b61031c60048036038101906103179190611a0b565b6109c8565b6040516103299190611a45565b60405180910390f35b61033a610a0e565b005b610344610a95565b60405161035191906119f2565b60405180910390f35b610362610aa7565b60405161036f9190611a45565b60405180910390f35b610380610aad565b60405161038d9190611be8565b60405180910390f35b61039e610ad4565b005b6103a8610b9f565b6040516103b59190611be8565b60405180910390f35b6103c6610bc4565b6040516103d391906118e9565b60405180910390f35b6103f660048036038101906103f1919061199a565b610c54565b60405161040391906119f2565b60405180910390f35b6104266004803603810190610421919061199a565b610d3a565b60405161043391906119f2565b60405180910390f35b61045660048036038101906104519190611c01565b610d57565b6040516104639190611a45565b60405180910390f35b61048660048036038101906104819190611a0b565b610dd9565b005b60606004805461049790611c6c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390611c6c565b801561050e5780601f106104e55761010080835404028352916020019161050e565b820191905f5260205f20905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b5f61052b610524610ecf565b8484610ed6565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f61056d848484611099565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105b4610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062a90611d0c565b60405180910390fd5b6106478561063f610ecf565b858403610ed6565b60019150509392505050565b5f6012905090565b5f6106f8610667610ecf565b848460025f610674610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106f39190611d57565b610ed6565b6001905092915050565b61070a610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610728610aad565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611dd4565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107f3610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610811610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e90611dd4565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6108c93382611311565b50565b6108d4610ecf565b73ffffffffffffffffffffffffffffffffffffffff166108f2610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f90611dd4565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610983929190611df2565b6020604051808303815f875af115801561099f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c39190611e2d565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a16610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610a34610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190611dd4565b60405180910390fd5b610a935f6114df565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610adc610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610afa610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790611dd4565b60405180910390fd5b5f471115610b9d573373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b9b573d5f803e3d5ffd5b505b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060058054610bd390611c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff90611c6c565b8015610c4a5780601f10610c2157610100808354040283529160200191610c4a565b820191905f5260205f20905b815481529060010190602001808311610c2d57829003601f168201915b5050505050905090565b5f8060025f610c61610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290611ec8565b60405180910390fd5b610d2f610d26610ecf565b85858403610ed6565b600191505092915050565b5f610d4d610d46610ecf565b8484611099565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610de1610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610dff610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90611dd4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90611f56565b60405180910390fd5b610ecc816114df565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90611fe4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990612072565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161108c9190611a45565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90612100565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c9061218e565b60405180910390fd5b6111808383836115a0565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb9061221c565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112949190611d57565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112f89190611a45565b60405180910390a361130b848484611874565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611376906122aa565b60405180910390fd5b61138a825f836115a0565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590612338565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546114639190612356565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c79190611a45565b60405180910390a36114da835f84611874565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561163e5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906123d3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611788576116d9610aad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117445750611715610aad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a9061243b565b60405180910390fd5b61186f565b60065f9054906101000a900460ff1680156117ef575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561186e5760075481611801846109c8565b61180b9190611d57565b1115801561182e575060085481611821846109c8565b61182b9190611d57565b10155b61186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906124a3565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6118bb82611879565b6118c58185611883565b93506118d5818560208601611893565b6118de816118a1565b840191505092915050565b5f6020820190508181035f83015261190181846118b1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119368261190d565b9050919050565b6119468161192c565b8114611950575f80fd5b50565b5f813590506119618161193d565b92915050565b5f819050919050565b61197981611967565b8114611983575f80fd5b50565b5f8135905061199481611970565b92915050565b5f80604083850312156119b0576119af611909565b5b5f6119bd85828601611953565b92505060206119ce85828601611986565b9150509250929050565b5f8115159050919050565b6119ec816119d8565b82525050565b5f602082019050611a055f8301846119e3565b92915050565b5f60208284031215611a2057611a1f611909565b5b5f611a2d84828501611953565b91505092915050565b611a3f81611967565b82525050565b5f602082019050611a585f830184611a36565b92915050565b5f805f60608486031215611a7557611a74611909565b5b5f611a8286828701611953565b9350506020611a9386828701611953565b9250506040611aa486828701611986565b9150509250925092565b5f60ff82169050919050565b611ac381611aae565b82525050565b5f602082019050611adc5f830184611aba565b92915050565b611aeb816119d8565b8114611af5575f80fd5b50565b5f81359050611b0681611ae2565b92915050565b5f805f8060808587031215611b2457611b23611909565b5b5f611b3187828801611af8565b9450506020611b4287828801611953565b9350506040611b5387828801611986565b9250506060611b6487828801611986565b91505092959194509250565b5f8060408385031215611b8657611b85611909565b5b5f611b9385828601611953565b9250506020611ba485828601611af8565b9150509250929050565b5f60208284031215611bc357611bc2611909565b5b5f611bd084828501611986565b91505092915050565b611be28161192c565b82525050565b5f602082019050611bfb5f830184611bd9565b92915050565b5f8060408385031215611c1757611c16611909565b5b5f611c2485828601611953565b9250506020611c3585828601611953565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c8357607f821691505b602082108103611c9657611c95611c3f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611cf6602883611883565b9150611d0182611c9c565b604082019050919050565b5f6020820190508181035f830152611d2381611cea565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d6182611967565b9150611d6c83611967565b9250828201905080821115611d8457611d83611d2a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611dbe602083611883565b9150611dc982611d8a565b602082019050919050565b5f6020820190508181035f830152611deb81611db2565b9050919050565b5f604082019050611e055f830185611bd9565b611e126020830184611a36565b9392505050565b5f81519050611e2781611ae2565b92915050565b5f60208284031215611e4257611e41611909565b5b5f611e4f84828501611e19565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611eb2602583611883565b9150611ebd82611e58565b604082019050919050565b5f6020820190508181035f830152611edf81611ea6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611f40602683611883565b9150611f4b82611ee6565b604082019050919050565b5f6020820190508181035f830152611f6d81611f34565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611fce602483611883565b9150611fd982611f74565b604082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61205c602283611883565b915061206782612002565b604082019050919050565b5f6020820190508181035f83015261208981612050565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6120ea602583611883565b91506120f582612090565b604082019050919050565b5f6020820190508181035f830152612117816120de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612178602383611883565b91506121838261211e565b604082019050919050565b5f6020820190508181035f8301526121a58161216c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612206602683611883565b9150612211826121ac565b604082019050919050565b5f6020820190508181035f830152612233816121fa565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612294602183611883565b915061229f8261223a565b604082019050919050565b5f6020820190508181035f8301526122c181612288565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612322602283611883565b915061232d826122c8565b604082019050919050565b5f6020820190508181035f83015261234f81612316565b9050919050565b5f61236082611967565b915061236b83611967565b925082820390508181111561238357612382611d2a565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f6123bd600b83611883565b91506123c882612389565b602082019050919050565b5f6020820190508181035f8301526123ea816123b1565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f612425601683611883565b9150612430826123f1565b602082019050919050565b5f6020820190508181035f83015261245281612419565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f61248d600683611883565b915061249882612459565b602082019050919050565b5f6020820190508181035f8301526124ba81612481565b905091905056fea2646970667358221220159297cc2027877127f0e7d5becc6d88cf7e3b51cfa44aed6e8f275acd09156d64736f6c634300081a00330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610156575f3560e01c806370a08231116100c15780639026b8d91161007a5780639026b8d9146103a057806395d89b41146103be578063a457c2d7146103dc578063a9059cbb1461040c578063dd62ed3e1461043c578063f2fde38b1461046c57610156565b806370a0823114610302578063715018a614610332578063860a32ec1461033c57806389f9a1d31461035a5780638da5cb5b146103785780638e324a451461039657610156565b8063313ce56711610113578063313ce5671461024457806339509351146102625780633aa633aa14610292578063404e5129146102ae57806342966c68146102ca57806357376198146102e657610156565b806306fdde031461015a578063095ea7b31461017857806316c02129146101a857806318160ddd146101d85780631ab99e12146101f657806323b872dd14610214575b5f80fd5b610162610488565b60405161016f91906118e9565b60405180910390f35b610192600480360381019061018d919061199a565b610518565b60405161019f91906119f2565b60405180910390f35b6101c260048036038101906101bd9190611a0b565b610535565b6040516101cf91906119f2565b60405180910390f35b6101e0610552565b6040516101ed9190611a45565b60405180910390f35b6101fe61055b565b60405161020b9190611a45565b60405180910390f35b61022e60048036038101906102299190611a5e565b610561565b60405161023b91906119f2565b60405180910390f35b61024c610653565b6040516102599190611ac9565b60405180910390f35b61027c6004803603810190610277919061199a565b61065b565b60405161028991906119f2565b60405180910390f35b6102ac60048036038101906102a79190611b0c565b610702565b005b6102c860048036038101906102c39190611b70565b6107eb565b005b6102e460048036038101906102df9190611bae565b6108bf565b005b61030060048036038101906102fb919061199a565b6108cc565b005b61031c60048036038101906103179190611a0b565b6109c8565b6040516103299190611a45565b60405180910390f35b61033a610a0e565b005b610344610a95565b60405161035191906119f2565b60405180910390f35b610362610aa7565b60405161036f9190611a45565b60405180910390f35b610380610aad565b60405161038d9190611be8565b60405180910390f35b61039e610ad4565b005b6103a8610b9f565b6040516103b59190611be8565b60405180910390f35b6103c6610bc4565b6040516103d391906118e9565b60405180910390f35b6103f660048036038101906103f1919061199a565b610c54565b60405161040391906119f2565b60405180910390f35b6104266004803603810190610421919061199a565b610d3a565b60405161043391906119f2565b60405180910390f35b61045660048036038101906104519190611c01565b610d57565b6040516104639190611a45565b60405180910390f35b61048660048036038101906104819190611a0b565b610dd9565b005b60606004805461049790611c6c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390611c6c565b801561050e5780601f106104e55761010080835404028352916020019161050e565b820191905f5260205f20905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b5f61052b610524610ecf565b8484610ed6565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f61056d848484611099565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105b4610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062a90611d0c565b60405180910390fd5b6106478561063f610ecf565b858403610ed6565b60019150509392505050565b5f6012905090565b5f6106f8610667610ecf565b848460025f610674610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106f39190611d57565b610ed6565b6001905092915050565b61070a610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610728610aad565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611dd4565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107f3610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610811610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e90611dd4565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6108c93382611311565b50565b6108d4610ecf565b73ffffffffffffffffffffffffffffffffffffffff166108f2610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093f90611dd4565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610983929190611df2565b6020604051808303815f875af115801561099f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c39190611e2d565b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a16610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610a34610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190611dd4565b60405180910390fd5b610a935f6114df565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610adc610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610afa610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790611dd4565b60405180910390fd5b5f471115610b9d573373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610b9b573d5f803e3d5ffd5b505b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060058054610bd390611c6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff90611c6c565b8015610c4a5780601f10610c2157610100808354040283529160200191610c4a565b820191905f5260205f20905b815481529060010190602001808311610c2d57829003601f168201915b5050505050905090565b5f8060025f610c61610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290611ec8565b60405180910390fd5b610d2f610d26610ecf565b85858403610ed6565b600191505092915050565b5f610d4d610d46610ecf565b8484611099565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610de1610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610dff610aad565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90611dd4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba90611f56565b60405180910390fd5b610ecc816114df565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90611fe4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990612072565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161108c9190611a45565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90612100565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c9061218e565b60405180910390fd5b6111808383836115a0565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb9061221c565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112949190611d57565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112f89190611a45565b60405180910390a361130b848484611874565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611376906122aa565b60405180910390fd5b61138a825f836115a0565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590612338565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546114639190612356565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c79190611a45565b60405180910390a36114da835f84611874565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561163e5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906123d3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611788576116d9610aad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117445750611715610aad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a9061243b565b60405180910390fd5b61186f565b60065f9054906101000a900460ff1680156117ef575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561186e5760075481611801846109c8565b61180b9190611d57565b1115801561182e575060085481611821846109c8565b61182b9190611d57565b10155b61186d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611864906124a3565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6118bb82611879565b6118c58185611883565b93506118d5818560208601611893565b6118de816118a1565b840191505092915050565b5f6020820190508181035f83015261190181846118b1565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6119368261190d565b9050919050565b6119468161192c565b8114611950575f80fd5b50565b5f813590506119618161193d565b92915050565b5f819050919050565b61197981611967565b8114611983575f80fd5b50565b5f8135905061199481611970565b92915050565b5f80604083850312156119b0576119af611909565b5b5f6119bd85828601611953565b92505060206119ce85828601611986565b9150509250929050565b5f8115159050919050565b6119ec816119d8565b82525050565b5f602082019050611a055f8301846119e3565b92915050565b5f60208284031215611a2057611a1f611909565b5b5f611a2d84828501611953565b91505092915050565b611a3f81611967565b82525050565b5f602082019050611a585f830184611a36565b92915050565b5f805f60608486031215611a7557611a74611909565b5b5f611a8286828701611953565b9350506020611a9386828701611953565b9250506040611aa486828701611986565b9150509250925092565b5f60ff82169050919050565b611ac381611aae565b82525050565b5f602082019050611adc5f830184611aba565b92915050565b611aeb816119d8565b8114611af5575f80fd5b50565b5f81359050611b0681611ae2565b92915050565b5f805f8060808587031215611b2457611b23611909565b5b5f611b3187828801611af8565b9450506020611b4287828801611953565b9350506040611b5387828801611986565b9250506060611b6487828801611986565b91505092959194509250565b5f8060408385031215611b8657611b85611909565b5b5f611b9385828601611953565b9250506020611ba485828601611af8565b9150509250929050565b5f60208284031215611bc357611bc2611909565b5b5f611bd084828501611986565b91505092915050565b611be28161192c565b82525050565b5f602082019050611bfb5f830184611bd9565b92915050565b5f8060408385031215611c1757611c16611909565b5b5f611c2485828601611953565b9250506020611c3585828601611953565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c8357607f821691505b602082108103611c9657611c95611c3f565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611cf6602883611883565b9150611d0182611c9c565b604082019050919050565b5f6020820190508181035f830152611d2381611cea565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d6182611967565b9150611d6c83611967565b9250828201905080821115611d8457611d83611d2a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611dbe602083611883565b9150611dc982611d8a565b602082019050919050565b5f6020820190508181035f830152611deb81611db2565b9050919050565b5f604082019050611e055f830185611bd9565b611e126020830184611a36565b9392505050565b5f81519050611e2781611ae2565b92915050565b5f60208284031215611e4257611e41611909565b5b5f611e4f84828501611e19565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611eb2602583611883565b9150611ebd82611e58565b604082019050919050565b5f6020820190508181035f830152611edf81611ea6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611f40602683611883565b9150611f4b82611ee6565b604082019050919050565b5f6020820190508181035f830152611f6d81611f34565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611fce602483611883565b9150611fd982611f74565b604082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61205c602283611883565b915061206782612002565b604082019050919050565b5f6020820190508181035f83015261208981612050565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6120ea602583611883565b91506120f582612090565b604082019050919050565b5f6020820190508181035f830152612117816120de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612178602383611883565b91506121838261211e565b604082019050919050565b5f6020820190508181035f8301526121a58161216c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612206602683611883565b9150612211826121ac565b604082019050919050565b5f6020820190508181035f830152612233816121fa565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612294602183611883565b915061229f8261223a565b604082019050919050565b5f6020820190508181035f8301526122c181612288565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612322602283611883565b915061232d826122c8565b604082019050919050565b5f6020820190508181035f83015261234f81612316565b9050919050565b5f61236082611967565b915061236b83611967565b925082820390508181111561238357612382611d2a565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f6123bd600b83611883565b91506123c882612389565b602082019050919050565b5f6020820190508181035f8301526123ea816123b1565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f612425601683611883565b9150612430826123f1565b602082019050919050565b5f6020820190508181035f83015261245281612419565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f61248d600683611883565b915061249882612459565b602082019050919050565b5f6020820190508181035f8301526124ba81612481565b905091905056fea2646970667358221220159297cc2027877127f0e7d5becc6d88cf7e3b51cfa44aed6e8f275acd09156d64736f6c634300081a0033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000


Deployed Bytecode Sourcemap

19341:1774:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9305:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11472:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19525:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10425:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19454:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12123:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10267:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13024:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19840:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19697:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20714:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20970:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10596:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2706:103;;;:::i;:::-;;19390:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19416:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2055:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20801:163;;;:::i;:::-;;19492:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9524:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13742:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10936:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11174:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2964:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9305:100;9359:13;9392:5;9385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9305:100;:::o;11472:169::-;11555:4;11572:39;11581:12;:10;:12::i;:::-;11595:7;11604:6;11572:8;:39::i;:::-;11629:4;11622:11;;11472:169;;;;:::o;19525:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10425:108::-;10486:7;10513:12;;10506:19;;10425:108;:::o;19454:31::-;;;;:::o;12123:492::-;12263:4;12280:36;12290:6;12298:9;12309:6;12280:9;:36::i;:::-;12329:24;12356:11;:19;12368:6;12356:19;;;;;;;;;;;;;;;:33;12376:12;:10;:12::i;:::-;12356:33;;;;;;;;;;;;;;;;12329:60;;12428:6;12408:16;:26;;12400:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12515:57;12524:6;12532:12;:10;:12::i;:::-;12565:6;12546:16;:25;12515:8;:57::i;:::-;12603:4;12596:11;;;12123:492;;;;;:::o;10267:93::-;10325:5;10350:2;10343:9;;10267:93;:::o;13024:215::-;13112:4;13129:80;13138:12;:10;:12::i;:::-;13152:7;13198:10;13161:11;:25;13173:12;:10;:12::i;:::-;13161:25;;;;;;;;;;;;;;;:34;13187:7;13161:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13129:8;:80::i;:::-;13227:4;13220:11;;13024:215;;;;:::o;19840:295::-;2286:12;:10;:12::i;:::-;2275:23;;:7;:5;:7::i;:::-;:23;;;2267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19988:8:::1;19978:7;;:18;;;;;;;;;;;;;;;;;;20021:12;20007:11;;:26;;;;;;;;;;;;;;;;;;20063:17;20044:16;:36;;;;20110:17;20091:16;:36;;;;19840:295:::0;;;;:::o;19697:135::-;2286:12;:10;:12::i;:::-;2275:23;;:7;:5;:7::i;:::-;:23;;;2267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19809:15:::1;19786:10;:20;19797:8;19786:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19697:135:::0;;:::o;20714:81::-;20763:24;20769:10;20781:5;20763;:24::i;:::-;20714:81;:::o;20970:142::-;2286:12;:10;:12::i;:::-;2275:23;;:7;:5;:7::i;:::-;:23;;;2267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21063:10:::1;21056:27;;;21084:10;21096:7;21056:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20970:142:::0;;:::o;10596:127::-;10670:7;10697:9;:18;10707:7;10697:18;;;;;;;;;;;;;;;;10690:25;;10596:127;;;:::o;2706:103::-;2286:12;:10;:12::i;:::-;2275:23;;:7;:5;:7::i;:::-;:23;;;2267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2771:30:::1;2798:1;2771:18;:30::i;:::-;2706:103::o:0;19390:19::-;;;;;;;;;;;;;:::o;19416:31::-;;;;:::o;2055:87::-;2101:7;2128:6;;;;;;;;;;;2121:13;;2055:87;:::o;20801:163::-;2286:12;:10;:12::i;:::-;2275:23;;:7;:5;:7::i;:::-;:23;;;2267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20878:1:::1;20856:21;:23;20853:104;;;20902:10;20893:29;;:52;20923:21;20893:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;20853:104;20801:163::o:0;19492:26::-;;;;;;;;;;;;;:::o;9524:104::-;9580:13;9613:7;9606:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9524:104;:::o;13742:413::-;13835:4;13852:24;13879:11;:25;13891:12;:10;:12::i;:::-;13879:25;;;;;;;;;;;;;;;:34;13905:7;13879:34;;;;;;;;;;;;;;;;13852:61;;13952:15;13932:16;:35;;13924:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14045:67;14054:12;:10;:12::i;:::-;14068:7;14096:15;14077:16;:34;14045:8;:67::i;:::-;14143:4;14136:11;;;13742:413;;;;:::o;10936:175::-;11022:4;11039:42;11049:12;:10;:12::i;:::-;11063:9;11074:6;11039:9;:42::i;:::-;11099:4;11092:11;;10936:175;;;;:::o;11174:151::-;11263:7;11290:11;:18;11302:5;11290:18;;;;;;;;;;;;;;;:27;11309:7;11290:27;;;;;;;;;;;;;;;;11283:34;;11174:151;;;;:::o;2964:201::-;2286:12;:10;:12::i;:::-;2275:23;;:7;:5;:7::i;:::-;:23;;;2267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3073:1:::1;3053:22;;:8;:22;;::::0;3045:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3129:28;3148:8;3129:18;:28::i;:::-;2964:201:::0;:::o;773:98::-;826:7;853:10;846:17;;773:98;:::o;17426:380::-;17579:1;17562:19;;:5;:19;;;17554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17660:1;17641:21;;:7;:21;;;17633:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17744:6;17714:11;:18;17726:5;17714:18;;;;;;;;;;;;;;;:27;17733:7;17714:27;;;;;;;;;;;;;;;:36;;;;17782:7;17766:32;;17775:5;17766:32;;;17791:6;17766:32;;;;;;:::i;:::-;;;;;;;;17426:380;;;:::o;14645:733::-;14803:1;14785:20;;:6;:20;;;14777:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14887:1;14866:23;;:9;:23;;;14858:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14942:47;14963:6;14971:9;14982:6;14942:20;:47::i;:::-;15002:21;15026:9;:17;15036:6;15026:17;;;;;;;;;;;;;;;;15002:41;;15079:6;15062:13;:23;;15054:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15200:6;15184:13;:22;15164:9;:17;15174:6;15164:17;;;;;;;;;;;;;;;:42;;;;15252:6;15228:9;:20;15238:9;15228:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15293:9;15276:35;;15285:6;15276:35;;;15304:6;15276:35;;;;;;:::i;:::-;;;;;;;;15324:46;15344:6;15352:9;15363:6;15324:19;:46::i;:::-;14766:612;14645:733;;;:::o;16397:591::-;16500:1;16481:21;;:7;:21;;;16473:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16553:49;16574:7;16591:1;16595:6;16553:20;:49::i;:::-;16615:22;16640:9;:18;16650:7;16640:18;;;;;;;;;;;;;;;;16615:43;;16695:6;16677:14;:24;;16669:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16814:6;16797:14;:23;16776:9;:18;16786:7;16776:18;;;;;;;;;;;;;;;:44;;;;16858:6;16842:12;;:22;;;;;;;:::i;:::-;;;;;;;;16908:1;16882:37;;16891:7;16882:37;;;16912:6;16882:37;;;;;;:::i;:::-;;;;;;;;16932:48;16952:7;16969:1;16973:6;16932:19;:48::i;:::-;16462:526;16397:591;;:::o;3325:191::-;3399:16;3418:6;;;;;;;;;;;3399:25;;3444:8;3435:6;;:17;;;;;;;;;;;;;;;;;;3499:8;3468:40;;3489:8;3468:40;;;;;;;;;;;;3388:128;3325:191;:::o;20143:563::-;20295:10;:14;20306:2;20295:14;;;;;;;;;;;;;;;;;;;;;;;;;20294:15;:36;;;;;20314:10;:16;20325:4;20314:16;;;;;;;;;;;;;;;;;;;;;;;;;20313:17;20294:36;20286:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20386:1;20363:25;;:11;;;;;;;;;;;:25;;;20359:146;;20421:7;:5;:7::i;:::-;20413:15;;:4;:15;;;:32;;;;20438:7;:5;:7::i;:::-;20432:13;;:2;:13;;;20413:32;20405:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20487:7;;20359:146;20521:7;;;;;;;;;;;:30;;;;;20540:11;;;;;;;;;;;20532:19;;:4;:19;;;20521:30;20517:182;;;20608:16;;20598:6;20576:19;20592:2;20576:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20660:16;;20650:6;20628:19;20644:2;20628:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20576:100;20568:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20517:182;20143:563;;;;:::o;19135:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:116::-;5151:21;5166:5;5151:21;:::i;:::-;5144:5;5141:32;5131:60;;5187:1;5184;5177:12;5131:60;5081:116;:::o;5203:133::-;5246:5;5284:6;5271:20;5262:29;;5300:30;5324:5;5300:30;:::i;:::-;5203:133;;;;:::o;5342:759::-;5425:6;5433;5441;5449;5498:3;5486:9;5477:7;5473:23;5469:33;5466:120;;;5505:79;;:::i;:::-;5466:120;5625:1;5650:50;5692:7;5683:6;5672:9;5668:22;5650:50;:::i;:::-;5640:60;;5596:114;5749:2;5775:53;5820:7;5811:6;5800:9;5796:22;5775:53;:::i;:::-;5765:63;;5720:118;5877:2;5903:53;5948:7;5939:6;5928:9;5924:22;5903:53;:::i;:::-;5893:63;;5848:118;6005:2;6031:53;6076:7;6067:6;6056:9;6052:22;6031:53;:::i;:::-;6021:63;;5976:118;5342:759;;;;;;;:::o;6107:468::-;6172:6;6180;6229:2;6217:9;6208:7;6204:23;6200:32;6197:119;;;6235:79;;:::i;:::-;6197:119;6355:1;6380:53;6425:7;6416:6;6405:9;6401:22;6380:53;:::i;:::-;6370:63;;6326:117;6482:2;6508:50;6550:7;6541:6;6530:9;6526:22;6508:50;:::i;:::-;6498:60;;6453:115;6107:468;;;;;:::o;6581:329::-;6640:6;6689:2;6677:9;6668:7;6664:23;6660:32;6657:119;;;6695:79;;:::i;:::-;6657:119;6815:1;6840:53;6885:7;6876:6;6865:9;6861:22;6840:53;:::i;:::-;6830:63;;6786:117;6581:329;;;;:::o;6916:118::-;7003:24;7021:5;7003:24;:::i;:::-;6998:3;6991:37;6916:118;;:::o;7040:222::-;7133:4;7171:2;7160:9;7156:18;7148:26;;7184:71;7252:1;7241:9;7237:17;7228:6;7184:71;:::i;:::-;7040:222;;;;:::o;7268:474::-;7336:6;7344;7393:2;7381:9;7372:7;7368:23;7364:32;7361:119;;;7399:79;;:::i;:::-;7361:119;7519:1;7544:53;7589:7;7580:6;7569:9;7565:22;7544:53;:::i;:::-;7534:63;;7490:117;7646:2;7672:53;7717:7;7708:6;7697:9;7693:22;7672:53;:::i;:::-;7662:63;;7617:118;7268:474;;;;;:::o;7748:180::-;7796:77;7793:1;7786:88;7893:4;7890:1;7883:15;7917:4;7914:1;7907:15;7934:320;7978:6;8015:1;8009:4;8005:12;7995:22;;8062:1;8056:4;8052:12;8083:18;8073:81;;8139:4;8131:6;8127:17;8117:27;;8073:81;8201:2;8193:6;8190:14;8170:18;8167:38;8164:84;;8220:18;;:::i;:::-;8164:84;7985:269;7934:320;;;:::o;8260:227::-;8400:34;8396:1;8388:6;8384:14;8377:58;8469:10;8464:2;8456:6;8452:15;8445:35;8260:227;:::o;8493:366::-;8635:3;8656:67;8720:2;8715:3;8656:67;:::i;:::-;8649:74;;8732:93;8821:3;8732:93;:::i;:::-;8850:2;8845:3;8841:12;8834:19;;8493:366;;;:::o;8865:419::-;9031:4;9069:2;9058:9;9054:18;9046:26;;9118:9;9112:4;9108:20;9104:1;9093:9;9089:17;9082:47;9146:131;9272:4;9146:131;:::i;:::-;9138:139;;8865:419;;;:::o;9290:180::-;9338:77;9335:1;9328:88;9435:4;9432:1;9425:15;9459:4;9456:1;9449:15;9476:191;9516:3;9535:20;9553:1;9535:20;:::i;:::-;9530:25;;9569:20;9587:1;9569:20;:::i;:::-;9564:25;;9612:1;9609;9605:9;9598:16;;9633:3;9630:1;9627:10;9624:36;;;9640:18;;:::i;:::-;9624:36;9476:191;;;;:::o;9673:182::-;9813:34;9809:1;9801:6;9797:14;9790:58;9673:182;:::o;9861:366::-;10003:3;10024:67;10088:2;10083:3;10024:67;:::i;:::-;10017:74;;10100:93;10189:3;10100:93;:::i;:::-;10218:2;10213:3;10209:12;10202:19;;9861:366;;;:::o;10233:419::-;10399:4;10437:2;10426:9;10422:18;10414:26;;10486:9;10480:4;10476:20;10472:1;10461:9;10457:17;10450:47;10514:131;10640:4;10514:131;:::i;:::-;10506:139;;10233:419;;;:::o;10658:332::-;10779:4;10817:2;10806:9;10802:18;10794:26;;10830:71;10898:1;10887:9;10883:17;10874:6;10830:71;:::i;:::-;10911:72;10979:2;10968:9;10964:18;10955:6;10911:72;:::i;:::-;10658:332;;;;;:::o;10996:137::-;11050:5;11081:6;11075:13;11066:22;;11097:30;11121:5;11097:30;:::i;:::-;10996:137;;;;:::o;11139:345::-;11206:6;11255:2;11243:9;11234:7;11230:23;11226:32;11223:119;;;11261:79;;:::i;:::-;11223:119;11381:1;11406:61;11459:7;11450:6;11439:9;11435:22;11406:61;:::i;:::-;11396:71;;11352:125;11139:345;;;;:::o;11490:224::-;11630:34;11626:1;11618:6;11614:14;11607:58;11699:7;11694:2;11686:6;11682:15;11675:32;11490:224;:::o;11720:366::-;11862:3;11883:67;11947:2;11942:3;11883:67;:::i;:::-;11876:74;;11959:93;12048:3;11959:93;:::i;:::-;12077:2;12072:3;12068:12;12061:19;;11720:366;;;:::o;12092:419::-;12258:4;12296:2;12285:9;12281:18;12273:26;;12345:9;12339:4;12335:20;12331:1;12320:9;12316:17;12309:47;12373:131;12499:4;12373:131;:::i;:::-;12365:139;;12092:419;;;:::o;12517:225::-;12657:34;12653:1;12645:6;12641:14;12634:58;12726:8;12721:2;12713:6;12709:15;12702:33;12517:225;:::o;12748:366::-;12890:3;12911:67;12975:2;12970:3;12911:67;:::i;:::-;12904:74;;12987:93;13076:3;12987:93;:::i;:::-;13105:2;13100:3;13096:12;13089:19;;12748:366;;;:::o;13120:419::-;13286:4;13324:2;13313:9;13309:18;13301:26;;13373:9;13367:4;13363:20;13359:1;13348:9;13344:17;13337:47;13401:131;13527:4;13401:131;:::i;:::-;13393:139;;13120:419;;;:::o;13545:223::-;13685:34;13681:1;13673:6;13669:14;13662:58;13754:6;13749:2;13741:6;13737:15;13730:31;13545:223;:::o;13774:366::-;13916:3;13937:67;14001:2;13996:3;13937:67;:::i;:::-;13930:74;;14013:93;14102:3;14013:93;:::i;:::-;14131:2;14126:3;14122:12;14115:19;;13774:366;;;:::o;14146:419::-;14312:4;14350:2;14339:9;14335:18;14327:26;;14399:9;14393:4;14389:20;14385:1;14374:9;14370:17;14363:47;14427:131;14553:4;14427:131;:::i;:::-;14419:139;;14146:419;;;:::o;14571:221::-;14711:34;14707:1;14699:6;14695:14;14688:58;14780:4;14775:2;14767:6;14763:15;14756:29;14571:221;:::o;14798:366::-;14940:3;14961:67;15025:2;15020:3;14961:67;:::i;:::-;14954:74;;15037:93;15126:3;15037:93;:::i;:::-;15155:2;15150:3;15146:12;15139:19;;14798:366;;;:::o;15170:419::-;15336:4;15374:2;15363:9;15359:18;15351:26;;15423:9;15417:4;15413:20;15409:1;15398:9;15394:17;15387:47;15451:131;15577:4;15451:131;:::i;:::-;15443:139;;15170:419;;;:::o;15595:224::-;15735:34;15731:1;15723:6;15719:14;15712:58;15804:7;15799:2;15791:6;15787:15;15780:32;15595:224;:::o;15825:366::-;15967:3;15988:67;16052:2;16047:3;15988:67;:::i;:::-;15981:74;;16064:93;16153:3;16064:93;:::i;:::-;16182:2;16177:3;16173:12;16166:19;;15825:366;;;:::o;16197:419::-;16363:4;16401:2;16390:9;16386:18;16378:26;;16450:9;16444:4;16440:20;16436:1;16425:9;16421:17;16414:47;16478:131;16604:4;16478:131;:::i;:::-;16470:139;;16197:419;;;:::o;16622:222::-;16762:34;16758:1;16750:6;16746:14;16739:58;16831:5;16826:2;16818:6;16814:15;16807:30;16622:222;:::o;16850:366::-;16992:3;17013:67;17077:2;17072:3;17013:67;:::i;:::-;17006:74;;17089:93;17178:3;17089:93;:::i;:::-;17207:2;17202:3;17198:12;17191:19;;16850:366;;;:::o;17222:419::-;17388:4;17426:2;17415:9;17411:18;17403:26;;17475:9;17469:4;17465:20;17461:1;17450:9;17446:17;17439:47;17503:131;17629:4;17503:131;:::i;:::-;17495:139;;17222:419;;;:::o;17647:225::-;17787:34;17783:1;17775:6;17771:14;17764:58;17856:8;17851:2;17843:6;17839:15;17832:33;17647:225;:::o;17878:366::-;18020:3;18041:67;18105:2;18100:3;18041:67;:::i;:::-;18034:74;;18117:93;18206:3;18117:93;:::i;:::-;18235:2;18230:3;18226:12;18219:19;;17878:366;;;:::o;18250:419::-;18416:4;18454:2;18443:9;18439:18;18431:26;;18503:9;18497:4;18493:20;18489:1;18478:9;18474:17;18467:47;18531:131;18657:4;18531:131;:::i;:::-;18523:139;;18250:419;;;:::o;18675:220::-;18815:34;18811:1;18803:6;18799:14;18792:58;18884:3;18879:2;18871:6;18867:15;18860:28;18675:220;:::o;18901:366::-;19043:3;19064:67;19128:2;19123:3;19064:67;:::i;:::-;19057:74;;19140:93;19229:3;19140:93;:::i;:::-;19258:2;19253:3;19249:12;19242:19;;18901:366;;;:::o;19273:419::-;19439:4;19477:2;19466:9;19462:18;19454:26;;19526:9;19520:4;19516:20;19512:1;19501:9;19497:17;19490:47;19554:131;19680:4;19554:131;:::i;:::-;19546:139;;19273:419;;;:::o;19698:221::-;19838:34;19834:1;19826:6;19822:14;19815:58;19907:4;19902:2;19894:6;19890:15;19883:29;19698:221;:::o;19925:366::-;20067:3;20088:67;20152:2;20147:3;20088:67;:::i;:::-;20081:74;;20164:93;20253:3;20164:93;:::i;:::-;20282:2;20277:3;20273:12;20266:19;;19925:366;;;:::o;20297:419::-;20463:4;20501:2;20490:9;20486:18;20478:26;;20550:9;20544:4;20540:20;20536:1;20525:9;20521:17;20514:47;20578:131;20704:4;20578:131;:::i;:::-;20570:139;;20297:419;;;:::o;20722:194::-;20762:4;20782:20;20800:1;20782:20;:::i;:::-;20777:25;;20816:20;20834:1;20816:20;:::i;:::-;20811:25;;20860:1;20857;20853:9;20845:17;;20884:1;20878:4;20875:11;20872:37;;;20889:18;;:::i;:::-;20872:37;20722:194;;;;:::o;20922:161::-;21062:13;21058:1;21050:6;21046:14;21039:37;20922:161;:::o;21089:366::-;21231:3;21252:67;21316:2;21311:3;21252:67;:::i;:::-;21245:74;;21328:93;21417:3;21328:93;:::i;:::-;21446:2;21441:3;21437:12;21430:19;;21089:366;;;:::o;21461:419::-;21627:4;21665:2;21654:9;21650:18;21642:26;;21714:9;21708:4;21704:20;21700:1;21689:9;21685:17;21678:47;21742:131;21868:4;21742:131;:::i;:::-;21734:139;;21461:419;;;:::o;21886:172::-;22026:24;22022:1;22014:6;22010:14;22003:48;21886:172;:::o;22064:366::-;22206:3;22227:67;22291:2;22286:3;22227:67;:::i;:::-;22220:74;;22303:93;22392:3;22303:93;:::i;:::-;22421:2;22416:3;22412:12;22405:19;;22064:366;;;:::o;22436:419::-;22602:4;22640:2;22629:9;22625:18;22617:26;;22689:9;22683:4;22679:20;22675:1;22664:9;22660:17;22653:47;22717:131;22843:4;22717:131;:::i;:::-;22709:139;;22436:419;;;:::o;22861:156::-;23001:8;22997:1;22989:6;22985:14;22978:32;22861:156;:::o;23023:365::-;23165:3;23186:66;23250:1;23245:3;23186:66;:::i;:::-;23179:73;;23261:93;23350:3;23261:93;:::i;:::-;23379:2;23374:3;23370:12;23363:19;;23023:365;;;:::o;23394:419::-;23560:4;23598:2;23587:9;23583:18;23575:26;;23647:9;23641:4;23637:20;23633:1;23622:9;23618:17;23611:47;23675:131;23801:4;23675:131;:::i;:::-;23667:139;;23394:419;;;:::o

Swarm Source

ipfs://159297cc2027877127f0e7d5becc6d88cf7e3b51cfa44aed6e8f275acd09156d
[ 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.