Sepolia Testnet

Token

ARCS (ARX)
ERC-20

Overview

Max Total Supply

400,000,000 ARX

Holders

7

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
199,876,543.211 ARX
0xC20EcbEE9dE95b23F0eba4a344238563eF29fcb6
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:
ArcsToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2025-10-17
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// 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/utils/[email protected]

// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

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/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 @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 contracts/Lockable.sol

pragma solidity ^0.8.0;


/**
 * @dev Lock specified account until designated unixtime.
 */
contract Lockable is Context, Ownable {

    /**
     * @dev {address} owner cannot transfer his/her amount until {uint256} epoch.
     */
    mapping(address => uint256) private _lockups;

    /**
     * @dev When account's address is locked up, this event is emitted.
     */
    event Lockup(address indexed account, uint256 lockupTimeUntil);

    /**
     * @dev Throws if called by locked account.
     */
    modifier notLocked(address _account) {
        require(_lockups[_account] <= block.timestamp, "Lockable: caller account is locked.");
        _;
    }

    /**
     * @dev Gets the lockuptime of the specified address.
     * @param _account The address to query the the lockup of.
     * @return An uint256 unixstime the lockuptime which is locked until that time.
     */
    function lockupOf(address _account) public view returns (uint256) {
        return _lockups[_account];
    }

    /**
     * @dev Lockup a specific address until given time.
     * @param _account address The address which is locked.
     * @param _lockupTimeUntil The lockuptime which is locked until that time.
     */
    function lockup(address _account, uint256 _lockupTimeUntil) public onlyOwner {
        require(_lockups[_account] < _lockupTimeUntil, "Lockable: New lockup time is earlier than current one.");
        _lockups[_account] = _lockupTimeUntil;
        emit Lockup(_account, _lockupTimeUntil);
    }

}


// File contracts/ArcsToken.sol

pragma solidity ^0.8.0;




contract ArcsToken is ERC20, Ownable, Lockable {
    string private _name = "ARCS";
    string private _symbol = "ARX";
    uint8 private _decimals = 18;
    uint256 private _totalSupply = 400000000 * ( 10 ** uint256(_decimals) );
    uint256 private _maxSupply = 20000000000 * ( 10 ** uint256(_decimals) );

    constructor() ERC20(_name, _symbol) {
        _mint(_msgSender(), _totalSupply);
    }

    function transfer(address recipient, uint256 amount) public override notLocked(_msgSender()) returns (bool) {
        ERC20.transfer(recipient, amount);
        return true;   
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) public override notLocked(sender) returns (bool) {
        ERC20.transferFrom(sender, recipient, amount);
        return true;
    }

    function getOwner() external view returns (address) {
        return Ownable.owner();
    }

    function mint(address account, uint256 amount) public onlyOwner {
        require(ERC20.totalSupply() + amount <= _maxSupply, "ArcsToken: mint amount exceeds max supply");
        _mint(account, amount);
    }

    function burn(address account, uint256 amount) public onlyOwner {
        _burn(account, amount);
    }
}

Contract ABI

API
[{"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"lockupTimeUntil","type":"uint256"}],"name":"Lockup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_lockupTimeUntil","type":"uint256"}],"name":"lockup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"lockupOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"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"}]

60806040526040518060400160405280600481526020017f41524353000000000000000000000000000000000000000000000000000000008152506007908161004891906106fe565b506040518060400160405280600381526020017f41525800000000000000000000000000000000000000000000000000000000008152506008908161008d91906106fe565b50601260095f6101000a81548160ff021916908360ff16021790555060095f9054906101000a900460ff1660ff16600a6100c79190610929565b6317d784006100d69190610973565b600a5560095f9054906101000a900460ff1660ff16600a6100f79190610929565b6404a817c8006101079190610973565b600b55348015610115575f5ffd5b506007805461012390610525565b80601f016020809104026020016040519081016040528092919081815260200182805461014f90610525565b801561019a5780601f106101715761010080835404028352916020019161019a565b820191905f5260205f20905b81548152906001019060200180831161017d57829003601f168201915b5050505050600880546101ac90610525565b80601f01602080910402602001604051908101604052809291908181526020018280546101d890610525565b80156102235780601f106101fa57610100808354040283529160200191610223565b820191905f5260205f20905b81548152906001019060200180831161020657829003601f168201915b5050505050816003908161023791906106fe565b50806004908161024791906106fe565b50505061026661025b61028a60201b60201c565b61029160201b60201c565b61028561027761028a60201b60201c565b600a5461035460201b60201c565b610a87565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036103c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b990610a0e565b60405180910390fd5b6103d35f83836104b760201b60201c565b8060025f8282546103e49190610a2c565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546104369190610a2c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161049a9190610a6e565b60405180910390a36104b35f83836104bc60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061053c57607f821691505b60208210810361054f5761054e6104f8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610576565b6105bb8683610576565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6105ff6105fa6105f5846105d3565b6105dc565b6105d3565b9050919050565b5f819050919050565b610618836105e5565b61062c61062482610606565b848454610582565b825550505050565b5f5f905090565b610643610634565b61064e81848461060f565b505050565b5b81811015610671576106665f8261063b565b600181019050610654565b5050565b601f8211156106b65761068781610555565b61069084610567565b8101602085101561069f578190505b6106b36106ab85610567565b830182610653565b50505b505050565b5f82821c905092915050565b5f6106d65f19846008026106bb565b1980831691505092915050565b5f6106ee83836106c7565b9150826002028217905092915050565b610707826104c1565b67ffffffffffffffff8111156107205761071f6104cb565b5b61072a8254610525565b610735828285610675565b5f60209050601f831160018114610766575f8415610754578287015190505b61075e85826106e3565b8655506107c5565b601f19841661077486610555565b5f5b8281101561079b57848901518255600182019150602085019450602081019050610776565b868310156107b857848901516107b4601f8916826106c7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b600185111561084f5780860481111561082b5761082a6107cd565b5b600185161561083a5780820291505b8081029050610848856107fa565b945061080f565b94509492505050565b5f826108675760019050610922565b81610874575f9050610922565b816001811461088a5760028114610894576108c3565b6001915050610922565b60ff8411156108a6576108a56107cd565b5b8360020a9150848211156108bd576108bc6107cd565b5b50610922565b5060208310610133831016604e8410600b84101617156108f85782820a9050838111156108f3576108f26107cd565b5b610922565b6109058484846001610806565b9250905081840481111561091c5761091b6107cd565b5b81810290505b9392505050565b5f610933826105d3565b915061093e836105d3565b925061096b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610858565b905092915050565b5f61097d826105d3565b9150610988836105d3565b9250828202610996816105d3565b915082820484148315176109ad576109ac6107cd565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6109f8601f836109b4565b9150610a03826109c4565b602082019050919050565b5f6020820190508181035f830152610a25816109ec565b9050919050565b5f610a36826105d3565b9150610a41836105d3565b9250828201905080821115610a5957610a586107cd565b5b92915050565b610a68816105d3565b82525050565b5f602082019050610a815f830184610a5f565b92915050565b6122d880610a945f395ff3fe608060405234801561000f575f5ffd5b506004361061011f575f3560e01c8063893d20e8116100ab578063a7b868241161006f578063a7b8682414610309578063a9059cbb14610325578063adf9ffea14610355578063dd62ed3e14610385578063f2fde38b146103b55761011f565b8063893d20e8146102635780638da5cb5b1461028157806395d89b411461029f5780639dc29fac146102bd578063a457c2d7146102d95761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806340c10f191461020d57806370a0823114610229578063715018a6146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f5ffd5b61012b6103d1565b604051610138919061174d565b60405180910390f35b61015b600480360381019061015691906117fe565b610461565b6040516101689190611856565b60405180910390f35b61017961047e565b604051610186919061187e565b60405180910390f35b6101a960048036038101906101a49190611897565b610487565b6040516101b69190611856565b60405180910390f35b6101c7610521565b6040516101d49190611902565b60405180910390f35b6101f760048036038101906101f291906117fe565b610529565b6040516102049190611856565b60405180910390f35b610227600480360381019061022291906117fe565b6105d0565b005b610243600480360381019061023e919061191b565b6106b1565b604051610250919061187e565b60405180910390f35b6102616106f6565b005b61026b61077d565b6040516102789190611955565b60405180910390f35b61028961078b565b6040516102969190611955565b60405180910390f35b6102a76107b3565b6040516102b4919061174d565b60405180910390f35b6102d760048036038101906102d291906117fe565b610843565b005b6102f360048036038101906102ee91906117fe565b6108cd565b6040516103009190611856565b60405180910390f35b610323600480360381019061031e91906117fe565b6109b3565b005b61033f600480360381019061033a91906117fe565b610b42565b60405161034c9190611856565b60405180910390f35b61036f600480360381019061036a919061191b565b610be1565b60405161037c919061187e565b60405180910390f35b61039f600480360381019061039a919061196e565b610c27565b6040516103ac919061187e565b60405180910390f35b6103cf60048036038101906103ca919061191b565b610ca9565b005b6060600380546103e0906119d9565b80601f016020809104026020016040519081016040528092919081815260200182805461040c906119d9565b80156104575780601f1061042e57610100808354040283529160200191610457565b820191905f5260205f20905b81548152906001019060200180831161043a57829003601f168201915b5050505050905090565b5f61047461046d610d9f565b8484610da6565b6001905092915050565b5f600254905090565b5f834260065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115610509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050090611a79565b60405180910390fd5b610514858585610f69565b5060019150509392505050565b5f6012905090565b5f6105c6610535610d9f565b848460015f610542610d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105c19190611ac4565b610da6565b6001905092915050565b6105d8610d9f565b73ffffffffffffffffffffffffffffffffffffffff166105f661078b565b73ffffffffffffffffffffffffffffffffffffffff161461064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390611b41565b60405180910390fd5b600b548161065861047e565b6106629190611ac4565b11156106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a90611bcf565b60405180910390fd5b6106ad828261105b565b5050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106fe610d9f565b73ffffffffffffffffffffffffffffffffffffffff1661071c61078b565b73ffffffffffffffffffffffffffffffffffffffff1614610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990611b41565b60405180910390fd5b61077b5f6111b2565b565b5f61078661078b565b905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c2906119d9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee906119d9565b80156108395780601f1061081057610100808354040283529160200191610839565b820191905f5260205f20905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b61084b610d9f565b73ffffffffffffffffffffffffffffffffffffffff1661086961078b565b73ffffffffffffffffffffffffffffffffffffffff16146108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611b41565b60405180910390fd5b6108c98282611275565b5050565b5f5f60015f6108da610d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098b90611c5d565b60405180910390fd5b6109a861099f610d9f565b85858403610da6565b600191505092915050565b6109bb610d9f565b73ffffffffffffffffffffffffffffffffffffffff166109d961078b565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690611b41565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590611ceb565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff167fa25dc2c532ce8bb5ca6f0bbb701ea285dfa8c5fe65cdba305f88a0bab852ef8282604051610b36919061187e565b60405180910390a25050565b5f610b4b610d9f565b4260065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611a79565b60405180910390fd5b610bd58484611441565b50600191505092915050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cb1610d9f565b73ffffffffffffffffffffffffffffffffffffffff16610ccf61078b565b73ffffffffffffffffffffffffffffffffffffffff1614610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90611b41565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611d79565b60405180910390fd5b610d9c816111b2565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611e07565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990611e95565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f5c919061187e565b60405180910390a3505050565b5f610f7584848461145e565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610fbc610d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290611f23565b60405180910390fd5b61104f85611047610d9f565b858403610da6565b60019150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090611f8b565b60405180910390fd5b6110d45f83836116d3565b8060025f8282546110e59190611ac4565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111379190611ac4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161119b919061187e565b60405180910390a36111ae5f83836116d8565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90612019565b60405180910390fd5b6112ee825f836116d3565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611368906120a7565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f8282546113c591906120c5565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611429919061187e565b60405180910390a361143c835f846116d8565b505050565b5f61145461144d610d9f565b848461145e565b6001905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390612168565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906121f6565b60405180910390fd5b6115458383836116d3565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612284565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546116569190611ac4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116ba919061187e565b60405180910390a36116cd8484846116d8565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61171f826116dd565b61172981856116e7565b93506117398185602086016116f7565b61174281611705565b840191505092915050565b5f6020820190508181035f8301526117658184611715565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61179a82611771565b9050919050565b6117aa81611790565b81146117b4575f5ffd5b50565b5f813590506117c5816117a1565b92915050565b5f819050919050565b6117dd816117cb565b81146117e7575f5ffd5b50565b5f813590506117f8816117d4565b92915050565b5f5f604083850312156118145761181361176d565b5b5f611821858286016117b7565b9250506020611832858286016117ea565b9150509250929050565b5f8115159050919050565b6118508161183c565b82525050565b5f6020820190506118695f830184611847565b92915050565b611878816117cb565b82525050565b5f6020820190506118915f83018461186f565b92915050565b5f5f5f606084860312156118ae576118ad61176d565b5b5f6118bb868287016117b7565b93505060206118cc868287016117b7565b92505060406118dd868287016117ea565b9150509250925092565b5f60ff82169050919050565b6118fc816118e7565b82525050565b5f6020820190506119155f8301846118f3565b92915050565b5f602082840312156119305761192f61176d565b5b5f61193d848285016117b7565b91505092915050565b61194f81611790565b82525050565b5f6020820190506119685f830184611946565b92915050565b5f5f604083850312156119845761198361176d565b5b5f611991858286016117b7565b92505060206119a2858286016117b7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119f057607f821691505b602082108103611a0357611a026119ac565b5b50919050565b7f4c6f636b61626c653a2063616c6c6572206163636f756e74206973206c6f636b5f8201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b5f611a636023836116e7565b9150611a6e82611a09565b604082019050919050565b5f6020820190508181035f830152611a9081611a57565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ace826117cb565b9150611ad9836117cb565b9250828201905080821115611af157611af0611a97565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b2b6020836116e7565b9150611b3682611af7565b602082019050919050565b5f6020820190508181035f830152611b5881611b1f565b9050919050565b7f41726373546f6b656e3a206d696e7420616d6f756e742065786365656473206d5f8201527f617820737570706c790000000000000000000000000000000000000000000000602082015250565b5f611bb96029836116e7565b9150611bc482611b5f565b604082019050919050565b5f6020820190508181035f830152611be681611bad565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c476025836116e7565b9150611c5282611bed565b604082019050919050565b5f6020820190508181035f830152611c7481611c3b565b9050919050565b7f4c6f636b61626c653a204e6577206c6f636b75702074696d65206973206561725f8201527f6c696572207468616e2063757272656e74206f6e652e00000000000000000000602082015250565b5f611cd56036836116e7565b9150611ce082611c7b565b604082019050919050565b5f6020820190508181035f830152611d0281611cc9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d636026836116e7565b9150611d6e82611d09565b604082019050919050565b5f6020820190508181035f830152611d9081611d57565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611df16024836116e7565b9150611dfc82611d97565b604082019050919050565b5f6020820190508181035f830152611e1e81611de5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e7f6022836116e7565b9150611e8a82611e25565b604082019050919050565b5f6020820190508181035f830152611eac81611e73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611f0d6028836116e7565b9150611f1882611eb3565b604082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611f75601f836116e7565b9150611f8082611f41565b602082019050919050565b5f6020820190508181035f830152611fa281611f69565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120036021836116e7565b915061200e82611fa9565b604082019050919050565b5f6020820190508181035f83015261203081611ff7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120916022836116e7565b915061209c82612037565b604082019050919050565b5f6020820190508181035f8301526120be81612085565b9050919050565b5f6120cf826117cb565b91506120da836117cb565b92508282039050818111156120f2576120f1611a97565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6121526025836116e7565b915061215d826120f8565b604082019050919050565b5f6020820190508181035f83015261217f81612146565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6121e06023836116e7565b91506121eb82612186565b604082019050919050565b5f6020820190508181035f83015261220d816121d4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61226e6026836116e7565b915061227982612214565b604082019050919050565b5f6020820190508181035f83015261229b81612262565b905091905056fea2646970667358221220e4fa60952a6c2073e4dbbe7a82b72f1286eccfc44ed5d17f52dab7ac1b81207964736f6c634300081e0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061011f575f3560e01c8063893d20e8116100ab578063a7b868241161006f578063a7b8682414610309578063a9059cbb14610325578063adf9ffea14610355578063dd62ed3e14610385578063f2fde38b146103b55761011f565b8063893d20e8146102635780638da5cb5b1461028157806395d89b411461029f5780639dc29fac146102bd578063a457c2d7146102d95761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806340c10f191461020d57806370a0823114610229578063715018a6146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f5ffd5b61012b6103d1565b604051610138919061174d565b60405180910390f35b61015b600480360381019061015691906117fe565b610461565b6040516101689190611856565b60405180910390f35b61017961047e565b604051610186919061187e565b60405180910390f35b6101a960048036038101906101a49190611897565b610487565b6040516101b69190611856565b60405180910390f35b6101c7610521565b6040516101d49190611902565b60405180910390f35b6101f760048036038101906101f291906117fe565b610529565b6040516102049190611856565b60405180910390f35b610227600480360381019061022291906117fe565b6105d0565b005b610243600480360381019061023e919061191b565b6106b1565b604051610250919061187e565b60405180910390f35b6102616106f6565b005b61026b61077d565b6040516102789190611955565b60405180910390f35b61028961078b565b6040516102969190611955565b60405180910390f35b6102a76107b3565b6040516102b4919061174d565b60405180910390f35b6102d760048036038101906102d291906117fe565b610843565b005b6102f360048036038101906102ee91906117fe565b6108cd565b6040516103009190611856565b60405180910390f35b610323600480360381019061031e91906117fe565b6109b3565b005b61033f600480360381019061033a91906117fe565b610b42565b60405161034c9190611856565b60405180910390f35b61036f600480360381019061036a919061191b565b610be1565b60405161037c919061187e565b60405180910390f35b61039f600480360381019061039a919061196e565b610c27565b6040516103ac919061187e565b60405180910390f35b6103cf60048036038101906103ca919061191b565b610ca9565b005b6060600380546103e0906119d9565b80601f016020809104026020016040519081016040528092919081815260200182805461040c906119d9565b80156104575780601f1061042e57610100808354040283529160200191610457565b820191905f5260205f20905b81548152906001019060200180831161043a57829003601f168201915b5050505050905090565b5f61047461046d610d9f565b8484610da6565b6001905092915050565b5f600254905090565b5f834260065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115610509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050090611a79565b60405180910390fd5b610514858585610f69565b5060019150509392505050565b5f6012905090565b5f6105c6610535610d9f565b848460015f610542610d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105c19190611ac4565b610da6565b6001905092915050565b6105d8610d9f565b73ffffffffffffffffffffffffffffffffffffffff166105f661078b565b73ffffffffffffffffffffffffffffffffffffffff161461064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390611b41565b60405180910390fd5b600b548161065861047e565b6106629190611ac4565b11156106a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069a90611bcf565b60405180910390fd5b6106ad828261105b565b5050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106fe610d9f565b73ffffffffffffffffffffffffffffffffffffffff1661071c61078b565b73ffffffffffffffffffffffffffffffffffffffff1614610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990611b41565b60405180910390fd5b61077b5f6111b2565b565b5f61078661078b565b905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107c2906119d9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee906119d9565b80156108395780601f1061081057610100808354040283529160200191610839565b820191905f5260205f20905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b61084b610d9f565b73ffffffffffffffffffffffffffffffffffffffff1661086961078b565b73ffffffffffffffffffffffffffffffffffffffff16146108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611b41565b60405180910390fd5b6108c98282611275565b5050565b5f5f60015f6108da610d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098b90611c5d565b60405180910390fd5b6109a861099f610d9f565b85858403610da6565b600191505092915050565b6109bb610d9f565b73ffffffffffffffffffffffffffffffffffffffff166109d961078b565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690611b41565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590611ceb565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff167fa25dc2c532ce8bb5ca6f0bbb701ea285dfa8c5fe65cdba305f88a0bab852ef8282604051610b36919061187e565b60405180910390a25050565b5f610b4b610d9f565b4260065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541115610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611a79565b60405180910390fd5b610bd58484611441565b50600191505092915050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610cb1610d9f565b73ffffffffffffffffffffffffffffffffffffffff16610ccf61078b565b73ffffffffffffffffffffffffffffffffffffffff1614610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90611b41565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611d79565b60405180910390fd5b610d9c816111b2565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90611e07565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990611e95565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f5c919061187e565b60405180910390a3505050565b5f610f7584848461145e565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610fbc610d9f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290611f23565b60405180910390fd5b61104f85611047610d9f565b858403610da6565b60019150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090611f8b565b60405180910390fd5b6110d45f83836116d3565b8060025f8282546110e59190611ac4565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111379190611ac4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161119b919061187e565b60405180910390a36111ae5f83836116d8565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90612019565b60405180910390fd5b6112ee825f836116d3565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611368906120a7565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f8282546113c591906120c5565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611429919061187e565b60405180910390a361143c835f846116d8565b505050565b5f61145461144d610d9f565b848461145e565b6001905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390612168565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611531906121f6565b60405180910390fd5b6115458383836116d3565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612284565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546116569190611ac4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116ba919061187e565b60405180910390a36116cd8484846116d8565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61171f826116dd565b61172981856116e7565b93506117398185602086016116f7565b61174281611705565b840191505092915050565b5f6020820190508181035f8301526117658184611715565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61179a82611771565b9050919050565b6117aa81611790565b81146117b4575f5ffd5b50565b5f813590506117c5816117a1565b92915050565b5f819050919050565b6117dd816117cb565b81146117e7575f5ffd5b50565b5f813590506117f8816117d4565b92915050565b5f5f604083850312156118145761181361176d565b5b5f611821858286016117b7565b9250506020611832858286016117ea565b9150509250929050565b5f8115159050919050565b6118508161183c565b82525050565b5f6020820190506118695f830184611847565b92915050565b611878816117cb565b82525050565b5f6020820190506118915f83018461186f565b92915050565b5f5f5f606084860312156118ae576118ad61176d565b5b5f6118bb868287016117b7565b93505060206118cc868287016117b7565b92505060406118dd868287016117ea565b9150509250925092565b5f60ff82169050919050565b6118fc816118e7565b82525050565b5f6020820190506119155f8301846118f3565b92915050565b5f602082840312156119305761192f61176d565b5b5f61193d848285016117b7565b91505092915050565b61194f81611790565b82525050565b5f6020820190506119685f830184611946565b92915050565b5f5f604083850312156119845761198361176d565b5b5f611991858286016117b7565b92505060206119a2858286016117b7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806119f057607f821691505b602082108103611a0357611a026119ac565b5b50919050565b7f4c6f636b61626c653a2063616c6c6572206163636f756e74206973206c6f636b5f8201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b5f611a636023836116e7565b9150611a6e82611a09565b604082019050919050565b5f6020820190508181035f830152611a9081611a57565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ace826117cb565b9150611ad9836117cb565b9250828201905080821115611af157611af0611a97565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b2b6020836116e7565b9150611b3682611af7565b602082019050919050565b5f6020820190508181035f830152611b5881611b1f565b9050919050565b7f41726373546f6b656e3a206d696e7420616d6f756e742065786365656473206d5f8201527f617820737570706c790000000000000000000000000000000000000000000000602082015250565b5f611bb96029836116e7565b9150611bc482611b5f565b604082019050919050565b5f6020820190508181035f830152611be681611bad565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c476025836116e7565b9150611c5282611bed565b604082019050919050565b5f6020820190508181035f830152611c7481611c3b565b9050919050565b7f4c6f636b61626c653a204e6577206c6f636b75702074696d65206973206561725f8201527f6c696572207468616e2063757272656e74206f6e652e00000000000000000000602082015250565b5f611cd56036836116e7565b9150611ce082611c7b565b604082019050919050565b5f6020820190508181035f830152611d0281611cc9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d636026836116e7565b9150611d6e82611d09565b604082019050919050565b5f6020820190508181035f830152611d9081611d57565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611df16024836116e7565b9150611dfc82611d97565b604082019050919050565b5f6020820190508181035f830152611e1e81611de5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e7f6022836116e7565b9150611e8a82611e25565b604082019050919050565b5f6020820190508181035f830152611eac81611e73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611f0d6028836116e7565b9150611f1882611eb3565b604082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611f75601f836116e7565b9150611f8082611f41565b602082019050919050565b5f6020820190508181035f830152611fa281611f69565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120036021836116e7565b915061200e82611fa9565b604082019050919050565b5f6020820190508181035f83015261203081611ff7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120916022836116e7565b915061209c82612037565b604082019050919050565b5f6020820190508181035f8301526120be81612085565b9050919050565b5f6120cf826117cb565b91506120da836117cb565b92508282039050818111156120f2576120f1611a97565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6121526025836116e7565b915061215d826120f8565b604082019050919050565b5f6020820190508181035f83015261217f81612146565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6121e06023836116e7565b91506121eb82612186565b604082019050919050565b5f6020820190508181035f83015261220d816121d4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61226e6026836116e7565b915061227982612214565b604082019050919050565b5f6020820190508181035f83015261229b81612262565b905091905056fea2646970667358221220e4fa60952a6c2073e4dbbe7a82b72f1286eccfc44ed5d17f52dab7ac1b81207964736f6c634300081e0033

Deployed Bytecode Sourcemap

20894:1258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8904:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7857:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21507:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7699:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10456:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21824:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8028:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18415:103;;;:::i;:::-;;21723:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17764:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6956:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22044:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11174:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20517:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21310:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20183:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8606:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18673:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6737:100;6791:13;6824:5;6817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:100;:::o;8904:169::-;8987:4;9004:39;9013:12;:10;:12::i;:::-;9027:7;9036:6;9004:8;:39::i;:::-;9061:4;9054:11;;8904:169;;;;:::o;7857:108::-;7918:7;7945:12;;7938:19;;7857:108;:::o;21507:208::-;21623:4;21606:6;19874:15;19852:8;:18;19861:8;19852:18;;;;;;;;;;;;;;;;:37;;19844:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21640:45:::1;21659:6;21667:9;21678:6;21640:18;:45::i;:::-;;21703:4;21696:11;;21507:208:::0;;;;;;:::o;7699:93::-;7757:5;7782:2;7775:9;;7699:93;:::o;10456:215::-;10544:4;10561:80;10570:12;:10;:12::i;:::-;10584:7;10630:10;10593:11;:25;10605:12;:10;:12::i;:::-;10593:25;;;;;;;;;;;;;;;:34;10619:7;10593:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10561:8;:80::i;:::-;10659:4;10652:11;;10456:215;;;;:::o;21824:212::-;17995:12;:10;:12::i;:::-;17984:23;;:7;:5;:7::i;:::-;:23;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21939:10:::1;;21929:6;21907:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:42;;21899:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;22006:22;22012:7;22021:6;22006:5;:22::i;:::-;21824:212:::0;;:::o;8028:127::-;8102:7;8129:9;:18;8139:7;8129:18;;;;;;;;;;;;;;;;8122:25;;8028:127;;;:::o;18415:103::-;17995:12;:10;:12::i;:::-;17984:23;;:7;:5;:7::i;:::-;:23;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18480:30:::1;18507:1;18480:18;:30::i;:::-;18415:103::o:0;21723:93::-;21766:7;21793:15;:13;:15::i;:::-;21786:22;;21723:93;:::o;17764:87::-;17810:7;17837:6;;;;;;;;;;;17830:13;;17764:87;:::o;6956:104::-;7012:13;7045:7;7038:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6956:104;:::o;22044:105::-;17995:12;:10;:12::i;:::-;17984:23;;:7;:5;:7::i;:::-;:23;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22119:22:::1;22125:7;22134:6;22119:5;:22::i;:::-;22044:105:::0;;:::o;11174:413::-;11267:4;11284:24;11311:11;:25;11323:12;:10;:12::i;:::-;11311:25;;;;;;;;;;;;;;;:34;11337:7;11311:34;;;;;;;;;;;;;;;;11284:61;;11384:15;11364:16;:35;;11356:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11477:67;11486:12;:10;:12::i;:::-;11500:7;11528:15;11509:16;:34;11477:8;:67::i;:::-;11575:4;11568:11;;;11174:413;;;;:::o;20517:298::-;17995:12;:10;:12::i;:::-;17984:23;;:7;:5;:7::i;:::-;:23;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20634:16:::1;20613:8;:18;20622:8;20613:18;;;;;;;;;;;;;;;;:37;20605:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;20741:16;20720:8;:18;20729:8;20720:18;;;;;;;;;;;;;;;:37;;;;20780:8;20773:34;;;20790:16;20773:34;;;;;;:::i;:::-;;;;;;;;20517:298:::0;;:::o;21310:185::-;21412:4;21389:12;:10;:12::i;:::-;19874:15;19852:8;:18;19861:8;19852:18;;;;;;;;;;;;;;;;:37;;19844:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21429:33:::1;21444:9;21455:6;21429:14;:33::i;:::-;;21480:4;21473:11;;21310:185:::0;;;;;:::o;20183:110::-;20240:7;20267:8;:18;20276:8;20267:18;;;;;;;;;;;;;;;;20260:25;;20183:110;;;:::o;8606:151::-;8695:7;8722:11;:18;8734:5;8722:18;;;;;;;;;;;;;;;:27;8741:7;8722:27;;;;;;;;;;;;;;;;8715:34;;8606:151;;;;:::o;18673:201::-;17995:12;:10;:12::i;:::-;17984:23;;:7;:5;:7::i;:::-;:23;;;17976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18782:1:::1;18762:22;;:8;:22;;::::0;18754:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18838:28;18857:8;18838:18;:28::i;:::-;18673:201:::0;:::o;4388:98::-;4441:7;4468:10;4461:17;;4388:98;:::o;14858:380::-;15011:1;14994:19;;:5;:19;;;14986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15092:1;15073:21;;:7;:21;;;15065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15176:6;15146:11;:18;15158:5;15146:18;;;;;;;;;;;;;;;:27;15165:7;15146:27;;;;;;;;;;;;;;;:36;;;;15214:7;15198:32;;15207:5;15198:32;;;15223:6;15198:32;;;;;;:::i;:::-;;;;;;;;14858:380;;;:::o;9555:492::-;9695:4;9712:36;9722:6;9730:9;9741:6;9712:9;:36::i;:::-;9761:24;9788:11;:19;9800:6;9788:19;;;;;;;;;;;;;;;:33;9808:12;:10;:12::i;:::-;9788:33;;;;;;;;;;;;;;;;9761:60;;9860:6;9840:16;:26;;9832:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9947:57;9956:6;9964:12;:10;:12::i;:::-;9997:6;9978:16;:25;9947:8;:57::i;:::-;10035:4;10028:11;;;9555:492;;;;;:::o;13097:399::-;13200:1;13181:21;;:7;:21;;;13173:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13251:49;13280:1;13284:7;13293:6;13251:20;:49::i;:::-;13329:6;13313:12;;:22;;;;;;;:::i;:::-;;;;;;;;13368:6;13346:9;:18;13356:7;13346:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13411:7;13390:37;;13407:1;13390:37;;;13420:6;13390:37;;;;;;:::i;:::-;;;;;;;;13440:48;13468:1;13472:7;13481:6;13440:19;:48::i;:::-;13097:399;;:::o;19034:191::-;19108:16;19127:6;;;;;;;;;;;19108:25;;19153:8;19144:6;;:17;;;;;;;;;;;;;;;;;;19208:8;19177:40;;19198:8;19177:40;;;;;;;;;;;;19097:128;19034:191;:::o;13829:591::-;13932:1;13913:21;;:7;:21;;;13905:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13985:49;14006:7;14023:1;14027:6;13985:20;:49::i;:::-;14047:22;14072:9;:18;14082:7;14072:18;;;;;;;;;;;;;;;;14047:43;;14127:6;14109:14;:24;;14101:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14246:6;14229:14;:23;14208:9;:18;14218:7;14208:18;;;;;;;;;;;;;;;:44;;;;14290:6;14274:12;;:22;;;;;;;:::i;:::-;;;;;;;;14340:1;14314:37;;14323:7;14314:37;;;14344:6;14314:37;;;;;;:::i;:::-;;;;;;;;14364:48;14384:7;14401:1;14405:6;14364:19;:48::i;:::-;13894:526;13829:591;;:::o;8368:175::-;8454:4;8471:42;8481:12;:10;:12::i;:::-;8495:9;8506:6;8471:9;:42::i;:::-;8531:4;8524:11;;8368:175;;;;:::o;12077:733::-;12235:1;12217:20;;:6;:20;;;12209:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12319:1;12298:23;;:9;:23;;;12290:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12374:47;12395:6;12403:9;12414:6;12374:20;:47::i;:::-;12434:21;12458:9;:17;12468:6;12458:17;;;;;;;;;;;;;;;;12434:41;;12511:6;12494:13;:23;;12486:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12632:6;12616:13;:22;12596:9;:17;12606:6;12596:17;;;;;;;;;;;;;;;:42;;;;12684:6;12660:9;:20;12670:9;12660:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12725:9;12708:35;;12717:6;12708:35;;;12736:6;12708:35;;;;;;:::i;:::-;;;;;;;;12756:46;12776:6;12784:9;12795:6;12756:19;:46::i;:::-;12198:612;12077:733;;;:::o;15838:125::-;;;;:::o;16567: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:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:222::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:5;6629:2;6621:6;6617:15;6610:30;6425:222;:::o;6653:366::-;6795:3;6816:67;6880:2;6875:3;6816:67;:::i;:::-;6809:74;;6892:93;6981:3;6892:93;:::i;:::-;7010:2;7005:3;7001:12;6994:19;;6653:366;;;:::o;7025:419::-;7191:4;7229:2;7218:9;7214:18;7206:26;;7278:9;7272:4;7268:20;7264:1;7253:9;7249:17;7242:47;7306:131;7432:4;7306:131;:::i;:::-;7298:139;;7025:419;;;:::o;7450:180::-;7498:77;7495:1;7488:88;7595:4;7592:1;7585:15;7619:4;7616:1;7609:15;7636:191;7676:3;7695:20;7713:1;7695:20;:::i;:::-;7690:25;;7729:20;7747:1;7729:20;:::i;:::-;7724:25;;7772:1;7769;7765:9;7758:16;;7793:3;7790:1;7787:10;7784:36;;;7800:18;;:::i;:::-;7784:36;7636:191;;;;:::o;7833:182::-;7973:34;7969:1;7961:6;7957:14;7950:58;7833:182;:::o;8021:366::-;8163:3;8184:67;8248:2;8243:3;8184:67;:::i;:::-;8177:74;;8260:93;8349:3;8260:93;:::i;:::-;8378:2;8373:3;8369:12;8362:19;;8021:366;;;:::o;8393:419::-;8559:4;8597:2;8586:9;8582:18;8574:26;;8646:9;8640:4;8636:20;8632:1;8621:9;8617:17;8610:47;8674:131;8800:4;8674:131;:::i;:::-;8666:139;;8393:419;;;:::o;8818:228::-;8958:34;8954:1;8946:6;8942:14;8935:58;9027:11;9022:2;9014:6;9010:15;9003:36;8818:228;:::o;9052:366::-;9194:3;9215:67;9279:2;9274:3;9215:67;:::i;:::-;9208:74;;9291:93;9380:3;9291:93;:::i;:::-;9409:2;9404:3;9400:12;9393:19;;9052:366;;;:::o;9424:419::-;9590:4;9628:2;9617:9;9613:18;9605:26;;9677:9;9671:4;9667:20;9663:1;9652:9;9648:17;9641:47;9705:131;9831:4;9705:131;:::i;:::-;9697:139;;9424:419;;;:::o;9849:224::-;9989:34;9985:1;9977:6;9973:14;9966:58;10058:7;10053:2;10045:6;10041:15;10034:32;9849:224;:::o;10079:366::-;10221:3;10242:67;10306:2;10301:3;10242:67;:::i;:::-;10235:74;;10318:93;10407:3;10318:93;:::i;:::-;10436:2;10431:3;10427:12;10420:19;;10079:366;;;:::o;10451:419::-;10617:4;10655:2;10644:9;10640:18;10632:26;;10704:9;10698:4;10694:20;10690:1;10679:9;10675:17;10668:47;10732:131;10858:4;10732:131;:::i;:::-;10724:139;;10451:419;;;:::o;10876:241::-;11016:34;11012:1;11004:6;11000:14;10993:58;11085:24;11080:2;11072:6;11068:15;11061:49;10876:241;:::o;11123:366::-;11265:3;11286:67;11350:2;11345:3;11286:67;:::i;:::-;11279:74;;11362:93;11451:3;11362:93;:::i;:::-;11480:2;11475:3;11471:12;11464:19;;11123:366;;;:::o;11495:419::-;11661:4;11699:2;11688:9;11684:18;11676:26;;11748:9;11742:4;11738:20;11734:1;11723:9;11719:17;11712:47;11776:131;11902:4;11776:131;:::i;:::-;11768:139;;11495:419;;;:::o;11920:225::-;12060:34;12056:1;12048:6;12044:14;12037:58;12129:8;12124:2;12116:6;12112:15;12105:33;11920:225;:::o;12151:366::-;12293:3;12314:67;12378:2;12373:3;12314:67;:::i;:::-;12307:74;;12390:93;12479:3;12390:93;:::i;:::-;12508:2;12503:3;12499:12;12492:19;;12151:366;;;:::o;12523:419::-;12689:4;12727:2;12716:9;12712:18;12704:26;;12776:9;12770:4;12766:20;12762:1;12751:9;12747:17;12740:47;12804:131;12930:4;12804:131;:::i;:::-;12796:139;;12523:419;;;:::o;12948:223::-;13088:34;13084:1;13076:6;13072:14;13065:58;13157:6;13152:2;13144:6;13140:15;13133:31;12948:223;:::o;13177:366::-;13319:3;13340:67;13404:2;13399:3;13340:67;:::i;:::-;13333:74;;13416:93;13505:3;13416:93;:::i;:::-;13534:2;13529:3;13525:12;13518:19;;13177:366;;;:::o;13549:419::-;13715:4;13753:2;13742:9;13738:18;13730:26;;13802:9;13796:4;13792:20;13788:1;13777:9;13773:17;13766:47;13830:131;13956:4;13830:131;:::i;:::-;13822:139;;13549:419;;;:::o;13974:221::-;14114:34;14110:1;14102:6;14098:14;14091:58;14183:4;14178:2;14170:6;14166:15;14159:29;13974:221;:::o;14201:366::-;14343:3;14364:67;14428:2;14423:3;14364:67;:::i;:::-;14357:74;;14440:93;14529:3;14440:93;:::i;:::-;14558:2;14553:3;14549:12;14542:19;;14201:366;;;:::o;14573:419::-;14739:4;14777:2;14766:9;14762:18;14754:26;;14826:9;14820:4;14816:20;14812:1;14801:9;14797:17;14790:47;14854:131;14980:4;14854:131;:::i;:::-;14846:139;;14573:419;;;:::o;14998:227::-;15138:34;15134:1;15126:6;15122:14;15115:58;15207:10;15202:2;15194:6;15190:15;15183:35;14998:227;:::o;15231:366::-;15373:3;15394:67;15458:2;15453:3;15394:67;:::i;:::-;15387:74;;15470:93;15559:3;15470:93;:::i;:::-;15588:2;15583:3;15579:12;15572:19;;15231:366;;;:::o;15603:419::-;15769:4;15807:2;15796:9;15792:18;15784:26;;15856:9;15850:4;15846:20;15842:1;15831:9;15827:17;15820:47;15884:131;16010:4;15884:131;:::i;:::-;15876:139;;15603:419;;;:::o;16028:181::-;16168:33;16164:1;16156:6;16152:14;16145:57;16028:181;:::o;16215:366::-;16357:3;16378:67;16442:2;16437:3;16378:67;:::i;:::-;16371:74;;16454:93;16543:3;16454:93;:::i;:::-;16572:2;16567:3;16563:12;16556:19;;16215:366;;;:::o;16587:419::-;16753:4;16791:2;16780:9;16776:18;16768:26;;16840:9;16834:4;16830:20;16826:1;16815:9;16811:17;16804:47;16868:131;16994:4;16868:131;:::i;:::-;16860:139;;16587:419;;;:::o;17012:220::-;17152:34;17148:1;17140:6;17136:14;17129:58;17221:3;17216:2;17208:6;17204:15;17197:28;17012:220;:::o;17238:366::-;17380:3;17401:67;17465:2;17460:3;17401:67;:::i;:::-;17394:74;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17238:366;;;:::o;17610:419::-;17776:4;17814:2;17803:9;17799:18;17791:26;;17863:9;17857:4;17853:20;17849:1;17838:9;17834:17;17827:47;17891:131;18017:4;17891:131;:::i;:::-;17883:139;;17610:419;;;:::o;18035:221::-;18175:34;18171:1;18163:6;18159:14;18152:58;18244:4;18239:2;18231:6;18227:15;18220:29;18035:221;:::o;18262:366::-;18404:3;18425:67;18489:2;18484:3;18425:67;:::i;:::-;18418:74;;18501:93;18590:3;18501:93;:::i;:::-;18619:2;18614:3;18610:12;18603:19;;18262:366;;;:::o;18634:419::-;18800:4;18838:2;18827:9;18823:18;18815:26;;18887:9;18881:4;18877:20;18873:1;18862:9;18858:17;18851:47;18915:131;19041:4;18915:131;:::i;:::-;18907:139;;18634:419;;;:::o;19059:194::-;19099:4;19119:20;19137:1;19119:20;:::i;:::-;19114:25;;19153:20;19171:1;19153:20;:::i;:::-;19148:25;;19197:1;19194;19190:9;19182:17;;19221:1;19215:4;19212:11;19209:37;;;19226:18;;:::i;:::-;19209:37;19059:194;;;;:::o;19259:224::-;19399:34;19395:1;19387:6;19383:14;19376:58;19468:7;19463:2;19455:6;19451:15;19444:32;19259:224;:::o;19489:366::-;19631:3;19652:67;19716:2;19711:3;19652:67;:::i;:::-;19645:74;;19728:93;19817:3;19728:93;:::i;:::-;19846:2;19841:3;19837:12;19830:19;;19489:366;;;:::o;19861:419::-;20027:4;20065:2;20054:9;20050:18;20042:26;;20114:9;20108:4;20104:20;20100:1;20089:9;20085:17;20078:47;20142:131;20268:4;20142:131;:::i;:::-;20134:139;;19861:419;;;:::o;20286:222::-;20426:34;20422:1;20414:6;20410:14;20403:58;20495:5;20490:2;20482:6;20478:15;20471:30;20286:222;:::o;20514:366::-;20656:3;20677:67;20741:2;20736:3;20677:67;:::i;:::-;20670:74;;20753:93;20842:3;20753:93;:::i;:::-;20871:2;20866:3;20862:12;20855:19;;20514:366;;;:::o;20886:419::-;21052:4;21090:2;21079:9;21075:18;21067:26;;21139:9;21133:4;21129:20;21125:1;21114:9;21110:17;21103:47;21167:131;21293:4;21167:131;:::i;:::-;21159:139;;20886:419;;;:::o;21311:225::-;21451:34;21447:1;21439:6;21435:14;21428:58;21520:8;21515:2;21507:6;21503:15;21496:33;21311:225;:::o;21542:366::-;21684:3;21705:67;21769:2;21764:3;21705:67;:::i;:::-;21698:74;;21781:93;21870:3;21781:93;:::i;:::-;21899:2;21894:3;21890:12;21883:19;;21542:366;;;:::o;21914:419::-;22080:4;22118:2;22107:9;22103:18;22095:26;;22167:9;22161:4;22157:20;22153:1;22142:9;22138:17;22131:47;22195:131;22321:4;22195:131;:::i;:::-;22187:139;;21914:419;;;:::o

Swarm Source

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