ETH Price: $3,061.43 (+2.72%)
Gas: 1 Gwei

Token

AOC Token (AOC)
 

Overview

Max Total Supply

200,000,000,000,000,000,005,700,000,000,000,100,000,000,000,000 AOC

Holders

64

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
232,543,152,975.728030823799192454 AOC

Value
$0.00
0x3d0de7e4599f0f81776c4f46d8101ccfd5a852c6
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:
AOC

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-01
*/

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

// SPDX-Licence-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// SPDX-Licence-Identifer: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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/aoc.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;


contract AOC is ERC20 {
    constructor() ERC20("AOC Token", "AOC") {
        _mint(msg.sender, 100000000000000 * 10 ** decimals());
    }

    function airdrop(address[] memory recipients, uint256[] memory amounts) public {
        require(recipients.length == amounts.length, "Invalid input length");

        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], amounts[i] * 10 ** decimals());
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f414f4320546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414f43000000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004e6565b508060049081620000a19190620004e6565b505050620000e633620000b9620000ec60201b60201c565b600a620000c791906200075d565b655af3107a4000620000da9190620007ae565b620000f560201b60201c565b620008e5565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000167576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015e906200085a565b60405180910390fd5b6200017b600083836200026260201b60201c565b80600260008282546200018f91906200087c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002429190620008c8565b60405180910390a36200025e600083836200026760201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ee57607f821691505b602082108103620003045762000303620002a6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200036e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200032f565b6200037a86836200032f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003c7620003c1620003bb8462000392565b6200039c565b62000392565b9050919050565b6000819050919050565b620003e383620003a6565b620003fb620003f282620003ce565b8484546200033c565b825550505050565b600090565b6200041262000403565b6200041f818484620003d8565b505050565b5b8181101562000447576200043b60008262000408565b60018101905062000425565b5050565b601f821115620004965762000460816200030a565b6200046b846200031f565b810160208510156200047b578190505b620004936200048a856200031f565b83018262000424565b50505b505050565b600082821c905092915050565b6000620004bb600019846008026200049b565b1980831691505092915050565b6000620004d68383620004a8565b9150826002028217905092915050565b620004f1826200026c565b67ffffffffffffffff8111156200050d576200050c62000277565b5b620005198254620002d5565b620005268282856200044b565b600060209050601f8311600181146200055e576000841562000549578287015190505b620005558582620004c8565b865550620005c5565b601f1984166200056e866200030a565b60005b82811015620005985784890151825560018201915060208501945060208101905062000571565b86831015620005b85784890151620005b4601f891682620004a8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200065b57808604811115620006335762000632620005cd565b5b6001851615620006435780820291505b80810290506200065385620005fc565b945062000613565b94509492505050565b60008262000676576001905062000749565b8162000686576000905062000749565b81600181146200069f5760028114620006aa57620006e0565b600191505062000749565b60ff841115620006bf57620006be620005cd565b5b8360020a915084821115620006d957620006d8620005cd565b5b5062000749565b5060208310610133831016604e8410600b84101617156200071a5782820a905083811115620007145762000713620005cd565b5b62000749565b62000729848484600162000609565b92509050818404811115620007435762000742620005cd565b5b81810290505b9392505050565b600060ff82169050919050565b60006200076a8262000392565b9150620007778362000750565b9250620007a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000664565b905092915050565b6000620007bb8262000392565b9150620007c88362000392565b9250828202620007d88162000392565b91508282048414831517620007f257620007f1620005cd565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000842601f83620007f9565b91506200084f826200080a565b602082019050919050565b60006020820190508181036000830152620008758162000833565b9050919050565b6000620008898262000392565b9150620008968362000392565b9250828201905080821115620008b157620008b0620005cd565b5b92915050565b620008c28162000392565b82525050565b6000602082019050620008df6000830184620008b7565b92915050565b611a1180620008f56000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063672434821161007157806367243482146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610d4d565b60405180910390f35b6100f160048036038101906100ec9190610e17565b61032f565b6040516100fe9190610e72565b60405180910390f35b61010f610352565b60405161011c9190610e9c565b60405180910390f35b61013f600480360381019061013a9190610eb7565b61035c565b60405161014c9190610e72565b60405180910390f35b61015d61038b565b60405161016a9190610f26565b60405180910390f35b61018d60048036038101906101889190610e17565b610394565b60405161019a9190610e72565b60405180910390f35b6101bd60048036038101906101b8919061114c565b6103cb565b005b6101d960048036038101906101d491906111c4565b61048f565b6040516101e69190610e9c565b60405180910390f35b6101f76104d7565b6040516102049190610d4d565b60405180910390f35b61022760048036038101906102229190610e17565b610569565b6040516102349190610e72565b60405180910390f35b61025760048036038101906102529190610e17565b6105e0565b6040516102649190610e72565b60405180910390f35b610287600480360381019061028291906111f1565b610603565b6040516102949190610e9c565b60405180910390f35b6060600380546102ac90611260565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890611260565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a61068a565b9050610347818585610692565b600191505092915050565b6000600254905090565b60008061036761068a565b905061037485828561085b565b61037f8585856108e7565b60019150509392505050565b60006012905090565b60008061039f61068a565b90506103c08185856103b18589610603565b6103bb91906112c0565b610692565b600191505092915050565b805182511461040f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040690611340565b60405180910390fd5b60005b825181101561048a5761047783828151811061043157610430611360565b5b602002602001015161044161038b565b600a61044d91906114c2565b8484815181106104605761045f611360565b5b6020026020010151610472919061150d565b610b5d565b80806104829061154f565b915050610412565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104e690611260565b80601f016020809104026020016040519081016040528092919081815260200182805461051290611260565b801561055f5780601f106105345761010080835404028352916020019161055f565b820191906000526020600020905b81548152906001019060200180831161054257829003601f168201915b5050505050905090565b60008061057461068a565b905060006105828286610603565b9050838110156105c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105be90611609565b60405180910390fd5b6105d48286868403610692565b60019250505092915050565b6000806105eb61068a565b90506105f88185856108e7565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f89061169b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107679061172d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161084e9190610e9c565b60405180910390a3505050565b60006108678484610603565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108e157818110156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611799565b60405180910390fd5b6108e08484848403610692565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d9061182b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906118bd565b60405180910390fd5b6109d0838383610cb3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061194f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b449190610e9c565b60405180910390a3610b57848484610cb8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906119bb565b60405180910390fd5b610bd860008383610cb3565b8060026000828254610bea91906112c0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c9b9190610e9c565b60405180910390a3610caf60008383610cb8565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610cf7578082015181840152602081019050610cdc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d1f82610cbd565b610d298185610cc8565b9350610d39818560208601610cd9565b610d4281610d03565b840191505092915050565b60006020820190508181036000830152610d678184610d14565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dae82610d83565b9050919050565b610dbe81610da3565b8114610dc957600080fd5b50565b600081359050610ddb81610db5565b92915050565b6000819050919050565b610df481610de1565b8114610dff57600080fd5b50565b600081359050610e1181610deb565b92915050565b60008060408385031215610e2e57610e2d610d79565b5b6000610e3c85828601610dcc565b9250506020610e4d85828601610e02565b9150509250929050565b60008115159050919050565b610e6c81610e57565b82525050565b6000602082019050610e876000830184610e63565b92915050565b610e9681610de1565b82525050565b6000602082019050610eb16000830184610e8d565b92915050565b600080600060608486031215610ed057610ecf610d79565b5b6000610ede86828701610dcc565b9350506020610eef86828701610dcc565b9250506040610f0086828701610e02565b9150509250925092565b600060ff82169050919050565b610f2081610f0a565b82525050565b6000602082019050610f3b6000830184610f17565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f7e82610d03565b810181811067ffffffffffffffff82111715610f9d57610f9c610f46565b5b80604052505050565b6000610fb0610d6f565b9050610fbc8282610f75565b919050565b600067ffffffffffffffff821115610fdc57610fdb610f46565b5b602082029050602081019050919050565b600080fd5b600061100561100084610fc1565b610fa6565b9050808382526020820190506020840283018581111561102857611027610fed565b5b835b81811015611051578061103d8882610dcc565b84526020840193505060208101905061102a565b5050509392505050565b600082601f8301126110705761106f610f41565b5b8135611080848260208601610ff2565b91505092915050565b600067ffffffffffffffff8211156110a4576110a3610f46565b5b602082029050602081019050919050565b60006110c86110c384611089565b610fa6565b905080838252602082019050602084028301858111156110eb576110ea610fed565b5b835b8181101561111457806111008882610e02565b8452602084019350506020810190506110ed565b5050509392505050565b600082601f83011261113357611132610f41565b5b81356111438482602086016110b5565b91505092915050565b6000806040838503121561116357611162610d79565b5b600083013567ffffffffffffffff81111561118157611180610d7e565b5b61118d8582860161105b565b925050602083013567ffffffffffffffff8111156111ae576111ad610d7e565b5b6111ba8582860161111e565b9150509250929050565b6000602082840312156111da576111d9610d79565b5b60006111e884828501610dcc565b91505092915050565b6000806040838503121561120857611207610d79565b5b600061121685828601610dcc565b925050602061122785828601610dcc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061127857607f821691505b60208210810361128b5761128a611231565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112cb82610de1565b91506112d683610de1565b92508282019050808211156112ee576112ed611291565b5b92915050565b7f496e76616c696420696e707574206c656e677468000000000000000000000000600082015250565b600061132a601483610cc8565b9150611335826112f4565b602082019050919050565b600060208201905081810360008301526113598161131d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156113e6578086048111156113c2576113c1611291565b5b60018516156113d15780820291505b80810290506113df8561138f565b94506113a6565b94509492505050565b6000826113ff57600190506114bb565b8161140d57600090506114bb565b8160018114611423576002811461142d5761145c565b60019150506114bb565b60ff84111561143f5761143e611291565b5b8360020a91508482111561145657611455611291565b5b506114bb565b5060208310610133831016604e8410600b84101617156114915782820a90508381111561148c5761148b611291565b5b6114bb565b61149e848484600161139c565b925090508184048111156114b5576114b4611291565b5b81810290505b9392505050565b60006114cd82610de1565b91506114d883610f0a565b92506115057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846113ef565b905092915050565b600061151882610de1565b915061152383610de1565b925082820261153181610de1565b9150828204841483151761154857611547611291565b5b5092915050565b600061155a82610de1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361158c5761158b611291565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f3602583610cc8565b91506115fe82611597565b604082019050919050565b60006020820190508181036000830152611622816115e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611685602483610cc8565b915061169082611629565b604082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611717602283610cc8565b9150611722826116bb565b604082019050919050565b600060208201905081810360008301526117468161170a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611783601d83610cc8565b915061178e8261174d565b602082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611815602583610cc8565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118a7602383610cc8565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611939602683610cc8565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006119a5601f83610cc8565b91506119b08261196f565b602082019050919050565b600060208201905081810360008301526119d481611998565b905091905056fea26469706673582212208a87251d6a64289e609f122dab2329cff4474ac86122e968a567ff1a05e3d95964736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063672434821161007157806367243482146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610d4d565b60405180910390f35b6100f160048036038101906100ec9190610e17565b61032f565b6040516100fe9190610e72565b60405180910390f35b61010f610352565b60405161011c9190610e9c565b60405180910390f35b61013f600480360381019061013a9190610eb7565b61035c565b60405161014c9190610e72565b60405180910390f35b61015d61038b565b60405161016a9190610f26565b60405180910390f35b61018d60048036038101906101889190610e17565b610394565b60405161019a9190610e72565b60405180910390f35b6101bd60048036038101906101b8919061114c565b6103cb565b005b6101d960048036038101906101d491906111c4565b61048f565b6040516101e69190610e9c565b60405180910390f35b6101f76104d7565b6040516102049190610d4d565b60405180910390f35b61022760048036038101906102229190610e17565b610569565b6040516102349190610e72565b60405180910390f35b61025760048036038101906102529190610e17565b6105e0565b6040516102649190610e72565b60405180910390f35b610287600480360381019061028291906111f1565b610603565b6040516102949190610e9c565b60405180910390f35b6060600380546102ac90611260565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890611260565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a61068a565b9050610347818585610692565b600191505092915050565b6000600254905090565b60008061036761068a565b905061037485828561085b565b61037f8585856108e7565b60019150509392505050565b60006012905090565b60008061039f61068a565b90506103c08185856103b18589610603565b6103bb91906112c0565b610692565b600191505092915050565b805182511461040f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040690611340565b60405180910390fd5b60005b825181101561048a5761047783828151811061043157610430611360565b5b602002602001015161044161038b565b600a61044d91906114c2565b8484815181106104605761045f611360565b5b6020026020010151610472919061150d565b610b5d565b80806104829061154f565b915050610412565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104e690611260565b80601f016020809104026020016040519081016040528092919081815260200182805461051290611260565b801561055f5780601f106105345761010080835404028352916020019161055f565b820191906000526020600020905b81548152906001019060200180831161054257829003601f168201915b5050505050905090565b60008061057461068a565b905060006105828286610603565b9050838110156105c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105be90611609565b60405180910390fd5b6105d48286868403610692565b60019250505092915050565b6000806105eb61068a565b90506105f88185856108e7565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f89061169b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107679061172d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161084e9190610e9c565b60405180910390a3505050565b60006108678484610603565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108e157818110156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90611799565b60405180910390fd5b6108e08484848403610692565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d9061182b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bc906118bd565b60405180910390fd5b6109d0838383610cb3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061194f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b449190610e9c565b60405180910390a3610b57848484610cb8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906119bb565b60405180910390fd5b610bd860008383610cb3565b8060026000828254610bea91906112c0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c9b9190610e9c565b60405180910390a3610caf60008383610cb8565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610cf7578082015181840152602081019050610cdc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d1f82610cbd565b610d298185610cc8565b9350610d39818560208601610cd9565b610d4281610d03565b840191505092915050565b60006020820190508181036000830152610d678184610d14565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dae82610d83565b9050919050565b610dbe81610da3565b8114610dc957600080fd5b50565b600081359050610ddb81610db5565b92915050565b6000819050919050565b610df481610de1565b8114610dff57600080fd5b50565b600081359050610e1181610deb565b92915050565b60008060408385031215610e2e57610e2d610d79565b5b6000610e3c85828601610dcc565b9250506020610e4d85828601610e02565b9150509250929050565b60008115159050919050565b610e6c81610e57565b82525050565b6000602082019050610e876000830184610e63565b92915050565b610e9681610de1565b82525050565b6000602082019050610eb16000830184610e8d565b92915050565b600080600060608486031215610ed057610ecf610d79565b5b6000610ede86828701610dcc565b9350506020610eef86828701610dcc565b9250506040610f0086828701610e02565b9150509250925092565b600060ff82169050919050565b610f2081610f0a565b82525050565b6000602082019050610f3b6000830184610f17565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f7e82610d03565b810181811067ffffffffffffffff82111715610f9d57610f9c610f46565b5b80604052505050565b6000610fb0610d6f565b9050610fbc8282610f75565b919050565b600067ffffffffffffffff821115610fdc57610fdb610f46565b5b602082029050602081019050919050565b600080fd5b600061100561100084610fc1565b610fa6565b9050808382526020820190506020840283018581111561102857611027610fed565b5b835b81811015611051578061103d8882610dcc565b84526020840193505060208101905061102a565b5050509392505050565b600082601f8301126110705761106f610f41565b5b8135611080848260208601610ff2565b91505092915050565b600067ffffffffffffffff8211156110a4576110a3610f46565b5b602082029050602081019050919050565b60006110c86110c384611089565b610fa6565b905080838252602082019050602084028301858111156110eb576110ea610fed565b5b835b8181101561111457806111008882610e02565b8452602084019350506020810190506110ed565b5050509392505050565b600082601f83011261113357611132610f41565b5b81356111438482602086016110b5565b91505092915050565b6000806040838503121561116357611162610d79565b5b600083013567ffffffffffffffff81111561118157611180610d7e565b5b61118d8582860161105b565b925050602083013567ffffffffffffffff8111156111ae576111ad610d7e565b5b6111ba8582860161111e565b9150509250929050565b6000602082840312156111da576111d9610d79565b5b60006111e884828501610dcc565b91505092915050565b6000806040838503121561120857611207610d79565b5b600061121685828601610dcc565b925050602061122785828601610dcc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061127857607f821691505b60208210810361128b5761128a611231565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112cb82610de1565b91506112d683610de1565b92508282019050808211156112ee576112ed611291565b5b92915050565b7f496e76616c696420696e707574206c656e677468000000000000000000000000600082015250565b600061132a601483610cc8565b9150611335826112f4565b602082019050919050565b600060208201905081810360008301526113598161131d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156113e6578086048111156113c2576113c1611291565b5b60018516156113d15780820291505b80810290506113df8561138f565b94506113a6565b94509492505050565b6000826113ff57600190506114bb565b8161140d57600090506114bb565b8160018114611423576002811461142d5761145c565b60019150506114bb565b60ff84111561143f5761143e611291565b5b8360020a91508482111561145657611455611291565b5b506114bb565b5060208310610133831016604e8410600b84101617156114915782820a90508381111561148c5761148b611291565b5b6114bb565b61149e848484600161139c565b925090508184048111156114b5576114b4611291565b5b81810290505b9392505050565b60006114cd82610de1565b91506114d883610f0a565b92506115057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846113ef565b905092915050565b600061151882610de1565b915061152383610de1565b925082820261153181610de1565b9150828204841483151761154857611547611291565b5b5092915050565b600061155a82610de1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361158c5761158b611291565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115f3602583610cc8565b91506115fe82611597565b604082019050919050565b60006020820190508181036000830152611622816115e6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611685602483610cc8565b915061169082611629565b604082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611717602283610cc8565b9150611722826116bb565b604082019050919050565b600060208201905081810360008301526117468161170a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611783601d83610cc8565b915061178e8261174d565b602082019050919050565b600060208201905081810360008301526117b281611776565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611815602583610cc8565b9150611820826117b9565b604082019050919050565b6000602082019050818103600083015261184481611808565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118a7602383610cc8565b91506118b28261184b565b604082019050919050565b600060208201905081810360008301526118d68161189a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611939602683610cc8565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006119a5601f83610cc8565b91506119b08261196f565b602082019050919050565b600060208201905081810360008301526119d481611998565b905091905056fea26469706673582212208a87251d6a64289e609f122dab2329cff4474ac86122e968a567ff1a05e3d95964736f6c63430008130033

Deployed Bytecode Sourcemap

17934:456:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6652:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9003:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7772:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9784:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7614:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10488:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18083:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7943:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11229:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8276:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8532:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6652:100;6706:13;6739:5;6732:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6652:100;:::o;9003:201::-;9086:4;9103:13;9119:12;:10;:12::i;:::-;9103:28;;9142:32;9151:5;9158:7;9167:6;9142:8;:32::i;:::-;9192:4;9185:11;;;9003:201;;;;:::o;7772:108::-;7833:7;7860:12;;7853:19;;7772:108;:::o;9784:295::-;9915:4;9932:15;9950:12;:10;:12::i;:::-;9932:30;;9973:38;9989:4;9995:7;10004:6;9973:15;:38::i;:::-;10022:27;10032:4;10038:2;10042:6;10022:9;:27::i;:::-;10067:4;10060:11;;;9784:295;;;;;:::o;7614:93::-;7672:5;7697:2;7690:9;;7614:93;:::o;10488:238::-;10576:4;10593:13;10609:12;:10;:12::i;:::-;10593:28;;10632:64;10641:5;10648:7;10685:10;10657:25;10667:5;10674:7;10657:9;:25::i;:::-;:38;;;;:::i;:::-;10632:8;:64::i;:::-;10714:4;10707:11;;;10488:238;;;;:::o;18083:304::-;18202:7;:14;18181:10;:17;:35;18173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18259:9;18254:126;18278:10;:17;18274:1;:21;18254:126;;;18317:51;18323:10;18334:1;18323:13;;;;;;;;:::i;:::-;;;;;;;;18357:10;:8;:10::i;:::-;18351:2;:16;;;;:::i;:::-;18338:7;18346:1;18338:10;;;;;;;;:::i;:::-;;;;;;;;:29;;;;:::i;:::-;18317:5;:51::i;:::-;18297:3;;;;;:::i;:::-;;;;18254:126;;;;18083:304;;:::o;7943:127::-;8017:7;8044:9;:18;8054:7;8044:18;;;;;;;;;;;;;;;;8037:25;;7943:127;;;:::o;6871:104::-;6927:13;6960:7;6953:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6871:104;:::o;11229:436::-;11322:4;11339:13;11355:12;:10;:12::i;:::-;11339:28;;11378:24;11405:25;11415:5;11422:7;11405:9;:25::i;:::-;11378:52;;11469:15;11449:16;:35;;11441:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11562:60;11571:5;11578:7;11606:15;11587:16;:34;11562:8;:60::i;:::-;11653:4;11646:11;;;;11229:436;;;;:::o;8276:193::-;8355:4;8372:13;8388:12;:10;:12::i;:::-;8372:28;;8411;8421:5;8428:2;8432:6;8411:9;:28::i;:::-;8457:4;8450:11;;;8276:193;;;;:::o;8532:151::-;8621:7;8648:11;:18;8660:5;8648:18;;;;;;;;;;;;;;;:27;8667:7;8648:27;;;;;;;;;;;;;;;;8641:34;;8532:151;;;;:::o;783:98::-;836:7;863:10;856:17;;783:98;:::o;15256:380::-;15409:1;15392:19;;:5;:19;;;15384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15490:1;15471:21;;:7;:21;;;15463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15574:6;15544:11;:18;15556:5;15544:18;;;;;;;;;;;;;;;:27;15563:7;15544:27;;;;;;;;;;;;;;;:36;;;;15612:7;15596:32;;15605:5;15596:32;;;15621:6;15596:32;;;;;;:::i;:::-;;;;;;;;15256:380;;;:::o;15927:453::-;16062:24;16089:25;16099:5;16106:7;16089:9;:25::i;:::-;16062:52;;16149:17;16129:16;:37;16125:248;;16211:6;16191:16;:26;;16183:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16295:51;16304:5;16311:7;16339:6;16320:16;:25;16295:8;:51::i;:::-;16125:248;16051:329;15927:453;;;:::o;12135:840::-;12282:1;12266:18;;:4;:18;;;12258:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12359:1;12345:16;;:2;:16;;;12337:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12414:38;12435:4;12441:2;12445:6;12414:20;:38::i;:::-;12465:19;12487:9;:15;12497:4;12487:15;;;;;;;;;;;;;;;;12465:37;;12536:6;12521:11;:21;;12513:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12653:6;12639:11;:20;12621:9;:15;12631:4;12621:15;;;;;;;;;;;;;;;:38;;;;12856:6;12839:9;:13;12849:2;12839:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12906:2;12891:26;;12900:4;12891:26;;;12910:6;12891:26;;;;;;:::i;:::-;;;;;;;;12930:37;12950:4;12956:2;12960:6;12930:19;:37::i;:::-;12247:728;12135:840;;;:::o;13262:548::-;13365:1;13346:21;;:7;:21;;;13338:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13416:49;13445:1;13449:7;13458:6;13416:20;:49::i;:::-;13494:6;13478:12;;:22;;;;;;;:::i;:::-;;;;;;;;13671:6;13649:9;:18;13659:7;13649:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13725:7;13704:37;;13721:1;13704:37;;;13734:6;13704:37;;;;;;:::i;:::-;;;;;;;;13754:48;13782:1;13786:7;13795:6;13754:19;:48::i;:::-;13262:548;;:::o;16980:125::-;;;;:::o;17709: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:180;5024:77;5021:1;5014:88;5121:4;5118:1;5111:15;5145:4;5142:1;5135:15;5162:281;5245:27;5267:4;5245:27;:::i;:::-;5237:6;5233:40;5375:6;5363:10;5360:22;5339:18;5327:10;5324:34;5321:62;5318:88;;;5386:18;;:::i;:::-;5318:88;5426:10;5422:2;5415:22;5205:238;5162:281;;:::o;5449:129::-;5483:6;5510:20;;:::i;:::-;5500:30;;5539:33;5567:4;5559:6;5539:33;:::i;:::-;5449:129;;;:::o;5584:311::-;5661:4;5751:18;5743:6;5740:30;5737:56;;;5773:18;;:::i;:::-;5737:56;5823:4;5815:6;5811:17;5803:25;;5883:4;5877;5873:15;5865:23;;5584:311;;;:::o;5901:117::-;6010:1;6007;6000:12;6041:710;6137:5;6162:81;6178:64;6235:6;6178:64;:::i;:::-;6162:81;:::i;:::-;6153:90;;6263:5;6292:6;6285:5;6278:21;6326:4;6319:5;6315:16;6308:23;;6379:4;6371:6;6367:17;6359:6;6355:30;6408:3;6400:6;6397:15;6394:122;;;6427:79;;:::i;:::-;6394:122;6542:6;6525:220;6559:6;6554:3;6551:15;6525:220;;;6634:3;6663:37;6696:3;6684:10;6663:37;:::i;:::-;6658:3;6651:50;6730:4;6725:3;6721:14;6714:21;;6601:144;6585:4;6580:3;6576:14;6569:21;;6525:220;;;6529:21;6143:608;;6041:710;;;;;:::o;6774:370::-;6845:5;6894:3;6887:4;6879:6;6875:17;6871:27;6861:122;;6902:79;;:::i;:::-;6861:122;7019:6;7006:20;7044:94;7134:3;7126:6;7119:4;7111:6;7107:17;7044:94;:::i;:::-;7035:103;;6851:293;6774:370;;;;:::o;7150:311::-;7227:4;7317:18;7309:6;7306:30;7303:56;;;7339:18;;:::i;:::-;7303:56;7389:4;7381:6;7377:17;7369:25;;7449:4;7443;7439:15;7431:23;;7150:311;;;:::o;7484:710::-;7580:5;7605:81;7621:64;7678:6;7621:64;:::i;:::-;7605:81;:::i;:::-;7596:90;;7706:5;7735:6;7728:5;7721:21;7769:4;7762:5;7758:16;7751:23;;7822:4;7814:6;7810:17;7802:6;7798:30;7851:3;7843:6;7840:15;7837:122;;;7870:79;;:::i;:::-;7837:122;7985:6;7968:220;8002:6;7997:3;7994:15;7968:220;;;8077:3;8106:37;8139:3;8127:10;8106:37;:::i;:::-;8101:3;8094:50;8173:4;8168:3;8164:14;8157:21;;8044:144;8028:4;8023:3;8019:14;8012:21;;7968:220;;;7972:21;7586:608;;7484:710;;;;;:::o;8217:370::-;8288:5;8337:3;8330:4;8322:6;8318:17;8314:27;8304:122;;8345:79;;:::i;:::-;8304:122;8462:6;8449:20;8487:94;8577:3;8569:6;8562:4;8554:6;8550:17;8487:94;:::i;:::-;8478:103;;8294:293;8217:370;;;;:::o;8593:894::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8922:1;8911:9;8907:17;8894:31;8952:18;8944:6;8941:30;8938:117;;;8974:79;;:::i;:::-;8938:117;9079:78;9149:7;9140:6;9129:9;9125:22;9079:78;:::i;:::-;9069:88;;8865:302;9234:2;9223:9;9219:18;9206:32;9265:18;9257:6;9254:30;9251:117;;;9287:79;;:::i;:::-;9251:117;9392:78;9462:7;9453:6;9442:9;9438:22;9392:78;:::i;:::-;9382:88;;9177:303;8593:894;;;;;:::o;9493:329::-;9552:6;9601:2;9589:9;9580:7;9576:23;9572:32;9569:119;;;9607:79;;:::i;:::-;9569:119;9727:1;9752:53;9797:7;9788:6;9777:9;9773:22;9752:53;:::i;:::-;9742:63;;9698:117;9493:329;;;;:::o;9828:474::-;9896:6;9904;9953:2;9941:9;9932:7;9928:23;9924:32;9921:119;;;9959:79;;:::i;:::-;9921:119;10079:1;10104:53;10149:7;10140:6;10129:9;10125:22;10104:53;:::i;:::-;10094:63;;10050:117;10206:2;10232:53;10277:7;10268:6;10257:9;10253:22;10232:53;:::i;:::-;10222:63;;10177:118;9828:474;;;;;:::o;10308:180::-;10356:77;10353:1;10346:88;10453:4;10450:1;10443:15;10477:4;10474:1;10467:15;10494:320;10538:6;10575:1;10569:4;10565:12;10555:22;;10622:1;10616:4;10612:12;10643:18;10633:81;;10699:4;10691:6;10687:17;10677:27;;10633:81;10761:2;10753:6;10750:14;10730:18;10727:38;10724:84;;10780:18;;:::i;:::-;10724:84;10545:269;10494:320;;;:::o;10820:180::-;10868:77;10865:1;10858:88;10965:4;10962:1;10955:15;10989:4;10986:1;10979:15;11006:191;11046:3;11065:20;11083:1;11065:20;:::i;:::-;11060:25;;11099:20;11117:1;11099:20;:::i;:::-;11094:25;;11142:1;11139;11135:9;11128:16;;11163:3;11160:1;11157:10;11154:36;;;11170:18;;:::i;:::-;11154:36;11006:191;;;;:::o;11203:170::-;11343:22;11339:1;11331:6;11327:14;11320:46;11203:170;:::o;11379:366::-;11521:3;11542:67;11606:2;11601:3;11542:67;:::i;:::-;11535:74;;11618:93;11707:3;11618:93;:::i;:::-;11736:2;11731:3;11727:12;11720:19;;11379:366;;;:::o;11751:419::-;11917:4;11955:2;11944:9;11940:18;11932:26;;12004:9;11998:4;11994:20;11990:1;11979:9;11975:17;11968:47;12032:131;12158:4;12032:131;:::i;:::-;12024:139;;11751:419;;;:::o;12176:180::-;12224:77;12221:1;12214:88;12321:4;12318:1;12311:15;12345:4;12342:1;12335:15;12362:102;12404:8;12451:5;12448:1;12444:13;12423:34;;12362:102;;;:::o;12470:848::-;12531:5;12538:4;12562:6;12553:15;;12586:5;12577:14;;12600:712;12621:1;12611:8;12608:15;12600:712;;;12716:4;12711:3;12707:14;12701:4;12698:24;12695:50;;;12725:18;;:::i;:::-;12695:50;12775:1;12765:8;12761:16;12758:451;;;13190:4;13183:5;13179:16;13170:25;;12758:451;13240:4;13234;13230:15;13222:23;;13270:32;13293:8;13270:32;:::i;:::-;13258:44;;12600:712;;;12470:848;;;;;;;:::o;13324:1073::-;13378:5;13569:8;13559:40;;13590:1;13581:10;;13592:5;;13559:40;13618:4;13608:36;;13635:1;13626:10;;13637:5;;13608:36;13704:4;13752:1;13747:27;;;;13788:1;13783:191;;;;13697:277;;13747:27;13765:1;13756:10;;13767:5;;;13783:191;13828:3;13818:8;13815:17;13812:43;;;13835:18;;:::i;:::-;13812:43;13884:8;13881:1;13877:16;13868:25;;13919:3;13912:5;13909:14;13906:40;;;13926:18;;:::i;:::-;13906:40;13959:5;;;13697:277;;14083:2;14073:8;14070:16;14064:3;14058:4;14055:13;14051:36;14033:2;14023:8;14020:16;14015:2;14009:4;14006:12;14002:35;13986:111;13983:246;;;14139:8;14133:4;14129:19;14120:28;;14174:3;14167:5;14164:14;14161:40;;;14181:18;;:::i;:::-;14161:40;14214:5;;13983:246;14254:42;14292:3;14282:8;14276:4;14273:1;14254:42;:::i;:::-;14239:57;;;;14328:4;14323:3;14319:14;14312:5;14309:25;14306:51;;;14337:18;;:::i;:::-;14306:51;14386:4;14379:5;14375:16;14366:25;;13324:1073;;;;;;:::o;14403:281::-;14461:5;14485:23;14503:4;14485:23;:::i;:::-;14477:31;;14529:25;14545:8;14529:25;:::i;:::-;14517:37;;14573:104;14610:66;14600:8;14594:4;14573:104;:::i;:::-;14564:113;;14403:281;;;;:::o;14690:410::-;14730:7;14753:20;14771:1;14753:20;:::i;:::-;14748:25;;14787:20;14805:1;14787:20;:::i;:::-;14782:25;;14842:1;14839;14835:9;14864:30;14882:11;14864:30;:::i;:::-;14853:41;;15043:1;15034:7;15030:15;15027:1;15024:22;15004:1;14997:9;14977:83;14954:139;;15073:18;;:::i;:::-;14954:139;14738:362;14690:410;;;;:::o;15106:233::-;15145:3;15168:24;15186:5;15168:24;:::i;:::-;15159:33;;15214:66;15207:5;15204:77;15201:103;;15284:18;;:::i;:::-;15201:103;15331:1;15324:5;15320:13;15313:20;;15106:233;;;:::o;15345:224::-;15485:34;15481:1;15473:6;15469:14;15462:58;15554:7;15549:2;15541:6;15537:15;15530:32;15345:224;:::o;15575:366::-;15717:3;15738:67;15802:2;15797:3;15738:67;:::i;:::-;15731:74;;15814:93;15903:3;15814:93;:::i;:::-;15932:2;15927:3;15923:12;15916:19;;15575:366;;;:::o;15947:419::-;16113:4;16151:2;16140:9;16136:18;16128:26;;16200:9;16194:4;16190:20;16186:1;16175:9;16171:17;16164:47;16228:131;16354:4;16228:131;:::i;:::-;16220:139;;15947:419;;;:::o;16372:223::-;16512:34;16508:1;16500:6;16496:14;16489:58;16581:6;16576:2;16568:6;16564:15;16557:31;16372:223;:::o;16601:366::-;16743:3;16764:67;16828:2;16823:3;16764:67;:::i;:::-;16757:74;;16840:93;16929:3;16840:93;:::i;:::-;16958:2;16953:3;16949:12;16942:19;;16601:366;;;:::o;16973:419::-;17139:4;17177:2;17166:9;17162:18;17154:26;;17226:9;17220:4;17216:20;17212:1;17201:9;17197:17;17190:47;17254:131;17380:4;17254:131;:::i;:::-;17246:139;;16973:419;;;:::o;17398:221::-;17538:34;17534:1;17526:6;17522:14;17515:58;17607:4;17602:2;17594:6;17590:15;17583:29;17398:221;:::o;17625:366::-;17767:3;17788:67;17852:2;17847:3;17788:67;:::i;:::-;17781:74;;17864:93;17953:3;17864:93;:::i;:::-;17982:2;17977:3;17973:12;17966:19;;17625:366;;;:::o;17997:419::-;18163:4;18201:2;18190:9;18186:18;18178:26;;18250:9;18244:4;18240:20;18236:1;18225:9;18221:17;18214:47;18278:131;18404:4;18278:131;:::i;:::-;18270:139;;17997:419;;;:::o;18422:179::-;18562:31;18558:1;18550:6;18546:14;18539:55;18422:179;:::o;18607:366::-;18749:3;18770:67;18834:2;18829:3;18770:67;:::i;:::-;18763:74;;18846:93;18935:3;18846:93;:::i;:::-;18964:2;18959:3;18955:12;18948:19;;18607:366;;;:::o;18979:419::-;19145:4;19183:2;19172:9;19168:18;19160:26;;19232:9;19226:4;19222:20;19218:1;19207:9;19203:17;19196:47;19260:131;19386:4;19260:131;:::i;:::-;19252:139;;18979:419;;;:::o;19404:224::-;19544:34;19540:1;19532:6;19528:14;19521:58;19613:7;19608:2;19600:6;19596:15;19589:32;19404:224;:::o;19634:366::-;19776:3;19797:67;19861:2;19856:3;19797:67;:::i;:::-;19790:74;;19873:93;19962:3;19873:93;:::i;:::-;19991:2;19986:3;19982:12;19975:19;;19634:366;;;:::o;20006:419::-;20172:4;20210:2;20199:9;20195:18;20187:26;;20259:9;20253:4;20249:20;20245:1;20234:9;20230:17;20223:47;20287:131;20413:4;20287:131;:::i;:::-;20279:139;;20006:419;;;:::o;20431:222::-;20571:34;20567:1;20559:6;20555:14;20548:58;20640:5;20635:2;20627:6;20623:15;20616:30;20431:222;:::o;20659:366::-;20801:3;20822:67;20886:2;20881:3;20822:67;:::i;:::-;20815:74;;20898:93;20987:3;20898:93;:::i;:::-;21016:2;21011:3;21007:12;21000:19;;20659:366;;;:::o;21031:419::-;21197:4;21235:2;21224:9;21220:18;21212:26;;21284:9;21278:4;21274:20;21270:1;21259:9;21255:17;21248:47;21312:131;21438:4;21312:131;:::i;:::-;21304:139;;21031:419;;;:::o;21456:225::-;21596:34;21592:1;21584:6;21580:14;21573:58;21665:8;21660:2;21652:6;21648:15;21641:33;21456:225;:::o;21687:366::-;21829:3;21850:67;21914:2;21909:3;21850:67;:::i;:::-;21843:74;;21926:93;22015:3;21926:93;:::i;:::-;22044:2;22039:3;22035:12;22028:19;;21687:366;;;:::o;22059:419::-;22225:4;22263:2;22252:9;22248:18;22240:26;;22312:9;22306:4;22302:20;22298:1;22287:9;22283:17;22276:47;22340:131;22466:4;22340:131;:::i;:::-;22332:139;;22059:419;;;:::o;22484:181::-;22624:33;22620:1;22612:6;22608:14;22601:57;22484:181;:::o;22671:366::-;22813:3;22834:67;22898:2;22893:3;22834:67;:::i;:::-;22827:74;;22910:93;22999:3;22910:93;:::i;:::-;23028:2;23023:3;23019:12;23012:19;;22671:366;;;:::o;23043:419::-;23209:4;23247:2;23236:9;23232:18;23224:26;;23296:9;23290:4;23286:20;23282:1;23271:9;23267:17;23260:47;23324:131;23450:4;23324:131;:::i;:::-;23316:139;;23043:419;;;:::o

Swarm Source

ipfs://8a87251d6a64289e609f122dab2329cff4474ac86122e968a567ff1a05e3d959
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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