ERC-20
Overview
Max Total Supply
2,025,000,000,000 SANTA
Holders
4
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000004 SANTAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SANTA
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-24 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity 0.8.26; /* * @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. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev 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 GSN 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 payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract SANTA is ERC20("Merry Christmas on Sonic", "SANTA"), Ownable { uint256 public minted; uint256 public burned; function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); minted+=_amount; } function burn(uint256 _amount) public { require (balanceOf(msg.sender)>=_amount); _burn(msg.sender, _amount); burned+=_amount; } function getOwner() external view returns (address) { return owner(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280601881526020017f4d65727279204368726973746d6173206f6e20536f6e696300000000000000008152506040518060400160405280600581526020017f53414e5441000000000000000000000000000000000000000000000000000000815250816003908161008b91906103ac565b50806004908161009b91906103ac565b50601260055f6101000a81548160ff021916908360ff16021790555050505f6100c861016b60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35061047b565b5f33905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806101ed57607f821691505b602082108103610200576101ff6101a9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026102627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610227565b61026c8683610227565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6102b06102ab6102a684610284565b61028d565b610284565b9050919050565b5f819050919050565b6102c983610296565b6102dd6102d5826102b7565b848454610233565b825550505050565b5f90565b6102f16102e5565b6102fc8184846102c0565b505050565b5b8181101561031f576103145f826102e9565b600181019050610302565b5050565b601f8211156103645761033581610206565b61033e84610218565b8101602085101561034d578190505b61036161035985610218565b830182610301565b50505b505050565b5f82821c905092915050565b5f6103845f1984600802610369565b1980831691505092915050565b5f61039c8383610375565b9150826002028217905092915050565b6103b582610172565b67ffffffffffffffff8111156103ce576103cd61017c565b5b6103d882546101d6565b6103e3828285610323565b5f60209050601f831160018114610414575f8415610402578287015190505b61040c8582610391565b865550610473565b601f19841661042286610206565b5f5b8281101561044957848901518255600182019150602085019450602081019050610424565b868310156104665784890151610462601f891682610375565b8355505b6001600288020188555050505b505050505050565b611e92806104885f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f7578063a457c2d714610315578063a9059cbb14610345578063dd62ed3e14610375578063f2fde38b146103a55761011f565b806370a0823114610263578063715018a61461029357806373f425611461029d578063893d20e8146102bb5780638da5cb5b146102d95761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806340c10f191461020d57806342966c68146102295780634f02c420146102455761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b6040516101389190611559565b60405180910390f35b61015b6004803603810190610156919061160a565b610451565b6040516101689190611662565b60405180910390f35b61017961046e565b604051610186919061168a565b60405180910390f35b6101a960048036038101906101a491906116a3565b610477565b6040516101b69190611662565b60405180910390f35b6101c761054b565b6040516101d4919061170e565b60405180910390f35b6101f760048036038101906101f2919061160a565b610560565b6040516102049190611662565b60405180910390f35b6102276004803603810190610222919061160a565b61060e565b005b610243600480360381019061023e9190611727565b6106b0565b005b61024d6106e9565b60405161025a919061168a565b60405180910390f35b61027d60048036038101906102789190611752565b6106ef565b60405161028a919061168a565b60405180910390f35b61029b610734565b005b6102a561086f565b6040516102b2919061168a565b60405180910390f35b6102c3610875565b6040516102d0919061178c565b60405180910390f35b6102e1610883565b6040516102ee919061178c565b60405180910390f35b6102ff6108ac565b60405161030c9190611559565b60405180910390f35b61032f600480360381019061032a919061160a565b61093c565b60405161033c9190611662565b60405180910390f35b61035f600480360381019061035a919061160a565b610a04565b60405161036c9190611662565b60405180910390f35b61038f600480360381019061038a91906117a5565b610a21565b60405161039c919061168a565b60405180910390f35b6103bf60048036038101906103ba9190611752565b610aa3565b005b6060600380546103d090611810565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611810565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f61046461045d610c4d565b8484610c54565b6001905092915050565b5f600254905090565b5f610483848484610e17565b6105408461048f610c4d565b61053b85604051806060016040528060288152602001611e106028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104f2610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f61060461056c610c4d565b846105ff8560015f61057c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b610c54565b6001905092915050565b610616610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610634610883565b73ffffffffffffffffffffffffffffffffffffffff161461068a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106819061188a565b60405180910390fd5b610694828261115a565b8060065f8282546106a591906118d5565b925050819055505050565b806106ba336106ef565b10156106c4575f80fd5b6106ce33826112e6565b8060075f8282546106df91906118d5565b9250508190555050565b60065481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61073c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1661075a610883565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061188a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b5f61087e610883565b905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108bb90611810565b80601f01602080910402602001604051908101604052809291908181526020018280546108e790611810565b80156109325780601f1061090957610100808354040283529160200191610932565b820191905f5260205f20905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b5f6109fa610948610c4d565b846109f585604051806060016040528060258152602001611e386025913960015f610971610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b6001905092915050565b5f610a17610a10610c4d565b8484610e17565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610aab610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610ac9610883565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b169061188a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490611978565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611a06565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611a94565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a919061168a565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611b22565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90611bb0565b60405180910390fd5b610efe83838361148c565b610f6781604051806060016040528060268152602001611dea602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610ff6815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611093919061168a565b60405180910390a3505050565b5f8383111582906110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9190611559565b60405180910390fd5b5082846110f49190611bce565b90509392505050565b5f80828461110b91906118d5565b905083811015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790611c4b565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90611cb3565b60405180910390fd5b6111d35f838361148c565b6111e8816002546110fd90919063ffffffff16565b60028190555061123d815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112da919061168a565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90611d41565b60405180910390fd5b61135f825f8361148c565b6113c881604051806060016040528060228152602001611dc8602291395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061141d8160025461149190919063ffffffff16565b6002819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611480919061168a565b60405180910390a35050565b505050565b5f828211156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611da9565b60405180910390fd5b81836114e19190611bce565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61152b826114e9565b61153581856114f3565b9350611545818560208601611503565b61154e81611511565b840191505092915050565b5f6020820190508181035f8301526115718184611521565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115a68261157d565b9050919050565b6115b68161159c565b81146115c0575f80fd5b50565b5f813590506115d1816115ad565b92915050565b5f819050919050565b6115e9816115d7565b81146115f3575f80fd5b50565b5f81359050611604816115e0565b92915050565b5f80604083850312156116205761161f611579565b5b5f61162d858286016115c3565b925050602061163e858286016115f6565b9150509250929050565b5f8115159050919050565b61165c81611648565b82525050565b5f6020820190506116755f830184611653565b92915050565b611684816115d7565b82525050565b5f60208201905061169d5f83018461167b565b92915050565b5f805f606084860312156116ba576116b9611579565b5b5f6116c7868287016115c3565b93505060206116d8868287016115c3565b92505060406116e9868287016115f6565b9150509250925092565b5f60ff82169050919050565b611708816116f3565b82525050565b5f6020820190506117215f8301846116ff565b92915050565b5f6020828403121561173c5761173b611579565b5b5f611749848285016115f6565b91505092915050565b5f6020828403121561176757611766611579565b5b5f611774848285016115c3565b91505092915050565b6117868161159c565b82525050565b5f60208201905061179f5f83018461177d565b92915050565b5f80604083850312156117bb576117ba611579565b5b5f6117c8858286016115c3565b92505060206117d9858286016115c3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061182757607f821691505b60208210810361183a576118396117e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118746020836114f3565b915061187f82611840565b602082019050919050565b5f6020820190508181035f8301526118a181611868565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118df826115d7565b91506118ea836115d7565b9250828201905080821115611902576119016118a8565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119626026836114f3565b915061196d82611908565b604082019050919050565b5f6020820190508181035f83015261198f81611956565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6119f06024836114f3565b91506119fb82611996565b604082019050919050565b5f6020820190508181035f830152611a1d816119e4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a7e6022836114f3565b9150611a8982611a24565b604082019050919050565b5f6020820190508181035f830152611aab81611a72565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b0c6025836114f3565b9150611b1782611ab2565b604082019050919050565b5f6020820190508181035f830152611b3981611b00565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611b9a6023836114f3565b9150611ba582611b40565b604082019050919050565b5f6020820190508181035f830152611bc781611b8e565b9050919050565b5f611bd8826115d7565b9150611be3836115d7565b9250828203905081811115611bfb57611bfa6118a8565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611c35601b836114f3565b9150611c4082611c01565b602082019050919050565b5f6020820190508181035f830152611c6281611c29565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611c9d601f836114f3565b9150611ca882611c69565b602082019050919050565b5f6020820190508181035f830152611cca81611c91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d2b6021836114f3565b9150611d3682611cd1565b604082019050919050565b5f6020820190508181035f830152611d5881611d1f565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f611d93601e836114f3565b9150611d9e82611d5f565b602082019050919050565b5f6020820190508181035f830152611dc081611d87565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d923df3a623a06735856032cf004348db3d4f8fae8aae813e28369e6c03ddaad64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f7578063a457c2d714610315578063a9059cbb14610345578063dd62ed3e14610375578063f2fde38b146103a55761011f565b806370a0823114610263578063715018a61461029357806373f425611461029d578063893d20e8146102bb5780638da5cb5b146102d95761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806340c10f191461020d57806342966c68146102295780634f02c420146102455761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c1565b6040516101389190611559565b60405180910390f35b61015b6004803603810190610156919061160a565b610451565b6040516101689190611662565b60405180910390f35b61017961046e565b604051610186919061168a565b60405180910390f35b6101a960048036038101906101a491906116a3565b610477565b6040516101b69190611662565b60405180910390f35b6101c761054b565b6040516101d4919061170e565b60405180910390f35b6101f760048036038101906101f2919061160a565b610560565b6040516102049190611662565b60405180910390f35b6102276004803603810190610222919061160a565b61060e565b005b610243600480360381019061023e9190611727565b6106b0565b005b61024d6106e9565b60405161025a919061168a565b60405180910390f35b61027d60048036038101906102789190611752565b6106ef565b60405161028a919061168a565b60405180910390f35b61029b610734565b005b6102a561086f565b6040516102b2919061168a565b60405180910390f35b6102c3610875565b6040516102d0919061178c565b60405180910390f35b6102e1610883565b6040516102ee919061178c565b60405180910390f35b6102ff6108ac565b60405161030c9190611559565b60405180910390f35b61032f600480360381019061032a919061160a565b61093c565b60405161033c9190611662565b60405180910390f35b61035f600480360381019061035a919061160a565b610a04565b60405161036c9190611662565b60405180910390f35b61038f600480360381019061038a91906117a5565b610a21565b60405161039c919061168a565b60405180910390f35b6103bf60048036038101906103ba9190611752565b610aa3565b005b6060600380546103d090611810565b80601f01602080910402602001604051908101604052809291908181526020018280546103fc90611810565b80156104475780601f1061041e57610100808354040283529160200191610447565b820191905f5260205f20905b81548152906001019060200180831161042a57829003601f168201915b5050505050905090565b5f61046461045d610c4d565b8484610c54565b6001905092915050565b5f600254905090565b5f610483848484610e17565b6105408461048f610c4d565b61053b85604051806060016040528060288152602001611e106028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104f2610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b5f61060461056c610c4d565b846105ff8560015f61057c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b610c54565b6001905092915050565b610616610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610634610883565b73ffffffffffffffffffffffffffffffffffffffff161461068a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106819061188a565b60405180910390fd5b610694828261115a565b8060065f8282546106a591906118d5565b925050819055505050565b806106ba336106ef565b10156106c4575f80fd5b6106ce33826112e6565b8060075f8282546106df91906118d5565b9250508190555050565b60065481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61073c610c4d565b73ffffffffffffffffffffffffffffffffffffffff1661075a610883565b73ffffffffffffffffffffffffffffffffffffffff16146107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061188a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b5f61087e610883565b905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108bb90611810565b80601f01602080910402602001604051908101604052809291908181526020018280546108e790611810565b80156109325780601f1061090957610100808354040283529160200191610932565b820191905f5260205f20905b81548152906001019060200180831161091557829003601f168201915b5050505050905090565b5f6109fa610948610c4d565b846109f585604051806060016040528060258152602001611e386025913960015f610971610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b610c54565b6001905092915050565b5f610a17610a10610c4d565b8484610e17565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610aab610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610ac9610883565b73ffffffffffffffffffffffffffffffffffffffff1614610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b169061188a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8490611978565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb990611a06565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611a94565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0a919061168a565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611b22565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90611bb0565b60405180910390fd5b610efe83838361148c565b610f6781604051806060016040528060268152602001611dea602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610ff6815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611093919061168a565b60405180910390a3505050565b5f8383111582906110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9190611559565b60405180910390fd5b5082846110f49190611bce565b90509392505050565b5f80828461110b91906118d5565b905083811015611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790611c4b565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90611cb3565b60405180910390fd5b6111d35f838361148c565b6111e8816002546110fd90919063ffffffff16565b60028190555061123d815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110fd90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112da919061168a565b60405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90611d41565b60405180910390fd5b61135f825f8361148c565b6113c881604051806060016040528060228152602001611dc8602291395f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546110a09092919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061141d8160025461149190919063ffffffff16565b6002819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611480919061168a565b60405180910390a35050565b505050565b5f828211156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90611da9565b60405180910390fd5b81836114e19190611bce565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61152b826114e9565b61153581856114f3565b9350611545818560208601611503565b61154e81611511565b840191505092915050565b5f6020820190508181035f8301526115718184611521565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115a68261157d565b9050919050565b6115b68161159c565b81146115c0575f80fd5b50565b5f813590506115d1816115ad565b92915050565b5f819050919050565b6115e9816115d7565b81146115f3575f80fd5b50565b5f81359050611604816115e0565b92915050565b5f80604083850312156116205761161f611579565b5b5f61162d858286016115c3565b925050602061163e858286016115f6565b9150509250929050565b5f8115159050919050565b61165c81611648565b82525050565b5f6020820190506116755f830184611653565b92915050565b611684816115d7565b82525050565b5f60208201905061169d5f83018461167b565b92915050565b5f805f606084860312156116ba576116b9611579565b5b5f6116c7868287016115c3565b93505060206116d8868287016115c3565b92505060406116e9868287016115f6565b9150509250925092565b5f60ff82169050919050565b611708816116f3565b82525050565b5f6020820190506117215f8301846116ff565b92915050565b5f6020828403121561173c5761173b611579565b5b5f611749848285016115f6565b91505092915050565b5f6020828403121561176757611766611579565b5b5f611774848285016115c3565b91505092915050565b6117868161159c565b82525050565b5f60208201905061179f5f83018461177d565b92915050565b5f80604083850312156117bb576117ba611579565b5b5f6117c8858286016115c3565b92505060206117d9858286016115c3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061182757607f821691505b60208210810361183a576118396117e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6118746020836114f3565b915061187f82611840565b602082019050919050565b5f6020820190508181035f8301526118a181611868565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118df826115d7565b91506118ea836115d7565b9250828201905080821115611902576119016118a8565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119626026836114f3565b915061196d82611908565b604082019050919050565b5f6020820190508181035f83015261198f81611956565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6119f06024836114f3565b91506119fb82611996565b604082019050919050565b5f6020820190508181035f830152611a1d816119e4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a7e6022836114f3565b9150611a8982611a24565b604082019050919050565b5f6020820190508181035f830152611aab81611a72565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611b0c6025836114f3565b9150611b1782611ab2565b604082019050919050565b5f6020820190508181035f830152611b3981611b00565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611b9a6023836114f3565b9150611ba582611b40565b604082019050919050565b5f6020820190508181035f830152611bc781611b8e565b9050919050565b5f611bd8826115d7565b9150611be3836115d7565b9250828203905081811115611bfb57611bfa6118a8565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611c35601b836114f3565b9150611c4082611c01565b602082019050919050565b5f6020820190508181035f830152611c6281611c29565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611c9d601f836114f3565b9150611ca882611c69565b602082019050919050565b5f6020820190508181035f830152611cca81611c91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d2b6021836114f3565b9150611d3682611cd1565b604082019050919050565b5f6020820190508181035f830152611d5881611d1f565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f7700005f82015250565b5f611d93601e836114f3565b9150611d9e82611d5f565b602082019050919050565b5f6020820190508181035f830152611dc081611d87565b905091905056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d923df3a623a06735856032cf004348db3d4f8fae8aae813e28369e6c03ddaad64736f6c634300081a0033
Deployed Bytecode Sourcemap
24262:526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13178:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15324:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14277:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15975:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14121:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16705:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24399:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24532:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24341:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14448:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23710:148;;;:::i;:::-;;24369:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24700:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23059:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13388:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17426:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14788:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15026:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24013:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13178:91;13223:13;13256:5;13249:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13178:91;:::o;15324:169::-;15407:4;15424:39;15433:12;:10;:12::i;:::-;15447:7;15456:6;15424:8;:39::i;:::-;15481:4;15474:11;;15324:169;;;;:::o;14277:108::-;14338:7;14365:12;;14358:19;;14277:108;:::o;15975:321::-;16081:4;16098:36;16108:6;16116:9;16127:6;16098:9;:36::i;:::-;16145:121;16154:6;16162:12;:10;:12::i;:::-;16176:89;16214:6;16176:89;;;;;;;;;;;;;;;;;:11;:19;16188:6;16176:19;;;;;;;;;;;;;;;:33;16196:12;:10;:12::i;:::-;16176:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16145:8;:121::i;:::-;16284:4;16277:11;;15975:321;;;;;:::o;14121:91::-;14170:5;14195:9;;;;;;;;;;;14188:16;;14121:91;:::o;16705:218::-;16793:4;16810:83;16819:12;:10;:12::i;:::-;16833:7;16842:50;16881:10;16842:11;:25;16854:12;:10;:12::i;:::-;16842:25;;;;;;;;;;;;;;;:34;16868:7;16842:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;16810:8;:83::i;:::-;16911:4;16904:11;;16705:218;;;;:::o;24399:125::-;23290:12;:10;:12::i;:::-;23279:23;;:7;:5;:7::i;:::-;:23;;;23271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24471:19:::1;24477:3;24482:7;24471:5;:19::i;:::-;24509:7;24501:6;;:15;;;;;;;:::i;:::-;;;;;;;;24399:125:::0;;:::o;24532:160::-;24613:7;24590:21;24600:10;24590:9;:21::i;:::-;:30;;24581:40;;;;;;24632:26;24638:10;24650:7;24632:5;:26::i;:::-;24677:7;24669:6;;:15;;;;;;;:::i;:::-;;;;;;;;24532:160;:::o;24341:21::-;;;;:::o;14448:127::-;14522:7;14549:9;:18;14559:7;14549:18;;;;;;;;;;;;;;;;14542:25;;14448:127;;;:::o;23710:148::-;23290:12;:10;:12::i;:::-;23279:23;;:7;:5;:7::i;:::-;:23;;;23271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23817:1:::1;23780:40;;23801:6;;;;;;;;;;;23780:40;;;;;;;;;;;;23848:1;23831:6;;:19;;;;;;;;;;;;;;;;;;23710:148::o:0;24369:21::-;;;;:::o;24700:85::-;24743:7;24770;:5;:7::i;:::-;24763:14;;24700:85;:::o;23059:87::-;23105:7;23132:6;;;;;;;;;;;23125:13;;23059:87;:::o;13388:95::-;13435:13;13468:7;13461:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13388:95;:::o;17426:269::-;17519:4;17536:129;17545:12;:10;:12::i;:::-;17559:7;17568:96;17607:15;17568:96;;;;;;;;;;;;;;;;;:11;:25;17580:12;:10;:12::i;:::-;17568:25;;;;;;;;;;;;;;;:34;17594:7;17568:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17536:8;:129::i;:::-;17683:4;17676:11;;17426:269;;;;:::o;14788:175::-;14874:4;14891:42;14901:12;:10;:12::i;:::-;14915:9;14926:6;14891:9;:42::i;:::-;14951:4;14944:11;;14788:175;;;;:::o;15026:151::-;15115:7;15142:11;:18;15154:5;15142:18;;;;;;;;;;;;;;;:27;15161:7;15142:27;;;;;;;;;;;;;;;;15135:34;;15026:151;;;;:::o;24013:244::-;23290:12;:10;:12::i;:::-;23279:23;;:7;:5;:7::i;:::-;:23;;;23271:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24122:1:::1;24102:22;;:8;:22;;::::0;24094:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24212:8;24183:38;;24204:6;;;;;;;;;;;24183:38;;;;;;;;;;;;24241:8;24232:6;;:17;;;;;;;;;;;;;;;;;;24013:244:::0;:::o;10753:115::-;10806:15;10849:10;10834:26;;10753:115;:::o;20573:346::-;20692:1;20675:19;;:5;:19;;;20667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20773:1;20754:21;;:7;:21;;;20746:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20857:6;20827:11;:18;20839:5;20827:18;;;;;;;;;;;;;;;:27;20846:7;20827:27;;;;;;;;;;;;;;;:36;;;;20895:7;20879:32;;20888:5;20879:32;;;20904:6;20879:32;;;;;;:::i;:::-;;;;;;;;20573:346;;;:::o;18185:539::-;18309:1;18291:20;;:6;:20;;;18283:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18393:1;18372:23;;:9;:23;;;18364:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18448:47;18469:6;18477:9;18488:6;18448:20;:47::i;:::-;18528:71;18550:6;18528:71;;;;;;;;;;;;;;;;;:9;:17;18538:6;18528:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18508:9;:17;18518:6;18508:17;;;;;;;;;;;;;;;:91;;;;18633:32;18658:6;18633:9;:20;18643:9;18633:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18610:9;:20;18620:9;18610:20;;;;;;;;;;;;;;;:55;;;;18698:9;18681:35;;18690:6;18681:35;;;18709:6;18681:35;;;;;;:::i;:::-;;;;;;;;18185:539;;;:::o;5651:166::-;5737:7;5770:1;5765;:6;;5773:12;5757:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5808:1;5804;:5;;;;:::i;:::-;5797:12;;5651:166;;;;;:::o;2824:179::-;2882:7;2902:9;2918:1;2914;:5;;;;:::i;:::-;2902:17;;2943:1;2938;:6;;2930:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2994:1;2987:8;;;2824:179;;;;:::o;19006:378::-;19109:1;19090:21;;:7;:21;;;19082:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19160:49;19189:1;19193:7;19202:6;19160:20;:49::i;:::-;19237:24;19254:6;19237:12;;:16;;:24;;;;:::i;:::-;19222:12;:39;;;;19293:30;19316:6;19293:9;:18;19303:7;19293:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19272:9;:18;19282:7;19272:18;;;;;;;;;;;;;;;:51;;;;19360:7;19339:37;;19356:1;19339:37;;;19369:6;19339:37;;;;;;:::i;:::-;;;;;;;;19006:378;;:::o;19717:418::-;19820:1;19801:21;;:7;:21;;;19793:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19873:49;19894:7;19911:1;19915:6;19873:20;:49::i;:::-;19956:68;19979:6;19956:68;;;;;;;;;;;;;;;;;:9;:18;19966:7;19956:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;19935:9;:18;19945:7;19935:18;;;;;;;;;;;;;;;:89;;;;20050:24;20067:6;20050:12;;:16;;:24;;;;:::i;:::-;20035:12;:39;;;;20116:1;20090:37;;20099:7;20090:37;;;20120:6;20090:37;;;;;;:::i;:::-;;;;;;;;19717:418;;:::o;21952:92::-;;;;:::o;3286:158::-;3344:7;3377:1;3372;:6;;3364:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;3435:1;3431;:5;;;;:::i;:::-;3424:12;;3286:158;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:182::-;6900:34;6896:1;6888:6;6884:14;6877:58;6760:182;:::o;6948:366::-;7090:3;7111:67;7175:2;7170:3;7111:67;:::i;:::-;7104:74;;7187:93;7276:3;7187:93;:::i;:::-;7305:2;7300:3;7296:12;7289:19;;6948:366;;;:::o;7320:419::-;7486:4;7524:2;7513:9;7509:18;7501:26;;7573:9;7567:4;7563:20;7559:1;7548:9;7544:17;7537:47;7601:131;7727:4;7601:131;:::i;:::-;7593:139;;7320:419;;;:::o;7745:180::-;7793:77;7790:1;7783:88;7890:4;7887:1;7880:15;7914:4;7911:1;7904:15;7931:191;7971:3;7990:20;8008:1;7990:20;:::i;:::-;7985:25;;8024:20;8042:1;8024:20;:::i;:::-;8019:25;;8067:1;8064;8060:9;8053:16;;8088:3;8085:1;8082:10;8079:36;;;8095:18;;:::i;:::-;8079:36;7931:191;;;;:::o;8128:225::-;8268:34;8264:1;8256:6;8252:14;8245:58;8337:8;8332:2;8324:6;8320:15;8313:33;8128:225;:::o;8359:366::-;8501:3;8522:67;8586:2;8581:3;8522:67;:::i;:::-;8515:74;;8598:93;8687:3;8598:93;:::i;:::-;8716:2;8711:3;8707:12;8700:19;;8359:366;;;:::o;8731:419::-;8897:4;8935:2;8924:9;8920:18;8912:26;;8984:9;8978:4;8974:20;8970:1;8959:9;8955:17;8948:47;9012:131;9138:4;9012:131;:::i;:::-;9004:139;;8731:419;;;:::o;9156:223::-;9296:34;9292:1;9284:6;9280:14;9273:58;9365:6;9360:2;9352:6;9348:15;9341:31;9156:223;:::o;9385:366::-;9527:3;9548:67;9612:2;9607:3;9548:67;:::i;:::-;9541:74;;9624:93;9713:3;9624:93;:::i;:::-;9742:2;9737:3;9733:12;9726:19;;9385:366;;;:::o;9757:419::-;9923:4;9961:2;9950:9;9946:18;9938:26;;10010:9;10004:4;10000:20;9996:1;9985:9;9981:17;9974:47;10038:131;10164:4;10038:131;:::i;:::-;10030:139;;9757:419;;;:::o;10182:221::-;10322:34;10318:1;10310:6;10306:14;10299:58;10391:4;10386:2;10378:6;10374:15;10367:29;10182:221;:::o;10409:366::-;10551:3;10572:67;10636:2;10631:3;10572:67;:::i;:::-;10565:74;;10648:93;10737:3;10648:93;:::i;:::-;10766:2;10761:3;10757:12;10750:19;;10409:366;;;:::o;10781:419::-;10947:4;10985:2;10974:9;10970:18;10962:26;;11034:9;11028:4;11024:20;11020:1;11009:9;11005:17;10998:47;11062:131;11188:4;11062:131;:::i;:::-;11054:139;;10781:419;;;:::o;11206:224::-;11346:34;11342:1;11334:6;11330:14;11323:58;11415:7;11410:2;11402:6;11398:15;11391:32;11206:224;:::o;11436:366::-;11578:3;11599:67;11663:2;11658:3;11599:67;:::i;:::-;11592:74;;11675:93;11764:3;11675:93;:::i;:::-;11793:2;11788:3;11784:12;11777:19;;11436:366;;;:::o;11808:419::-;11974:4;12012:2;12001:9;11997:18;11989:26;;12061:9;12055:4;12051:20;12047:1;12036:9;12032:17;12025:47;12089:131;12215:4;12089:131;:::i;:::-;12081:139;;11808:419;;;:::o;12233:222::-;12373:34;12369:1;12361:6;12357:14;12350:58;12442:5;12437:2;12429:6;12425:15;12418:30;12233:222;:::o;12461:366::-;12603:3;12624:67;12688:2;12683:3;12624:67;:::i;:::-;12617:74;;12700:93;12789:3;12700:93;:::i;:::-;12818:2;12813:3;12809:12;12802:19;;12461:366;;;:::o;12833:419::-;12999:4;13037:2;13026:9;13022:18;13014:26;;13086:9;13080:4;13076:20;13072:1;13061:9;13057:17;13050:47;13114:131;13240:4;13114:131;:::i;:::-;13106:139;;12833:419;;;:::o;13258:194::-;13298:4;13318:20;13336:1;13318:20;:::i;:::-;13313:25;;13352:20;13370:1;13352:20;:::i;:::-;13347:25;;13396:1;13393;13389:9;13381:17;;13420:1;13414:4;13411:11;13408:37;;;13425:18;;:::i;:::-;13408:37;13258:194;;;;:::o;13458:177::-;13598:29;13594:1;13586:6;13582:14;13575:53;13458:177;:::o;13641:366::-;13783:3;13804:67;13868:2;13863:3;13804:67;:::i;:::-;13797:74;;13880:93;13969:3;13880:93;:::i;:::-;13998:2;13993:3;13989:12;13982:19;;13641:366;;;:::o;14013:419::-;14179:4;14217:2;14206:9;14202:18;14194:26;;14266:9;14260:4;14256:20;14252:1;14241:9;14237:17;14230:47;14294:131;14420:4;14294:131;:::i;:::-;14286:139;;14013:419;;;:::o;14438:181::-;14578:33;14574:1;14566:6;14562:14;14555:57;14438:181;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:220::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:3;15626:2;15618:6;15614:15;15607:28;15422:220;:::o;15648:366::-;15790:3;15811:67;15875:2;15870:3;15811:67;:::i;:::-;15804:74;;15887:93;15976:3;15887:93;:::i;:::-;16005:2;16000:3;15996:12;15989:19;;15648:366;;;:::o;16020:419::-;16186:4;16224:2;16213:9;16209:18;16201:26;;16273:9;16267:4;16263:20;16259:1;16248:9;16244:17;16237:47;16301:131;16427:4;16301:131;:::i;:::-;16293:139;;16020:419;;;:::o;16445:180::-;16585:32;16581:1;16573:6;16569:14;16562:56;16445:180;:::o;16631:366::-;16773:3;16794:67;16858:2;16853:3;16794:67;:::i;:::-;16787:74;;16870:93;16959:3;16870:93;:::i;:::-;16988:2;16983:3;16979:12;16972:19;;16631:366;;;:::o;17003:419::-;17169:4;17207:2;17196:9;17192:18;17184:26;;17256:9;17250:4;17246:20;17242:1;17231:9;17227:17;17220:47;17284:131;17410:4;17284:131;:::i;:::-;17276:139;;17003:419;;;:::o
Swarm Source
ipfs://d923df3a623a06735856032cf004348db3d4f8fae8aae813e28369e6c03ddaad
[ 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.