ETH Price: $2,958.16 (-1.81%)
Gas: 2 Gwei

Token

Ether Doge (EDOGE)
 

Overview

Max Total Supply

1,000,000,000 EDOGE

Holders

277

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.755819761552548878 EDOGE

Value
$0.00
0xcecb0bb6115ba82d76366927f63c081ef519b4c4
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:
EtherDoge

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.20;

/**

Welcome to Ether Doge - the only safe tribute to the King.

Introduction
---------------------

EtherDoge (EDOGE) is a token that was first deployed in October 2017 and is 
considered to be the first ever meme coin to be launched on Ethereum. The first!

Recently, some groups and individuals (KOL's, call channels, etc) have attempted to 
resurrect the original EDOGE by buying what remains of its available supply then 
promoting it.

However, the distribution of that old token is poor and uncertain. This is partly 
due to recent opportunists predicting its resurrection, so they bought before 
kickstarting the hype, volume returned, and now they're dumping and / or waiting to 
dump on newcomers.

The other aspect is that contract is not renounced, plus the current owner can 
actually mint additional tokens, which is a significant danger.

So in terms of the safety aspects concerning the original token, as Elon (the Doge 
master) so eloquently said, "Go fu*k yourself".

Due to this highly undesirable situation it quickly became clear that a clean, 
holder friendly, safe and resprectful version needed to be created, and this is it.

No tax, no limitations (other than a time based 0.5% max wallet to ensure balanced 
and fair distribution), completely safe and transperent. As it should be.

Tokenomics
---------------------

100% tax free. No initial tax, no contract clog, nothing. Same as SHIB.

Supply: 1,000,000,000 (one billion) - now we have a chance to hit $1 per token.

99.5% of the total supply + 0.5 ETH added to initial liquidity.

0.5% of the total supply airdropped to myself, "the developer", as payment.

Max wallet: 0.5% of the total supply (auto lifts after 7 days from launch).

LP tokens: 100% burned to the DEAD address (immutable).

No blacklist or whitelist. Immediately renounced. Fully decentralized. 100% safe.

Socials
---------------------

Any Telegram group, X account, website, etc, will need to be created by whomever 
feels up to the task. DOGE, SHIB, PEPE, and all those other financially rewarding, 
eye-watering mooners demonstrated what can be achieved through the spirit of a 
naturally-formed, ever-expanding, dedicated community. Imagine the possibilities 
now that the narrative surrounds the first ever meme coin to be launched on 
Ethereum (the grandaddy of blockchains).

To kick things off, here's an Ether Doge logo that can be used for the Telegram 
group / X profile image if desired:

https://i.ibb.co/dMsprFz/EDOGE-profile.png

Finally
---------------------

We're all tired of scams, farms, two-faced shillers, et al. So let's make this a 
genuine, explosive community token to remember, one that'll flourish and remain 
strong moving into 2024.

As for my identity, it may be cliche to state but it's really not important. Call me 
0xSafu, Ser Safu, Teh Safu, or even Tim if you like.

Good luck, happy forthcoming holidays, and may the DEX be with you, always.

*/

/**
 * @dev Provides information about the current execution context.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}

/**
 * @dev Implementation of the {IERC20} interface.
 */
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 {}
}

contract EtherDoge is ERC20, Ownable {
    address public dexPair;

    uint256 private _launchedAt;

    bool public limitsEnabled;
    uint256 private constant _disableLimitsAfter = 7 days;

    uint256 public maxWalletAmount;

    constructor(address developerAccount_) ERC20("Ether Doge", "EDOGE") {
        require(developerAccount_ != address(0), "Invalid developer address");

        uint256 initialSupply = 1_000_000_000 * (10 ** decimals());

        uint256 developerAllocation = (initialSupply * 5) / 1000; // 0.5%
        uint256 liquidityAllocation = initialSupply - developerAllocation; // 99.5%

        _mint(developerAccount_, developerAllocation); // Developer
        _mint(owner(), liquidityAllocation); // Liquidity
    }

    function openTrading(address dexPair_) external onlyOwner {
        require(dexPair_ != address(0), "Invalid pair address");

        limitsEnabled = true;

        maxWalletAmount = (totalSupply() * 5) / 1000; // 0.5%

        _launchedAt = block.timestamp;

        dexPair = dexPair_;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual {
        if (dexPair == address(0)) {
            require(from == address(0) || from == owner() || to == owner(), "Trading not enabled");
        }

        if (limitsEnabled && block.timestamp > (_launchedAt + _disableLimitsAfter)) {
            _disableLimits();
        }

        if (limitsEnabled && from == dexPair) {
            require((balanceOf(to) + amount) <= maxWalletAmount, "Max wallet exceeded");
        }
    }

    function _disableLimits() private {
        maxWalletAmount = totalSupply();
        limitsEnabled = false;
    }

    function burn(uint256 value) external {
        _burn(_msgSender(), value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"developerAccount_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","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":"dexPair","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":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dexPair_","type":"address"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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"}]

608060405234801562000010575f80fd5b506040516200314e3803806200314e8339818101604052810190620000369190620007bd565b6040518060400160405280600a81526020017f457468657220446f6765000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f45444f47450000000000000000000000000000000000000000000000000000008152508160039081620000b3919062000a51565b508060049081620000c5919062000a51565b505050620000e8620000dc620001fa60201b60201c565b6200020160201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001509062000b93565b60405180910390fd5b5f6200016a620002c460201b60201c565b600a62000178919062000d3c565b633b9aca0062000189919062000d8c565b90505f6103e86005836200019e919062000d8c565b620001aa919062000e03565b90505f8183620001bb919062000e3a565b9050620001cf8483620002cc60201b60201c565b620001f0620001e36200043c60201b60201c565b82620002cc60201b60201c565b5050505062001024565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200033d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003349062000ec2565b60405180910390fd5b620003505f83836200046460201b60201c565b8060025f82825462000363919062000ee2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620003b7919062000ee2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200041d919062000f2d565b60405180910390a3620004385f8383620006d460201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620005b7575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806200052e5750620004ff6200043c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80620005745750620005456200043c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620005b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ad9062000f96565b60405180910390fd5b5b60085f9054906101000a900460ff168015620005e4575062093a80600754620005e1919062000ee2565b42115b15620005fb57620005fa620006d960201b60201c565b5b60085f9054906101000a900460ff16801562000663575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006cf57600954816200067e846200070a60201b60201c565b6200068a919062000ee2565b1115620006ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c59062001004565b60405180910390fd5b5b505050565b505050565b620006e96200074f60201b60201c565b6009819055505f60085f6101000a81548160ff021916908315150217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600254905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000787826200075c565b9050919050565b62000799816200077b565b8114620007a4575f80fd5b50565b5f81519050620007b7816200078e565b92915050565b5f60208284031215620007d557620007d462000758565b5b5f620007e484828501620007a7565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200086957607f821691505b6020821081036200087f576200087e62000824565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008a6565b620008ef8683620008a6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000939620009336200092d8462000907565b62000910565b62000907565b9050919050565b5f819050919050565b620009548362000919565b6200096c620009638262000940565b848454620008b2565b825550505050565b5f90565b6200098262000974565b6200098f81848462000949565b505050565b5b81811015620009b657620009aa5f8262000978565b60018101905062000995565b5050565b601f82111562000a0557620009cf8162000885565b620009da8462000897565b81016020851015620009ea578190505b62000a02620009f98562000897565b83018262000994565b50505b505050565b5f82821c905092915050565b5f62000a275f198460080262000a0a565b1980831691505092915050565b5f62000a41838362000a16565b9150826002028217905092915050565b62000a5c82620007ed565b67ffffffffffffffff81111562000a785762000a77620007f7565b5b62000a84825462000851565b62000a91828285620009ba565b5f60209050601f83116001811462000ac7575f841562000ab2578287015190505b62000abe858262000a34565b86555062000b2d565b601f19841662000ad78662000885565b5f5b8281101562000b005784890151825560018201915060208501945060208101905062000ad9565b8683101562000b20578489015162000b1c601f89168262000a16565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f496e76616c696420646576656c6f7065722061646472657373000000000000005f82015250565b5f62000b7b60198362000b35565b915062000b888262000b45565b602082019050919050565b5f6020820190508181035f83015262000bac8162000b6d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000c3d5780860481111562000c155762000c1462000bb3565b5b600185161562000c255780820291505b808102905062000c358562000be0565b945062000bf5565b94509492505050565b5f8262000c57576001905062000d29565b8162000c66575f905062000d29565b816001811462000c7f576002811462000c8a5762000cc0565b600191505062000d29565b60ff84111562000c9f5762000c9e62000bb3565b5b8360020a91508482111562000cb95762000cb862000bb3565b5b5062000d29565b5060208310610133831016604e8410600b841016171562000cfa5782820a90508381111562000cf45762000cf362000bb3565b5b62000d29565b62000d09848484600162000bec565b9250905081840481111562000d235762000d2262000bb3565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000d488262000907565b915062000d558362000d30565b925062000d847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c46565b905092915050565b5f62000d988262000907565b915062000da58362000907565b925082820262000db58162000907565b9150828204841483151762000dcf5762000dce62000bb3565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e0f8262000907565b915062000e1c8362000907565b92508262000e2f5762000e2e62000dd6565b5b828204905092915050565b5f62000e468262000907565b915062000e538362000907565b925082820390508181111562000e6e5762000e6d62000bb3565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000eaa601f8362000b35565b915062000eb78262000e74565b602082019050919050565b5f6020820190508181035f83015262000edb8162000e9c565b9050919050565b5f62000eee8262000907565b915062000efb8362000907565b925082820190508082111562000f165762000f1562000bb3565b5b92915050565b62000f278162000907565b82525050565b5f60208201905062000f425f83018462000f1c565b92915050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f62000f7e60138362000b35565b915062000f8b8262000f48565b602082019050919050565b5f6020820190508181035f83015262000faf8162000f70565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f62000fec60138362000b35565b915062000ff98262000fb6565b602082019050919050565b5f6020820190508181035f8301526200101d8162000fde565b9050919050565b61211c80620010325f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063aa4bde281161006f578063aa4bde281461031d578063ca72a4e71461033b578063dd62ed3e14610357578063f242ab4114610387578063f2fde38b146103a55761011f565b8063715018a6146102775780638da5cb5b1461028157806395d89b411461029f578063a457c2d7146102bd578063a9059cbb146102ed5761011f565b8063313ce567116100f2578063313ce567146101bf5780633582ad23146101dd57806339509351146101fb57806342966c681461022b57806370a08231146102475761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b60405161013891906115a2565b60405180910390f35b61015b60048036038101906101569190611653565b610451565b60405161016891906116ab565b60405180910390f35b61017961046e565b60405161018691906116d3565b60405180910390f35b6101a960048036038101906101a491906116ec565b610477565b6040516101b691906116ab565b60405180910390f35b6101c7610569565b6040516101d49190611757565b60405180910390f35b6101e5610571565b6040516101f291906116ab565b60405180910390f35b61021560048036038101906102109190611653565b610583565b60405161022291906116ab565b60405180910390f35b61024560048036038101906102409190611770565b61062a565b005b610261600480360381019061025c919061179b565b61063e565b60405161026e91906116d3565b60405180910390f35b61027f610683565b005b61028961070a565b60405161029691906117d5565b60405180910390f35b6102a7610732565b6040516102b491906115a2565b60405180910390f35b6102d760048036038101906102d29190611653565b6107c2565b6040516102e491906116ab565b60405180910390f35b61030760048036038101906103029190611653565b6108a8565b60405161031491906116ab565b60405180910390f35b6103256108c5565b60405161033291906116d3565b60405180910390f35b6103556004803603810190610350919061179b565b6108cb565b005b610371600480360381019061036c91906117ee565b610a40565b60405161037e91906116d3565b60405180910390f35b61038f610ac2565b60405161039c91906117d5565b60405180910390f35b6103bf60048036038101906103ba919061179b565b610ae7565b005b6060600380546103d090611859565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611859565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f61046461045d610bdd565b8484610be4565b6001905092915050565b5f600254905090565b5f610483848484610da7565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104ca610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610540906118f9565b60405180910390fd5b61055d85610555610bdd565b858403610be4565b60019150509392505050565b5f6012905090565b60085f9054906101000a900460ff1681565b5f61062061058f610bdd565b848460015f61059c610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461061b9190611944565b610be4565b6001905092915050565b61063b610635610bdd565b8261101c565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61068b610bdd565b73ffffffffffffffffffffffffffffffffffffffff166106a961070a565b73ffffffffffffffffffffffffffffffffffffffff16146106ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f6906119c1565b60405180910390fd5b6107085f6111e8565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461074190611859565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90611859565b80156107b85780601f1061078f576101008083540402835291602001916107b8565b820191905f5260205f20905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b5f8060015f6107cf610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611a4f565b60405180910390fd5b61089d610894610bdd565b85858403610be4565b600191505092915050565b5f6108bb6108b4610bdd565b8484610da7565b6001905092915050565b60095481565b6108d3610bdd565b73ffffffffffffffffffffffffffffffffffffffff166108f161070a565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906119c1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90611ab7565b60405180910390fd5b600160085f6101000a81548160ff0219169083151502179055506103e860056109dc61046e565b6109e69190611ad5565b6109f09190611b43565b600981905550426007819055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aef610bdd565b73ffffffffffffffffffffffffffffffffffffffff16610b0d61070a565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906119c1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611be3565b60405180910390fd5b610bda816111e8565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611c71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611cff565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9a91906116d3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90611d8d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90611e1b565b60405180910390fd5b610e8e8383836112ab565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890611ea9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f9f9190611944565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100391906116d3565b60405180910390a36110168484846114ea565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611f37565b60405180910390fd5b611095825f836112ab565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90611fc5565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825461116c9190611fe3565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111d091906116d3565b60405180910390a36111e3835f846114ea565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113e8575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061136b575061133c61070a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806113a8575061137961070a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612060565b60405180910390fd5b5b60085f9054906101000a900460ff168015611412575062093a8060075461140f9190611944565b42115b156114205761141f6114ef565b5b60085f9054906101000a900460ff168015611487575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114e557600954816114998461063e565b6114a39190611944565b11156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906120c8565b60405180910390fd5b5b505050565b505050565b6114f761046e565b6009819055505f60085f6101000a81548160ff021916908315150217905550565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561154f578082015181840152602081019050611534565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61157482611518565b61157e8185611522565b935061158e818560208601611532565b6115978161155a565b840191505092915050565b5f6020820190508181035f8301526115ba818461156a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115ef826115c6565b9050919050565b6115ff816115e5565b8114611609575f80fd5b50565b5f8135905061161a816115f6565b92915050565b5f819050919050565b61163281611620565b811461163c575f80fd5b50565b5f8135905061164d81611629565b92915050565b5f8060408385031215611669576116686115c2565b5b5f6116768582860161160c565b92505060206116878582860161163f565b9150509250929050565b5f8115159050919050565b6116a581611691565b82525050565b5f6020820190506116be5f83018461169c565b92915050565b6116cd81611620565b82525050565b5f6020820190506116e65f8301846116c4565b92915050565b5f805f60608486031215611703576117026115c2565b5b5f6117108682870161160c565b93505060206117218682870161160c565b92505060406117328682870161163f565b9150509250925092565b5f60ff82169050919050565b6117518161173c565b82525050565b5f60208201905061176a5f830184611748565b92915050565b5f60208284031215611785576117846115c2565b5b5f6117928482850161163f565b91505092915050565b5f602082840312156117b0576117af6115c2565b5b5f6117bd8482850161160c565b91505092915050565b6117cf816115e5565b82525050565b5f6020820190506117e85f8301846117c6565b92915050565b5f8060408385031215611804576118036115c2565b5b5f6118118582860161160c565b92505060206118228582860161160c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061187057607f821691505b6020821081036118835761188261182c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6118e3602883611522565b91506118ee82611889565b604082019050919050565b5f6020820190508181035f830152611910816118d7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61194e82611620565b915061195983611620565b925082820190508082111561197157611970611917565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119ab602083611522565b91506119b682611977565b602082019050919050565b5f6020820190508181035f8301526119d88161199f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611a39602583611522565b9150611a44826119df565b604082019050919050565b5f6020820190508181035f830152611a6681611a2d565b9050919050565b7f496e76616c6964207061697220616464726573730000000000000000000000005f82015250565b5f611aa1601483611522565b9150611aac82611a6d565b602082019050919050565b5f6020820190508181035f830152611ace81611a95565b9050919050565b5f611adf82611620565b9150611aea83611620565b9250828202611af881611620565b91508282048414831517611b0f57611b0e611917565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b4d82611620565b9150611b5883611620565b925082611b6857611b67611b16565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bcd602683611522565b9150611bd882611b73565b604082019050919050565b5f6020820190508181035f830152611bfa81611bc1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c5b602483611522565b9150611c6682611c01565b604082019050919050565b5f6020820190508181035f830152611c8881611c4f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ce9602283611522565b9150611cf482611c8f565b604082019050919050565b5f6020820190508181035f830152611d1681611cdd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d77602583611522565b9150611d8282611d1d565b604082019050919050565b5f6020820190508181035f830152611da481611d6b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e05602383611522565b9150611e1082611dab565b604082019050919050565b5f6020820190508181035f830152611e3281611df9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611e93602683611522565b9150611e9e82611e39565b604082019050919050565b5f6020820190508181035f830152611ec081611e87565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f21602183611522565b9150611f2c82611ec7565b604082019050919050565b5f6020820190508181035f830152611f4e81611f15565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611faf602283611522565b9150611fba82611f55565b604082019050919050565b5f6020820190508181035f830152611fdc81611fa3565b9050919050565b5f611fed82611620565b9150611ff883611620565b92508282039050818111156120105761200f611917565b5b92915050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f61204a601383611522565b915061205582612016565b602082019050919050565b5f6020820190508181035f8301526120778161203e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6120b2601383611522565b91506120bd8261207e565b602082019050919050565b5f6020820190508181035f8301526120df816120a6565b905091905056fea2646970667358221220ea455d9798c31ca47c0b8a6872d6c8deb0e8b4a027438f547ff82879874b238264736f6c63430008140033000000000000000000000000ffcbe81e454a8ec475d3a3c5228a2a04930c2c58

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063aa4bde281161006f578063aa4bde281461031d578063ca72a4e71461033b578063dd62ed3e14610357578063f242ab4114610387578063f2fde38b146103a55761011f565b8063715018a6146102775780638da5cb5b1461028157806395d89b411461029f578063a457c2d7146102bd578063a9059cbb146102ed5761011f565b8063313ce567116100f2578063313ce567146101bf5780633582ad23146101dd57806339509351146101fb57806342966c681461022b57806370a08231146102475761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b60405161013891906115a2565b60405180910390f35b61015b60048036038101906101569190611653565b610451565b60405161016891906116ab565b60405180910390f35b61017961046e565b60405161018691906116d3565b60405180910390f35b6101a960048036038101906101a491906116ec565b610477565b6040516101b691906116ab565b60405180910390f35b6101c7610569565b6040516101d49190611757565b60405180910390f35b6101e5610571565b6040516101f291906116ab565b60405180910390f35b61021560048036038101906102109190611653565b610583565b60405161022291906116ab565b60405180910390f35b61024560048036038101906102409190611770565b61062a565b005b610261600480360381019061025c919061179b565b61063e565b60405161026e91906116d3565b60405180910390f35b61027f610683565b005b61028961070a565b60405161029691906117d5565b60405180910390f35b6102a7610732565b6040516102b491906115a2565b60405180910390f35b6102d760048036038101906102d29190611653565b6107c2565b6040516102e491906116ab565b60405180910390f35b61030760048036038101906103029190611653565b6108a8565b60405161031491906116ab565b60405180910390f35b6103256108c5565b60405161033291906116d3565b60405180910390f35b6103556004803603810190610350919061179b565b6108cb565b005b610371600480360381019061036c91906117ee565b610a40565b60405161037e91906116d3565b60405180910390f35b61038f610ac2565b60405161039c91906117d5565b60405180910390f35b6103bf60048036038101906103ba919061179b565b610ae7565b005b6060600380546103d090611859565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611859565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f61046461045d610bdd565b8484610be4565b6001905092915050565b5f600254905090565b5f610483848484610da7565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104ca610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610540906118f9565b60405180910390fd5b61055d85610555610bdd565b858403610be4565b60019150509392505050565b5f6012905090565b60085f9054906101000a900460ff1681565b5f61062061058f610bdd565b848460015f61059c610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461061b9190611944565b610be4565b6001905092915050565b61063b610635610bdd565b8261101c565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61068b610bdd565b73ffffffffffffffffffffffffffffffffffffffff166106a961070a565b73ffffffffffffffffffffffffffffffffffffffff16146106ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f6906119c1565b60405180910390fd5b6107085f6111e8565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461074190611859565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90611859565b80156107b85780601f1061078f576101008083540402835291602001916107b8565b820191905f5260205f20905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b5f8060015f6107cf610bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611a4f565b60405180910390fd5b61089d610894610bdd565b85858403610be4565b600191505092915050565b5f6108bb6108b4610bdd565b8484610da7565b6001905092915050565b60095481565b6108d3610bdd565b73ffffffffffffffffffffffffffffffffffffffff166108f161070a565b73ffffffffffffffffffffffffffffffffffffffff1614610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e906119c1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90611ab7565b60405180910390fd5b600160085f6101000a81548160ff0219169083151502179055506103e860056109dc61046e565b6109e69190611ad5565b6109f09190611b43565b600981905550426007819055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aef610bdd565b73ffffffffffffffffffffffffffffffffffffffff16610b0d61070a565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906119c1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890611be3565b60405180910390fd5b610bda816111e8565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611c71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611cff565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9a91906116d3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90611d8d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90611e1b565b60405180910390fd5b610e8e8383836112ab565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890611ea9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f9f9190611944565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161100391906116d3565b60405180910390a36110168484846114ea565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190611f37565b60405180910390fd5b611095825f836112ab565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f90611fc5565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825461116c9190611fe3565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111d091906116d3565b60405180910390a36111e3835f846114ea565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113e8575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061136b575061133c61070a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806113a8575061137961070a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90612060565b60405180910390fd5b5b60085f9054906101000a900460ff168015611412575062093a8060075461140f9190611944565b42115b156114205761141f6114ef565b5b60085f9054906101000a900460ff168015611487575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114e557600954816114998461063e565b6114a39190611944565b11156114e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114db906120c8565b60405180910390fd5b5b505050565b505050565b6114f761046e565b6009819055505f60085f6101000a81548160ff021916908315150217905550565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561154f578082015181840152602081019050611534565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61157482611518565b61157e8185611522565b935061158e818560208601611532565b6115978161155a565b840191505092915050565b5f6020820190508181035f8301526115ba818461156a565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115ef826115c6565b9050919050565b6115ff816115e5565b8114611609575f80fd5b50565b5f8135905061161a816115f6565b92915050565b5f819050919050565b61163281611620565b811461163c575f80fd5b50565b5f8135905061164d81611629565b92915050565b5f8060408385031215611669576116686115c2565b5b5f6116768582860161160c565b92505060206116878582860161163f565b9150509250929050565b5f8115159050919050565b6116a581611691565b82525050565b5f6020820190506116be5f83018461169c565b92915050565b6116cd81611620565b82525050565b5f6020820190506116e65f8301846116c4565b92915050565b5f805f60608486031215611703576117026115c2565b5b5f6117108682870161160c565b93505060206117218682870161160c565b92505060406117328682870161163f565b9150509250925092565b5f60ff82169050919050565b6117518161173c565b82525050565b5f60208201905061176a5f830184611748565b92915050565b5f60208284031215611785576117846115c2565b5b5f6117928482850161163f565b91505092915050565b5f602082840312156117b0576117af6115c2565b5b5f6117bd8482850161160c565b91505092915050565b6117cf816115e5565b82525050565b5f6020820190506117e85f8301846117c6565b92915050565b5f8060408385031215611804576118036115c2565b5b5f6118118582860161160c565b92505060206118228582860161160c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061187057607f821691505b6020821081036118835761188261182c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6118e3602883611522565b91506118ee82611889565b604082019050919050565b5f6020820190508181035f830152611910816118d7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61194e82611620565b915061195983611620565b925082820190508082111561197157611970611917565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119ab602083611522565b91506119b682611977565b602082019050919050565b5f6020820190508181035f8301526119d88161199f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611a39602583611522565b9150611a44826119df565b604082019050919050565b5f6020820190508181035f830152611a6681611a2d565b9050919050565b7f496e76616c6964207061697220616464726573730000000000000000000000005f82015250565b5f611aa1601483611522565b9150611aac82611a6d565b602082019050919050565b5f6020820190508181035f830152611ace81611a95565b9050919050565b5f611adf82611620565b9150611aea83611620565b9250828202611af881611620565b91508282048414831517611b0f57611b0e611917565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b4d82611620565b9150611b5883611620565b925082611b6857611b67611b16565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611bcd602683611522565b9150611bd882611b73565b604082019050919050565b5f6020820190508181035f830152611bfa81611bc1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611c5b602483611522565b9150611c6682611c01565b604082019050919050565b5f6020820190508181035f830152611c8881611c4f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ce9602283611522565b9150611cf482611c8f565b604082019050919050565b5f6020820190508181035f830152611d1681611cdd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611d77602583611522565b9150611d8282611d1d565b604082019050919050565b5f6020820190508181035f830152611da481611d6b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611e05602383611522565b9150611e1082611dab565b604082019050919050565b5f6020820190508181035f830152611e3281611df9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611e93602683611522565b9150611e9e82611e39565b604082019050919050565b5f6020820190508181035f830152611ec081611e87565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f21602183611522565b9150611f2c82611ec7565b604082019050919050565b5f6020820190508181035f830152611f4e81611f15565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611faf602283611522565b9150611fba82611f55565b604082019050919050565b5f6020820190508181035f830152611fdc81611fa3565b9050919050565b5f611fed82611620565b9150611ff883611620565b92508282039050818111156120105761200f611917565b5b92915050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f61204a601383611522565b915061205582612016565b602082019050919050565b5f6020820190508181035f8301526120778161203e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6120b2601383611522565b91506120bd8261207e565b602082019050919050565b5f6020820190508181035f8301526120df816120a6565b905091905056fea2646970667358221220ea455d9798c31ca47c0b8a6872d6c8deb0e8b4a027438f547ff82879874b238264736f6c63430008140033

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

000000000000000000000000ffcbe81e454a8ec475d3a3c5228a2a04930c2c58

-----Decoded View---------------
Arg [0] : developerAccount_ (address): 0xfFCBE81e454a8EC475d3A3C5228A2A04930c2C58

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ffcbe81e454a8ec475d3a3c5228a2a04930c2c58


Deployed Bytecode Sourcemap

19220:1839:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9435:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11602:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10555:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12253:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10397:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19331:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13116:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20973:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10726:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4550:103;;;:::i;:::-;;3899:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9654:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13834:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11066:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19425:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19991:303;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11304:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19264:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4808:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9435:100;9489:13;9522:5;9515:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9435:100;:::o;11602:169::-;11685:4;11702:39;11711:12;:10;:12::i;:::-;11725:7;11734:6;11702:8;:39::i;:::-;11759:4;11752:11;;11602:169;;;;:::o;10555:108::-;10616:7;10643:12;;10636:19;;10555:108;:::o;12253:454::-;12359:4;12376:36;12386:6;12394:9;12405:6;12376:9;:36::i;:::-;12423:24;12450:11;:19;12462:6;12450:19;;;;;;;;;;;;;;;:33;12470:12;:10;:12::i;:::-;12450:33;;;;;;;;;;;;;;;;12423:60;;12522:6;12502:16;:26;;12494:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12609:57;12618:6;12626:12;:10;:12::i;:::-;12659:6;12640:16;:25;12609:8;:57::i;:::-;12695:4;12688:11;;;12253:454;;;;;:::o;10397:93::-;10455:5;10480:2;10473:9;;10397:93;:::o;19331:25::-;;;;;;;;;;;;;:::o;13116:215::-;13204:4;13221:80;13230:12;:10;:12::i;:::-;13244:7;13290:10;13253:11;:25;13265:12;:10;:12::i;:::-;13253:25;;;;;;;;;;;;;;;:34;13279:7;13253:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13221:8;:80::i;:::-;13319:4;13312:11;;13116:215;;;;:::o;20973:83::-;21022:26;21028:12;:10;:12::i;:::-;21042:5;21022;:26::i;:::-;20973:83;:::o;10726:127::-;10800:7;10827:9;:18;10837:7;10827:18;;;;;;;;;;;;;;;;10820:25;;10726:127;;;:::o;4550:103::-;4130:12;:10;:12::i;:::-;4119:23;;:7;:5;:7::i;:::-;:23;;;4111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4615:30:::1;4642:1;4615:18;:30::i;:::-;4550:103::o:0;3899:87::-;3945:7;3972:6;;;;;;;;;;;3965:13;;3899:87;:::o;9654:104::-;9710:13;9743:7;9736:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9654:104;:::o;13834:411::-;13927:4;13944:24;13971:11;:25;13983:12;:10;:12::i;:::-;13971:25;;;;;;;;;;;;;;;:34;13997:7;13971:34;;;;;;;;;;;;;;;;13944:61;;14044:15;14024:16;:35;;14016:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14137:67;14146:12;:10;:12::i;:::-;14160:7;14188:15;14169:16;:34;14137:8;:67::i;:::-;14233:4;14226:11;;;13834:411;;;;:::o;11066:175::-;11152:4;11169:42;11179:12;:10;:12::i;:::-;11193:9;11204:6;11169:9;:42::i;:::-;11229:4;11222:11;;11066:175;;;;:::o;19425:30::-;;;;:::o;19991:303::-;4130:12;:10;:12::i;:::-;4119:23;;:7;:5;:7::i;:::-;:23;;;4111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20088:1:::1;20068:22;;:8;:22;;::::0;20060:55:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20144:4;20128:13;;:20;;;;;;;;;;;;;;;;;;20201:4;20196:1;20180:13;:11;:13::i;:::-;:17;;;;:::i;:::-;20179:26;;;;:::i;:::-;20161:15;:44;;;;20240:15;20226:11;:29;;;;20278:8;20268:7;;:18;;;;;;;;;;;;;;;;;;19991:303:::0;:::o;11304:151::-;11393:7;11420:11;:18;11432:5;11420:18;;;;;;;;;;;;;;;:27;11439:7;11420:27;;;;;;;;;;;;;;;;11413:34;;11304:151;;;;:::o;19264:22::-;;;;;;;;;;;;;:::o;4808:201::-;4130:12;:10;:12::i;:::-;4119:23;;:7;:5;:7::i;:::-;:23;;;4111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4917:1:::1;4897:22;;:8;:22;;::::0;4889:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4973:28;4992:8;4973:18;:28::i;:::-;4808:201:::0;:::o;3193:98::-;3246:7;3273:10;3266:17;;3193:98;:::o;17482:346::-;17601:1;17584:19;;:5;:19;;;17576:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17682:1;17663:21;;:7;:21;;;17655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17766:6;17736:11;:18;17748:5;17736:18;;;;;;;;;;;;;;;:27;17755:7;17736:27;;;;;;;;;;;;;;;:36;;;;17804:7;17788:32;;17797:5;17788:32;;;17813:6;17788:32;;;;;;:::i;:::-;;;;;;;;17482:346;;;:::o;14735:699::-;14859:1;14841:20;;:6;:20;;;14833:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14943:1;14922:23;;:9;:23;;;14914:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14998:47;15019:6;15027:9;15038:6;14998:20;:47::i;:::-;15058:21;15082:9;:17;15092:6;15082:17;;;;;;;;;;;;;;;;15058:41;;15135:6;15118:13;:23;;15110:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:6;15240:13;:22;15220:9;:17;15230:6;15220:17;;;;;;;;;;;;;;;:42;;;;15308:6;15284:9;:20;15294:9;15284:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15349:9;15332:35;;15341:6;15332:35;;;15360:6;15332:35;;;;;;:::i;:::-;;;;;;;;15380:46;15400:6;15408:9;15419:6;15380:19;:46::i;:::-;14822:612;14735:699;;;:::o;16453:591::-;16556:1;16537:21;;:7;:21;;;16529:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16609:49;16630:7;16647:1;16651:6;16609:20;:49::i;:::-;16671:22;16696:9;:18;16706:7;16696:18;;;;;;;;;;;;;;;;16671:43;;16751:6;16733:14;:24;;16725:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16870:6;16853:14;:23;16832:9;:18;16842:7;16832:18;;;;;;;;;;;;;;;:44;;;;16914:6;16898:12;;:22;;;;;;;:::i;:::-;;;;;;;;16964:1;16938:37;;16947:7;16938:37;;;16968:6;16938:37;;;;;;:::i;:::-;;;;;;;;16988:48;17008:7;17025:1;17029:6;16988:19;:48::i;:::-;16518:526;16453:591;;:::o;5169:191::-;5243:16;5262:6;;;;;;;;;;;5243:25;;5288:8;5279:6;;:17;;;;;;;;;;;;;;;;;;5343:8;5312:40;;5333:8;5312:40;;;;;;;;;;;;5232:128;5169:191;:::o;20302:539::-;20434:1;20415:21;;:7;;;;;;;;;;;:21;;;20411:140;;20477:1;20461:18;;:4;:18;;;:37;;;;20491:7;:5;:7::i;:::-;20483:15;;:4;:15;;;20461:37;:54;;;;20508:7;:5;:7::i;:::-;20502:13;;:2;:13;;;20461:54;20453:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;20411:140;20567:13;;;;;;;;;;;:70;;;;;19410:6;20603:11;;:33;;;;:::i;:::-;20584:15;:53;20567:70;20563:119;;;20654:16;:14;:16::i;:::-;20563:119;20698:13;;;;;;;;;;;:32;;;;;20723:7;;;;;;;;;;;20715:15;;:4;:15;;;20698:32;20694:140;;;20783:15;;20772:6;20756:13;20766:2;20756:9;:13::i;:::-;:22;;;;:::i;:::-;20755:43;;20747:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;20694:140;20302:539;;;:::o;19123:90::-;;;;:::o;20849:116::-;20912:13;:11;:13::i;:::-;20894:15;:31;;;;20952:5;20936:13;;:21;;;;;;;;;;;;;;;;;;20849:116::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;1430:117::-;1539:1;1536;1529: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:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:227::-;7007:34;7003:1;6995:6;6991:14;6984:58;7076:10;7071:2;7063:6;7059:15;7052:35;6867:227;:::o;7100:366::-;7242:3;7263:67;7327:2;7322:3;7263:67;:::i;:::-;7256:74;;7339:93;7428:3;7339:93;:::i;:::-;7457:2;7452:3;7448:12;7441:19;;7100:366;;;:::o;7472:419::-;7638:4;7676:2;7665:9;7661:18;7653:26;;7725:9;7719:4;7715:20;7711:1;7700:9;7696:17;7689:47;7753:131;7879:4;7753:131;:::i;:::-;7745:139;;7472:419;;;:::o;7897:180::-;7945:77;7942:1;7935:88;8042:4;8039:1;8032:15;8066:4;8063:1;8056:15;8083:191;8123:3;8142:20;8160:1;8142:20;:::i;:::-;8137:25;;8176:20;8194:1;8176:20;:::i;:::-;8171:25;;8219:1;8216;8212:9;8205:16;;8240:3;8237:1;8234:10;8231:36;;;8247:18;;:::i;:::-;8231:36;8083:191;;;;:::o;8280:182::-;8420:34;8416:1;8408:6;8404:14;8397:58;8280:182;:::o;8468:366::-;8610:3;8631:67;8695:2;8690:3;8631:67;:::i;:::-;8624:74;;8707:93;8796:3;8707:93;:::i;:::-;8825:2;8820:3;8816:12;8809:19;;8468:366;;;:::o;8840:419::-;9006:4;9044:2;9033:9;9029:18;9021:26;;9093:9;9087:4;9083:20;9079:1;9068:9;9064:17;9057:47;9121:131;9247:4;9121:131;:::i;:::-;9113:139;;8840:419;;;:::o;9265:224::-;9405:34;9401:1;9393:6;9389:14;9382:58;9474:7;9469:2;9461:6;9457:15;9450:32;9265:224;:::o;9495:366::-;9637:3;9658:67;9722:2;9717:3;9658:67;:::i;:::-;9651:74;;9734:93;9823:3;9734:93;:::i;:::-;9852:2;9847:3;9843:12;9836:19;;9495:366;;;:::o;9867:419::-;10033:4;10071:2;10060:9;10056:18;10048:26;;10120:9;10114:4;10110:20;10106:1;10095:9;10091:17;10084:47;10148:131;10274:4;10148:131;:::i;:::-;10140:139;;9867:419;;;:::o;10292:170::-;10432:22;10428:1;10420:6;10416:14;10409:46;10292:170;:::o;10468:366::-;10610:3;10631:67;10695:2;10690:3;10631:67;:::i;:::-;10624:74;;10707:93;10796:3;10707:93;:::i;:::-;10825:2;10820:3;10816:12;10809:19;;10468:366;;;:::o;10840:419::-;11006:4;11044:2;11033:9;11029:18;11021:26;;11093:9;11087:4;11083:20;11079:1;11068:9;11064:17;11057:47;11121:131;11247:4;11121:131;:::i;:::-;11113:139;;10840:419;;;:::o;11265:410::-;11305:7;11328:20;11346:1;11328:20;:::i;:::-;11323:25;;11362:20;11380:1;11362:20;:::i;:::-;11357:25;;11417:1;11414;11410:9;11439:30;11457:11;11439:30;:::i;:::-;11428:41;;11618:1;11609:7;11605:15;11602:1;11599:22;11579:1;11572:9;11552:83;11529:139;;11648:18;;:::i;:::-;11529:139;11313:362;11265:410;;;;:::o;11681:180::-;11729:77;11726:1;11719:88;11826:4;11823:1;11816:15;11850:4;11847:1;11840:15;11867:185;11907:1;11924:20;11942:1;11924:20;:::i;:::-;11919:25;;11958:20;11976:1;11958:20;:::i;:::-;11953:25;;11997:1;11987:35;;12002:18;;:::i;:::-;11987:35;12044:1;12041;12037:9;12032:14;;11867:185;;;;:::o;12058:225::-;12198:34;12194:1;12186:6;12182:14;12175:58;12267:8;12262:2;12254:6;12250:15;12243:33;12058:225;:::o;12289:366::-;12431:3;12452:67;12516:2;12511:3;12452:67;:::i;:::-;12445:74;;12528:93;12617:3;12528:93;:::i;:::-;12646:2;12641:3;12637:12;12630:19;;12289:366;;;:::o;12661:419::-;12827:4;12865:2;12854:9;12850:18;12842:26;;12914:9;12908:4;12904:20;12900:1;12889:9;12885:17;12878:47;12942:131;13068:4;12942:131;:::i;:::-;12934:139;;12661:419;;;:::o;13086:223::-;13226:34;13222:1;13214:6;13210:14;13203:58;13295:6;13290:2;13282:6;13278:15;13271:31;13086:223;:::o;13315:366::-;13457:3;13478:67;13542:2;13537:3;13478:67;:::i;:::-;13471:74;;13554:93;13643:3;13554:93;:::i;:::-;13672:2;13667:3;13663:12;13656:19;;13315:366;;;:::o;13687:419::-;13853:4;13891:2;13880:9;13876:18;13868:26;;13940:9;13934:4;13930:20;13926:1;13915:9;13911:17;13904:47;13968:131;14094:4;13968:131;:::i;:::-;13960:139;;13687:419;;;:::o;14112:221::-;14252:34;14248:1;14240:6;14236:14;14229:58;14321:4;14316:2;14308:6;14304:15;14297:29;14112:221;:::o;14339:366::-;14481:3;14502:67;14566:2;14561:3;14502:67;:::i;:::-;14495:74;;14578:93;14667:3;14578:93;:::i;:::-;14696:2;14691:3;14687:12;14680:19;;14339:366;;;:::o;14711:419::-;14877:4;14915:2;14904:9;14900:18;14892:26;;14964:9;14958:4;14954:20;14950:1;14939:9;14935:17;14928:47;14992:131;15118:4;14992:131;:::i;:::-;14984:139;;14711:419;;;:::o;15136:224::-;15276:34;15272:1;15264:6;15260:14;15253:58;15345:7;15340:2;15332:6;15328:15;15321:32;15136:224;:::o;15366:366::-;15508:3;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15366:366;;;:::o;15738:419::-;15904:4;15942:2;15931:9;15927:18;15919:26;;15991:9;15985:4;15981:20;15977:1;15966:9;15962:17;15955:47;16019:131;16145:4;16019:131;:::i;:::-;16011:139;;15738:419;;;:::o;16163:222::-;16303:34;16299:1;16291:6;16287:14;16280:58;16372:5;16367:2;16359:6;16355:15;16348:30;16163:222;:::o;16391:366::-;16533:3;16554:67;16618:2;16613:3;16554:67;:::i;:::-;16547:74;;16630:93;16719:3;16630:93;:::i;:::-;16748:2;16743:3;16739:12;16732:19;;16391:366;;;:::o;16763:419::-;16929:4;16967:2;16956:9;16952:18;16944:26;;17016:9;17010:4;17006:20;17002:1;16991:9;16987:17;16980:47;17044:131;17170:4;17044:131;:::i;:::-;17036:139;;16763:419;;;:::o;17188:225::-;17328:34;17324:1;17316:6;17312:14;17305:58;17397:8;17392:2;17384:6;17380:15;17373:33;17188:225;:::o;17419:366::-;17561:3;17582:67;17646:2;17641:3;17582:67;:::i;:::-;17575:74;;17658:93;17747:3;17658:93;:::i;:::-;17776:2;17771:3;17767:12;17760:19;;17419:366;;;:::o;17791:419::-;17957:4;17995:2;17984:9;17980:18;17972:26;;18044:9;18038:4;18034:20;18030:1;18019:9;18015:17;18008:47;18072:131;18198:4;18072:131;:::i;:::-;18064:139;;17791:419;;;:::o;18216:220::-;18356:34;18352:1;18344:6;18340:14;18333:58;18425:3;18420:2;18412:6;18408:15;18401:28;18216:220;:::o;18442:366::-;18584:3;18605:67;18669:2;18664:3;18605:67;:::i;:::-;18598:74;;18681:93;18770:3;18681:93;:::i;:::-;18799:2;18794:3;18790:12;18783:19;;18442:366;;;:::o;18814:419::-;18980:4;19018:2;19007:9;19003:18;18995:26;;19067:9;19061:4;19057:20;19053:1;19042:9;19038:17;19031:47;19095:131;19221:4;19095:131;:::i;:::-;19087:139;;18814:419;;;:::o;19239:221::-;19379:34;19375:1;19367:6;19363:14;19356:58;19448:4;19443:2;19435:6;19431:15;19424:29;19239:221;:::o;19466:366::-;19608:3;19629:67;19693:2;19688:3;19629:67;:::i;:::-;19622:74;;19705:93;19794:3;19705:93;:::i;:::-;19823:2;19818:3;19814:12;19807:19;;19466:366;;;:::o;19838:419::-;20004:4;20042:2;20031:9;20027:18;20019:26;;20091:9;20085:4;20081:20;20077:1;20066:9;20062:17;20055:47;20119:131;20245:4;20119:131;:::i;:::-;20111:139;;19838:419;;;:::o;20263:194::-;20303:4;20323:20;20341:1;20323:20;:::i;:::-;20318:25;;20357:20;20375:1;20357:20;:::i;:::-;20352:25;;20401:1;20398;20394:9;20386:17;;20425:1;20419:4;20416:11;20413:37;;;20430:18;;:::i;:::-;20413:37;20263:194;;;;:::o;20463:169::-;20603:21;20599:1;20591:6;20587:14;20580:45;20463:169;:::o;20638:366::-;20780:3;20801:67;20865:2;20860:3;20801:67;:::i;:::-;20794:74;;20877:93;20966:3;20877:93;:::i;:::-;20995:2;20990:3;20986:12;20979:19;;20638:366;;;:::o;21010:419::-;21176:4;21214:2;21203:9;21199:18;21191:26;;21263:9;21257:4;21253:20;21249:1;21238:9;21234:17;21227:47;21291:131;21417:4;21291:131;:::i;:::-;21283:139;;21010:419;;;:::o;21435:169::-;21575:21;21571:1;21563:6;21559:14;21552:45;21435:169;:::o;21610:366::-;21752:3;21773:67;21837:2;21832:3;21773:67;:::i;:::-;21766:74;;21849:93;21938:3;21849:93;:::i;:::-;21967:2;21962:3;21958:12;21951:19;;21610:366;;;:::o;21982:419::-;22148:4;22186:2;22175:9;22171:18;22163:26;;22235:9;22229:4;22225:20;22221:1;22210:9;22206:17;22199:47;22263:131;22389:4;22263:131;:::i;:::-;22255:139;;21982:419;;;:::o

Swarm Source

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