To bridge assets into Avalanche C-Chain, users need to interact with the Avalanche Bridge. Simply transferring assets to the contract address will result in permanent loss of funds.
Overview
Max Total Supply
904,669.098144383428673282 LINK.e
Holders
8,518 ( -0.023%)
Market
Price
$11.06 @ 0.456800 AVAX (-2.31%)
Onchain Market Cap
$10,009,668.95
Circulating Supply Market Cap
$6,728,293,702.24
Other Info
Token Contract (WITH 18 Decimals)
Balance
128.117805423660239302 LINK.eValue
$1,417.55 ( ~58.5241 AVAX) [0.0142%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BridgeToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2021-11-02 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 += amount; _balances[account] += 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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= 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 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 { } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } // File: contracts/token/ERC677.sol pragma solidity ^0.8.0; interface ERC677 is IERC20 { function transferAndCall( address to, uint256 value, bytes memory data ) external returns (bool success); event Transfer( address indexed from, address indexed to, uint256 value, bytes data ); } // File: contracts/token/ERC677Receiver.sol pragma solidity ^0.8.0; interface ERC677Receiver { function onTokenTransfer(address _sender, uint _value, bytes memory _data) external; } // File: contracts/Roles.sol pragma solidity ^0.8.0; library Roles { struct Role { mapping(address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: contracts/WrappedLINK.sol pragma solidity ^0.8.0; contract BridgeToken is ERC20Burnable, ERC677 { using Roles for Roles.Role; Roles.Role private bridgeRoles; string private constant TOKEN_NAME = "Chainlink Token"; string private constant TOKEN_SYMBOL = "LINK.e"; uint8 private constant TOKEN_DECIMALS = 18; struct SwapToken { address tokenContract; uint256 supply; } mapping(address => SwapToken) swapTokens; mapping(uint256 => bool) public chainIds; event Mint( address to, uint256 amount, address feeAddress, uint256 feeAmount, bytes32 originTxId ); event Unwrap(uint256 amount, uint256 chainId); event AddSupportedChainId(uint256 chainId); event MigrateBridgeRole(address newBridgeRoleAddress); event AddSwapToken(address contractAddress, uint256 supplyIncrement); event RemoveSwapToken(address contractAddress, uint256 supplyDecrement); event Swap(address token, uint256 amount); constructor() ERC20(TOKEN_NAME, TOKEN_SYMBOL) { bridgeRoles.add(msg.sender); chainIds[0] = true; } function decimals() public view virtual override returns (uint8) { return TOKEN_DECIMALS; } /** * @dev Mint function used by bridge. Optional FeeAddress and FeeAmount parameters used to mint small percentage of transfered assets directly to bridge * @param to Address to mint funds to * @param amount Amount of funds to mint * @param feeAddress Address to mint bridge fees to * @param feeAmount Amount to mint as bridge fees * @param originTxId Transaction ID from external network that triggered this minting. */ function mint( address to, uint256 amount, address feeAddress, uint256 feeAmount, bytes32 originTxId ) public { require(bridgeRoles.has(msg.sender), "Unauthorized."); _mint(to, amount); if (feeAmount > 0) { _mint(feeAddress, feeAmount); } emit Mint(to, amount, feeAddress, feeAmount, originTxId); } /** * @dev Add new chainId to list of supported IDs. * @param chainId ChainId to add. */ function addSupportedChainId(uint256 chainId) public { require(bridgeRoles.has(msg.sender), "Unauthorized."); // Check that the chain ID is not the chain this contract is deployed on. uint256 currentChainId; assembly { currentChainId := chainid() } require(chainId != currentChainId, "Cannot add current chain ID."); // Already supported, no-op. if (chainIds[chainId] == true) { return; } chainIds[chainId] = true; emit AddSupportedChainId(chainId); } /** * @dev Burns assets and signals bridge to migrate funds to the same address on the provided chainId. * @param amount Amount of asset to unwrap. * @param chainId Chain ID to unwrap or migrate funds to. Only used for multi-network bridge deployment. * Zero by default for bridge deployment with only 2 networks. */ function unwrap(uint256 amount, uint256 chainId) public { require( tx.origin == msg.sender, "Calls from smart contracts not supported." ); require(chainIds[chainId] == true, "Chain ID not supported."); _burn(msg.sender, amount); emit Unwrap(amount, chainId); } /** * @dev Provide Bridge Role (Admin Role) to new address. * @param newBridgeRoleAddress New Bridge Role Address. */ function migrateBridgeRole(address newBridgeRoleAddress) public { require(bridgeRoles.has(msg.sender), "Unauthorized."); bridgeRoles.remove(msg.sender); bridgeRoles.add(newBridgeRoleAddress); emit MigrateBridgeRole(newBridgeRoleAddress); } /** * @dev Add Token to accept swaps from or increase supply of existing swap token. * @param contractAddress Token Address to allow swaps. * @param supplyIncrement Amount of assets allowed to be swapped (or incremental increase in amount). */ function addSwapToken(address contractAddress, uint256 supplyIncrement) public { require(bridgeRoles.has(msg.sender), "Unauthorized."); require(isContract(contractAddress), "Address is not contract."); // If the swap token is not already supported, add it with the total supply of supplyIncrement. // Otherwise, increment the current supply. if (swapTokens[contractAddress].tokenContract == address(0)) { swapTokens[contractAddress] = SwapToken({ tokenContract: contractAddress, supply: supplyIncrement }); } else { swapTokens[contractAddress].supply = swapTokens[contractAddress].supply + supplyIncrement; } emit AddSwapToken(contractAddress, supplyIncrement); } /** * @dev Remove amount of swaps allowed from existing swap token. * @param contractAddress Token Address to remove swap amount. * @param supplyDecrement Amount to remove from the swap supply. */ function removeSwapToken(address contractAddress, uint256 supplyDecrement) public { require(bridgeRoles.has(msg.sender), "Unauthorized."); require(isContract(contractAddress), "Address is not contract."); require( swapTokens[contractAddress].tokenContract != address(0), "Swap token not supported." ); // If the decrement is less than the current supply, decrement it from the current supply. // Otherwise, if the decrement is greater than or equal to the current supply, delete the mapping value. if (swapTokens[contractAddress].supply > supplyDecrement) { swapTokens[contractAddress].supply = swapTokens[contractAddress].supply - supplyDecrement; } else { delete swapTokens[contractAddress]; } emit RemoveSwapToken(contractAddress, supplyDecrement); } /** * @dev Fetch the remaining amount allowed for a swap token. * @param token Address of swap token. * @return Current swap token supply. */ function swapSupply(address token) public view returns (uint256) { return swapTokens[token].supply; } /** * @dev Perform Swap. * @param token Address of token to be swapped. * @param amount Amount of token to be swapped. */ function swap(address token, uint256 amount) public { require(isContract(token), "Token is not a contract."); require( swapTokens[token].tokenContract != address(0), "Swap token is not a contract." ); require( amount <= swapTokens[token].supply, "Swap amount is more than supply." ); // Update the allowed swap amount. swapTokens[token].supply = swapTokens[token].supply - amount; // Burn the old token. ERC20Burnable swapToken = ERC20Burnable( swapTokens[token].tokenContract ); swapToken.burnFrom(msg.sender, amount); // Mint the new token. _mint(msg.sender, amount); emit Swap(token, amount); } /** * @dev Check if provided address is a contract. * @param addr Address to check. * @return hasCode */ function isContract(address addr) private view returns (bool hasCode) { uint256 length; assembly { length := extcodesize(addr) } return length > 0; } /** * @dev transfer token to a contract address with additional data if the recipient is a contact. * @param to The address to transfer to. * @param value The amount to be transferred. * @param data The extra data to be passed to the receiving contract. */ function transferAndCall( address to, uint256 value, bytes memory data ) public virtual override returns (bool success) { super.transfer(to, value); emit Transfer(msg.sender, to, value, data); if (isContract(to)) { contractFallback(to, value, data); } return true; } // PRIVATE function contractFallback( address to, uint256 value, bytes memory data ) private { ERC677Receiver receiver = ERC677Receiver(to); receiver.onTokenTransfer(msg.sender, value, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"}],"name":"AddSupportedChainId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"supplyIncrement","type":"uint256"}],"name":"AddSwapToken","type":"event"},{"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":false,"internalType":"address","name":"newBridgeRoleAddress","type":"address"}],"name":"MigrateBridgeRole","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"feeAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"originTxId","type":"bytes32"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"supplyDecrement","type":"uint256"}],"name":"RemoveSwapToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"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"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"}],"name":"Unwrap","type":"event"},{"inputs":[{"internalType":"uint256","name":"chainId","type":"uint256"}],"name":"addSupportedChainId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"supplyIncrement","type":"uint256"}],"name":"addSwapToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chainIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBridgeRoleAddress","type":"address"}],"name":"migrateBridgeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"feeAddress","type":"address"},{"internalType":"uint256","name":"feeAmount","type":"uint256"},{"internalType":"bytes32","name":"originTxId","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"supplyDecrement","type":"uint256"}],"name":"removeSwapToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"swapSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"chainId","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f436861696e6c696e6b20546f6b656e00000000000000000000000000000000008152506040518060400160405280600681526020017f4c494e4b2e6500000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200027d565b508060049080519060200190620000af9291906200027d565b505050620000cd336005620000ff60201b620017f91790919060201c565b60016007600080815260200190815260200160002060006101000a81548160ff02191690831515021790555062000491565b620001118282620001b260201b60201c565b1562000154576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014b90620003d7565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000226576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021d90620003f9565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8280546200028b906200042c565b90600052602060002090601f016020900481019282620002af5760008555620002fb565b82601f10620002ca57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fa578251825591602001919060010190620002dd565b5b5090506200030a91906200030e565b5090565b5b80821115620003295760008160009055506001016200030f565b5090565b60006200033c601f836200041b565b91507f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006000830152602082019050919050565b60006200037e6022836200041b565b91507f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620003f2816200032d565b9050919050565b6000602082019050818103600083015262000414816200036f565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200044557607f821691505b602082108114156200045c576200045b62000462565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6134f180620004a16000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806367fc19bb116100c3578063a457c2d71161007c578063a457c2d7146103ae578063a9059cbb146103de578063ab32dbb71461040e578063d004f0f71461043e578063dd62ed3e1461045a578063eff038301461048a5761014d565b806367fc19bb146102f05780636e2866711461030c57806370a082311461032857806379cc6790146103585780637c38b4571461037457806395d89b41146103905761014d565b8063313ce56711610115578063313ce5671461021e578063395093511461023c5780634000aea01461026c57806342966c681461029c5780635d9898d3146102b857806366de3b36146102d45761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806321d93090146101be57806323b872dd146101ee575b600080fd5b61015a6104a6565b6040516101679190612e51565b60405180910390f35b61018a60048036038101906101859190612377565b610538565b6040516101979190612e36565b60405180910390f35b6101a8610556565b6040516101b59190613153565b60405180910390f35b6101d860048036038101906101d39190612491565b610560565b6040516101e59190612e36565b60405180910390f35b61020860048036038101906102039190612328565b610580565b6040516102159190612e36565b60405180910390f35b610226610681565b60405161023391906131c7565b60405180910390f35b61025660048036038101906102519190612377565b61068a565b6040516102639190612e36565b60405180910390f35b6102866004803603810190610281919061242a565b610736565b6040516102939190612e36565b60405180910390f35b6102b660048036038101906102b19190612491565b6107cf565b005b6102d260048036038101906102cd91906122c3565b6107e3565b005b6102ee60048036038101906102e99190612491565b610898565b005b61030a600480360381019061030591906123b3565b6109ce565b005b610326600480360381019061032191906124ba565b610a85565b005b610342600480360381019061033d91906122c3565b610ba1565b60405161034f9190613153565b60405180910390f35b610372600480360381019061036d9190612377565b610be9565b005b61038e60048036038101906103899190612377565b610c6d565b005b610398610f6c565b6040516103a59190612e51565b60405180910390f35b6103c860048036038101906103c39190612377565b610ffe565b6040516103d59190612e36565b60405180910390f35b6103f860048036038101906103f39190612377565b6110f2565b6040516104059190612e36565b60405180910390f35b610428600480360381019061042391906122c3565b611110565b6040516104359190613153565b60405180910390f35b61045860048036038101906104539190612377565b61115c565b005b610474600480360381019061046f91906122ec565b6114ab565b6040516104819190613153565b60405180910390f35b6104a4600480360381019061049f9190612377565b611532565b005b6060600380546104b5906133a6565b80601f01602080910402602001604051908101604052809291908181526020018280546104e1906133a6565b801561052e5780601f106105035761010080835404028352916020019161052e565b820191906000526020600020905b81548152906001019060200180831161051157829003601f168201915b5050505050905090565b600061054c6105456118a1565b84846118a9565b6001905092915050565b6000600254905090565b60076020528060005260406000206000915054906101000a900460ff1681565b600061058d848484611a74565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105d86118a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90612fd3565b60405180910390fd5b610675856106646118a1565b858461067091906132d1565b6118a9565b60019150509392505050565b60006012905090565b600061072c6106976118a1565b8484600160006106a56118a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610727919061327b565b6118a9565b6001905092915050565b600061074284846110f2565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040516107a292919061316e565b60405180910390a36107b384611cf3565b156107c4576107c3848484611d06565b5b600190509392505050565b6107e06107da6118a1565b82611d80565b50565b6107f7336005611f5490919063ffffffff16565b610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90612fb3565b60405180910390fd5b61084a33600561201c90919063ffffffff16565b61085e8160056117f990919063ffffffff16565b7f871b00a4e20f8436702d0174eb87d84d7cd1dd5c34d4bb1b4e75438b3398d5128160405161088d9190612d61565b60405180910390a150565b6108ac336005611f5490919063ffffffff16565b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290612fb3565b60405180910390fd5b600046905080821415610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a906130b3565b60405180910390fd5b600115156007600084815260200190815260200160002060009054906101000a900460ff161515141561096657506109cb565b60016007600084815260200190815260200160002060006101000a81548160ff0219169083151502179055507f677e2d9a4ed9201aa86725fef875137fc53876e6b68036b974404762682bd122826040516109c19190613153565b60405180910390a1505b50565b6109e2336005611f5490919063ffffffff16565b610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890612fb3565b60405180910390fd5b610a2b85856120c3565b6000821115610a3f57610a3e83836120c3565b5b7f918d77674bb88eaf75afb307c9723ea6037706de68d6fc07dd0c6cba423a52508585858585604051610a76959493929190612da5565b60405180910390a15050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90612f93565b60405180910390fd5b600115156007600083815260200190815260200160002060009054906101000a900460ff16151514610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612f53565b60405180910390fd5b610b643383611d80565b7f37a06799a3500428a773d00284aa706101f5ad94dae9ec37e1c3773aa54c33048282604051610b9592919061319e565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610bfc83610bf76118a1565b6114ab565b905081811015610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890613033565b60405180910390fd5b610c5e83610c4d6118a1565b8484610c5991906132d1565b6118a9565b610c688383611d80565b505050565b610c81336005611f5490919063ffffffff16565b610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790612fb3565b60405180910390fd5b610cc982611cf3565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90612ff3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612f33565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541115610ebd5780600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154610e7291906132d1565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550610f2f565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000905550505b7fd3b4025ff115b79bf2ec5a73c9c784ba8aa9f8f6ba9186b255895c1a9f9042a38282604051610f60929190612d7c565b60405180910390a15050565b606060048054610f7b906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906133a6565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b5050505050905090565b6000806001600061100d6118a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190613113565b60405180910390fd5b6110e76110d56118a1565b8585846110e291906132d1565b6118a9565b600191505092915050565b60006111066110ff6118a1565b8484611a74565b6001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b61116582611cf3565b6111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906130f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906130d3565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101548111156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612f13565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461134991906132d1565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b8152600401611431929190612d7c565b600060405180830381600087803b15801561144b57600080fd5b505af115801561145f573d6000803e3d6000fd5b5050505061146d33836120c3565b7f562c219552544ec4c9d7a8eb850f80ea152973e315372bf4999fe7c953ea004f838360405161149e929190612d7c565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611546336005611f5490919063ffffffff16565b611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612fb3565b60405180910390fd5b61158e82611cf3565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490612ff3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117275760405180604001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200182815250600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050506117bc565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154611775919061327b565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b7f3e4fdfb0f47da284fe8b5b3a7e5d10b211e323c9a0c144c421ae1d211873f85382826040516117ed929190612d7c565b60405180910390a15050565b6118038282611f54565b15611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612e93565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090613093565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090612ed3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a679190613153565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613073565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90612e73565b60405180910390fd5b611b5f838383612217565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90612ef3565b60405180910390fd5b8181611bf191906132d1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c81919061327b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ce59190613153565b60405180910390a350505050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363385856040518463ffffffff1660e01b8152600401611d4893929190612df8565b600060405180830381600087803b158015611d6257600080fd5b505af1158015611d76573d6000803e3d6000fd5b5050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790613053565b60405180910390fd5b611dfc82600083612217565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990612eb3565b60405180910390fd5b8181611e8e91906132d1565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611ee291906132d1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f479190613153565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613013565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120268282611f54565b612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90612f73565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a90613133565b60405180910390fd5b61213f60008383612217565b8060026000828254612151919061327b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a6919061327b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161220b9190613153565b60405180910390a35050565b505050565b600061222f61222a84613213565b6131e2565b90508281526020810184848401111561224757600080fd5b612252848285613364565b509392505050565b60008135905061226981613476565b92915050565b60008135905061227e8161348d565b92915050565b600082601f83011261229557600080fd5b81356122a584826020860161221c565b91505092915050565b6000813590506122bd816134a4565b92915050565b6000602082840312156122d557600080fd5b60006122e38482850161225a565b91505092915050565b600080604083850312156122ff57600080fd5b600061230d8582860161225a565b925050602061231e8582860161225a565b9150509250929050565b60008060006060848603121561233d57600080fd5b600061234b8682870161225a565b935050602061235c8682870161225a565b925050604061236d868287016122ae565b9150509250925092565b6000806040838503121561238a57600080fd5b60006123988582860161225a565b92505060206123a9858286016122ae565b9150509250929050565b600080600080600060a086880312156123cb57600080fd5b60006123d98882890161225a565b95505060206123ea888289016122ae565b94505060406123fb8882890161225a565b935050606061240c888289016122ae565b925050608061241d8882890161226f565b9150509295509295909350565b60008060006060848603121561243f57600080fd5b600061244d8682870161225a565b935050602061245e868287016122ae565b925050604084013567ffffffffffffffff81111561247b57600080fd5b61248786828701612284565b9150509250925092565b6000602082840312156124a357600080fd5b60006124b1848285016122ae565b91505092915050565b600080604083850312156124cd57600080fd5b60006124db858286016122ae565b92505060206124ec858286016122ae565b9150509250929050565b6124ff81613305565b82525050565b61250e81613317565b82525050565b61251d81613323565b82525050565b600061252e82613243565b6125388185613259565b9350612548818560208601613373565b61255181613465565b840191505092915050565b60006125678261324e565b612571818561326a565b9350612581818560208601613373565b61258a81613465565b840191505092915050565b60006125a260238361326a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612608601f8361326a565b91507f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006000830152602082019050919050565b600061264860228361326a565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126ae60228361326a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061271460268361326a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061277a60208361326a565b91507f5377617020616d6f756e74206973206d6f7265207468616e20737570706c792e6000830152602082019050919050565b60006127ba60198361326a565b91507f5377617020746f6b656e206e6f7420737570706f727465642e000000000000006000830152602082019050919050565b60006127fa60178361326a565b91507f436861696e204944206e6f7420737570706f727465642e0000000000000000006000830152602082019050919050565b600061283a60218361326a565b91507f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128a060298361326a565b91507f43616c6c732066726f6d20736d61727420636f6e747261637473206e6f74207360008301527f7570706f727465642e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612906600d8361326a565b91507f556e617574686f72697a65642e000000000000000000000000000000000000006000830152602082019050919050565b600061294660288361326a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129ac60188361326a565b91507f41646472657373206973206e6f7420636f6e74726163742e00000000000000006000830152602082019050919050565b60006129ec60228361326a565b91507f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a5260248361326a565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ab860218361326a565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b1e60258361326a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b8460248361326a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612bea601c8361326a565b91507f43616e6e6f74206164642063757272656e7420636861696e2049442e000000006000830152602082019050919050565b6000612c2a601d8361326a565b91507f5377617020746f6b656e206973206e6f74206120636f6e74726163742e0000006000830152602082019050919050565b6000612c6a60188361326a565b91507f546f6b656e206973206e6f74206120636f6e74726163742e00000000000000006000830152602082019050919050565b6000612caa60258361326a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d10601f8361326a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b612d4c8161334d565b82525050565b612d5b81613357565b82525050565b6000602082019050612d7660008301846124f6565b92915050565b6000604082019050612d9160008301856124f6565b612d9e6020830184612d43565b9392505050565b600060a082019050612dba60008301886124f6565b612dc76020830187612d43565b612dd460408301866124f6565b612de16060830185612d43565b612dee6080830184612514565b9695505050505050565b6000606082019050612e0d60008301866124f6565b612e1a6020830185612d43565b8181036040830152612e2c8184612523565b9050949350505050565b6000602082019050612e4b6000830184612505565b92915050565b60006020820190508181036000830152612e6b818461255c565b905092915050565b60006020820190508181036000830152612e8c81612595565b9050919050565b60006020820190508181036000830152612eac816125fb565b9050919050565b60006020820190508181036000830152612ecc8161263b565b9050919050565b60006020820190508181036000830152612eec816126a1565b9050919050565b60006020820190508181036000830152612f0c81612707565b9050919050565b60006020820190508181036000830152612f2c8161276d565b9050919050565b60006020820190508181036000830152612f4c816127ad565b9050919050565b60006020820190508181036000830152612f6c816127ed565b9050919050565b60006020820190508181036000830152612f8c8161282d565b9050919050565b60006020820190508181036000830152612fac81612893565b9050919050565b60006020820190508181036000830152612fcc816128f9565b9050919050565b60006020820190508181036000830152612fec81612939565b9050919050565b6000602082019050818103600083015261300c8161299f565b9050919050565b6000602082019050818103600083015261302c816129df565b9050919050565b6000602082019050818103600083015261304c81612a45565b9050919050565b6000602082019050818103600083015261306c81612aab565b9050919050565b6000602082019050818103600083015261308c81612b11565b9050919050565b600060208201905081810360008301526130ac81612b77565b9050919050565b600060208201905081810360008301526130cc81612bdd565b9050919050565b600060208201905081810360008301526130ec81612c1d565b9050919050565b6000602082019050818103600083015261310c81612c5d565b9050919050565b6000602082019050818103600083015261312c81612c9d565b9050919050565b6000602082019050818103600083015261314c81612d03565b9050919050565b60006020820190506131686000830184612d43565b92915050565b60006040820190506131836000830185612d43565b81810360208301526131958184612523565b90509392505050565b60006040820190506131b36000830185612d43565b6131c06020830184612d43565b9392505050565b60006020820190506131dc6000830184612d52565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561320957613208613436565b5b8060405250919050565b600067ffffffffffffffff82111561322e5761322d613436565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006132868261334d565b91506132918361334d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c6576132c56133d8565b5b828201905092915050565b60006132dc8261334d565b91506132e78361334d565b9250828210156132fa576132f96133d8565b5b828203905092915050565b60006133108261332d565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613391578082015181840152602081019050613376565b838111156133a0576000848401525b50505050565b600060028204905060018216806133be57607f821691505b602082108114156133d2576133d1613407565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61347f81613305565b811461348a57600080fd5b50565b61349681613323565b81146134a157600080fd5b50565b6134ad8161334d565b81146134b857600080fd5b5056fea2646970667358221220f3bc2e9994654a8cebe66cc9f3cb34ec2221cc3e016cf4381ff1d762ae14b29b64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806367fc19bb116100c3578063a457c2d71161007c578063a457c2d7146103ae578063a9059cbb146103de578063ab32dbb71461040e578063d004f0f71461043e578063dd62ed3e1461045a578063eff038301461048a5761014d565b806367fc19bb146102f05780636e2866711461030c57806370a082311461032857806379cc6790146103585780637c38b4571461037457806395d89b41146103905761014d565b8063313ce56711610115578063313ce5671461021e578063395093511461023c5780634000aea01461026c57806342966c681461029c5780635d9898d3146102b857806366de3b36146102d45761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806321d93090146101be57806323b872dd146101ee575b600080fd5b61015a6104a6565b6040516101679190612e51565b60405180910390f35b61018a60048036038101906101859190612377565b610538565b6040516101979190612e36565b60405180910390f35b6101a8610556565b6040516101b59190613153565b60405180910390f35b6101d860048036038101906101d39190612491565b610560565b6040516101e59190612e36565b60405180910390f35b61020860048036038101906102039190612328565b610580565b6040516102159190612e36565b60405180910390f35b610226610681565b60405161023391906131c7565b60405180910390f35b61025660048036038101906102519190612377565b61068a565b6040516102639190612e36565b60405180910390f35b6102866004803603810190610281919061242a565b610736565b6040516102939190612e36565b60405180910390f35b6102b660048036038101906102b19190612491565b6107cf565b005b6102d260048036038101906102cd91906122c3565b6107e3565b005b6102ee60048036038101906102e99190612491565b610898565b005b61030a600480360381019061030591906123b3565b6109ce565b005b610326600480360381019061032191906124ba565b610a85565b005b610342600480360381019061033d91906122c3565b610ba1565b60405161034f9190613153565b60405180910390f35b610372600480360381019061036d9190612377565b610be9565b005b61038e60048036038101906103899190612377565b610c6d565b005b610398610f6c565b6040516103a59190612e51565b60405180910390f35b6103c860048036038101906103c39190612377565b610ffe565b6040516103d59190612e36565b60405180910390f35b6103f860048036038101906103f39190612377565b6110f2565b6040516104059190612e36565b60405180910390f35b610428600480360381019061042391906122c3565b611110565b6040516104359190613153565b60405180910390f35b61045860048036038101906104539190612377565b61115c565b005b610474600480360381019061046f91906122ec565b6114ab565b6040516104819190613153565b60405180910390f35b6104a4600480360381019061049f9190612377565b611532565b005b6060600380546104b5906133a6565b80601f01602080910402602001604051908101604052809291908181526020018280546104e1906133a6565b801561052e5780601f106105035761010080835404028352916020019161052e565b820191906000526020600020905b81548152906001019060200180831161051157829003601f168201915b5050505050905090565b600061054c6105456118a1565b84846118a9565b6001905092915050565b6000600254905090565b60076020528060005260406000206000915054906101000a900460ff1681565b600061058d848484611a74565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105d86118a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90612fd3565b60405180910390fd5b610675856106646118a1565b858461067091906132d1565b6118a9565b60019150509392505050565b60006012905090565b600061072c6106976118a1565b8484600160006106a56118a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610727919061327b565b6118a9565b6001905092915050565b600061074284846110f2565b508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040516107a292919061316e565b60405180910390a36107b384611cf3565b156107c4576107c3848484611d06565b5b600190509392505050565b6107e06107da6118a1565b82611d80565b50565b6107f7336005611f5490919063ffffffff16565b610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90612fb3565b60405180910390fd5b61084a33600561201c90919063ffffffff16565b61085e8160056117f990919063ffffffff16565b7f871b00a4e20f8436702d0174eb87d84d7cd1dd5c34d4bb1b4e75438b3398d5128160405161088d9190612d61565b60405180910390a150565b6108ac336005611f5490919063ffffffff16565b6108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290612fb3565b60405180910390fd5b600046905080821415610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a906130b3565b60405180910390fd5b600115156007600084815260200190815260200160002060009054906101000a900460ff161515141561096657506109cb565b60016007600084815260200190815260200160002060006101000a81548160ff0219169083151502179055507f677e2d9a4ed9201aa86725fef875137fc53876e6b68036b974404762682bd122826040516109c19190613153565b60405180910390a1505b50565b6109e2336005611f5490919063ffffffff16565b610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1890612fb3565b60405180910390fd5b610a2b85856120c3565b6000821115610a3f57610a3e83836120c3565b5b7f918d77674bb88eaf75afb307c9723ea6037706de68d6fc07dd0c6cba423a52508585858585604051610a76959493929190612da5565b60405180910390a15050505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90612f93565b60405180910390fd5b600115156007600083815260200190815260200160002060009054906101000a900460ff16151514610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190612f53565b60405180910390fd5b610b643383611d80565b7f37a06799a3500428a773d00284aa706101f5ad94dae9ec37e1c3773aa54c33048282604051610b9592919061319e565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610bfc83610bf76118a1565b6114ab565b905081811015610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890613033565b60405180910390fd5b610c5e83610c4d6118a1565b8484610c5991906132d1565b6118a9565b610c688383611d80565b505050565b610c81336005611f5490919063ffffffff16565b610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790612fb3565b60405180910390fd5b610cc982611cf3565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90612ff3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612f33565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541115610ebd5780600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154610e7291906132d1565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550610f2f565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000905550505b7fd3b4025ff115b79bf2ec5a73c9c784ba8aa9f8f6ba9186b255895c1a9f9042a38282604051610f60929190612d7c565b60405180910390a15050565b606060048054610f7b906133a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906133a6565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b5050505050905090565b6000806001600061100d6118a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190613113565b60405180910390fd5b6110e76110d56118a1565b8585846110e291906132d1565b6118a9565b600191505092915050565b60006111066110ff6118a1565b8484611a74565b6001905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b61116582611cf3565b6111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906130f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906130d3565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101548111156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612f13565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461134991906132d1565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166379cc679033846040518363ffffffff1660e01b8152600401611431929190612d7c565b600060405180830381600087803b15801561144b57600080fd5b505af115801561145f573d6000803e3d6000fd5b5050505061146d33836120c3565b7f562c219552544ec4c9d7a8eb850f80ea152973e315372bf4999fe7c953ea004f838360405161149e929190612d7c565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611546336005611f5490919063ffffffff16565b611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612fb3565b60405180910390fd5b61158e82611cf3565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490612ff3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156117275760405180604001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200182815250600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101559050506117bc565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154611775919061327b565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b7f3e4fdfb0f47da284fe8b5b3a7e5d10b211e323c9a0c144c421ae1d211873f85382826040516117ed929190612d7c565b60405180910390a15050565b6118038282611f54565b15611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612e93565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191090613093565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090612ed3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a679190613153565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613073565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90612e73565b60405180910390fd5b611b5f838383612217565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90612ef3565b60405180910390fd5b8181611bf191906132d1565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c81919061327b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ce59190613153565b60405180910390a350505050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed363385856040518463ffffffff1660e01b8152600401611d4893929190612df8565b600060405180830381600087803b158015611d6257600080fd5b505af1158015611d76573d6000803e3d6000fd5b5050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790613053565b60405180910390fd5b611dfc82600083612217565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990612eb3565b60405180910390fd5b8181611e8e91906132d1565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611ee291906132d1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f479190613153565b60405180910390a3505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613013565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120268282611f54565b612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90612f73565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a90613133565b60405180910390fd5b61213f60008383612217565b8060026000828254612151919061327b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a6919061327b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161220b9190613153565b60405180910390a35050565b505050565b600061222f61222a84613213565b6131e2565b90508281526020810184848401111561224757600080fd5b612252848285613364565b509392505050565b60008135905061226981613476565b92915050565b60008135905061227e8161348d565b92915050565b600082601f83011261229557600080fd5b81356122a584826020860161221c565b91505092915050565b6000813590506122bd816134a4565b92915050565b6000602082840312156122d557600080fd5b60006122e38482850161225a565b91505092915050565b600080604083850312156122ff57600080fd5b600061230d8582860161225a565b925050602061231e8582860161225a565b9150509250929050565b60008060006060848603121561233d57600080fd5b600061234b8682870161225a565b935050602061235c8682870161225a565b925050604061236d868287016122ae565b9150509250925092565b6000806040838503121561238a57600080fd5b60006123988582860161225a565b92505060206123a9858286016122ae565b9150509250929050565b600080600080600060a086880312156123cb57600080fd5b60006123d98882890161225a565b95505060206123ea888289016122ae565b94505060406123fb8882890161225a565b935050606061240c888289016122ae565b925050608061241d8882890161226f565b9150509295509295909350565b60008060006060848603121561243f57600080fd5b600061244d8682870161225a565b935050602061245e868287016122ae565b925050604084013567ffffffffffffffff81111561247b57600080fd5b61248786828701612284565b9150509250925092565b6000602082840312156124a357600080fd5b60006124b1848285016122ae565b91505092915050565b600080604083850312156124cd57600080fd5b60006124db858286016122ae565b92505060206124ec858286016122ae565b9150509250929050565b6124ff81613305565b82525050565b61250e81613317565b82525050565b61251d81613323565b82525050565b600061252e82613243565b6125388185613259565b9350612548818560208601613373565b61255181613465565b840191505092915050565b60006125678261324e565b612571818561326a565b9350612581818560208601613373565b61258a81613465565b840191505092915050565b60006125a260238361326a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612608601f8361326a565b91507f526f6c65733a206163636f756e7420616c72656164792068617320726f6c65006000830152602082019050919050565b600061264860228361326a565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126ae60228361326a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061271460268361326a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061277a60208361326a565b91507f5377617020616d6f756e74206973206d6f7265207468616e20737570706c792e6000830152602082019050919050565b60006127ba60198361326a565b91507f5377617020746f6b656e206e6f7420737570706f727465642e000000000000006000830152602082019050919050565b60006127fa60178361326a565b91507f436861696e204944206e6f7420737570706f727465642e0000000000000000006000830152602082019050919050565b600061283a60218361326a565b91507f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128a060298361326a565b91507f43616c6c732066726f6d20736d61727420636f6e747261637473206e6f74207360008301527f7570706f727465642e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612906600d8361326a565b91507f556e617574686f72697a65642e000000000000000000000000000000000000006000830152602082019050919050565b600061294660288361326a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129ac60188361326a565b91507f41646472657373206973206e6f7420636f6e74726163742e00000000000000006000830152602082019050919050565b60006129ec60228361326a565b91507f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a5260248361326a565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ab860218361326a565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b1e60258361326a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b8460248361326a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612bea601c8361326a565b91507f43616e6e6f74206164642063757272656e7420636861696e2049442e000000006000830152602082019050919050565b6000612c2a601d8361326a565b91507f5377617020746f6b656e206973206e6f74206120636f6e74726163742e0000006000830152602082019050919050565b6000612c6a60188361326a565b91507f546f6b656e206973206e6f74206120636f6e74726163742e00000000000000006000830152602082019050919050565b6000612caa60258361326a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d10601f8361326a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b612d4c8161334d565b82525050565b612d5b81613357565b82525050565b6000602082019050612d7660008301846124f6565b92915050565b6000604082019050612d9160008301856124f6565b612d9e6020830184612d43565b9392505050565b600060a082019050612dba60008301886124f6565b612dc76020830187612d43565b612dd460408301866124f6565b612de16060830185612d43565b612dee6080830184612514565b9695505050505050565b6000606082019050612e0d60008301866124f6565b612e1a6020830185612d43565b8181036040830152612e2c8184612523565b9050949350505050565b6000602082019050612e4b6000830184612505565b92915050565b60006020820190508181036000830152612e6b818461255c565b905092915050565b60006020820190508181036000830152612e8c81612595565b9050919050565b60006020820190508181036000830152612eac816125fb565b9050919050565b60006020820190508181036000830152612ecc8161263b565b9050919050565b60006020820190508181036000830152612eec816126a1565b9050919050565b60006020820190508181036000830152612f0c81612707565b9050919050565b60006020820190508181036000830152612f2c8161276d565b9050919050565b60006020820190508181036000830152612f4c816127ad565b9050919050565b60006020820190508181036000830152612f6c816127ed565b9050919050565b60006020820190508181036000830152612f8c8161282d565b9050919050565b60006020820190508181036000830152612fac81612893565b9050919050565b60006020820190508181036000830152612fcc816128f9565b9050919050565b60006020820190508181036000830152612fec81612939565b9050919050565b6000602082019050818103600083015261300c8161299f565b9050919050565b6000602082019050818103600083015261302c816129df565b9050919050565b6000602082019050818103600083015261304c81612a45565b9050919050565b6000602082019050818103600083015261306c81612aab565b9050919050565b6000602082019050818103600083015261308c81612b11565b9050919050565b600060208201905081810360008301526130ac81612b77565b9050919050565b600060208201905081810360008301526130cc81612bdd565b9050919050565b600060208201905081810360008301526130ec81612c1d565b9050919050565b6000602082019050818103600083015261310c81612c5d565b9050919050565b6000602082019050818103600083015261312c81612c9d565b9050919050565b6000602082019050818103600083015261314c81612d03565b9050919050565b60006020820190506131686000830184612d43565b92915050565b60006040820190506131836000830185612d43565b81810360208301526131958184612523565b90509392505050565b60006040820190506131b36000830185612d43565b6131c06020830184612d43565b9392505050565b60006020820190506131dc6000830184612d52565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561320957613208613436565b5b8060405250919050565b600067ffffffffffffffff82111561322e5761322d613436565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006132868261334d565b91506132918361334d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c6576132c56133d8565b5b828201905092915050565b60006132dc8261334d565b91506132e78361334d565b9250828210156132fa576132f96133d8565b5b828203905092915050565b60006133108261332d565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613391578082015181840152602081019050613376565b838111156133a0576000848401525b50505050565b600060028204905060018216806133be57607f821691505b602082108114156133d2576133d1613407565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61347f81613305565b811461348a57600080fd5b50565b61349681613323565b81146134a157600080fd5b50565b6134ad8161334d565b81146134b857600080fd5b5056fea2646970667358221220f3bc2e9994654a8cebe66cc9f3cb34ec2221cc3e016cf4381ff1d762ae14b29b64736f6c63430008000033
Deployed Bytecode Sourcemap
18176:8820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6522:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8689:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7642:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18606:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9340:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19304:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10171:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26371:361;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15782:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21864:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20417:587;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19886:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21379:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7813:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16192:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23522:950;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6741:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10889:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8153:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24651:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24925:801;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8391:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22425:863;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6522:100;6576:13;6609:5;6602:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6522:100;:::o;8689:169::-;8772:4;8789:39;8798:12;:10;:12::i;:::-;8812:7;8821:6;8789:8;:39::i;:::-;8846:4;8839:11;;8689:169;;;;:::o;7642:108::-;7703:7;7730:12;;7723:19;;7642:108;:::o;18606:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;9340:422::-;9446:4;9463:36;9473:6;9481:9;9492:6;9463:9;:36::i;:::-;9512:24;9539:11;:19;9551:6;9539:19;;;;;;;;;;;;;;;:33;9559:12;:10;:12::i;:::-;9539:33;;;;;;;;;;;;;;;;9512:60;;9611:6;9591:16;:26;;9583:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9673:57;9682:6;9690:12;:10;:12::i;:::-;9723:6;9704:16;:25;;;;:::i;:::-;9673:8;:57::i;:::-;9750:4;9743:11;;;9340:422;;;;;:::o;19304:105::-;19362:5;18458:2;19380:21;;19304:105;:::o;10171:215::-;10259:4;10276:80;10285:12;:10;:12::i;:::-;10299:7;10345:10;10308:11;:25;10320:12;:10;:12::i;:::-;10308:25;;;;;;;;;;;;;;;:34;10334:7;10308:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10276:8;:80::i;:::-;10374:4;10367:11;;10171:215;;;;:::o;26371:361::-;26509:12;26534:25;26549:2;26553:5;26534:14;:25::i;:::-;;26596:2;26575:37;;26584:10;26575:37;;;26600:5;26607:4;26575:37;;;;;;;:::i;:::-;;;;;;;;26627:14;26638:2;26627:10;:14::i;:::-;26623:80;;;26658:33;26675:2;26679:5;26686:4;26658:16;:33::i;:::-;26623:80;26720:4;26713:11;;26371:361;;;;;:::o;15782:91::-;15838:27;15844:12;:10;:12::i;:::-;15858:6;15838:5;:27::i;:::-;15782:91;:::o;21864:280::-;21947:27;21963:10;21947:11;:15;;:27;;;;:::i;:::-;21939:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;22003:30;22022:10;22003:11;:18;;:30;;;;:::i;:::-;22044:37;22060:20;22044:11;:15;;:37;;;;:::i;:::-;22097:39;22115:20;22097:39;;;;;;:::i;:::-;;;;;;;;21864:280;:::o;20417:587::-;20489:27;20505:10;20489:11;:15;;:27;;;;:::i;:::-;20481:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;20630:22;20705:9;20687:27;;20754:14;20743:7;:25;;20735:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;20877:4;20856:25;;:8;:17;20865:7;20856:17;;;;;;;;;;;;;;;;;;;;;:25;;;20852:64;;;20898:7;;;20852:64;20948:4;20928:8;:17;20937:7;20928:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;20968:28;20988:7;20968:28;;;;;;:::i;:::-;;;;;;;;20417:587;;;:::o;19886:411::-;20065:27;20081:10;20065:11;:15;;:27;;;;:::i;:::-;20057:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;20121:17;20127:2;20131:6;20121:5;:17::i;:::-;20165:1;20153:9;:13;20149:74;;;20183:28;20189:10;20201:9;20183:5;:28::i;:::-;20149:74;20238:51;20243:2;20247:6;20255:10;20267:9;20278:10;20238:51;;;;;;;;;;:::i;:::-;;;;;;;;19886:411;;;;;:::o;21379:336::-;21481:10;21468:23;;:9;:23;;;21446:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;21600:4;21579:25;;:8;:17;21588:7;21579:17;;;;;;;;;;;;;;;;;;;;;:25;;;21571:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;21643:25;21649:10;21661:6;21643:5;:25::i;:::-;21684:23;21691:6;21699:7;21684:23;;;;;;;:::i;:::-;;;;;;;;21379:336;;:::o;7813:127::-;7887:7;7914:9;:18;7924:7;7914:18;;;;;;;;;;;;;;;;7907:25;;7813:127;;;:::o;16192:332::-;16269:24;16296:32;16306:7;16315:12;:10;:12::i;:::-;16296:9;:32::i;:::-;16269:59;;16367:6;16347:16;:26;;16339:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;16425:58;16434:7;16443:12;:10;:12::i;:::-;16476:6;16457:16;:25;;;;:::i;:::-;16425:8;:58::i;:::-;16494:22;16500:7;16509:6;16494:5;:22::i;:::-;16192:332;;;:::o;23522:950::-;23637:27;23653:10;23637:11;:15;;:27;;;;:::i;:::-;23629:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;23701:27;23712:15;23701:10;:27::i;:::-;23693:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23843:1;23790:55;;:10;:27;23801:15;23790:27;;;;;;;;;;;;;;;:41;;;;;;;;;;;;:55;;;;23768:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;24166:15;24129:10;:27;24140:15;24129:27;;;;;;;;;;;;;;;:34;;;:52;24125:275;;;24306:15;24252:10;:27;24263:15;24252:27;;;;;;;;;;;;;;;:34;;;:69;;;;:::i;:::-;24198:10;:27;24209:15;24198:27;;;;;;;;;;;;;;;:34;;:123;;;;24125:275;;;24361:10;:27;24372:15;24361:27;;;;;;;;;;;;;;;;24354:34;;;;;;;;;;;;;;;;;;;;;;;24125:275;24415:49;24431:15;24448;24415:49;;;;;;;:::i;:::-;;;;;;;;23522:950;;:::o;6741:104::-;6797:13;6830:7;6823:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6741:104;:::o;10889:377::-;10982:4;10999:24;11026:11;:25;11038:12;:10;:12::i;:::-;11026:25;;;;;;;;;;;;;;;:34;11052:7;11026:34;;;;;;;;;;;;;;;;10999:61;;11099:15;11079:16;:35;;11071:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11167:67;11176:12;:10;:12::i;:::-;11190:7;11218:15;11199:16;:34;;;;:::i;:::-;11167:8;:67::i;:::-;11254:4;11247:11;;;10889:377;;;;:::o;8153:175::-;8239:4;8256:42;8266:12;:10;:12::i;:::-;8280:9;8291:6;8256:9;:42::i;:::-;8316:4;8309:11;;8153:175;;;;:::o;24651:115::-;24707:7;24734:10;:17;24745:5;24734:17;;;;;;;;;;;;;;;:24;;;24727:31;;24651:115;;;:::o;24925:801::-;24996:17;25007:5;24996:10;:17::i;:::-;24988:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;25118:1;25075:45;;:10;:17;25086:5;25075:17;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:45;;;;25053:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;25220:10;:17;25231:5;25220:17;;;;;;;;;;;;;;;:24;;;25210:6;:34;;25188:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;25415:6;25388:10;:17;25399:5;25388:17;;;;;;;;;;;;;;;:24;;;:33;;;;:::i;:::-;25361:10;:17;25372:5;25361:17;;;;;;;;;;;;;;;:24;;:60;;;;25466:23;25520:10;:17;25531:5;25520:17;;;;;;;;;;;;;;;:31;;;;;;;;;;;;25466:96;;25573:9;:18;;;25592:10;25604:6;25573:38;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25656:25;25662:10;25674:6;25656:5;:25::i;:::-;25699:19;25704:5;25711:6;25699:19;;;;;;;:::i;:::-;;;;;;;;24925:801;;;:::o;8391:151::-;8480:7;8507:11;:18;8519:5;8507:18;;;;;;;;;;;;;;;:27;8526:7;8507:27;;;;;;;;;;;;;;;;8500:34;;8391:151;;;;:::o;22425:863::-;22537:27;22553:10;22537:11;:15;;:27;;;;:::i;:::-;22529:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;22601:27;22612:15;22601:10;:27::i;:::-;22593:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22885:1;22832:55;;:10;:27;22843:15;22832:27;;;;;;;;;;;;;;;:41;;;;;;;;;;;;:55;;;22828:391;;;22934:117;;;;;;;;22978:15;22934:117;;;;;;23020:15;22934:117;;;22904:10;:27;22915:15;22904:27;;;;;;;;;;;;;;;:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22828:391;;;23192:15;23138:10;:27;23149:15;23138:27;;;;;;;;;;;;;;;:34;;;:69;;;;:::i;:::-;23084:10;:27;23095:15;23084:27;;;;;;;;;;;;;;;:34;;:123;;;;22828:391;23234:46;23247:15;23264;23234:46;;;;;;;:::i;:::-;;;;;;;;22425:863;;:::o;17325:178::-;17403:18;17407:4;17413:7;17403:3;:18::i;:::-;17402:19;17394:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17491:4;17468;:11;;:20;17480:7;17468:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;17325:178;;:::o;4111:98::-;4164:7;4191:10;4184:17;;4111:98;:::o;14245:346::-;14364:1;14347:19;;:5;:19;;;;14339:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14445:1;14426:21;;:7;:21;;;;14418:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14529:6;14499:11;:18;14511:5;14499:18;;;;;;;;;;;;;;;:27;14518:7;14499:27;;;;;;;;;;;;;;;:36;;;;14567:7;14551:32;;14560:5;14551:32;;;14576:6;14551:32;;;;;;:::i;:::-;;;;;;;;14245:346;;;:::o;11756:604::-;11880:1;11862:20;;:6;:20;;;;11854:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11964:1;11943:23;;:9;:23;;;;11935:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12019:47;12040:6;12048:9;12059:6;12019:20;:47::i;:::-;12079:21;12103:9;:17;12113:6;12103:17;;;;;;;;;;;;;;;;12079:41;;12156:6;12139:13;:23;;12131:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12252:6;12236:13;:22;;;;:::i;:::-;12216:9;:17;12226:6;12216:17;;;;;;;;;;;;;;;:42;;;;12293:6;12269:9;:20;12279:9;12269:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12334:9;12317:35;;12326:6;12317:35;;;12345:6;12317:35;;;;;;:::i;:::-;;;;;;;;11756:604;;;;:::o;25868:203::-;25924:12;25949:14;26020:4;26008:17;25998:27;;26062:1;26053:6;:10;26046:17;;;25868:203;;;:::o;26756:237::-;26881:23;26922:2;26881:44;;26936:8;:24;;;26961:10;26973:5;26980:4;26936:49;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26756:237;;;;:::o;13313:494::-;13416:1;13397:21;;:7;:21;;;;13389:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13469:49;13490:7;13507:1;13511:6;13469:20;:49::i;:::-;13531:22;13556:9;:18;13566:7;13556:18;;;;;;;;;;;;;;;;13531:43;;13611:6;13593:14;:24;;13585:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13705:6;13688:14;:23;;;;:::i;:::-;13667:9;:18;13677:7;13667:18;;;;;;;;;;;;;;;:44;;;;13738:6;13722:12;;:22;;;;;;;:::i;:::-;;;;;;;;13788:1;13762:37;;13771:7;13762:37;;;13792:6;13762:37;;;;;;:::i;:::-;;;;;;;;13313:494;;;:::o;17861:235::-;17960:4;18009:1;17990:21;;:7;:21;;;;17982:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18068:4;:11;;:20;18080:7;18068:20;;;;;;;;;;;;;;;;;;;;;;;;;18061:27;;17861:235;;;;:::o;17583:183::-;17663:18;17667:4;17673:7;17663:3;:18::i;:::-;17655:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17753:5;17730:4;:11;;:20;17742:7;17730:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;17583:183;;:::o;12642:338::-;12745:1;12726:21;;:7;:21;;;;12718:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12796:49;12825:1;12829:7;12838:6;12796:20;:49::i;:::-;12874:6;12858:12;;:22;;;;;;;:::i;:::-;;;;;;;;12913:6;12891:9;:18;12901:7;12891:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12956:7;12935:37;;12952:1;12935:37;;;12965:6;12935:37;;;;;;:::i;:::-;;;;;;;;12642:338;;:::o;15194:92::-;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:139::-;;584:6;571:20;562:29;;600:33;627:5;600:33;:::i;:::-;552:87;;;;:::o;658:271::-;;762:3;755:4;747:6;743:17;739:27;729:2;;780:1;777;770:12;729:2;820:6;807:20;845:78;919:3;911:6;904:4;896:6;892:17;845:78;:::i;:::-;836:87;;719:210;;;;;:::o;935:139::-;;1019:6;1006:20;997:29;;1035:33;1062:5;1035:33;:::i;:::-;987:87;;;;:::o;1080:262::-;;1188:2;1176:9;1167:7;1163:23;1159:32;1156:2;;;1204:1;1201;1194:12;1156:2;1247:1;1272:53;1317:7;1308:6;1297:9;1293:22;1272:53;:::i;:::-;1262:63;;1218:117;1146:196;;;;:::o;1348:407::-;;;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1489:1;1486;1479:12;1441:2;1532:1;1557:53;1602:7;1593:6;1582:9;1578:22;1557:53;:::i;:::-;1547:63;;1503:117;1659:2;1685:53;1730:7;1721:6;1710:9;1706:22;1685:53;:::i;:::-;1675:63;;1630:118;1431:324;;;;;:::o;1761:552::-;;;;1903:2;1891:9;1882:7;1878:23;1874:32;1871:2;;;1919:1;1916;1909:12;1871:2;1962:1;1987:53;2032:7;2023:6;2012:9;2008:22;1987:53;:::i;:::-;1977:63;;1933:117;2089:2;2115:53;2160:7;2151:6;2140:9;2136:22;2115:53;:::i;:::-;2105:63;;2060:118;2217:2;2243:53;2288:7;2279:6;2268:9;2264:22;2243:53;:::i;:::-;2233:63;;2188:118;1861:452;;;;;:::o;2319:407::-;;;2444:2;2432:9;2423:7;2419:23;2415:32;2412:2;;;2460:1;2457;2450:12;2412:2;2503:1;2528:53;2573:7;2564:6;2553:9;2549:22;2528:53;:::i;:::-;2518:63;;2474:117;2630:2;2656:53;2701:7;2692:6;2681:9;2677:22;2656:53;:::i;:::-;2646:63;;2601:118;2402:324;;;;;:::o;2732:844::-;;;;;;2908:3;2896:9;2887:7;2883:23;2879:33;2876:2;;;2925:1;2922;2915:12;2876:2;2968:1;2993:53;3038:7;3029:6;3018:9;3014:22;2993:53;:::i;:::-;2983:63;;2939:117;3095:2;3121:53;3166:7;3157:6;3146:9;3142:22;3121:53;:::i;:::-;3111:63;;3066:118;3223:2;3249:53;3294:7;3285:6;3274:9;3270:22;3249:53;:::i;:::-;3239:63;;3194:118;3351:2;3377:53;3422:7;3413:6;3402:9;3398:22;3377:53;:::i;:::-;3367:63;;3322:118;3479:3;3506:53;3551:7;3542:6;3531:9;3527:22;3506:53;:::i;:::-;3496:63;;3450:119;2866:710;;;;;;;;:::o;3582:663::-;;;;3733:2;3721:9;3712:7;3708:23;3704:32;3701:2;;;3749:1;3746;3739:12;3701:2;3792:1;3817:53;3862:7;3853:6;3842:9;3838:22;3817:53;:::i;:::-;3807:63;;3763:117;3919:2;3945:53;3990:7;3981:6;3970:9;3966:22;3945:53;:::i;:::-;3935:63;;3890:118;4075:2;4064:9;4060:18;4047:32;4106:18;4098:6;4095:30;4092:2;;;4138:1;4135;4128:12;4092:2;4166:62;4220:7;4211:6;4200:9;4196:22;4166:62;:::i;:::-;4156:72;;4018:220;3691:554;;;;;:::o;4251:262::-;;4359:2;4347:9;4338:7;4334:23;4330:32;4327:2;;;4375:1;4372;4365:12;4327:2;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4317:196;;;;:::o;4519:407::-;;;4644:2;4632:9;4623:7;4619:23;4615:32;4612:2;;;4660:1;4657;4650:12;4612:2;4703:1;4728:53;4773:7;4764:6;4753:9;4749:22;4728:53;:::i;:::-;4718:63;;4674:117;4830:2;4856:53;4901:7;4892:6;4881:9;4877:22;4856:53;:::i;:::-;4846:63;;4801:118;4602:324;;;;;:::o;4932:118::-;5019:24;5037:5;5019:24;:::i;:::-;5014:3;5007:37;4997:53;;:::o;5056:109::-;5137:21;5152:5;5137:21;:::i;:::-;5132:3;5125:34;5115:50;;:::o;5171:118::-;5258:24;5276:5;5258:24;:::i;:::-;5253:3;5246:37;5236:53;;:::o;5295:360::-;;5409:38;5441:5;5409:38;:::i;:::-;5463:70;5526:6;5521:3;5463:70;:::i;:::-;5456:77;;5542:52;5587:6;5582:3;5575:4;5568:5;5564:16;5542:52;:::i;:::-;5619:29;5641:6;5619:29;:::i;:::-;5614:3;5610:39;5603:46;;5385:270;;;;;:::o;5661:364::-;;5777:39;5810:5;5777:39;:::i;:::-;5832:71;5896:6;5891:3;5832:71;:::i;:::-;5825:78;;5912:52;5957:6;5952:3;5945:4;5938:5;5934:16;5912:52;:::i;:::-;5989:29;6011:6;5989:29;:::i;:::-;5984:3;5980:39;5973:46;;5753:272;;;;;:::o;6031:367::-;;6194:67;6258:2;6253:3;6194:67;:::i;:::-;6187:74;;6291:34;6287:1;6282:3;6278:11;6271:55;6357:5;6352:2;6347:3;6343:12;6336:27;6389:2;6384:3;6380:12;6373:19;;6177:221;;;:::o;6404:329::-;;6567:67;6631:2;6626:3;6567:67;:::i;:::-;6560:74;;6664:33;6660:1;6655:3;6651:11;6644:54;6724:2;6719:3;6715:12;6708:19;;6550:183;;;:::o;6739:366::-;;6902:67;6966:2;6961:3;6902:67;:::i;:::-;6895:74;;6999:34;6995:1;6990:3;6986:11;6979:55;7065:4;7060:2;7055:3;7051:12;7044:26;7096:2;7091:3;7087:12;7080:19;;6885:220;;;:::o;7111:366::-;;7274:67;7338:2;7333:3;7274:67;:::i;:::-;7267:74;;7371:34;7367:1;7362:3;7358:11;7351:55;7437:4;7432:2;7427:3;7423:12;7416:26;7468:2;7463:3;7459:12;7452:19;;7257:220;;;:::o;7483:370::-;;7646:67;7710:2;7705:3;7646:67;:::i;:::-;7639:74;;7743:34;7739:1;7734:3;7730:11;7723:55;7809:8;7804:2;7799:3;7795:12;7788:30;7844:2;7839:3;7835:12;7828:19;;7629:224;;;:::o;7859:330::-;;8022:67;8086:2;8081:3;8022:67;:::i;:::-;8015:74;;8119:34;8115:1;8110:3;8106:11;8099:55;8180:2;8175:3;8171:12;8164:19;;8005:184;;;:::o;8195:323::-;;8358:67;8422:2;8417:3;8358:67;:::i;:::-;8351:74;;8455:27;8451:1;8446:3;8442:11;8435:48;8509:2;8504:3;8500:12;8493:19;;8341:177;;;:::o;8524:321::-;;8687:67;8751:2;8746:3;8687:67;:::i;:::-;8680:74;;8784:25;8780:1;8775:3;8771:11;8764:46;8836:2;8831:3;8827:12;8820:19;;8670:175;;;:::o;8851:365::-;;9014:67;9078:2;9073:3;9014:67;:::i;:::-;9007:74;;9111:34;9107:1;9102:3;9098:11;9091:55;9177:3;9172:2;9167:3;9163:12;9156:25;9207:2;9202:3;9198:12;9191:19;;8997:219;;;:::o;9222:373::-;;9385:67;9449:2;9444:3;9385:67;:::i;:::-;9378:74;;9482:34;9478:1;9473:3;9469:11;9462:55;9548:11;9543:2;9538:3;9534:12;9527:33;9586:2;9581:3;9577:12;9570:19;;9368:227;;;:::o;9601:311::-;;9764:67;9828:2;9823:3;9764:67;:::i;:::-;9757:74;;9861:15;9857:1;9852:3;9848:11;9841:36;9903:2;9898:3;9894:12;9887:19;;9747:165;;;:::o;9918:372::-;;10081:67;10145:2;10140:3;10081:67;:::i;:::-;10074:74;;10178:34;10174:1;10169:3;10165:11;10158:55;10244:10;10239:2;10234:3;10230:12;10223:32;10281:2;10276:3;10272:12;10265:19;;10064:226;;;:::o;10296:322::-;;10459:67;10523:2;10518:3;10459:67;:::i;:::-;10452:74;;10556:26;10552:1;10547:3;10543:11;10536:47;10609:2;10604:3;10600:12;10593:19;;10442:176;;;:::o;10624:366::-;;10787:67;10851:2;10846:3;10787:67;:::i;:::-;10780:74;;10884:34;10880:1;10875:3;10871:11;10864:55;10950:4;10945:2;10940:3;10936:12;10929:26;10981:2;10976:3;10972:12;10965:19;;10770:220;;;:::o;10996:368::-;;11159:67;11223:2;11218:3;11159:67;:::i;:::-;11152:74;;11256:34;11252:1;11247:3;11243:11;11236:55;11322:6;11317:2;11312:3;11308:12;11301:28;11355:2;11350:3;11346:12;11339:19;;11142:222;;;:::o;11370:365::-;;11533:67;11597:2;11592:3;11533:67;:::i;:::-;11526:74;;11630:34;11626:1;11621:3;11617:11;11610:55;11696:3;11691:2;11686:3;11682:12;11675:25;11726:2;11721:3;11717:12;11710:19;;11516:219;;;:::o;11741:369::-;;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;12001:34;11997:1;11992:3;11988:11;11981:55;12067:7;12062:2;12057:3;12053:12;12046:29;12101:2;12096:3;12092:12;12085:19;;11887:223;;;:::o;12116:368::-;;12279:67;12343:2;12338:3;12279:67;:::i;:::-;12272:74;;12376:34;12372:1;12367:3;12363:11;12356:55;12442:6;12437:2;12432:3;12428:12;12421:28;12475:2;12470:3;12466:12;12459:19;;12262:222;;;:::o;12490:326::-;;12653:67;12717:2;12712:3;12653:67;:::i;:::-;12646:74;;12750:30;12746:1;12741:3;12737:11;12730:51;12807:2;12802:3;12798:12;12791:19;;12636:180;;;:::o;12822:327::-;;12985:67;13049:2;13044:3;12985:67;:::i;:::-;12978:74;;13082:31;13078:1;13073:3;13069:11;13062:52;13140:2;13135:3;13131:12;13124:19;;12968:181;;;:::o;13155:322::-;;13318:67;13382:2;13377:3;13318:67;:::i;:::-;13311:74;;13415:26;13411:1;13406:3;13402:11;13395:47;13468:2;13463:3;13459:12;13452:19;;13301:176;;;:::o;13483:369::-;;13646:67;13710:2;13705:3;13646:67;:::i;:::-;13639:74;;13743:34;13739:1;13734:3;13730:11;13723:55;13809:7;13804:2;13799:3;13795:12;13788:29;13843:2;13838:3;13834:12;13827:19;;13629:223;;;:::o;13858:329::-;;14021:67;14085:2;14080:3;14021:67;:::i;:::-;14014:74;;14118:33;14114:1;14109:3;14105:11;14098:54;14178:2;14173:3;14169:12;14162:19;;14004:183;;;:::o;14193:118::-;14280:24;14298:5;14280:24;:::i;:::-;14275:3;14268:37;14258:53;;:::o;14317:112::-;14400:22;14416:5;14400:22;:::i;:::-;14395:3;14388:35;14378:51;;:::o;14435:222::-;;14566:2;14555:9;14551:18;14543:26;;14579:71;14647:1;14636:9;14632:17;14623:6;14579:71;:::i;:::-;14533:124;;;;:::o;14663:332::-;;14822:2;14811:9;14807:18;14799:26;;14835:71;14903:1;14892:9;14888:17;14879:6;14835:71;:::i;:::-;14916:72;14984:2;14973:9;14969:18;14960:6;14916:72;:::i;:::-;14789:206;;;;;:::o;15001:664::-;;15244:3;15233:9;15229:19;15221:27;;15258:71;15326:1;15315:9;15311:17;15302:6;15258:71;:::i;:::-;15339:72;15407:2;15396:9;15392:18;15383:6;15339:72;:::i;:::-;15421;15489:2;15478:9;15474:18;15465:6;15421:72;:::i;:::-;15503;15571:2;15560:9;15556:18;15547:6;15503:72;:::i;:::-;15585:73;15653:3;15642:9;15638:19;15629:6;15585:73;:::i;:::-;15211:454;;;;;;;;:::o;15671:529::-;;15876:2;15865:9;15861:18;15853:26;;15889:71;15957:1;15946:9;15942:17;15933:6;15889:71;:::i;:::-;15970:72;16038:2;16027:9;16023:18;16014:6;15970:72;:::i;:::-;16089:9;16083:4;16079:20;16074:2;16063:9;16059:18;16052:48;16117:76;16188:4;16179:6;16117:76;:::i;:::-;16109:84;;15843:357;;;;;;:::o;16206:210::-;;16331:2;16320:9;16316:18;16308:26;;16344:65;16406:1;16395:9;16391:17;16382:6;16344:65;:::i;:::-;16298:118;;;;:::o;16422:313::-;;16573:2;16562:9;16558:18;16550:26;;16622:9;16616:4;16612:20;16608:1;16597:9;16593:17;16586:47;16650:78;16723:4;16714:6;16650:78;:::i;:::-;16642:86;;16540:195;;;;:::o;16741:419::-;;16945:2;16934:9;16930:18;16922:26;;16994:9;16988:4;16984:20;16980:1;16969:9;16965:17;16958:47;17022:131;17148:4;17022:131;:::i;:::-;17014:139;;16912:248;;;:::o;17166:419::-;;17370:2;17359:9;17355:18;17347:26;;17419:9;17413:4;17409:20;17405:1;17394:9;17390:17;17383:47;17447:131;17573:4;17447:131;:::i;:::-;17439:139;;17337:248;;;:::o;17591:419::-;;17795:2;17784:9;17780:18;17772:26;;17844:9;17838:4;17834:20;17830:1;17819:9;17815:17;17808:47;17872:131;17998:4;17872:131;:::i;:::-;17864:139;;17762:248;;;:::o;18016:419::-;;18220:2;18209:9;18205:18;18197:26;;18269:9;18263:4;18259:20;18255:1;18244:9;18240:17;18233:47;18297:131;18423:4;18297:131;:::i;:::-;18289:139;;18187:248;;;:::o;18441:419::-;;18645:2;18634:9;18630:18;18622:26;;18694:9;18688:4;18684:20;18680:1;18669:9;18665:17;18658:47;18722:131;18848:4;18722:131;:::i;:::-;18714:139;;18612:248;;;:::o;18866:419::-;;19070:2;19059:9;19055:18;19047:26;;19119:9;19113:4;19109:20;19105:1;19094:9;19090:17;19083:47;19147:131;19273:4;19147:131;:::i;:::-;19139:139;;19037:248;;;:::o;19291:419::-;;19495:2;19484:9;19480:18;19472:26;;19544:9;19538:4;19534:20;19530:1;19519:9;19515:17;19508:47;19572:131;19698:4;19572:131;:::i;:::-;19564:139;;19462:248;;;:::o;19716:419::-;;19920:2;19909:9;19905:18;19897:26;;19969:9;19963:4;19959:20;19955:1;19944:9;19940:17;19933:47;19997:131;20123:4;19997:131;:::i;:::-;19989:139;;19887:248;;;:::o;20141:419::-;;20345:2;20334:9;20330:18;20322:26;;20394:9;20388:4;20384:20;20380:1;20369:9;20365:17;20358:47;20422:131;20548:4;20422:131;:::i;:::-;20414:139;;20312:248;;;:::o;20566:419::-;;20770:2;20759:9;20755:18;20747:26;;20819:9;20813:4;20809:20;20805:1;20794:9;20790:17;20783:47;20847:131;20973:4;20847:131;:::i;:::-;20839:139;;20737:248;;;:::o;20991:419::-;;21195:2;21184:9;21180:18;21172:26;;21244:9;21238:4;21234:20;21230:1;21219:9;21215:17;21208:47;21272:131;21398:4;21272:131;:::i;:::-;21264:139;;21162:248;;;:::o;21416:419::-;;21620:2;21609:9;21605:18;21597:26;;21669:9;21663:4;21659:20;21655:1;21644:9;21640:17;21633:47;21697:131;21823:4;21697:131;:::i;:::-;21689:139;;21587:248;;;:::o;21841:419::-;;22045:2;22034:9;22030:18;22022:26;;22094:9;22088:4;22084:20;22080:1;22069:9;22065:17;22058:47;22122:131;22248:4;22122:131;:::i;:::-;22114:139;;22012:248;;;:::o;22266:419::-;;22470:2;22459:9;22455:18;22447:26;;22519:9;22513:4;22509:20;22505:1;22494:9;22490:17;22483:47;22547:131;22673:4;22547:131;:::i;:::-;22539:139;;22437:248;;;:::o;22691:419::-;;22895:2;22884:9;22880:18;22872:26;;22944:9;22938:4;22934:20;22930:1;22919:9;22915:17;22908:47;22972:131;23098:4;22972:131;:::i;:::-;22964:139;;22862:248;;;:::o;23116:419::-;;23320:2;23309:9;23305:18;23297:26;;23369:9;23363:4;23359:20;23355:1;23344:9;23340:17;23333:47;23397:131;23523:4;23397:131;:::i;:::-;23389:139;;23287:248;;;:::o;23541:419::-;;23745:2;23734:9;23730:18;23722:26;;23794:9;23788:4;23784:20;23780:1;23769:9;23765:17;23758:47;23822:131;23948:4;23822:131;:::i;:::-;23814:139;;23712:248;;;:::o;23966:419::-;;24170:2;24159:9;24155:18;24147:26;;24219:9;24213:4;24209:20;24205:1;24194:9;24190:17;24183:47;24247:131;24373:4;24247:131;:::i;:::-;24239:139;;24137:248;;;:::o;24391:419::-;;24595:2;24584:9;24580:18;24572:26;;24644:9;24638:4;24634:20;24630:1;24619:9;24615:17;24608:47;24672:131;24798:4;24672:131;:::i;:::-;24664:139;;24562:248;;;:::o;24816:419::-;;25020:2;25009:9;25005:18;24997:26;;25069:9;25063:4;25059:20;25055:1;25044:9;25040:17;25033:47;25097:131;25223:4;25097:131;:::i;:::-;25089:139;;24987:248;;;:::o;25241:419::-;;25445:2;25434:9;25430:18;25422:26;;25494:9;25488:4;25484:20;25480:1;25469:9;25465:17;25458:47;25522:131;25648:4;25522:131;:::i;:::-;25514:139;;25412:248;;;:::o;25666:419::-;;25870:2;25859:9;25855:18;25847:26;;25919:9;25913:4;25909:20;25905:1;25894:9;25890:17;25883:47;25947:131;26073:4;25947:131;:::i;:::-;25939:139;;25837:248;;;:::o;26091:419::-;;26295:2;26284:9;26280:18;26272:26;;26344:9;26338:4;26334:20;26330:1;26319:9;26315:17;26308:47;26372:131;26498:4;26372:131;:::i;:::-;26364:139;;26262:248;;;:::o;26516:222::-;;26647:2;26636:9;26632:18;26624:26;;26660:71;26728:1;26717:9;26713:17;26704:6;26660:71;:::i;:::-;26614:124;;;;:::o;26744:419::-;;26921:2;26910:9;26906:18;26898:26;;26934:71;27002:1;26991:9;26987:17;26978:6;26934:71;:::i;:::-;27052:9;27046:4;27042:20;27037:2;27026:9;27022:18;27015:48;27080:76;27151:4;27142:6;27080:76;:::i;:::-;27072:84;;26888:275;;;;;:::o;27169:332::-;;27328:2;27317:9;27313:18;27305:26;;27341:71;27409:1;27398:9;27394:17;27385:6;27341:71;:::i;:::-;27422:72;27490:2;27479:9;27475:18;27466:6;27422:72;:::i;:::-;27295:206;;;;;:::o;27507:214::-;;27634:2;27623:9;27619:18;27611:26;;27647:67;27711:1;27700:9;27696:17;27687:6;27647:67;:::i;:::-;27601:120;;;;:::o;27727:283::-;;27793:2;27787:9;27777:19;;27835:4;27827:6;27823:17;27942:6;27930:10;27927:22;27906:18;27894:10;27891:34;27888:62;27885:2;;;27953:18;;:::i;:::-;27885:2;27993:10;27989:2;27982:22;27767:243;;;;:::o;28016:331::-;;28167:18;28159:6;28156:30;28153:2;;;28189:18;;:::i;:::-;28153:2;28274:4;28270:9;28263:4;28255:6;28251:17;28247:33;28239:41;;28335:4;28329;28325:15;28317:23;;28082:265;;;:::o;28353:98::-;;28438:5;28432:12;28422:22;;28411:40;;;:::o;28457:99::-;;28543:5;28537:12;28527:22;;28516:40;;;:::o;28562:168::-;;28679:6;28674:3;28667:19;28719:4;28714:3;28710:14;28695:29;;28657:73;;;;:::o;28736:169::-;;28854:6;28849:3;28842:19;28894:4;28889:3;28885:14;28870:29;;28832:73;;;;:::o;28911:305::-;;28970:20;28988:1;28970:20;:::i;:::-;28965:25;;29004:20;29022:1;29004:20;:::i;:::-;28999:25;;29158:1;29090:66;29086:74;29083:1;29080:81;29077:2;;;29164:18;;:::i;:::-;29077:2;29208:1;29205;29201:9;29194:16;;28955:261;;;;:::o;29222:191::-;;29282:20;29300:1;29282:20;:::i;:::-;29277:25;;29316:20;29334:1;29316:20;:::i;:::-;29311:25;;29355:1;29352;29349:8;29346:2;;;29360:18;;:::i;:::-;29346:2;29405:1;29402;29398:9;29390:17;;29267:146;;;;:::o;29419:96::-;;29485:24;29503:5;29485:24;:::i;:::-;29474:35;;29464:51;;;:::o;29521:90::-;;29598:5;29591:13;29584:21;29573:32;;29563:48;;;:::o;29617:77::-;;29683:5;29672:16;;29662:32;;;:::o;29700:126::-;;29777:42;29770:5;29766:54;29755:65;;29745:81;;;:::o;29832:77::-;;29898:5;29887:16;;29877:32;;;:::o;29915:86::-;;29990:4;29983:5;29979:16;29968:27;;29958:43;;;:::o;30007:154::-;30091:6;30086:3;30081;30068:30;30153:1;30144:6;30139:3;30135:16;30128:27;30058:103;;;:::o;30167:307::-;30235:1;30245:113;30259:6;30256:1;30253:13;30245:113;;;30344:1;30339:3;30335:11;30329:18;30325:1;30320:3;30316:11;30309:39;30281:2;30278:1;30274:10;30269:15;;30245:113;;;30376:6;30373:1;30370:13;30367:2;;;30456:1;30447:6;30442:3;30438:16;30431:27;30367:2;30216:258;;;;:::o;30480:320::-;;30561:1;30555:4;30551:12;30541:22;;30608:1;30602:4;30598:12;30629:18;30619:2;;30685:4;30677:6;30673:17;30663:27;;30619:2;30747;30739:6;30736:14;30716:18;30713:38;30710:2;;;30766:18;;:::i;:::-;30710:2;30531:269;;;;:::o;30806:180::-;30854:77;30851:1;30844:88;30951:4;30948:1;30941:15;30975:4;30972:1;30965:15;30992:180;31040:77;31037:1;31030:88;31137:4;31134:1;31127:15;31161:4;31158:1;31151:15;31178:180;31226:77;31223:1;31216:88;31323:4;31320:1;31313:15;31347:4;31344:1;31337:15;31364:102;;31456:2;31452:7;31447:2;31440:5;31436:14;31432:28;31422:38;;31412:54;;;:::o;31472:122::-;31545:24;31563:5;31545:24;:::i;:::-;31538:5;31535:35;31525:2;;31584:1;31581;31574:12;31525:2;31515:79;:::o;31600:122::-;31673:24;31691:5;31673:24;:::i;:::-;31666:5;31663:35;31653:2;;31712:1;31709;31702:12;31653:2;31643:79;:::o;31728:122::-;31801:24;31819:5;31801:24;:::i;:::-;31794:5;31791:35;31781:2;;31840:1;31837;31830:12;31781:2;31771:79;:::o
Swarm Source
ipfs://f3bc2e9994654a8cebe66cc9f3cb34ec2221cc3e016cf4381ff1d762ae14b29b
[ 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.